Code_delete_scan.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_delete_scan_hpp
  14. #define ODBC_CODEGEN_Code_delete_scan_hpp
  15. #include <common/common.hpp>
  16. #include "Code_dml.hpp"
  17. #include "Code_query.hpp"
  18. /**
  19.  * @class Plan_delete_scan
  20.  * @brief Scan delete
  21.  */
  22. class Plan_delete_scan : public Plan_dml {
  23. public:
  24.     Plan_delete_scan(Plan_root* root);
  25.     virtual ~Plan_delete_scan();
  26.     Plan_base* analyze(Ctx& ctx, Ctl& ctl);
  27.     void describe(Ctx& ctx);
  28.     Exec_base* codegen(Ctx& ctx, Ctl& ctl);
  29.     void print(Ctx& ctx);
  30.     // children
  31.     void setQuery(Plan_query* query);
  32. protected:
  33.     Plan_query* m_query;
  34. };
  35. inline
  36. Plan_delete_scan::Plan_delete_scan(Plan_root* root) :
  37.     Plan_dml(root),
  38.     m_query(0)
  39. {
  40. }
  41. inline void
  42. Plan_delete_scan::setQuery(Plan_query* query)
  43. {
  44.     ctx_assert(query != 0);
  45.     m_query = query;
  46. }
  47. /**
  48.  * @class Exec_delete_scan
  49.  * @brief Scan delete
  50.  */
  51. class Exec_delete_scan : public Exec_dml {
  52. public:
  53.     class Code : public Exec_dml::Code {
  54.     public:
  55. Code();
  56. virtual ~Code();
  57.     protected:
  58. friend class Exec_delete_scan;
  59.     };
  60.     class Data : public Exec_dml::Data {
  61.     public:
  62. Data();
  63. virtual ~Data();
  64.     protected:
  65. friend class Exec_delete_scan;
  66.     };
  67.     Exec_delete_scan(Exec_root* root);
  68.     virtual ~Exec_delete_scan();
  69.     void alloc(Ctx& ctx, Ctl& ctl);
  70.     void execImpl(Ctx& ctx, Ctl& ctl);
  71.     void close(Ctx& ctx);
  72.     void print(Ctx& ctx);
  73.     // children
  74.     const Code& getCode() const;
  75.     Data& getData() const;
  76.     void setQuery(Exec_query* query);
  77. protected:
  78.     Exec_query* m_query;
  79. };
  80. inline
  81. Exec_delete_scan::Code::Code()
  82. {
  83. }
  84. inline
  85. Exec_delete_scan::Data::Data()
  86. {
  87. }
  88. inline
  89. Exec_delete_scan::Exec_delete_scan(Exec_root* root) :
  90.     Exec_dml(root),
  91.     m_query(0)
  92. {
  93. }
  94. // children
  95. inline const Exec_delete_scan::Code&
  96. Exec_delete_scan::getCode() const
  97. {
  98.     const Code* code = static_cast<const Code*>(m_code);
  99.     return *code;
  100. }
  101. inline Exec_delete_scan::Data&
  102. Exec_delete_scan::getData() const
  103. {
  104.     Data* data = static_cast<Data*>(m_data);
  105.     return *data;
  106. }
  107. inline void
  108. Exec_delete_scan::setQuery(Exec_query* query)
  109. {
  110.     ctx_assert(query != 0 && m_query == 0);
  111.     m_query = query;
  112. }
  113. #endif