Code_ddl_row.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_ddl_row_hpp
  14. #define ODBC_CODEGEN_Code_ddl_row_hpp
  15. #include <common/common.hpp>
  16. #include "Code_base.hpp"
  17. #include "Code_ddl_column.hpp"
  18. /**
  19.  * @class Plan_ddl_row
  20.  * @brief Row of columns in create statement
  21.  */
  22. class Plan_ddl_row : public Plan_base {
  23. public:
  24.     Plan_ddl_row(Plan_root* root);
  25.     virtual ~Plan_ddl_row();
  26.     Plan_base* analyze(Ctx& ctx, Ctl& ctl);
  27.     Exec_base* codegen(Ctx& ctx, Ctl& ctl);
  28.     void print(Ctx& ctx);
  29.     // children
  30.     unsigned countColumn() const;
  31.     void addColumn(Plan_ddl_column* column);
  32.     Plan_ddl_column* getColumn(unsigned i) const;
  33. protected:
  34.     DdlColumnVector m_columnList;
  35. };
  36. inline
  37. Plan_ddl_row::Plan_ddl_row(Plan_root* root) :
  38.     Plan_base(root),
  39.     m_columnList(1)
  40. {
  41. }
  42. // children
  43. inline unsigned
  44. Plan_ddl_row::countColumn() const
  45. {
  46.     return m_columnList.size() - 1;
  47. }
  48. inline void
  49. Plan_ddl_row::addColumn(Plan_ddl_column* column)
  50. {
  51.     ctx_assert(column != 0);
  52.     m_columnList.push_back(column);
  53. }
  54. inline Plan_ddl_column*
  55. Plan_ddl_row::getColumn(unsigned i) const
  56. {
  57.     ctx_assert(1 <= i && i <= countColumn() && m_columnList[i] != 0);
  58.     return m_columnList[i];
  59. }
  60. #endif