Code_query_repeat.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_repeat_hpp
  14. #define ODBC_CODEGEN_Code_query_repeat_hpp
  15. #include <common/common.hpp>
  16. #include "Code_query.hpp"
  17. #include "Code_expr_row.hpp"
  18. /**
  19.  * @class Plan_query_repeat
  20.  * @brief Constant query node in PlanTree
  21.  */
  22. class Plan_query_repeat : public Plan_query {
  23. public:
  24.     Plan_query_repeat(Plan_root* root);
  25.     Plan_query_repeat(Plan_root* root, CountType maxcount);
  26.     virtual ~Plan_query_repeat();
  27.     Plan_base* analyze(Ctx& ctx, Ctl& ctl);
  28.     Exec_base* codegen(Ctx& ctx, Ctl& ctl);
  29.     void print(Ctx& ctx);
  30. private:
  31.     bool m_forever;
  32.     CountType m_maxcount;
  33. };
  34. inline
  35. Plan_query_repeat::Plan_query_repeat(Plan_root* root) :
  36.     Plan_query(root),
  37.     m_forever(true),
  38.     m_maxcount(0)
  39. {
  40. }
  41. inline
  42. Plan_query_repeat::Plan_query_repeat(Plan_root* root, CountType maxcount) :
  43.     Plan_query(root),
  44.     m_forever(false),
  45.     m_maxcount(maxcount)
  46. {
  47. }
  48. /**
  49.  * @class Exec_query_repeat
  50.  * @brief Constant query node in ExecTree
  51.  */
  52. class Exec_query_repeat : public Exec_query {
  53. public:
  54.     class Code : public Exec_query::Code {
  55.     public:
  56. Code(const SqlSpecs& sqlSpecs, bool forever, CountType maxcount);
  57. virtual ~Code();
  58.     protected:
  59. friend class Exec_query_repeat;
  60. SqlSpecs m_sqlSpecs;
  61. bool m_forever;
  62. CountType m_maxcount;
  63.     };
  64.     class Data : public Exec_query::Data {
  65.     public:
  66. Data(Exec_query_repeat* node, const SqlSpecs& sqlSpecs);
  67. virtual ~Data();
  68.     protected:
  69. friend class Exec_query_repeat;
  70. SqlRow m_sqlRow;
  71. CountType m_count;
  72.     };
  73.     Exec_query_repeat(Exec_root* root);
  74.     virtual ~Exec_query_repeat();
  75.     void alloc(Ctx& ctx, Ctl& ctl);
  76.     void execImpl(Ctx& ctx, Ctl& ctl);
  77.     bool fetchImpl(Ctx& ctx, Ctl& ctl);
  78.     void close(Ctx& ctx);
  79.     void print(Ctx& ctx);
  80.     // children
  81.     const Code& getCode() const;
  82.     Data& getData() const;
  83. };
  84. inline
  85. Exec_query_repeat::Code::Code(const SqlSpecs& sqlSpecs, bool forever, CountType maxcount) :
  86.     Exec_query::Code(m_sqlSpecs),
  87.     m_sqlSpecs(sqlSpecs),
  88.     m_forever(forever),
  89.     m_maxcount(maxcount)
  90. {
  91. }
  92. inline
  93. Exec_query_repeat::Data::Data(Exec_query_repeat* node, const SqlSpecs& sqlSpecs) :
  94.     Exec_query::Data(node, m_sqlRow),
  95.     m_sqlRow(sqlSpecs),
  96.     m_count(0)
  97. {
  98. }
  99. inline
  100. Exec_query_repeat::Exec_query_repeat(Exec_root* root) :
  101.     Exec_query(root)
  102. {
  103. }
  104. // children
  105. inline const Exec_query_repeat::Code&
  106. Exec_query_repeat::getCode() const
  107. {
  108.     const Code* code = static_cast<const Code*>(m_code);
  109.     return *code;
  110. }
  111. inline Exec_query_repeat::Data&
  112. Exec_query_repeat::getData() const
  113. {
  114.     Data* data = static_cast<Data*>(m_data);
  115.     return *data;
  116. }
  117. #endif