Code_query_range.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_range_hpp
  14. #define ODBC_CODEGEN_Code_query_range_hpp
  15. #include <common/common.hpp>
  16. #include "Code_query.hpp"
  17. #include "Code_table.hpp"
  18. #include "Code_pred.hpp"
  19. class Ctx;
  20. class StmtArea;
  21. class NdbConnection;
  22. class NdbOperation;
  23. class NdbRecAttr;
  24. /*
  25.  * Range scan via ordered index.  We implement only the case of equality
  26.  * on an initial sequence of index keys.
  27.  */
  28. class Plan_query_range : public Plan_query {
  29. public:
  30.     Plan_query_range(Plan_root* root);
  31.     virtual ~Plan_query_range();
  32.     Plan_base* analyze(Ctx& ctx, Ctl& ctl);
  33.     Exec_base* codegen(Ctx& ctx, Ctl& ctl);
  34.     void print(Ctx& ctx);
  35.     void setTable(Plan_table* table, Plan_table::Index* index);
  36.     void setInterp(Plan_pred* interp);
  37.     void setExclusive();
  38. protected:
  39.     Plan_table* m_table;
  40.     Plan_table::Index* m_index;
  41.     Plan_pred* m_interp;
  42.     bool m_exclusive;
  43. };
  44. inline
  45. Plan_query_range::Plan_query_range(Plan_root* root) :
  46.     Plan_query(root),
  47.     m_table(0),
  48.     m_index(0),
  49.     m_interp(0),
  50.     m_exclusive(false)
  51. {
  52. }
  53. inline void
  54. Plan_query_range::setTable(Plan_table* table, Plan_table::Index* index)
  55. {
  56.     ctx_assert(table != 0 && index != 0 && index == &table->m_indexList[index->m_pos] && index->m_pos != 0);
  57.     m_table = table;
  58.     m_index = index;
  59. }
  60. inline void
  61. Plan_query_range::setInterp(Plan_pred* interp)
  62. {
  63.     ctx_assert(interp != 0);
  64.     m_interp = interp;
  65. }
  66. inline void
  67. Plan_query_range::setExclusive()
  68. {
  69.     m_exclusive = true;
  70. }
  71. class Exec_query_range : public Exec_query {
  72. public:
  73.     class Code : public Exec_query::Code {
  74.     public:
  75. Code(unsigned keyCount, unsigned attrCount);
  76. virtual ~Code();
  77.     protected:
  78. friend class Plan_query_range;
  79. friend class Exec_query_range;
  80. const char* m_tableName;
  81. const char* m_indexName;
  82. unsigned m_keyCount;
  83. SqlSpecs m_keySpecs; // key types
  84. NdbAttrId* m_keyId;
  85. Exec_expr** m_keyMatch; // XXX pointers for now
  86. unsigned m_attrCount;
  87. SqlSpecs m_sqlSpecs;
  88. NdbAttrId* m_attrId;
  89. bool m_exclusive;
  90.     };
  91.     class Data : public Exec_query::Data {
  92.     public:
  93. Data(Exec_query_range* node, const SqlSpecs& sqlSpecs);
  94. virtual ~Data();
  95.     protected:
  96. friend class Exec_query_range;
  97. SqlRow m_sqlRow;
  98. NdbConnection* m_con;
  99. NdbOperation* m_op;
  100. NdbRecAttr** m_recAttr;
  101. unsigned m_parallel;
  102. bool m_done; // if no match possible due to range
  103.     };
  104.     Exec_query_range(Exec_root* root);
  105.     virtual ~Exec_query_range();
  106.     void alloc(Ctx& ctx, Ctl& ctl);
  107.     void execImpl(Ctx& ctx, Ctl& ctl);
  108.     bool fetchImpl(Ctx& ctx, Ctl& ctl);
  109.     void close(Ctx& ctx);
  110.     void print(Ctx& ctx);
  111.     const Code& getCode() const;
  112.     Data& getData() const;
  113.     void setInterp(Exec_pred* interp);
  114. protected:
  115.     Exec_pred* m_interp;
  116. };
  117. inline
  118. Exec_query_range::Code::Code(unsigned keyCount, unsigned attrCount) :
  119.     Exec_query::Code(m_sqlSpecs),
  120.     m_tableName(0),
  121.     m_indexName(0),
  122.     m_keyCount(keyCount),
  123.     m_keySpecs(keyCount),
  124.     m_keyId(0),
  125.     m_attrCount(attrCount),
  126.     m_sqlSpecs(attrCount),
  127.     m_attrId(0),
  128.     m_exclusive(false)
  129. {
  130. }
  131. inline
  132. Exec_query_range::Data::Data(Exec_query_range* node, const SqlSpecs& sqlSpecs) :
  133.     Exec_query::Data(node, m_sqlRow),
  134.     m_sqlRow(sqlSpecs),
  135.     m_con(0),
  136.     m_op(0),
  137.     m_recAttr(0),
  138.     m_parallel(1),
  139.     m_done(false)
  140. {
  141. }
  142. inline
  143. Exec_query_range::Exec_query_range(Exec_root* root) :
  144.     Exec_query(root),
  145.     m_interp(0)
  146. {
  147. }
  148. inline const Exec_query_range::Code&
  149. Exec_query_range::getCode() const
  150. {
  151.     const Code* code = static_cast<const Code*>(m_code);
  152.     return *code;
  153. }
  154. inline Exec_query_range::Data&
  155. Exec_query_range::getData() const
  156. {
  157.     Data* data = static_cast<Data*>(m_data);
  158.     return *data;
  159. }
  160. inline void
  161. Exec_query_range::setInterp(Exec_pred* interp)
  162. {
  163.     ctx_assert(interp != 0);
  164.     m_interp = interp;
  165. }
  166. #endif