Code_query_sys.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_CODEGEN_Code_query_sys_hpp
  14. #define ODBC_CODEGEN_Code_query_sys_hpp
  15. #include <common/common.hpp>
  16. #include <dictionary/DictSys.hpp>
  17. #include "Code_query.hpp"
  18. #include "Code_table.hpp"
  19. class Ctx;
  20. class StmtArea;
  21. class NdbConnection;
  22. class NdbOperation;
  23. class NdbRecAttr;
  24. /**
  25.  * @class Plan_query_sys
  26.  * @brief Full select (no where clause)
  27.  */
  28. class Plan_query_sys : public Plan_query {
  29. public:
  30.     Plan_query_sys(Plan_root* root);
  31.     virtual ~Plan_query_sys();
  32.     Plan_base* analyze(Ctx& ctx, Ctl& ctl);
  33.     Exec_base* codegen(Ctx& ctx, Ctl& ctl);
  34.     void print(Ctx& ctx);
  35.     // children
  36.     void setTable(Plan_table* table);
  37. protected:
  38.     Plan_table* m_table;
  39. };
  40. inline
  41. Plan_query_sys::Plan_query_sys(Plan_root* root) :
  42.     Plan_query(root),
  43.     m_table(0)
  44. {
  45. }
  46. // children
  47. inline void
  48. Plan_query_sys::setTable(Plan_table* table)
  49. {
  50.     ctx_assert(table != 0);
  51.     m_table = table;
  52. }
  53. /**
  54.  * @class Exec_query_sys
  55.  * @brief Full select (no where clause)
  56.  */
  57. class Exec_query_sys : public Exec_query {
  58. public:
  59.     class Code : public Exec_query::Code {
  60.     public:
  61. Code(unsigned attrCount);
  62. virtual ~Code();
  63.     protected:
  64. friend class Plan_query_sys;
  65. friend class Exec_query_sys;
  66. DictSys::Id m_sysId;
  67. unsigned m_attrCount;
  68. SqlSpecs m_sqlSpecs;
  69. NdbAttrId* m_attrId;
  70.     };
  71.     class Data : public Exec_query::Data {
  72.     public:
  73. Data(Exec_query_sys* node, const SqlSpecs& sqlSpecs);
  74. virtual ~Data();
  75.     protected:
  76. friend class Exec_query_sys;
  77. SqlRow m_sqlRow;
  78. // for typeinfo
  79. unsigned m_rowPos;
  80. // for tables and columns
  81. NdbDictionary::Dictionary::List m_objectList;
  82. unsigned m_tablePos;
  83. unsigned m_attrPos;
  84. unsigned m_keyPos;
  85.     };
  86.     Exec_query_sys(Exec_root* root);
  87.     virtual ~Exec_query_sys();
  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_sys::Code::Code(unsigned attrCount) :
  99.     Exec_query::Code(m_sqlSpecs),
  100.     m_sysId(DictSys::Undef),
  101.     m_attrCount(attrCount),
  102.     m_sqlSpecs(attrCount),
  103.     m_attrId(0)
  104. {
  105. }
  106. inline
  107. Exec_query_sys::Data::Data(Exec_query_sys* node, const SqlSpecs& sqlSpecs) :
  108.     Exec_query::Data(node, m_sqlRow),
  109.     m_sqlRow(sqlSpecs)
  110. {
  111. }
  112. inline
  113. Exec_query_sys::Exec_query_sys(Exec_root* root) :
  114.     Exec_query(root)
  115. {
  116. }
  117. // children
  118. inline const Exec_query_sys::Code&
  119. Exec_query_sys::getCode() const
  120. {
  121.     const Code* code = static_cast<const Code*>(m_code);
  122.     return *code;
  123. }
  124. inline Exec_query_sys::Data&
  125. Exec_query_sys::getData() const
  126. {
  127.     Data* data = static_cast<Data*>(m_data);
  128.     return *data;
  129. }
  130. #endif