Code_stmt.hpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

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_stmt_hpp
  14. #define ODBC_CODEGEN_Code_stmt_hpp
  15. #include <common/common.hpp>
  16. #include <common/DataType.hpp>
  17. #include "Code_base.hpp"
  18. class Ctx;
  19. /**
  20.  * @class Plan_stmt
  21.  * @brief Base class for statements in PlanTree
  22.  *
  23.  * A statement is a complete or partial SQL statement which can
  24.  * be optimized into executable statements Exec_stmt.
  25.  */
  26. class Plan_stmt : public Plan_base {
  27. public:
  28.     Plan_stmt(Plan_root* root);
  29.     virtual ~Plan_stmt() = 0;
  30.     virtual void describe(Ctx& ctx);
  31. };
  32. inline
  33. Plan_stmt::Plan_stmt(Plan_root* root) :
  34.     Plan_base(root)
  35. {
  36. }
  37. /**
  38.  * @class Exec_stmt
  39.  * @brief Base class for statements in ExecTree
  40.  */
  41. class Exec_stmt : public Exec_base {
  42. public:
  43.     class Code : public Exec_base::Code {
  44.     public:
  45. virtual ~Code() = 0;
  46.     };
  47.     class Data : public Exec_base::Data {
  48.     public:
  49. virtual ~Data() = 0;
  50.     };
  51.     Exec_stmt(Exec_root* root);
  52.     virtual ~Exec_stmt() = 0;
  53.     virtual void bind(Ctx& ctx);
  54.     virtual void execute(Ctx& ctx, Ctl& ctl) = 0;
  55. protected:
  56.     friend class Exec_root;
  57.     bool m_topLevel;
  58. };
  59. inline
  60. Exec_stmt::Exec_stmt(Exec_root* root) :
  61.     Exec_base(root),
  62.     m_topLevel(false)
  63. {
  64. }
  65. #endif