Code_query_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_query_index_hpp
  14. #define ODBC_CODEGEN_Code_query_index_hpp
  15. #include <common/common.hpp>
  16. #include "Code_query.hpp"
  17. #include "Code_table.hpp"
  18. class Ctx;
  19. class StmtArea;
  20. class NdbConnection;
  21. class NdbOperation;
  22. class NdbRecAttr;
  23. /**
  24.  * @class Plan_query_index
  25.  * @brief Full select (no where clause)
  26.  */
  27. class Plan_query_index : public Plan_query {
  28. public:
  29.     Plan_query_index(Plan_root* root);
  30.     virtual ~Plan_query_index();
  31.     Plan_base* analyze(Ctx& ctx, Ctl& ctl);
  32.     Exec_base* codegen(Ctx& ctx, Ctl& ctl);
  33.     void print(Ctx& ctx);
  34.     // children
  35.     void setTable(Plan_table* table, Plan_table::Index* index);
  36. protected:
  37.     Plan_table* m_table;
  38.     Plan_table::Index* m_index;
  39. };
  40. inline
  41. Plan_query_index::Plan_query_index(Plan_root* root) :
  42.     Plan_query(root),
  43.     m_table(0),
  44.     m_index(0)
  45. {
  46. }
  47. // children
  48. inline void
  49. Plan_query_index::setTable(Plan_table* table, Plan_table::Index* index)
  50. {
  51.     ctx_assert(table != 0 && index != 0 && index == &table->m_indexList[index->m_pos] && index->m_pos != 0);
  52.     m_table = table;
  53.     m_index = index;
  54. }
  55. /**
  56.  * @class Exec_query_index
  57.  * @brief Full select (no where clause)
  58.  */
  59. class Exec_query_index : public Exec_query {
  60. public:
  61.     class Code : public Exec_query::Code {
  62.     public:
  63. Code(unsigned keyCount, unsigned attrCount);
  64. virtual ~Code();
  65.     protected:
  66. friend class Plan_query_index;
  67. friend class Exec_query_index;
  68. const char* m_tableName;
  69. const char* m_indexName;
  70. unsigned m_keyCount;
  71. SqlSpecs m_keySpecs; // key types
  72. NdbAttrId* m_keyId;
  73. Exec_expr** m_keyMatch; // XXX pointers for now
  74. unsigned m_attrCount;
  75. SqlSpecs m_sqlSpecs;
  76. NdbAttrId* m_attrId;
  77.     };
  78.     class Data : public Exec_query::Data {
  79.     public:
  80. Data(Exec_query_index* node, const SqlSpecs& sqlSpecs);
  81. virtual ~Data();
  82.     protected:
  83. friend class Exec_query_index;
  84. SqlRow m_sqlRow;
  85. NdbConnection* m_con;
  86. NdbOperation* m_op;
  87. NdbRecAttr** m_recAttr;
  88. bool m_done; // returns one row
  89.     };
  90.     Exec_query_index(Exec_root* root);
  91.     virtual ~Exec_query_index();
  92.     void alloc(Ctx& ctx, Ctl& ctl);
  93.     void execImpl(Ctx& ctx, Ctl& ctl);
  94.     bool fetchImpl(Ctx& ctx, Ctl& ctl);
  95.     void close(Ctx& ctx);
  96.     void print(Ctx& ctx);
  97.     // children
  98.     const Code& getCode() const;
  99.     Data& getData() const;
  100. };
  101. inline
  102. Exec_query_index::Code::Code(unsigned keyCount, unsigned attrCount) :
  103.     Exec_query::Code(m_sqlSpecs),
  104.     m_tableName(0),
  105.     m_indexName(0),
  106.     m_keyCount(keyCount),
  107.     m_keySpecs(keyCount),
  108.     m_keyId(0),
  109.     m_attrCount(attrCount),
  110.     m_sqlSpecs(attrCount),
  111.     m_attrId(0)
  112. {
  113. }
  114. inline
  115. Exec_query_index::Data::Data(Exec_query_index* node, const SqlSpecs& sqlSpecs) :
  116.     Exec_query::Data(node, m_sqlRow),
  117.     m_sqlRow(sqlSpecs),
  118.     m_con(0),
  119.     m_op(0),
  120.     m_recAttr(0),
  121.     m_done(false)
  122. {
  123. }
  124. inline
  125. Exec_query_index::Exec_query_index(Exec_root* root) :
  126.     Exec_query(root)
  127. {
  128. }
  129. // children
  130. inline const Exec_query_index::Code&
  131. Exec_query_index::getCode() const
  132. {
  133.     const Code* code = static_cast<const Code*>(m_code);
  134.     return *code;
  135. }
  136. inline Exec_query_index::Data&
  137. Exec_query_index::getData() const
  138. {
  139.     Data* data = static_cast<Data*>(m_data);
  140.     return *data;
  141. }
  142. #endif