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