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

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. #ifndef ODBC_DICTIONARY_DictSchema_hpp
  14. #define ODBC_DICTIONARY_DictSchema_hpp
  15. #include <list>
  16. #include <common/common.hpp>
  17. #include "DictTable.hpp"
  18. class Ctx;
  19. class ConnArea;
  20. class DictCatalog;
  21. class DictTable;
  22. /**
  23.  * @class DictSchema
  24.  * @brief Collection of tables
  25.  */
  26. class DictSchema {
  27. public:
  28.     DictSchema(const ConnArea& connArea, const BaseString& name);
  29.     ~DictSchema();
  30.     const BaseString& getName() const;
  31.     void setParent(DictCatalog* parent);
  32.     DictCatalog* getParent() const;
  33.     void addTable(DictTable* table);
  34.     DictTable* findTable(const BaseString& name);
  35.     DictTable* loadTable(Ctx& ctx, const BaseString& name);
  36.     void deleteTable(Ctx& ctx, const BaseString& name);
  37.     void deleteTableByIndex(Ctx& ctx, const BaseString& indexName);
  38. protected:
  39.     friend class DictCatalog;
  40.     friend class DictSys;
  41.     const ConnArea& m_connArea;
  42.     BaseString m_name;
  43.     DictCatalog* m_parent;
  44.     typedef std::list<DictTable*> Tables;
  45.     Tables m_tables;
  46. };
  47. inline
  48. DictSchema::DictSchema(const ConnArea& connArea, const BaseString& name) :
  49.     m_connArea(connArea),
  50.     m_name(name),
  51.     m_parent(0)
  52. {
  53.     ctx_assert(strcmp(name.c_str(), "NDB") == 0);
  54. }
  55. inline const BaseString&
  56. DictSchema::getName() const
  57. {
  58.     return m_name;
  59. }
  60. inline void
  61. DictSchema::setParent(DictCatalog* parent)
  62. {
  63.     m_parent = parent;
  64. }
  65. inline DictCatalog*
  66. DictSchema::getParent() const
  67. {
  68.     return m_parent;
  69. }
  70. inline void
  71. DictSchema::addTable(DictTable* table)
  72. {
  73.     m_tables.push_back(table);
  74.     table->setParent(this);
  75. }
  76. #endif