home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / sql / item_timefunc.h < prev    next >
C/C++ Source or Header  |  2000-08-31  |  11KB  |  371 lines

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