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

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_CODEGEN_Code_update_index_hpp
  14. #define ODBC_CODEGEN_Code_update_index_hpp
  15. #include <common/common.hpp>
  16. #include "Code_base.hpp"
  17. #include "Code_dml.hpp"
  18. #include "Code_table.hpp"
  19. #include "Code_query.hpp"
  20. /**
  21.  * @class Plan_update_index
  22.  * @brief Update in PlanTree
  23.  */
  24. class Plan_update_index : public Plan_dml {
  25. public:
  26.     Plan_update_index(Plan_root* root);
  27.     virtual ~Plan_update_index();
  28.     Plan_base* analyze(Ctx& ctx, Ctl& ctl);
  29.     void describe(Ctx& ctx);
  30.     Exec_base* codegen(Ctx& ctx, Ctl& ctl);
  31.     void print(Ctx& ctx);
  32.     // children
  33.     void setTable(Plan_table* table, Plan_table::Index* index);
  34.     void setDmlRow(Plan_dml_row* dmlRow);
  35.     void setQuery(Plan_query* query);
  36. protected:
  37.     Plan_table* m_table;
  38.     Plan_table::Index* m_index;
  39.     Plan_dml_row* m_dmlRow;
  40.     Plan_query* m_query;
  41. };
  42. inline
  43. Plan_update_index::Plan_update_index(Plan_root* root) :
  44.     Plan_dml(root),
  45.     m_table(0),
  46.     m_dmlRow(0),
  47.     m_query(0)
  48. {
  49. }
  50. inline void
  51. Plan_update_index::setTable(Plan_table* table, Plan_table::Index* index)
  52. {
  53.     ctx_assert(table != 0 && index != 0 && index == &table->m_indexList[index->m_pos] && index->m_pos != 0);
  54.     m_table = table;
  55.     m_index = index;
  56. }
  57. inline void
  58. Plan_update_index::setDmlRow(Plan_dml_row* dmlRow)
  59. {
  60.     ctx_assert(dmlRow != 0);
  61.     m_dmlRow = dmlRow;
  62. }
  63. inline void
  64. Plan_update_index::setQuery(Plan_query* query)
  65. {
  66.     ctx_assert(query != 0);
  67.     m_query = query;
  68. }
  69. /**
  70.  * @class Exec_update_index
  71.  * @brief Insert in ExecTree
  72.  */
  73. class Exec_update_index : public Exec_dml {
  74. public:
  75.     class Code : public Exec_dml::Code {
  76.     public:
  77. Code(unsigned keyCount);
  78. virtual ~Code();
  79.     protected:
  80. friend class Plan_update_index;
  81. friend class Exec_update_index;
  82. const char* m_tableName;
  83. const char* m_indexName;
  84. unsigned m_keyCount;
  85. SqlSpecs m_keySpecs; // key types
  86. NdbAttrId* m_keyId;
  87. Exec_expr** m_keyMatch; // XXX pointers for now
  88. unsigned m_attrCount;
  89. NdbAttrId* m_attrId;
  90.     };
  91.     class Data : public Exec_dml::Data {
  92.     public:
  93. Data();
  94. virtual ~Data();
  95.     protected:
  96. friend class Exec_update_index;
  97.     };
  98.     Exec_update_index(Exec_root* root);
  99.     virtual ~Exec_update_index();
  100.     void alloc(Ctx& ctx, Ctl& ctl);
  101.     void execImpl(Ctx& ctx, Ctl& ctl);
  102.     void close(Ctx& ctx);
  103.     void print(Ctx& ctx);
  104.     // children
  105.     const Code& getCode() const;
  106.     Data& getData() const;
  107.     void setQuery(Exec_query* query);
  108. protected:
  109.     Exec_query* m_query;
  110. };
  111. inline
  112. Exec_update_index::Code::Code(unsigned keyCount) :
  113.     m_tableName(0),
  114.     m_indexName(0),
  115.     m_keyCount(keyCount),
  116.     m_keySpecs(keyCount),
  117.     m_keyId(0),
  118.     m_keyMatch(0),
  119.     m_attrCount(0),
  120.     m_attrId(0)
  121. {
  122. }
  123. inline
  124. Exec_update_index::Data::Data()
  125. {
  126. }
  127. inline
  128. Exec_update_index::Exec_update_index(Exec_root* root) :
  129.     Exec_dml(root),
  130.     m_query(0)
  131. {
  132. }
  133. // children
  134. inline const Exec_update_index::Code&
  135. Exec_update_index::getCode() const
  136. {
  137.     const Code* code = static_cast<const Code*>(m_code);
  138.     return *code;
  139. }
  140. inline Exec_update_index::Data&
  141. Exec_update_index::getData() const
  142. {
  143.     Data* data = static_cast<Data*>(m_data);
  144.     return *data;
  145. }
  146. inline void
  147. Exec_update_index::setQuery(Exec_query* query)
  148. {
  149.     ctx_assert(query != 0 && m_query == 0);
  150.     m_query = query;
  151. }
  152. #endif