~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
 *
1999.6.1 by kalebral at gmail
update Copyright strings to a more common format to help with creating the master debian copyright file
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
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
2173.2.1 by Monty Taylor
Fixes incorrect usage of include
20
#include <config.h>
21
#include <drizzled/resource_context.h>
1273.1.10 by Jay Pipes
* Renames Ha_trx_info to drizzled::ResourceContext
22
23
#include <cassert>
24
25
using namespace std;
26
27
namespace drizzled
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
28
{
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
29
30
/** Clear, prepare for reuse. */
1273.1.10 by Jay Pipes
* Renames Ha_trx_info to drizzled::ResourceContext
31
void ResourceContext::reset()
32
{
1273.1.30 by Jay Pipes
* Completes the blueprint for splitting the XA Resource Manager
33
  monitored= NULL;
34
  xa_resource_manager= NULL;
35
  trx_storage_engine= NULL;
1273.1.10 by Jay Pipes
* Renames Ha_trx_info to drizzled::ResourceContext
36
  modified_data= false;
37
}
38
1273.1.12 by Jay Pipes
Cleanup style and documentation for ResourceContext and setTransactionReadWrite
39
void ResourceContext::markModifiedData()
1273.1.10 by Jay Pipes
* Renames Ha_trx_info to drizzled::ResourceContext
40
{
1273.1.12 by Jay Pipes
Cleanup style and documentation for ResourceContext and setTransactionReadWrite
41
  assert(isStarted());
1273.1.10 by Jay Pipes
* Renames Ha_trx_info to drizzled::ResourceContext
42
  modified_data= true;
43
}
44
1273.1.12 by Jay Pipes
Cleanup style and documentation for ResourceContext and setTransactionReadWrite
45
bool ResourceContext::hasModifiedData() const
1273.1.10 by Jay Pipes
* Renames Ha_trx_info to drizzled::ResourceContext
46
{
1273.1.12 by Jay Pipes
Cleanup style and documentation for ResourceContext and setTransactionReadWrite
47
  assert(isStarted());
1273.1.10 by Jay Pipes
* Renames Ha_trx_info to drizzled::ResourceContext
48
  return modified_data;
49
}
50
1273.1.12 by Jay Pipes
Cleanup style and documentation for ResourceContext and setTransactionReadWrite
51
bool ResourceContext::isStarted() const
1273.1.10 by Jay Pipes
* Renames Ha_trx_info to drizzled::ResourceContext
52
{
1273.1.30 by Jay Pipes
* Completes the blueprint for splitting the XA Resource Manager
53
  return monitored != NULL;
1273.1.10 by Jay Pipes
* Renames Ha_trx_info to drizzled::ResourceContext
54
}
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
55
1273.1.12 by Jay Pipes
Cleanup style and documentation for ResourceContext and setTransactionReadWrite
56
void ResourceContext::coalesceWith(const ResourceContext *stmt_ctx)
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
57
{
58
  /*
59
    Must be called only after the transaction has been started.
60
    Can be called many times, e.g. when we have many
61
    read-write statements in a transaction.
62
  */
1273.1.12 by Jay Pipes
Cleanup style and documentation for ResourceContext and setTransactionReadWrite
63
  assert(isStarted());
64
  if (stmt_ctx->hasModifiedData())
65
    markModifiedData();
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
66
}
67
1273.1.10 by Jay Pipes
* Renames Ha_trx_info to drizzled::ResourceContext
68
} /* namespace drizzled */