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