Code_query_filter.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_filter_hpp
  14. #define ODBC_CODEGEN_Code_query_filter_hpp
  15. #include <common/common.hpp>
  16. #include "Code_query.hpp"
  17. #include "Code_table_list.hpp"
  18. #include "Code_pred.hpp"
  19. /**
  20.  * @class Plan_query_filter
  21.  * @brief Filter node in PlanTree
  22.  */
  23. class Plan_query_filter : public Plan_query {
  24. public:
  25.     Plan_query_filter(Plan_root* root);
  26.     virtual ~Plan_query_filter();
  27.     Plan_base* analyze(Ctx& ctx, Ctl& ctl);
  28.     Exec_base* codegen(Ctx& ctx, Ctl& ctl);
  29.     void print(Ctx& ctx);
  30.     // children
  31.     void setQuery(Plan_query* query);
  32.     void setPred(Plan_pred* pred);
  33. protected:
  34.     friend class Plan_select;
  35.     friend class Plan_update;
  36.     friend class Plan_delete;
  37.     Plan_query* m_query;
  38.     Plan_pred* m_pred;
  39.     Plan_table* m_topTable; // top level table for interpreted progs
  40. };
  41. inline
  42. Plan_query_filter::Plan_query_filter(Plan_root* root) :
  43.     Plan_query(root),
  44.     m_query(0),
  45.     m_pred(0),
  46.     m_topTable(0)
  47. {
  48. }
  49. // children
  50. inline void
  51. Plan_query_filter::setQuery(Plan_query* query)
  52. {
  53.     ctx_assert(query != 0);
  54.     m_query = query;
  55. }
  56. inline void
  57. Plan_query_filter::setPred(Plan_pred* pred)
  58. {
  59.     ctx_assert(pred != 0);
  60.     m_pred = pred;
  61. }
  62. /**
  63.  * @class Exec_query_filter
  64.  * @brief Filter node in ExecTree
  65.  */
  66. class Exec_query_filter : public Exec_query {
  67. public:
  68.     class Code : public Exec_query::Code {
  69.     public:
  70. Code(const SqlSpecs& sqlSpecs);
  71. virtual ~Code();
  72.     protected:
  73. friend class Exec_query_filter;
  74. // sets reference to SqlSpecs from subquery
  75.     };
  76.     class Data : public Exec_query::Data {
  77.     public:
  78. Data(Exec_query_filter* node, const SqlRow& sqlRow);
  79. virtual ~Data();
  80.     protected:
  81. friend class Exec_query_filter;
  82. // sets reference to SqlRow from subquery
  83.     };
  84.     Exec_query_filter(Exec_root* root);
  85.     virtual ~Exec_query_filter();
  86.     void alloc(Ctx& ctx, Ctl& ctl);
  87.     void execImpl(Ctx& ctx, Ctl& ctl);
  88.     bool fetchImpl(Ctx& ctx, Ctl& ctl);
  89.     void close(Ctx& ctx);
  90.     void print(Ctx& ctx);
  91.     // children
  92.     const Code& getCode() const;
  93.     Data& getData() const;
  94.     void setQuery(Exec_query* query);
  95.     void setPred(Exec_pred* pred);
  96. protected:
  97.     Exec_query* m_query;
  98.     Exec_pred* m_pred;
  99. };
  100. inline
  101. Exec_query_filter::Code::Code(const SqlSpecs& sqlSpecs) :
  102.     Exec_query::Code(sqlSpecs)
  103. {
  104. }
  105. inline
  106. Exec_query_filter::Data::Data(Exec_query_filter* node, const SqlRow& sqlRow) :
  107.     Exec_query::Data(node, sqlRow)
  108. {
  109. }
  110. inline
  111. Exec_query_filter::Exec_query_filter(Exec_root* root) :
  112.     Exec_query(root),
  113.     m_query(0),
  114.     m_pred(0)
  115. {
  116. }
  117. // children
  118. inline const Exec_query_filter::Code&
  119. Exec_query_filter::getCode() const
  120. {
  121.     const Code* code = static_cast<const Code*>(m_code);
  122.     return *code;
  123. }
  124. inline Exec_query_filter::Data&
  125. Exec_query_filter::getData() const
  126. {
  127.     Data* data = static_cast<Data*>(m_data);
  128.     return *data;
  129. }
  130. inline void
  131. Exec_query_filter::setQuery(Exec_query* query)
  132. {
  133.     ctx_assert(query != 0);
  134.     m_query = query;
  135. }
  136. inline void
  137. Exec_query_filter::setPred(Exec_pred* pred)
  138. {
  139.     ctx_assert(pred != 0);
  140.     m_pred = pred;
  141. }
  142. #endif