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

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/common.hpp>
  14. #include <common/CodeTree.hpp>
  15. #include <common/StmtArea.hpp>
  16. #include <codegen/Code_root.hpp>
  17. #include "Executor.hpp"
  18. void
  19. Executor::execute(Ctx& ctx)
  20. {
  21.     Exec_base::Ctl ctl(0);
  22.     Exec_root* execRoot = static_cast<Exec_root*>(m_stmtArea.m_execTree);
  23.     ctx_assert(execRoot != 0);
  24.     rebind(ctx);
  25.     if (! ctx.ok())
  26. return;
  27.     execRoot->execute(ctx, ctl);
  28.     if (! ctx.ok())
  29. return;
  30.     ctx_log2(("Executor: execute done"));
  31. }
  32. void
  33. Executor::fetch(Ctx& ctx)
  34. {
  35.     Exec_base::Ctl ctl(0);
  36.     Exec_root* execRoot = static_cast<Exec_root*>(m_stmtArea.m_execTree);
  37.     ctx_assert(execRoot != 0);
  38.     rebind(ctx);
  39.     if (! ctx.ok())
  40. return;
  41.     execRoot->fetch(ctx, ctl);
  42.     if (! ctx.ok())
  43. return;
  44.     ctx_log2(("Executor: fetch done"));
  45. }
  46. void
  47. Executor::rebind(Ctx& ctx)
  48. {
  49.     Exec_root* execRoot = static_cast<Exec_root*>(m_stmtArea.m_execTree);
  50.     ctx_assert(execRoot != 0);
  51.     DescArea& apd = m_stmtArea.descArea(Desc_usage_APD);
  52.     DescArea& ard = m_stmtArea.descArea(Desc_usage_ARD);
  53.     if (! apd.isBound() || ! ard.isBound()) {
  54. ctx_log2(("Executor: rebind required"));
  55. execRoot->bind(ctx);
  56. if (! ctx.ok())
  57.     return;
  58. apd.setBound(true);
  59. ard.setBound(true);
  60.     }
  61. }