~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/ha_trx_info.cc

  • Committer: Brian Aker
  • Date: 2009-07-11 19:23:04 UTC
  • mfrom: (1089.1.14 merge)
  • Revision ID: brian@gaz-20090711192304-ootijyl5yf9jq9kd
Merge Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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/plugin/storage_engine.h>
 
23
#include <drizzled/session.h>
 
24
 
 
25
 
 
26
void Ha_trx_info::register_ha(Session_TRANS *trans, StorageEngine *engine_arg)
 
27
{
 
28
  assert(m_flags == 0);
 
29
  assert(m_engine == NULL);
 
30
  assert(m_next == NULL);
 
31
 
 
32
  m_engine= engine_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_engine= 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_engine != 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
StorageEngine *Ha_trx_info::engine() const
 
90
{
 
91
  assert(is_started());
 
92
  return m_engine;
 
93
}