Code_query_range.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:6k
源码类别:

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 <common/StmtArea.hpp>
  14. #include <dictionary/DictTable.hpp>
  15. #include <dictionary/DictColumn.hpp>
  16. #include "Code_query_range.hpp"
  17. #include "Code_column.hpp"
  18. #include "Code_expr.hpp"
  19. #include "Code_root.hpp"
  20. // Plan_query_range
  21. Plan_query_range::~Plan_query_range()
  22. {
  23. }
  24. Plan_base*
  25. Plan_query_range::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_range::codegen(Ctx& ctx, Ctl& ctl)
  35. {
  36.     // set up
  37.     ctx_assert(m_table != 0 && m_index != 0);
  38.     const BaseString& tableName = m_table->getName();
  39.     ctx_assert(m_index->m_dictIndex != 0);
  40.     const DictIndex& dictIndex = *m_index->m_dictIndex;
  41.     const BaseString& indexName = dictIndex.getName();
  42.     const unsigned keyCount = m_index->m_keyCountUsed;
  43.     const ColumnVector& columns = m_table->exprColumns();
  44.     ctx_assert(columns.size() > 0);
  45.     const unsigned attrCount = columns.size() - 1;
  46.     // create the code
  47.     Exec_query_range::Code& code = *new Exec_query_range::Code(keyCount, attrCount);
  48.     code.m_tableName = strcpy(new char[tableName.length() + 1], tableName.c_str());
  49.     code.m_indexName = strcpy(new char[indexName.length() + 1], indexName.c_str());
  50.     code.m_exclusive = m_exclusive;
  51.     // key attributes
  52.     code.m_keyId = new NdbAttrId[1 + keyCount];
  53.     code.m_keyId[0] = (NdbAttrId)-1;
  54.     for (unsigned k = 1; k <= keyCount; k++) {
  55. const DictColumn* keyColumn = dictIndex.getColumn(k);
  56. const SqlType& sqlType = keyColumn->sqlType();
  57. SqlSpec sqlSpec(sqlType, SqlSpec::Physical);
  58. code.m_keySpecs.setEntry(k, sqlSpec);
  59. code.m_keyId[k] = k - 1; // index column order
  60.     }
  61.     // matching expressions
  62.     ctx_assert(m_index->m_keyFound);
  63.     const ExprVector& keyEq = m_index->m_keyEq;
  64.     // check size matches
  65.     ctx_assert(keyEq.size() == 1 + keyCount);
  66.     code.m_keyMatch = new Exec_expr* [1 + keyCount];
  67.     code.m_keyMatch[0] = 0;
  68.     for (unsigned k = 1; k <= keyCount; k++) {
  69. Plan_expr* expr = keyEq[k];
  70. Exec_expr* execExpr = static_cast<Exec_expr*>(expr->codegen(ctx, ctl));
  71. if (! ctx.ok())
  72.     return 0;
  73. ctx_assert(execExpr != 0);
  74. code.m_keyMatch[k] = execExpr;
  75.     }
  76.     // queried attributes
  77.     code.m_attrId = new NdbAttrId[1 + attrCount];
  78.     code.m_attrId[0] = (NdbAttrId)-1;
  79.     for (unsigned i = 1; i <= attrCount; i++) {
  80. Plan_column* column = columns[i];
  81. ctx_assert(column != 0);
  82. const DictColumn& dictColumn = column->dictColumn();
  83. const SqlType& sqlType = dictColumn.sqlType();
  84. SqlSpec sqlSpec(sqlType, SqlSpec::Physical);
  85. code.m_sqlSpecs.setEntry(i, sqlSpec);
  86. code.m_attrId[i] = dictColumn.getAttrId();
  87.     }
  88.     // create the exec
  89.     Exec_query_range* exec = new Exec_query_range(ctl.m_execRoot);
  90.     ctl.m_execRoot->saveNode(exec);
  91.     exec->setCode(code);
  92.     // interpreter
  93.     ctl.m_execQuery = exec;
  94.     Exec_pred* execInterp = 0;
  95.     ctl.m_topTable = m_table;
  96.     if (m_interp != 0) {
  97. execInterp = static_cast<Exec_pred*>(m_interp->codegen(ctx, ctl));
  98. if (! ctx.ok())
  99.     return 0;
  100. ctx_assert(execInterp != 0);
  101.     }
  102.     ctl.m_topTable = 0;
  103.     if (m_interp != 0)
  104. exec->setInterp(execInterp);
  105.     return exec;
  106. }
  107. void
  108. Plan_query_range::print(Ctx& ctx)
  109. {
  110.     ctx.print(" [query_range");
  111.     Plan_base* a[] = { m_table };
  112.     printList(ctx, a, 1);
  113.     ctx.print("]");
  114. }
  115. // Exec_query_range
  116. Exec_query_range::Code::~Code()
  117. {
  118.     delete[] m_tableName;
  119.     delete[] m_keyId;
  120.     delete[] m_keyMatch;
  121.     delete[] m_attrId;
  122. }
  123. Exec_query_range::Data::~Data()
  124. {
  125.     delete[] m_recAttr;
  126. }
  127. Exec_query_range::~Exec_query_range()
  128. {
  129. }
  130. void
  131. Exec_query_range::alloc(Ctx& ctx, Ctl& ctl)
  132. {
  133.     const Code& code = getCode();
  134.     // create data
  135.     Data& data = *new Data(this, code.sqlSpecs());
  136.     setData(data);
  137.     // allocate matching expressions
  138.     for (unsigned k = 1; k <= code.m_keyCount; k++) {
  139. Exec_expr* expr = code.m_keyMatch[k];
  140. ctx_assert(expr != 0);
  141. expr->alloc(ctx, ctl);
  142. if (! ctx.ok())
  143.     return;
  144.     }
  145.     // needed for isNULL
  146.     data.m_recAttr = new NdbRecAttr* [1 + code.m_attrCount];
  147.     for (unsigned i = 0; i <= code.m_attrCount; i++) {
  148. data.m_recAttr[i] = 0;
  149.     }
  150.     // parallel
  151.     data.m_parallel = code.m_exclusive ? 1 : 240; // best supported
  152.     // interpreter
  153.     if (m_interp != 0) {
  154. //m_interp->alloc(ctx, ctl); XXX
  155. if (! ctx.ok())
  156.     return;
  157.     }
  158. }
  159. void
  160. Exec_query_range::close(Ctx& ctx)
  161. {
  162.     Data& data = getData();
  163.     if (data.m_con != 0) {
  164. Ndb* const ndb = ndbObject();
  165. ndb->closeTransaction(data.m_con);
  166. data.m_con = 0;
  167. data.m_op = 0;
  168. data.m_done = true;
  169. ctx_log2(("lookup closed at statement close"));
  170.     }
  171.     //    if (m_interp != 0)
  172.     // m_interp->close(ctx);
  173. }
  174. void
  175. Exec_query_range::print(Ctx& ctx)
  176. {
  177.     ctx.print(" [query_range");
  178.     if (m_code != 0) {
  179. const Code& code = getCode();
  180. ctx.print(" keyId=");
  181. for (unsigned i = 1; i <= code.m_keyCount; i++) {
  182.     if (i > 1)
  183. ctx.print(",");
  184.     ctx.print("%u", (unsigned)code.m_keyId[i]);
  185. }
  186. ctx.print(" attrId=");
  187. for (unsigned i = 1; i <= code.m_attrCount; i++) {
  188.     if (i > 1)
  189. ctx.print(",");
  190.     ctx.print("%u", (unsigned)code.m_attrId[i]);
  191. }
  192. ctx.print(" table=%s", code.m_tableName);
  193.     }
  194.     ctx.print("]");
  195. }