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

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_index.hpp"
  17. #include "Code_column.hpp"
  18. #include "Code_expr.hpp"
  19. #include "Code_root.hpp"
  20. // Plan_query_index
  21. Plan_query_index::~Plan_query_index()
  22. {
  23. }
  24. Plan_base*
  25. Plan_query_index::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_index::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_keyCount;
  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_index::Code& code = *new Exec_query_index::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.     // key attributes
  51.     code.m_keyId = new NdbAttrId[1 + keyCount];
  52.     code.m_keyId[0] = (NdbAttrId)-1;
  53.     for (unsigned k = 1; k <= keyCount; k++) {
  54. const DictColumn* keyColumn = dictIndex.getColumn(k);
  55. const SqlType& sqlType = keyColumn->sqlType();
  56. SqlSpec sqlSpec(sqlType, SqlSpec::Physical);
  57. code.m_keySpecs.setEntry(k, sqlSpec);
  58. code.m_keyId[k] = k - 1; // index column order
  59.     }
  60.     // matching expressions
  61.     ctx_assert(m_index->m_keyFound);
  62.     const ExprVector& keyEq = m_index->m_keyEq;
  63.     ctx_assert(keyEq.size() == 1 + keyCount);
  64.     code.m_keyMatch = new Exec_expr* [1 + keyCount];
  65.     code.m_keyMatch[0] = 0;
  66.     for (unsigned k = 1; k <= keyCount; k++) {
  67. Plan_expr* expr = keyEq[k];
  68. Exec_expr* execExpr = static_cast<Exec_expr*>(expr->codegen(ctx, ctl));
  69. if (! ctx.ok())
  70.     return 0;
  71. ctx_assert(execExpr != 0);
  72. code.m_keyMatch[k] = execExpr;
  73.     }
  74.     // queried attributes
  75.     code.m_attrId = new NdbAttrId[1 + attrCount];
  76.     code.m_attrId[0] = (NdbAttrId)-1;
  77.     for (unsigned i = 1; i <= attrCount; i++) {
  78. Plan_column* column = columns[i];
  79. ctx_assert(column != 0);
  80. const DictColumn& dictColumn = column->dictColumn();
  81. const SqlType& sqlType = dictColumn.sqlType();
  82. SqlSpec sqlSpec(sqlType, SqlSpec::Physical);
  83. code.m_sqlSpecs.setEntry(i, sqlSpec);
  84. code.m_attrId[i] = dictColumn.getAttrId();
  85.     }
  86.     // create the exec
  87.     Exec_query_index* exec = new Exec_query_index(ctl.m_execRoot);
  88.     ctl.m_execRoot->saveNode(exec);
  89.     exec->setCode(code);
  90.     return exec;
  91. }
  92. void
  93. Plan_query_index::print(Ctx& ctx)
  94. {
  95.     ctx.print(" [query_index");
  96.     Plan_base* a[] = { m_table };
  97.     printList(ctx, a, 1);
  98.     ctx.print("]");
  99. }
  100. // Exec_query_index
  101. Exec_query_index::Code::~Code()
  102. {
  103.     delete[] m_tableName;
  104.     delete[] m_keyId;
  105.     delete[] m_keyMatch;
  106.     delete[] m_attrId;
  107. }
  108. Exec_query_index::Data::~Data()
  109. {
  110.     delete[] m_recAttr;
  111. }
  112. Exec_query_index::~Exec_query_index()
  113. {
  114. }
  115. void
  116. Exec_query_index::alloc(Ctx& ctx, Ctl& ctl)
  117. {
  118.     const Code& code = getCode();
  119.     // create data
  120.     Data& data = *new Data(this, code.sqlSpecs());
  121.     setData(data);
  122.     // allocate matching expressions
  123.     for (unsigned k = 1; k <= code.m_keyCount; k++) {
  124. Exec_expr* expr = code.m_keyMatch[k];
  125. ctx_assert(expr != 0);
  126. expr->alloc(ctx, ctl);
  127. if (! ctx.ok())
  128.     return;
  129.     }
  130.     // needed for isNULL
  131.     data.m_recAttr = new NdbRecAttr* [1 + code.m_attrCount];
  132.     for (unsigned i = 0; i <= code.m_attrCount; i++) {
  133. data.m_recAttr[i] = 0;
  134.     }
  135. }
  136. void
  137. Exec_query_index::close(Ctx& ctx)
  138. {
  139.     Data& data = getData();
  140.     if (data.m_con != 0) {
  141. Ndb* const ndb = ndbObject();
  142. ndb->closeTransaction(data.m_con);
  143. data.m_con = 0;
  144. data.m_op = 0;
  145. data.m_done = true;
  146. ctx_log2(("lookup closed at statement close"));
  147.     }
  148. }
  149. void
  150. Exec_query_index::print(Ctx& ctx)
  151. {
  152.     ctx.print(" [query_index");
  153.     if (m_code != 0) {
  154. const Code& code = getCode();
  155. ctx.print(" keyId=");
  156. for (unsigned i = 1; i <= code.m_keyCount; i++) {
  157.     if (i > 1)
  158. ctx.print(",");
  159.     ctx.print("%u", (unsigned)code.m_keyId[i]);
  160. }
  161. ctx.print(" attrId=");
  162. for (unsigned i = 1; i <= code.m_attrCount; i++) {
  163.     if (i > 1)
  164. ctx.print(",");
  165.     ctx.print("%u", (unsigned)code.m_attrId[i]);
  166. }
  167. ctx.print(" table=%s", code.m_tableName);
  168.     }
  169.     ctx.print("]");
  170. }