Code_expr_param.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_expr_param_hpp
  14. #define ODBC_CODEGEN_Code_expr_param_hpp
  15. #include <common/common.hpp>
  16. #include <common/DataField.hpp>
  17. #include "Code_expr.hpp"
  18. /**
  19.  * @class Plan_expr_param
  20.  * @brief Constant expression value in PlanTree
  21.  */
  22. class Plan_expr_param : public Plan_expr {
  23. public:
  24.     Plan_expr_param(Plan_root* root, unsigned paramNumber);
  25.     virtual ~Plan_expr_param();
  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.     bool isEqual(const Plan_expr* expr) const;
  31.     bool isGroupBy(const Plan_expr_row* row) const;
  32. protected:
  33.     const unsigned m_paramNumber;
  34. };
  35. inline
  36. Plan_expr_param::Plan_expr_param(Plan_root* root, unsigned paramNumber) :
  37.     Plan_expr(root, TypeParam),
  38.     m_paramNumber(paramNumber)
  39. {
  40. }
  41. /**
  42.  * @class Exec_expr_param
  43.  * @brief Constant expression value in ExecTree
  44.  */
  45. class Exec_expr_param : public Exec_expr {
  46. public:
  47.     class Code : public Exec_expr::Code {
  48.     public:
  49. Code(const SqlSpec& sqlSpec, unsigned paramNumber);
  50. virtual ~Code();
  51.     protected:
  52. friend class Plan_expr_param;
  53. friend class Exec_expr_param;
  54. const SqlSpec m_sqlSpec;
  55. const unsigned m_paramNumber;
  56.     };
  57.     class Data : public Exec_expr::Data {
  58.     public:
  59. Data(SqlField& sqlField);
  60. virtual ~Data();
  61. ExtField* extField() const;
  62.     protected:
  63. friend class Exec_expr_param;
  64. friend class Exec_root;
  65. SqlField m_sqlField;
  66. ExtField* m_extField; // input binding
  67. bool m_atExec; // data at exec
  68. int m_extPos; // position for SQLPutData (-1 before first call)
  69.     };
  70.     Exec_expr_param(Exec_root* root);
  71.     virtual ~Exec_expr_param();
  72.     void alloc(Ctx& ctx, Ctl& ctl);
  73.     void bind(Ctx& ctx);
  74.     void evaluate(Ctx& ctx, Ctl& ctl);
  75.     void close(Ctx& ctx);
  76.     void print(Ctx& ctx);
  77.     // children
  78.     const Code& getCode() const;
  79.     Data& getData() const;
  80. };
  81. inline
  82. Exec_expr_param::Code::Code(const SqlSpec& sqlSpec, unsigned paramNumber) :
  83.     Exec_expr::Code(m_sqlSpec),
  84.     m_sqlSpec(sqlSpec),
  85.     m_paramNumber(paramNumber)
  86. {
  87. }
  88. inline
  89. Exec_expr_param::Data::Data(SqlField& sqlField) :
  90.     Exec_expr::Data(m_sqlField),
  91.     m_sqlField(sqlField),
  92.     m_extField(0),
  93.     m_atExec(false),
  94.     m_extPos(-1)
  95. {
  96. }
  97. inline ExtField*
  98. Exec_expr_param::Data::extField() const
  99. {
  100.     return m_extField;
  101. }
  102. inline
  103. Exec_expr_param::Exec_expr_param(Exec_root* root) :
  104.     Exec_expr(root)
  105. {
  106. }
  107. // children
  108. inline const Exec_expr_param::Code&
  109. Exec_expr_param::getCode() const
  110. {
  111.     const Code* code = static_cast<const Code*>(m_code);
  112.     return *code;
  113. }
  114. inline Exec_expr_param::Data&
  115. Exec_expr_param::getData() const
  116. {
  117.     Data* data = static_cast<Data*>(m_data);
  118.     return *data;
  119. }
  120. #endif