Code_update_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_dml_column.hpp"
  17. #include "Code_expr.hpp"
  18. #include "Code_update_index.hpp"
  19. #include "Code_table.hpp"
  20. #include "Code_root.hpp"
  21. // Plan_update_index
  22. Plan_update_index::~Plan_update_index()
  23. {
  24. }
  25. Plan_base*
  26. Plan_update_index::analyze(Ctx& ctx, Ctl& ctl)
  27. {
  28.     ctl.m_dmlRow = m_dmlRow; // row type to convert to
  29.     ctx_assert(m_query != 0);
  30.     m_query->analyze(ctx, ctl);
  31.     if (! ctx.ok())
  32. return 0;
  33.     ctx_assert(m_table != 0);
  34.     m_table->analyze(ctx, ctl);
  35.     if (! ctx.ok())
  36. return 0;
  37.     return this;
  38. }
  39. void
  40. Plan_update_index::describe(Ctx& ctx)
  41. {
  42.     stmtArea().setFunction(ctx, "UPDATE WHERE", SQL_DIAG_UPDATE_WHERE);
  43. }
  44. Exec_base*
  45. Plan_update_index::codegen(Ctx& ctx, Ctl& ctl)
  46. {   
  47.     // generate code for the query
  48.     ctx_assert(m_query != 0);
  49.     Exec_query* execQuery = static_cast<Exec_query*>(m_query->codegen(ctx, ctl));
  50.     if (! ctx.ok())
  51. return 0;
  52.     ctx_assert(execQuery != 0);
  53.     // set up
  54.     ctx_assert(m_table != 0 && m_index != 0);
  55.     const BaseString& tableName = m_table->getName();
  56.     ctx_assert(m_index->m_dictIndex != 0);
  57.     const DictIndex& dictIndex = *m_index->m_dictIndex;
  58.     const BaseString& indexName = dictIndex.getName();
  59.     const unsigned keyCount = m_index->m_keyCount;
  60.     const ColumnVector& columns = m_table->dmlColumns();
  61.     ctx_assert(columns.size() > 0);
  62.     const unsigned attrCount = columns.size() - 1;
  63.     // create the code
  64.     Exec_update_index::Code& code = *new Exec_update_index::Code(keyCount);
  65.     code.m_tableName = strcpy(new char[tableName.length() + 1], tableName.c_str());
  66.     code.m_indexName = strcpy(new char[indexName.length() + 1], indexName.c_str());
  67.     // key attributes
  68.     code.m_keyId = new NdbAttrId[1 + keyCount];
  69.     code.m_keyId[0] = (NdbAttrId)-1;
  70.     for (unsigned k = 1; k <= keyCount; k++) {
  71. const DictColumn* keyColumn = dictIndex.getColumn(k);
  72. const SqlType& sqlType = keyColumn->sqlType();
  73. SqlSpec sqlSpec(sqlType, SqlSpec::Physical);
  74. code.m_keySpecs.setEntry(k, sqlSpec);
  75. code.m_keyId[k] = k - 1; // index column order
  76.     }
  77.     // matching expressions
  78.     ctx_assert(m_index->m_keyFound);
  79.     const ExprVector& keyEq = m_index->m_keyEq;
  80.     ctx_assert(keyEq.size() == 1 + keyCount);
  81.     code.m_keyMatch = new Exec_expr* [1 + keyCount];
  82.     code.m_keyMatch[0] = 0;
  83.     for (unsigned k = 1; k <= keyCount; k++) {
  84. Plan_expr* expr = keyEq[k];
  85. Exec_expr* execExpr = static_cast<Exec_expr*>(expr->codegen(ctx, ctl));
  86. if (! ctx.ok())
  87.     return 0;
  88. ctx_assert(execExpr != 0);
  89. code.m_keyMatch[k] = execExpr;
  90.     }
  91.     // updated attributes
  92.     code.m_attrCount = attrCount;
  93.     code.m_attrId = new NdbAttrId[1 + attrCount];
  94.     code.m_attrId[0] = (NdbAttrId)-1;
  95.     for (unsigned i = 1; i <= attrCount; i++) {
  96. Plan_column* column = columns[i];
  97. ctx_assert(column != 0);
  98. const DictColumn& dictColumn = column->dictColumn();
  99. code.m_attrId[i] = dictColumn.getAttrId();
  100.     }
  101.     // create the exec
  102.     Exec_update_index* exec = new Exec_update_index(ctl.m_execRoot);
  103.     ctl.m_execRoot->saveNode(exec);
  104.     exec->setCode(code);
  105.     exec->setQuery(execQuery);
  106.     return exec;
  107. }    
  108. void
  109. Plan_update_index::print(Ctx& ctx)
  110. {
  111.     ctx.print(" [update_index");
  112.     Plan_base* a[] = { m_table, m_query };
  113.     printList(ctx, a, sizeof(a)/sizeof(a[0]));
  114.     ctx.print("]");
  115. }
  116. // Exec_delete
  117. Exec_update_index::Code::~Code()
  118. {
  119.     delete[] m_tableName;
  120.     delete[] m_keyId;
  121.     delete[] m_keyMatch;
  122.     delete[] m_attrId;
  123. }
  124. Exec_update_index::Data::~Data()
  125. {
  126. }
  127. Exec_update_index::~Exec_update_index()
  128. {
  129. }
  130. void
  131. Exec_update_index::alloc(Ctx& ctx, Ctl& ctl)
  132. {
  133.     const Code& code = getCode();
  134.     // allocate the subquery
  135.     ctx_assert(m_query != 0);
  136.     m_query->alloc(ctx, ctl);
  137.     if (! ctx.ok())
  138.         return;
  139.     // create data
  140.     Data& data = *new Data;
  141.     setData(data);
  142.     // allocate matching expressions
  143.     for (unsigned k = 1; k <= code.m_keyCount; k++) {
  144. Exec_expr* expr = code.m_keyMatch[k];
  145. ctx_assert(expr != 0);
  146. expr->alloc(ctx, ctl);
  147. if (! ctx.ok())
  148.     return;
  149.     }
  150. }
  151. void
  152. Exec_update_index::close(Ctx& ctx)
  153. {
  154.     ctx_assert(m_query != 0);
  155.     m_query->close(ctx);
  156. }
  157. void
  158. Exec_update_index::print(Ctx& ctx)
  159. {
  160.     ctx.print(" [update_index");
  161.     if (m_code != 0) {
  162. const Code& code = getCode();
  163. ctx.print(" keyId=");
  164. for (unsigned i = 1; i <= code.m_keyCount; i++) {
  165.     if (i > 1)
  166. ctx.print(",");
  167.     ctx.print("%u", (unsigned)code.m_keyId[i]);
  168. }
  169. ctx.print(" attrId=");
  170. for (unsigned i = 1; i <= code.m_attrCount; i++) {
  171.     if (i > 1)
  172. ctx.print(",");
  173.     ctx.print("%u", (unsigned)code.m_attrId[i]);
  174. }
  175.     }
  176.     Exec_base* a[] = { m_query };
  177.     printList(ctx, a, 1);
  178.     ctx.print("]");
  179. }