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

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. /* Function items used by mysql */
  17. #ifdef __GNUC__
  18. #pragma interface /* gcc class implementation */
  19. #endif
  20. class Item_func_period_add :public Item_int_func
  21. {
  22. public:
  23.   Item_func_period_add(Item *a,Item *b) :Item_int_func(a,b) {}
  24.   longlong val_int();
  25.   const char *func_name() const { return "period_add"; }
  26.   void fix_length_and_dec() { max_length=6; }
  27. };
  28. class Item_func_period_diff :public Item_int_func
  29. {
  30. public:
  31.   Item_func_period_diff(Item *a,Item *b) :Item_int_func(a,b) {}
  32.   longlong val_int();
  33.   const char *func_name() const { return "period_diff"; }
  34.   void fix_length_and_dec() { decimals=0; max_length=6; }
  35. };
  36. class Item_func_to_days :public Item_int_func
  37. {
  38. public:
  39.   Item_func_to_days(Item *a) :Item_int_func(a) {}
  40.   longlong val_int();
  41.   const char *func_name() const { return "to_days"; }
  42.   void fix_length_and_dec() { decimals=0; max_length=6; }
  43. };
  44. class Item_func_dayofmonth :public Item_int_func
  45. {
  46. public:
  47.   Item_func_dayofmonth(Item *a) :Item_int_func(a) {}
  48.   longlong val_int();
  49.   const char *func_name() const { return "dayofmonth"; }
  50.   void fix_length_and_dec() { decimals=0; max_length=2; maybe_null=1; }
  51. };
  52. class Item_func_month :public Item_func
  53. {
  54. public:
  55.   Item_func_month(Item *a) :Item_func(a) {}
  56.   longlong val_int();
  57.   double val() { return (double) Item_func_month::val_int(); }
  58.   String *val_str(String *str) { str->set(val_int()); return null_value ? 0 : str;}
  59.   const char *func_name() const { return "month"; }
  60.   enum Item_result result_type () const { return INT_RESULT; }
  61.   void fix_length_and_dec() { decimals=0; max_length=2; maybe_null=1; }
  62. };
  63. class Item_func_monthname :public Item_func_month
  64. {
  65. public:
  66.   Item_func_monthname(Item *a) :Item_func_month(a) {}
  67.   const char *func_name() const { return "monthname"; }
  68.   String *val_str(String *str);
  69.   enum Item_result result_type () const { return STRING_RESULT; }
  70.   void fix_length_and_dec() { decimals=0; max_length=10; maybe_null=1; }
  71. };
  72. class Item_func_dayofyear :public Item_int_func
  73. {
  74. public:
  75.   Item_func_dayofyear(Item *a) :Item_int_func(a) {}
  76.   longlong val_int();
  77.   const char *func_name() const { return "dayofyear"; }
  78.   void fix_length_and_dec() { decimals=0; max_length=3; maybe_null=1; }
  79. };
  80. class Item_func_hour :public Item_int_func
  81. {
  82. public:
  83.   Item_func_hour(Item *a) :Item_int_func(a) {}
  84.   longlong val_int();
  85.   const char *func_name() const { return "hour"; }
  86.   void fix_length_and_dec() { decimals=0; max_length=2; maybe_null=1; }
  87. };
  88. class Item_func_minute :public Item_int_func
  89. {
  90. public:
  91.   Item_func_minute(Item *a) :Item_int_func(a) {}
  92.   longlong val_int();
  93.   const char *func_name() const { return "minute"; }
  94.   void fix_length_and_dec() { decimals=0; max_length=2; maybe_null=1; }
  95. };
  96. class Item_func_quarter :public Item_int_func
  97. {
  98. public:
  99.   Item_func_quarter(Item *a) :Item_int_func(a) {}
  100.   longlong val_int();
  101.   const char *func_name() const { return "quarter"; }
  102.   void fix_length_and_dec() { decimals=0; max_length=1; maybe_null=1; }
  103. };
  104. class Item_func_second :public Item_int_func
  105. {
  106. public:
  107.   Item_func_second(Item *a) :Item_int_func(a) {}
  108.   longlong val_int();
  109.   const char *func_name() const { return "second"; }
  110.   void fix_length_and_dec() { decimals=0; max_length=2; maybe_null=1; }
  111. };
  112. class Item_func_week :public Item_int_func
  113. {
  114. public:
  115.   Item_func_week(Item *a,Item *b) :Item_int_func(a,b) {}
  116.   longlong val_int();
  117.   const char *func_name() const { return "week"; }
  118.   void fix_length_and_dec() { decimals=0; max_length=2; maybe_null=1; }
  119. };
  120. class Item_func_yearweek :public Item_int_func
  121. {
  122. public:
  123.   Item_func_yearweek(Item *a,Item *b) :Item_int_func(a,b) {}
  124.   longlong val_int();
  125.   const char *func_name() const { return "yearweek"; }
  126.   void fix_length_and_dec() { decimals=0; max_length=6; maybe_null=1; }
  127. };
  128. class Item_func_year :public Item_int_func
  129. {
  130. public:
  131.   Item_func_year(Item *a) :Item_int_func(a) {}
  132.   longlong val_int();
  133.   const char *func_name() const { return "year"; }
  134.   void fix_length_and_dec() { decimals=0; max_length=4; maybe_null=1; }
  135. };
  136. class Item_func_weekday :public Item_func
  137. {
  138.   bool odbc_type;
  139. public:
  140.   Item_func_weekday(Item *a,bool type_arg)
  141.     :Item_func(a), odbc_type(type_arg) {}
  142.   longlong val_int();
  143.   double val() { return (double) val_int(); }
  144.   String *val_str(String *str) { str->set(val_int()); return null_value ? 0 : str;}
  145.   const char *func_name() const { return "weekday"; }
  146.   enum Item_result result_type () const { return INT_RESULT; }
  147.   void fix_length_and_dec() { decimals=0; max_length=1; maybe_null=1; }
  148. };
  149. class Item_func_dayname :public Item_func_weekday
  150. {
  151.  public:
  152.   Item_func_dayname(Item *a) :Item_func_weekday(a,0) {}
  153.   const char *func_name() const { return "dayname"; }
  154.   String *val_str(String *str);
  155.   enum Item_result result_type () const { return STRING_RESULT; }
  156.   void fix_length_and_dec() { decimals=0; max_length=9; maybe_null=1; }
  157. };
  158. class Item_func_unix_timestamp :public Item_int_func
  159. {
  160.   String value;
  161. public:
  162.   Item_func_unix_timestamp() :Item_int_func() {}
  163.   Item_func_unix_timestamp(Item *a) :Item_int_func(a) {}
  164.   longlong val_int();
  165.   const char *func_name() const { return "timestamp"; }
  166.   void fix_length_and_dec()
  167.   {
  168.     decimals=0; max_length=10;
  169.   }
  170. };
  171. class Item_func_time_to_sec :public Item_int_func
  172. {
  173. public:
  174.   Item_func_time_to_sec(Item *item) :Item_int_func(item) {}
  175.   longlong val_int();
  176.   const char *func_name() const { return "time_to_sec"; }
  177.   void fix_length_and_dec()
  178.   {
  179.     decimals=0; max_length=10;
  180.   }
  181. };
  182. /* This can't be a Item_str_func, because the val() functions are special */
  183. class Item_date :public Item_func
  184. {
  185. public:
  186.   Item_date() :Item_func() {}
  187.   Item_date(Item *a) :Item_func(a) {}
  188.   enum Item_result result_type () const { return STRING_RESULT; }
  189.   String *val_str(String *str);
  190.   double val() { return (double) val_int(); }
  191.   const char *func_name() const { return "date"; }
  192.   void fix_length_and_dec() { decimals=0; max_length=10; }
  193.   bool save_in_field(Field *to);
  194. };
  195. class Item_func_curtime :public Item_func
  196. {
  197.   longlong value;
  198.   char buff[9];
  199.   uint buff_length;
  200. public:
  201.   Item_func_curtime() :Item_func() {}
  202.   Item_func_curtime(Item *a) :Item_func(a) {}
  203.   enum Item_result result_type () const { return STRING_RESULT; }
  204.   double val() { return (double) value; }
  205.   longlong val_int() { return value; }
  206.   String *val_str(String *str)
  207.   { str_value.set(buff,buff_length); return &str_value; }
  208.   const char *func_name() const { return "curtime"; }
  209.   void fix_length_and_dec();
  210. };
  211. class Item_func_curdate :public Item_date
  212. {
  213.   longlong value;
  214.   TIME ltime;
  215. public:
  216.   Item_func_curdate() :Item_date() {}
  217.   longlong val_int() { return (value) ; }
  218.   const char *func_name() const { return "curdate"; }
  219.   void fix_length_and_dec(); /* Retrieves curtime */
  220.   bool get_date(TIME *res,bool fuzzy_date);
  221. };
  222. class Item_func_now :public Item_func
  223. {
  224.   longlong value;
  225.   char buff[20];
  226.   uint buff_length;
  227.   TIME ltime;
  228. public:
  229.   Item_func_now() :Item_func() {}
  230.   Item_func_now(Item *a) :Item_func(a) {}
  231.   enum Item_result result_type () const { return STRING_RESULT; }
  232.   double val()      { return (double) value; }
  233.   longlong val_int() { return value; }
  234.   bool save_in_field(Field *to);
  235.   String *val_str(String *str)
  236.   { str_value.set(buff,buff_length); return &str_value; }
  237.   const char *func_name() const { return "now"; }
  238.   void fix_length_and_dec();
  239.   bool get_date(TIME *res,bool fuzzy_date);
  240. };
  241. class Item_func_from_days :public Item_date
  242. {
  243. public:
  244.   Item_func_from_days(Item *a) :Item_date(a) {}
  245.   longlong val_int();
  246.   const char *func_name() const { return "from_days"; }
  247. };
  248. class Item_func_date_format :public Item_str_func
  249. {
  250.   int fixed_length;
  251.   const bool date_or_time;
  252. public:
  253.   Item_func_date_format(Item *a,Item *b,bool date_or_time_arg)
  254.     :Item_str_func(a,b),date_or_time(date_or_time_arg) {}
  255.   String *val_str(String *str);
  256.   const char *func_name() const { return "date_format"; }
  257.   void fix_length_and_dec();
  258.   uint format_length(const String *format);
  259. };
  260. class Item_func_from_unixtime :public Item_func
  261. {
  262.  public:
  263.   Item_func_from_unixtime(Item *a) :Item_func(a) {}
  264.   double val() { return (double) Item_func_from_unixtime::val_int(); }
  265.   longlong val_int();
  266.   String *val_str(String *str);
  267.   const char *func_name() const { return "from_unixtime"; }
  268.   void fix_length_and_dec() { decimals=0; max_length=19; }
  269.   enum Item_result result_type () const { return STRING_RESULT; }
  270.   bool get_date(TIME *res,bool fuzzy_date);
  271. };
  272. class Item_func_sec_to_time :public Item_str_func
  273. {
  274. public:
  275.   Item_func_sec_to_time(Item *item) :Item_str_func(item) {}
  276.   double val() { return (double) Item_func_sec_to_time::val_int(); }
  277.   longlong val_int();
  278.   String *val_str(String *);
  279.   void fix_length_and_dec() { maybe_null=1; max_length=13; }
  280.   const char *func_name() const { return "sec_to_time"; }
  281. };
  282. enum interval_type { INTERVAL_YEAR, INTERVAL_MONTH, INTERVAL_DAY,
  283.      INTERVAL_HOUR, INTERVAL_MINUTE, INTERVAL_SECOND,
  284.      INTERVAL_YEAR_MONTH, INTERVAL_DAY_HOUR,
  285.      INTERVAL_DAY_MINUTE, INTERVAL_DAY_SECOND,
  286.      INTERVAL_HOUR_MINUTE, INTERVAL_HOUR_SECOND,
  287.      INTERVAL_MINUTE_SECOND};
  288. class Item_date_add_interval :public Item_str_func
  289. {
  290.   const interval_type int_type;
  291.   String value;
  292.   const bool date_sub_interval;
  293. public:
  294.   Item_date_add_interval(Item *a,Item *b,interval_type type_arg,bool neg_arg)
  295.     :Item_str_func(a,b),int_type(type_arg), date_sub_interval(neg_arg) {}
  296.   String *val_str(String *);
  297.   const char *func_name() const { return "date_add_interval"; }
  298.   void fix_length_and_dec() { maybe_null=1; max_length=19; value.alloc(32);}
  299.   double val() { return (double) val_int(); }
  300.   longlong val_int();
  301.   bool get_date(TIME *res,bool fuzzy_date);
  302. };
  303. class Item_extract :public Item_int_func
  304. {
  305.   const interval_type int_type;
  306.   String value;
  307.   bool date_value;
  308.  public:
  309.   Item_extract(interval_type type_arg, Item *a)
  310.     :Item_int_func(a), int_type(type_arg) {}
  311.   longlong val_int();
  312.   const char *func_name() const { return "extract"; }
  313.   void fix_length_and_dec();
  314. };