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> |
|
960.2.23
by Monty Taylor
Moved handlerton to plugin/storage_engine.h. |
22 |
#include <drizzled/plugin/storage_engine.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 |
||
960.2.37
by Monty Taylor
More naming fixes. |
26 |
void Ha_trx_info::register_ha(Session_TRANS *trans, StorageEngine *engine_arg) |
584.1.13
by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes. |
27 |
{
|
28 |
assert(m_flags == 0); |
|
960.2.37
by Monty Taylor
More naming fixes. |
29 |
assert(m_engine == NULL); |
584.1.13
by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes. |
30 |
assert(m_next == NULL); |
31 |
||
960.2.37
by Monty Taylor
More naming fixes. |
32 |
m_engine= engine_arg; |
584.1.13
by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes. |
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; |
|
960.2.37
by Monty Taylor
More naming fixes. |
44 |
m_engine= NULL; |
584.1.13
by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes. |
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 |
{
|
|
960.2.37
by Monty Taylor
More naming fixes. |
64 |
return m_engine != NULL; |
584.1.13
by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes. |
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 |
||
960.2.37
by Monty Taylor
More naming fixes. |
89 |
StorageEngine *Ha_trx_info::engine() const |
584.1.13
by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes. |
90 |
{
|
91 |
assert(is_started()); |
|
960.2.37
by Monty Taylor
More naming fixes. |
92 |
return m_engine; |
584.1.13
by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes. |
93 |
}
|