ConnArea.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include <NdbApi.hpp>
  14. #include <dictionary/DictCatalog.hpp>
  15. #include <dictionary/DictSchema.hpp>
  16. #include "ConnArea.hpp"
  17. ConnArea::ConnArea() :
  18.     m_state(Free),
  19.     m_ndbObject(0),
  20.     m_ndbSchemaCon(0),
  21.     m_ndbConnection(0),
  22.     m_useSchemaCon(0),
  23.     m_useConnection(0),
  24.     m_autocommit(true),
  25.     m_uncommitted(false)
  26. {
  27.     // initialize connection catalog
  28.     m_catalog = new DictCatalog(*this);
  29.     m_schema = new DictSchema(*this, "NDB");
  30.     m_catalog->addSchema(m_schema);
  31. }
  32. ConnArea::~ConnArea()
  33. {
  34.     delete m_catalog;
  35. }
  36. bool
  37. ConnArea::useSchemaCon(Ctx& ctx, bool use)
  38. {
  39.     if (m_state == Free) {
  40. ctx.pushStatus(Sqlstate::_HY010, Error::Gen, "not connected");
  41. return false;
  42.     }
  43.     Ndb* ndb = m_ndbObject;
  44.     ctx_assert(ndb != 0);
  45.     NdbSchemaCon* scon = m_ndbSchemaCon;
  46.     if (use) {
  47. if (scon == 0) {
  48.     ctx_assert(m_useSchemaCon == 0);
  49.     scon = ndb->startSchemaTransaction();
  50.     if (scon == 0) {
  51. ctx.pushStatus(ndb, scon, 0, "startSchemaTransaction");
  52. return false;
  53.     }
  54.     m_ndbSchemaCon = scon;
  55. }
  56. m_useSchemaCon++;
  57.     } else {
  58. ctx_assert(scon != 0 && m_useSchemaCon != 0);
  59. if (--m_useSchemaCon == 0) {
  60.     ndb->closeSchemaTransaction(scon);
  61.     m_ndbSchemaCon = 0;
  62. }
  63.     }
  64.     return true;
  65. }
  66. bool
  67. ConnArea::useConnection(Ctx& ctx, bool use)
  68. {
  69.     ctx_log3(("useConnection: count before=%u on-off=%d", m_useConnection, (int)use));
  70.     if (m_state == Free) {
  71. ctx.pushStatus(Sqlstate::_HY010, Error::Gen, "not connected");
  72. return false;
  73.     }
  74.     Ndb* ndb = m_ndbObject;
  75.     ctx_assert(ndb != 0);
  76.     NdbConnection* tcon = m_ndbConnection;
  77.     if (use) {
  78. if (tcon == 0) {
  79.     ctx_assert(m_useConnection == 0);
  80.     tcon = ndb->startTransaction();
  81.     if (tcon == 0) {
  82. ctx.pushStatus(ndb, tcon, 0, "startTransaction");
  83. return false;
  84.     }
  85.     m_ndbConnection = tcon;
  86.     m_state = Transacting;
  87.     ctx_log2(("transaction opened"));
  88. }
  89. m_useConnection++;
  90.     } else {
  91. ctx_assert(tcon != 0 && m_useConnection != 0);
  92. if (--m_useConnection == 0) {
  93.     ndb->closeTransaction(tcon);
  94.     m_ndbConnection = 0;
  95.     m_uncommitted = false;
  96.     m_state = Connected;
  97.     ctx_log2(("transaction closed"));
  98. }
  99.     }
  100.     return true;
  101. }