Code_delete_lookup.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_lookup_hpp
  14. #define ODBC_CODEGEN_Code_delete_lookup_hpp
  15. #include <common/common.hpp>
  16. #include "Code_dml.hpp"
  17. #include "Code_query.hpp"
  18. #include "Code_table.hpp"
  19. /**
  20.  * @class Plan_delete_lookup
  21.  * @brief Delete by primary key
  22.  */
  23. class Plan_delete_lookup : public Plan_dml {
  24. public:
  25.     Plan_delete_lookup(Plan_root* root);
  26.     virtual ~Plan_delete_lookup();
  27.     Plan_base* analyze(Ctx& ctx, Ctl& ctl);
  28.     void describe(Ctx& ctx);
  29.     Exec_base* codegen(Ctx& ctx, Ctl& ctl);
  30.     void print(Ctx& ctx);
  31.     // children
  32.     void setQuery(Plan_query* query);
  33.     void setTable(Plan_table* table);
  34. protected:
  35.     Plan_query* m_query;
  36.     Plan_table* m_table;
  37. };
  38. inline
  39. Plan_delete_lookup::Plan_delete_lookup(Plan_root* root) :
  40.     Plan_dml(root),
  41.     m_query(0),
  42.     m_table(0)
  43. {
  44. }
  45. inline void
  46. Plan_delete_lookup::setQuery(Plan_query* query)
  47. {
  48.     ctx_assert(query != 0);
  49.     m_query = query;
  50. }
  51. inline void
  52. Plan_delete_lookup::setTable(Plan_table* table)
  53. {
  54.     ctx_assert(table != 0);
  55.     m_table = table;
  56. }
  57. /**
  58.  * @class Exec_delete_lookup
  59.  * @brief Delete by primary key
  60.  */
  61. class Exec_delete_lookup : public Exec_dml {
  62. public:
  63.     class Code : public Exec_dml::Code {
  64.     public:
  65. Code(unsigned keyCount);
  66. virtual ~Code();
  67.     protected:
  68. friend class Plan_delete_lookup;
  69. friend class Exec_delete_lookup;
  70. char* m_tableName;
  71. unsigned m_keyCount;
  72. SqlSpecs m_keySpecs; // key types
  73. NdbAttrId* m_keyId;
  74. Exec_expr** m_keyMatch; // XXX pointers for now
  75.     };
  76.     class Data : public Exec_dml::Data {
  77.     public:
  78. Data();
  79. virtual ~Data();
  80.     protected:
  81. friend class Exec_delete_lookup;
  82.     };
  83.     Exec_delete_lookup(Exec_root* root);
  84.     virtual ~Exec_delete_lookup();
  85.     void alloc(Ctx& ctx, Ctl& ctl);
  86.     void execImpl(Ctx& ctx, Ctl& ctl);
  87.     void close(Ctx& ctx);
  88.     void print(Ctx& ctx);
  89.     // children
  90.     const Code& getCode() const;
  91.     Data& getData() const;
  92.     void setQuery(Exec_query* query);
  93. protected:
  94.     Exec_query* m_query;
  95. };
  96. inline
  97. Exec_delete_lookup::Code::Code(unsigned keyCount) :
  98.     m_tableName(0),
  99.     m_keyCount(keyCount),
  100.     m_keySpecs(keyCount),
  101.     m_keyId(0),
  102.     m_keyMatch(0)
  103. {
  104. }
  105. inline
  106. Exec_delete_lookup::Data::Data()
  107. {
  108. }
  109. inline
  110. Exec_delete_lookup::Exec_delete_lookup(Exec_root* root) :
  111.     Exec_dml(root),
  112.     m_query(0)
  113. {
  114. }
  115. // children
  116. inline const Exec_delete_lookup::Code&
  117. Exec_delete_lookup::getCode() const
  118. {
  119.     const Code* code = static_cast<const Code*>(m_code);
  120.     return *code;
  121. }
  122. inline Exec_delete_lookup::Data&
  123. Exec_delete_lookup::getData() const
  124. {
  125.     Data* data = static_cast<Data*>(m_data);
  126.     return *data;
  127. }
  128. inline void
  129. Exec_delete_lookup::setQuery(Exec_query* query)
  130. {
  131.     ctx_assert(query != 0 && m_query == 0);
  132.     m_query = query;
  133. }
  134. #endif