Code_query_repeat.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 "Code_query_repeat.hpp"
  14. #include "Code_root.hpp"
  15. // Plan_query_repeat
  16. Plan_query_repeat::~Plan_query_repeat()
  17. {
  18. }
  19. Plan_base*
  20. Plan_query_repeat::analyze(Ctx& ctx, Ctl& ctl)
  21. {
  22.     return this;
  23. }
  24. Exec_base*
  25. Plan_query_repeat::codegen(Ctx& ctx, Ctl& ctl)
  26. {
  27.     Exec_query_repeat* exec = new Exec_query_repeat(ctl.m_execRoot);
  28.     ctl.m_execRoot->saveNode(exec);
  29.     // SqlSpecs is empty
  30.     const SqlSpecs sqlSpecs(0);
  31.     Exec_query_repeat::Code& code = *new Exec_query_repeat::Code(sqlSpecs, m_forever, m_maxcount);
  32.     exec->setCode(code);
  33.     return exec;
  34. }
  35. void
  36. Plan_query_repeat::print(Ctx& ctx)
  37. {
  38.     ctx.print(" [query_repeat");
  39.     if (! m_forever)
  40. ctx.print(" %ld", (long)m_maxcount);
  41.     ctx.print("]");
  42. }
  43. // Exec_query_repeat
  44. Exec_query_repeat::Code::~Code()
  45. {
  46. }
  47. Exec_query_repeat::Data::~Data()
  48. {
  49. }
  50. Exec_query_repeat::~Exec_query_repeat()
  51. {
  52. }
  53. void
  54. Exec_query_repeat::alloc(Ctx& ctx, Ctl& ctl)
  55. {
  56.     const Code& code = getCode();
  57.     // SqlRow is empty
  58.     Data& data = *new Data(this, code.sqlSpecs());
  59.     setData(data);
  60. }
  61. void
  62. Exec_query_repeat::execImpl(Ctx& ctx, Ctl& ctl)
  63. {
  64.     Data& data = getData();
  65.     data.m_count = 0;
  66. }
  67. bool
  68. Exec_query_repeat::fetchImpl(Ctx& ctx, Ctl& ctl)
  69. {
  70.     const Code& code = getCode();
  71.     Data& data = getData();
  72.     // fetch until count is up
  73.     if (code.m_forever || data.m_count < code.m_maxcount) {
  74. data.m_count++;
  75. return true;
  76.     }
  77.     return false;
  78. }
  79. void
  80. Exec_query_repeat::close(Ctx& ctx)
  81. {
  82. }
  83. void
  84. Exec_query_repeat::print(Ctx& ctx)
  85. {
  86.     const Code& code = getCode();
  87.     ctx.print(" [query_repeat");
  88.     if (! code.m_forever)
  89. ctx.print(" %ld", (long)code.m_maxcount);
  90.     ctx.print("]");
  91. }