DictIndex.hpp
上传用户: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. #ifndef ODBC_DICTIONARY_DictIndex_hpp
  14. #define ODBC_DICTIONARY_DictIndex_hpp
  15. #include <vector>
  16. #include <common/common.hpp>
  17. #include "DictColumn.hpp"
  18. class Ctx;
  19. class ConnArea;
  20. class DictTable;
  21. class DictColumn;
  22. class DictIndex;
  23. /**
  24.  * @class DictIndex
  25.  * @brief Database table
  26.  */
  27. class DictIndex {
  28.     friend class DictSchema;
  29. public:
  30.     DictIndex(const ConnArea& connArea, const BaseString& name, NdbDictionary::Object::Type type, unsigned size);
  31.     ~DictIndex();
  32.     NdbDictionary::Object::Type getType() const;
  33.     unsigned getSize() const;
  34.     void setTable(DictTable* table);
  35.     DictTable* getTable() const;
  36.     void setColumn(unsigned i, DictColumn* column);
  37.     DictColumn* getColumn(unsigned i) const;
  38.     const BaseString& getName() const;
  39.     DictColumn* findColumn(const BaseString& name) const;
  40. protected:
  41.     const ConnArea& m_connArea;
  42.     const BaseString m_name;
  43.     const NdbDictionary::Object::Type m_type;
  44.     const unsigned m_size;
  45.     DictSchema* m_parent;
  46.     DictTable* m_table;
  47.     typedef std::vector<DictColumn*> Columns; // pointers to table columns
  48.     Columns m_columns;
  49. };
  50. inline
  51. DictIndex::DictIndex(const ConnArea& connArea, const BaseString& name, NdbDictionary::Object::Type type, unsigned size) :
  52.     m_connArea(connArea),
  53.     m_name(name),
  54.     m_type(type),
  55.     m_size(size),
  56.     m_parent(0),
  57.     m_columns(1 + size)
  58. {
  59. }
  60. inline NdbDictionary::Object::Type
  61. DictIndex::getType() const
  62. {
  63.     return m_type;
  64. }
  65. inline unsigned
  66. DictIndex::getSize() const
  67. {
  68.     ctx_assert(m_columns.size() == 1 + m_size);
  69.     return m_size;
  70. }
  71. inline void
  72. DictIndex::setTable(DictTable* table)
  73. {
  74.     m_table = table;
  75. }
  76. inline DictTable*
  77. DictIndex::getTable() const
  78. {
  79.     return m_table;
  80. }
  81. inline DictColumn*
  82. DictIndex::getColumn(unsigned i) const
  83. {
  84.     ctx_assert(1 <= i && i <= m_size);
  85.     ctx_assert(m_columns[i] != 0);
  86.     return m_columns[i];
  87. }
  88. inline const BaseString&
  89. DictIndex::getName() const
  90. {
  91.     return m_name;
  92. }
  93. #endif