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