Code_create_row.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_create_row_hpp
  14. #define ODBC_CODEGEN_Code_create_row_hpp
  15. #include <vector>
  16. #include <common/common.hpp>
  17. #include "Code_base.hpp"
  18. #include "Code_ddl_column.hpp"
  19. #include "Code_ddl_constr.hpp"
  20. /**
  21.  * @class Plan_create_row
  22.  * @brief Row of columns and constraints in create statement
  23.  */
  24. class Plan_create_row : public Plan_base {
  25. public:
  26.     Plan_create_row(Plan_root* root);
  27.     virtual ~Plan_create_row();
  28.     Plan_base* analyze(Ctx& ctx, Ctl& ctl);
  29.     Exec_base* codegen(Ctx& ctx, Ctl& ctl);
  30.     void print(Ctx& ctx);
  31.     // children
  32.     unsigned countColumn() const;
  33.     void addColumn(Plan_ddl_column* column);
  34.     Plan_ddl_column* getColumn(unsigned i) const;
  35.     unsigned countConstr() const;
  36.     void addConstr(Plan_ddl_constr* constr);
  37.     Plan_ddl_constr* getConstr(unsigned i) const;
  38. protected:
  39.     DdlColumnVector m_columnList;
  40.     DdlConstrVector m_constrList;
  41. };
  42. inline
  43. Plan_create_row::Plan_create_row(Plan_root* root) :
  44.     Plan_base(root),
  45.     m_columnList(1),
  46.     m_constrList(1)
  47. {
  48. }
  49. // children
  50. inline unsigned
  51. Plan_create_row::countColumn() const
  52. {
  53.     return m_columnList.size() - 1;
  54. }
  55. inline void
  56. Plan_create_row::addColumn(Plan_ddl_column* column)
  57. {
  58.     ctx_assert(column != 0);
  59.     m_columnList.push_back(column);
  60. }
  61. inline Plan_ddl_column*
  62. Plan_create_row::getColumn(unsigned i) const
  63. {
  64.     ctx_assert(1 <= i && i <= m_columnList.size() && m_columnList[i] != 0);
  65.     return m_columnList[i];
  66. }
  67. inline unsigned
  68. Plan_create_row::countConstr() const
  69. {
  70.     return m_constrList.size() - 1;
  71. }
  72. inline void
  73. Plan_create_row::addConstr(Plan_ddl_constr* constr)
  74. {
  75.     ctx_assert(constr != 0);
  76.     m_constrList.push_back(constr);
  77. }
  78. inline Plan_ddl_constr*
  79. Plan_create_row::getConstr(unsigned i) const
  80. {
  81.     ctx_assert(1 <= i && i <= m_constrList.size() && m_constrList[i] != 0);
  82.     return m_constrList[i];
  83. }
  84. #endif