MetaData.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 "MetaData.hpp"
  14. #include "SimulatedBlock.hpp"
  15. #include <blocks/dbdict/Dbdict.hpp>
  16. #include <blocks/dbdih/Dbdih.hpp>
  17. // MetaData::Common
  18. MetaData::Common::Common(Dbdict& dbdict, Dbdih& dbdih) :
  19.   m_dbdict(dbdict),
  20.   m_dbdih(dbdih)
  21. {
  22.   m_lock[false] = m_lock[true] = 0;
  23. }
  24. // MetaData::Table
  25. // MetaData
  26. MetaData::MetaData(Common& common) :
  27.   m_common(common)
  28. {
  29.   m_lock[false] = m_lock[true] = 0;
  30. }
  31. MetaData::MetaData(SimulatedBlock* block) :
  32.   m_common(*block->getMetaDataCommon())
  33. {
  34.   m_lock[false] = m_lock[true] = 0;
  35. }
  36. MetaData::~MetaData()
  37. {
  38.   for (int i = false; i <= true; i++) {
  39.     assert(m_common.m_lock[i] >= m_lock[i]);
  40.     m_common.m_lock[i] -= m_lock[i];
  41.     m_lock[i] = 0;
  42.   }
  43. }
  44. int
  45. MetaData::lock(bool exclusive)
  46. {
  47.   if (m_common.m_lock[true] > m_lock[true]) {
  48.     // locked exclusively by another instance
  49.     return MetaData::Locked;
  50.   }
  51.   m_lock[exclusive]++;
  52.   m_common.m_lock[exclusive]++;
  53.   return 0;
  54. }
  55. int
  56. MetaData::unlock(bool exclusive)
  57. {
  58.   if (m_lock[exclusive] == 0) {
  59.     return MetaData::NotLocked;
  60.   }
  61.   m_lock[exclusive]--;
  62.   m_common.m_lock[exclusive]--;
  63.   return 0;
  64. }
  65. int
  66. MetaData::getTable(MetaData::Table& table, Uint32 tableId, Uint32 tableVersion)
  67. {
  68.   if (m_lock[false] + m_lock[true] == 0) {
  69.     return MetaData::NotLocked;
  70.   }
  71.   return m_common.m_dbdict.getMetaTable(table, tableId, tableVersion);
  72. }
  73. int
  74. MetaData::getTable(MetaData::Table& table, const char* tableName)
  75. {
  76.   if (m_lock[false] + m_lock[true] == 0) {
  77.     return MetaData::NotLocked;
  78.   }
  79.   return m_common.m_dbdict.getMetaTable(table, tableName);
  80. }
  81. int
  82. MetaData::getAttribute(MetaData::Attribute& attribute, const MetaData::Table& table, Uint32 attributeId)
  83. {
  84.   if (m_lock[false] + m_lock[true] == 0) {
  85.     return MetaData::NotLocked;
  86.   }
  87.   return m_common.m_dbdict.getMetaAttribute(attribute, table, attributeId);
  88. }
  89. int
  90. MetaData::getAttribute(MetaData::Attribute& attribute, const MetaData::Table& table, const char* attributeName)
  91. {
  92.   if (m_lock[false] + m_lock[true] == 0) {
  93.     return MetaData::NotLocked;
  94.   }
  95.   return m_common.m_dbdict.getMetaAttribute(attribute, table, attributeName);
  96. }