~drizzle-trunk/drizzle/development

584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
4
 *  Copyright (C) 2008 Sun Microsystems
5
 *
6
 *  This program is free software; you can redistribute it and/or modify
7
 *  it under the terms of the GNU General Public License as published by
8
 *  the Free Software Foundation; version 2 of the License.
9
 *
10
 *  This program is distributed in the hope that it will be useful,
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 *  GNU General Public License for more details.
14
 *
15
 *  You should have received a copy of the GNU General Public License
16
 *  along with this program; if not, write to the Free Software
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 */
19
20
#include <drizzled/server_includes.h>
21
#include <drizzled/ha_trx_info.h>
22
#include <drizzled/handlerton.h>
584.1.15 by Monty Taylor
The mega-patch from hell. Renamed sql_class to session (since that's what it is) and removed it and field and table from common_includes.
23
#include <drizzled/session.h>
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
24
25
26
void Ha_trx_info::register_ha(Session_TRANS *trans, handlerton *ht_arg)
27
{
28
  assert(m_flags == 0);
29
  assert(m_ht == NULL);
30
  assert(m_next == NULL);
31
32
  m_ht= ht_arg;
33
  m_flags= (int) TRX_READ_ONLY; /* Assume read-only at start. */
34
35
  m_next= trans->ha_list;
36
  trans->ha_list= this;
37
}
38
39
40
/** Clear, prepare for reuse. */
41
void Ha_trx_info::reset()
42
{
43
  m_next= NULL;
44
  m_ht= NULL;
45
  m_flags= 0;
46
}
47
48
void Ha_trx_info::set_trx_read_write()
49
{
50
  assert(is_started());
51
  m_flags|= (int) TRX_READ_WRITE;
52
}
53
54
55
bool Ha_trx_info::is_trx_read_write() const
56
{
57
  assert(is_started());
58
  return m_flags & (int) TRX_READ_WRITE;
59
}
60
61
62
bool Ha_trx_info::is_started() const
63
{
64
  return m_ht != NULL;
65
}
66
67
68
/** Mark this transaction read-write if the argument is read-write. */
69
void Ha_trx_info::coalesce_trx_with(const Ha_trx_info *stmt_trx)
70
{
71
  /*
72
    Must be called only after the transaction has been started.
73
    Can be called many times, e.g. when we have many
74
    read-write statements in a transaction.
75
  */
76
  assert(is_started());
77
  if (stmt_trx->is_trx_read_write())
78
    set_trx_read_write();
79
}
80
81
82
Ha_trx_info *Ha_trx_info::next() const
83
{
84
  assert(is_started());
85
  return m_next;
86
}
87
88
89
handlerton *Ha_trx_info::ht() const
90
{
91
  assert(is_started());
92
  return m_ht;
93
}