Code_query_sys.cpp
上传用户: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. #include <NdbApi.hpp>
  14. #include <common/StmtArea.hpp>
  15. #include <dictionary/DictTable.hpp>
  16. #include <dictionary/DictColumn.hpp>
  17. #include "Code_query_sys.hpp"
  18. #include "Code_column.hpp"
  19. #include "Code_root.hpp"
  20. // Plan_query_sys
  21. Plan_query_sys::~Plan_query_sys()
  22. {
  23. }
  24. Plan_base*
  25. Plan_query_sys::analyze(Ctx& ctx, Ctl& ctl)
  26. {
  27.     ctx_assert(m_table != 0);
  28.     m_table->analyze(ctx, ctl);
  29.     if (! ctx.ok())
  30. return 0;
  31.     return this;
  32. }
  33. Exec_base*
  34. Plan_query_sys::codegen(Ctx& ctx, Ctl& ctl)
  35. {
  36.     // set up
  37.     ctx_assert(m_table != 0);
  38.     const DictTable& dictTable = m_table->dictTable();
  39.     const ColumnVector& columns = m_table->exprColumns();
  40.     ctx_assert(columns.size() > 0);
  41.     const unsigned attrCount = columns.size() - 1;
  42.     // create the code
  43.     Exec_query_sys::Code& code = *new Exec_query_sys::Code(attrCount);
  44.     code.m_sysId = dictTable.sysId();
  45.     // queried attributes
  46.     code.m_attrId = new NdbAttrId[1 + attrCount];
  47.     code.m_attrId[0] = (NdbAttrId)-1;
  48.     for (unsigned i = 1; i <= attrCount; i++) {
  49. Plan_column* column = columns[i];
  50. ctx_assert(column != 0);
  51. const DictColumn& dictColumn = column->dictColumn();
  52. const SqlType& sqlType = dictColumn.sqlType();
  53. SqlSpec sqlSpec(sqlType, SqlSpec::Physical);
  54. code.m_sqlSpecs.setEntry(i, sqlSpec);
  55. code.m_attrId[i] = dictColumn.getAttrId();
  56.     }
  57.     // create the exec
  58.     Exec_query_sys* exec = new Exec_query_sys(ctl.m_execRoot);
  59.     ctl.m_execRoot->saveNode(exec);
  60.     exec->setCode(code);
  61.     return exec;
  62. }
  63. void
  64. Plan_query_sys::print(Ctx& ctx)
  65. {
  66.     ctx.print(" [query_sys");
  67.     Plan_base* a[] = { m_table };
  68.     printList(ctx, a, 1);
  69.     ctx.print("]");
  70. }
  71. // Exec_query_sys
  72. Exec_query_sys::Code::~Code()
  73. {
  74.     delete[] m_attrId;
  75. }
  76. Exec_query_sys::Data::~Data()
  77. {
  78. }
  79. Exec_query_sys::~Exec_query_sys()
  80. {
  81. }
  82. void
  83. Exec_query_sys::alloc(Ctx& ctx, Ctl& ctl)
  84. {
  85.     const Code& code = getCode();
  86.     // create data
  87.     Data& data = *new Data(this, code.sqlSpecs());
  88.     setData(data);
  89. }
  90. void
  91. Exec_query_sys::close(Ctx& ctx)
  92. {
  93.     Data& data = getData();
  94.     data.m_rowPos = 0;
  95.     data.m_tablePos = 0;
  96.     data.m_attrPos = 0;
  97.     data.m_keyPos = 0;
  98. }
  99. void
  100. Exec_query_sys::print(Ctx& ctx)
  101. {
  102.     ctx.print(" [query_sys");
  103.     if (m_code != 0) {
  104. const Code& code = getCode();
  105. ctx.print(" attrId=");
  106. for (unsigned i = 1; i <= code.m_attrCount; i++) {
  107.     if (i > 1)
  108. ctx.print(",");
  109.     ctx.print("%u", (unsigned)code.m_attrId[i]);
  110. }
  111. ctx.print(" sysId=%u", (unsigned)code.m_sysId);
  112.     }
  113.     ctx.print("]");
  114. }