procedure.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. /* When using sql procedures */
  17. #ifdef __GNUC__
  18. #pragma interface /* gcc class implementation */
  19. #endif
  20. #define PROC_NO_SORT 1 /* Bits in flags */
  21. #define PROC_GROUP   2 /* proc must have group */
  22. /* Procedure items used by procedures to store values for send_fields */
  23. class Item_proc :public Item
  24. {
  25. public:
  26.   Item_proc(const char *name_par): Item()
  27.   {
  28.      this->name=(char*) name_par;
  29.   }
  30.   enum Type type() const { return Item::PROC_ITEM; }
  31.   virtual void set(double nr)=0;
  32.   virtual void set(const char *str,uint length)=0;
  33.   virtual void set(longlong nr)=0;
  34.   virtual enum_field_types field_type() const=0;
  35.   void set(const char *str) { set(str,(uint) strlen(str)); }
  36.   void make_field(Send_field *tmp_field)
  37.   {
  38.     init_make_field(tmp_field,field_type());
  39.   }
  40. };
  41. class Item_proc_real :public Item_proc
  42. {
  43.   double value;
  44. public:
  45.   Item_proc_real(const char *name_par,uint dec) : Item_proc(name_par)
  46.   {
  47.      decimals=dec; max_length=float_length(dec);
  48.   }
  49.   enum Item_result result_type () const { return REAL_RESULT; }
  50.   enum_field_types field_type() const { return FIELD_TYPE_DOUBLE; }
  51.   void set(double nr) { value=nr; }
  52.   void set(longlong nr) { value=(double) nr; }
  53.   void set(const char *str,uint length __attribute__((unused)))
  54.   { value=atof(str); }
  55.   double val() { return value; }
  56.   longlong val_int() { return (longlong) value; }
  57.   String *val_str(String *s) { s->set(value,decimals); return s; }
  58. };
  59. class Item_proc_int :public Item_proc
  60. {
  61.   longlong value;
  62. public:
  63.   Item_proc_int(const char *name_par) :Item_proc(name_par)
  64.   { max_length=11; }
  65.   enum Item_result result_type () const { return INT_RESULT; }
  66.   enum_field_types field_type() const { return FIELD_TYPE_LONG; }
  67.   void set(double nr) { value=(longlong) nr; }
  68.   void set(longlong nr) { value=nr; }
  69.   void set(const char *str,uint length __attribute__((unused)))
  70.   { value=strtoll(str,NULL,10); }
  71.   double val() { return (double) value; }
  72.   longlong val_int() { return value; }
  73.   String *val_str(String *s) { s->set(value); return s; }
  74. };
  75. class Item_proc_string :public Item_proc
  76. {
  77. public:
  78.   Item_proc_string(const char *name_par,uint length) :Item_proc(name_par)
  79.     { this->max_length=length; }
  80.   enum Item_result result_type () const { return STRING_RESULT; }
  81.   enum_field_types field_type() const { return FIELD_TYPE_STRING; }
  82.   void set(double nr) { str_value.set(nr); }
  83.   void set(longlong nr) { str_value.set(nr); }
  84.   void set(const char *str, uint length) { str_value.copy(str,length); }
  85.   double val() { return atof(str_value.ptr()); }
  86.   longlong val_int() { return strtoll(str_value.ptr(),NULL,10); }
  87.   String *val_str(String*)
  88.   {
  89.     return null_value ? (String*) 0 : (String*) &str_value;
  90.   }
  91. };
  92. /* The procedure class definitions */
  93. class Procedure {
  94. protected:
  95.   List<Item> *fields;
  96.   select_result *result;
  97. public:
  98.   const uint flags;
  99.   ORDER *group,*param_fields;
  100.   Procedure(select_result *res,uint flags_par) :result(res),flags(flags_par),
  101.     group(0),param_fields(0) {}
  102.   virtual ~Procedure() {group=param_fields=0; fields=0; }
  103.   virtual void add(void)=0;
  104.   virtual void end_group(void)=0;
  105.   virtual int send_row(List<Item> &fields)=0;
  106.   virtual bool change_columns(List<Item> &fields)=0;
  107.   virtual void update_refs(void) {}
  108.   virtual bool end_of_records() { return 0; }
  109. };
  110. Procedure *setup_procedure(THD *thd,ORDER *proc_param,select_result *result,
  111.    List<Item> &field_list,int *error);