Code_expr_conv.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_conv_hpp
  14. #define ODBC_CODEGEN_Code_expr_conv_hpp
  15. #include <common/common.hpp>
  16. #include <common/DataField.hpp>
  17. #include "Code_expr.hpp"
  18. /**
  19.  * @class Plan_expr_conv
  20.  * @brief Data type conversion in PlanTree
  21.  *
  22.  * Inserted to convert value to another compatible type.
  23.  */
  24. class Plan_expr_conv : public Plan_expr {
  25. public:
  26.     Plan_expr_conv(Plan_root* root, const SqlType& sqlType);
  27.     virtual ~Plan_expr_conv();
  28.     Plan_base* analyze(Ctx& ctx, Ctl& ctl);
  29.     Exec_base* codegen(Ctx& ctx, Ctl& ctl);
  30.     void print(Ctx& ctx);
  31.     bool isEqual(const Plan_expr* expr) const;
  32.     bool isGroupBy(const Plan_expr_row* row) const;
  33.     // children
  34.     void setExpr(Plan_expr* expr);
  35. protected:
  36.     Plan_expr* m_expr;
  37. };
  38. inline
  39. Plan_expr_conv::Plan_expr_conv(Plan_root* root, const SqlType& sqlType) :
  40.     Plan_expr(root, TypeConv),
  41.     m_expr(0)
  42. {
  43.     ctx_assert(sqlType.type() != SqlType::Undef);
  44.     m_sqlType = sqlType;
  45. }
  46. inline void
  47. Plan_expr_conv::setExpr(Plan_expr* expr)
  48. {
  49.     ctx_assert(expr != 0);
  50.     m_expr = expr;
  51. }
  52. /**
  53.  * @class Exec_expr_conv
  54.  * @brief Data type conversion in ExecTree
  55.  */
  56. class Exec_expr_conv : public Exec_expr {
  57. public:
  58.     class Code : public Exec_expr::Code {
  59.     public:
  60. Code(const SqlSpec& spec);
  61. virtual ~Code();
  62.     protected:
  63. friend class Exec_expr_conv;
  64. const SqlSpec m_sqlSpec;
  65.     };
  66.     class Data : public Exec_expr::Data {
  67.     public:
  68. Data(const SqlField& sqlField);
  69. virtual ~Data();
  70.     protected:
  71. friend class Exec_expr_conv;
  72. SqlField m_sqlField;
  73.     };
  74.     Exec_expr_conv(Exec_root* root);
  75.     virtual ~Exec_expr_conv();
  76.     void alloc(Ctx& ctx, Ctl& ctl);
  77.     void evaluate(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.     void setExpr(Exec_expr* expr);
  84. protected:
  85.     Exec_expr* m_expr;
  86. };
  87. inline
  88. Exec_expr_conv::Code::Code(const SqlSpec& sqlSpec) :
  89.     Exec_expr::Code(m_sqlSpec),
  90.     m_sqlSpec(sqlSpec)
  91. {
  92. }
  93. inline
  94. Exec_expr_conv::Data::Data(const SqlField& sqlField) :
  95.     Exec_expr::Data(m_sqlField),
  96.     m_sqlField(sqlField)
  97. {
  98. }
  99. inline
  100. Exec_expr_conv::Exec_expr_conv(Exec_root* root) :
  101.     Exec_expr(root),
  102.     m_expr(0)
  103. {
  104. }
  105. // children
  106. inline const Exec_expr_conv::Code&
  107. Exec_expr_conv::getCode() const
  108. {
  109.     const Code* code = static_cast<const Code*>(m_code);
  110.     return *code;
  111. }
  112. inline Exec_expr_conv::Data&
  113. Exec_expr_conv::getData() const
  114. {
  115.     Data* data = static_cast<Data*>(m_data);
  116.     return *data;
  117. }
  118. inline void
  119. Exec_expr_conv::setExpr(Exec_expr* expr)
  120. {
  121.     ctx_assert(m_expr == 0 && expr != 0);
  122.     m_expr = expr;
  123. }
  124. #endif