~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/func.h

Moved the last of the libdrizzleclient calls into Protocol.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2008 Sun Microsystems
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; version 2 of the License.
 
9
 *
 
10
 *  This program is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *  GNU General Public License for more details.
 
14
 *
 
15
 *  You should have received a copy of the GNU General Public License
 
16
 *  along with this program; if not, write to the Free Software
 
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
 */
 
19
 
 
20
#ifndef DRIZZLED_FUNCTION_FUNC_H
 
21
#define DRIZZLED_FUNCTION_FUNC_H
 
22
 
 
23
/// TODO: Rename this file - func.h is stupid.
 
24
 
 
25
#include <drizzled/item.h>
 
26
#include <drizzled/sql_list.h>
 
27
#include <drizzled/item/bin_string.h>
 
28
 
 
29
 
 
30
class Item_func :public Item_result_field
 
31
{
 
32
protected:
 
33
  Item **args, *tmp_arg[2];
 
34
  /*
 
35
    Allowed numbers of columns in result (usually 1, which means scalar value)
 
36
    0 means get this number from first argument
 
37
  */
 
38
  uint32_t allowed_arg_cols;
 
39
public:
 
40
 
 
41
  using Item::split_sum_func;
 
42
 
 
43
  uint32_t arg_count;
 
44
  table_map used_tables_cache, not_null_tables_cache;
 
45
  bool const_item_cache;
 
46
  enum Functype { UNKNOWN_FUNC,EQ_FUNC,EQUAL_FUNC,NE_FUNC,LT_FUNC,LE_FUNC,
 
47
                  GE_FUNC,GT_FUNC,
 
48
                  LIKE_FUNC,ISNULL_FUNC,ISNOTNULL_FUNC,
 
49
                  COND_AND_FUNC, COND_OR_FUNC, COND_XOR_FUNC,
 
50
                  BETWEEN, IN_FUNC, MULT_EQUAL_FUNC,
 
51
                  INTERVAL_FUNC, ISNOTNULLTEST_FUNC,
 
52
                  NOT_FUNC, NOT_ALL_FUNC,
 
53
                  NOW_FUNC, TRIG_COND_FUNC,
 
54
                  SUSERVAR_FUNC, GUSERVAR_FUNC, COLLATE_FUNC,
 
55
                  EXTRACT_FUNC, CHAR_TYPECAST_FUNC, FUNC_SP,
 
56
                  NEG_FUNC };
 
57
  enum optimize_type { OPTIMIZE_NONE,OPTIMIZE_KEY,OPTIMIZE_OP, OPTIMIZE_NULL,
 
58
                       OPTIMIZE_EQUAL };
 
59
  enum Type type() const { return FUNC_ITEM; }
 
60
  virtual enum Functype functype() const   { return UNKNOWN_FUNC; }
 
61
  Item_func(void):
 
62
    allowed_arg_cols(1), arg_count(0)
 
63
  {
 
64
    with_sum_func= 0;
 
65
  }
 
66
  Item_func(Item *a):
 
67
    allowed_arg_cols(1), arg_count(1)
 
68
  {
 
69
    args= tmp_arg;
 
70
    args[0]= a;
 
71
    with_sum_func= a->with_sum_func;
 
72
  }
 
73
  Item_func(Item *a,Item *b):
 
74
    allowed_arg_cols(1), arg_count(2)
 
75
  {
 
76
    args= tmp_arg;
 
77
    args[0]= a; args[1]= b;
 
78
    with_sum_func= a->with_sum_func || b->with_sum_func;
 
79
  }
 
80
  Item_func(Item *a,Item *b,Item *c):
 
81
    allowed_arg_cols(1)
 
82
  {
 
83
    arg_count= 0;
 
84
    if ((args= (Item**) sql_alloc(sizeof(Item*)*3)))
 
85
    {
 
86
      arg_count= 3;
 
87
      args[0]= a; args[1]= b; args[2]= c;
 
88
      with_sum_func= a->with_sum_func || b->with_sum_func || c->with_sum_func;
 
89
    }
 
90
  }
 
91
  Item_func(Item *a,Item *b,Item *c,Item *d):
 
92
    allowed_arg_cols(1)
 
93
  {
 
94
    arg_count= 0;
 
95
    if ((args= (Item**) sql_alloc(sizeof(Item*)*4)))
 
96
    {
 
97
      arg_count= 4;
 
98
      args[0]= a; args[1]= b; args[2]= c; args[3]= d;
 
99
      with_sum_func= a->with_sum_func || b->with_sum_func ||
 
100
        c->with_sum_func || d->with_sum_func;
 
101
    }
 
102
  }
 
103
  Item_func(Item *a,Item *b,Item *c,Item *d,Item* e):
 
104
    allowed_arg_cols(1)
 
105
  {
 
106
    arg_count= 5;
 
107
    if ((args= (Item**) sql_alloc(sizeof(Item*)*5)))
 
108
    {
 
109
      args[0]= a; args[1]= b; args[2]= c; args[3]= d; args[4]= e;
 
110
      with_sum_func= a->with_sum_func || b->with_sum_func ||
 
111
        c->with_sum_func || d->with_sum_func || e->with_sum_func ;
 
112
    }
 
113
  }
 
114
  Item_func(List<Item> &list);
 
115
  // Constructor used for Item_cond_and/or (see Item comment)
 
116
  Item_func(Session *session, Item_func *item);
 
117
  bool fix_fields(Session *, Item **ref);
 
118
  void fix_after_pullout(Select_Lex *new_parent, Item **ref);
 
119
  table_map used_tables() const;
 
120
  table_map not_null_tables() const;
 
121
  void update_used_tables();
 
122
  bool eq(const Item *item, bool binary_cmp) const;
 
123
  virtual optimize_type select_optimize() const { return OPTIMIZE_NONE; }
 
124
  virtual bool have_rev_func() const { return 0; }
 
125
  virtual Item *key_item() const { return args[0]; }
 
126
  /*
 
127
    This method is used for debug purposes to print the name of an
 
128
    item to the debug log. The second use of this method is as
 
129
    a helper function of print(), where it is applicable.
 
130
    To suit both goals it should return a meaningful,
 
131
    distinguishable and sintactically correct string.  This method
 
132
    should not be used for runtime type identification, use enum
 
133
    {Sum}Functype and Item_func::functype()/Item_sum::sum_func()
 
134
    instead.
 
135
  */
 
136
  virtual const char *func_name() const { return NULL; };
 
137
  virtual bool const_item() const { return const_item_cache; }
 
138
  Item **arguments() const { return args; }
 
139
  void set_arguments(List<Item> &list);
 
140
  uint32_t argument_count() const { return arg_count; }
 
141
  void remove_arguments() { arg_count=0; }
 
142
  virtual void split_sum_func(Session *session, Item **ref_pointer_array,
 
143
                              List<Item> &fields);
 
144
 
 
145
  virtual void print(String *str, enum_query_type query_type);
 
146
  void print_op(String *str, enum_query_type query_type);
 
147
  void print_args(String *str, uint32_t from, enum_query_type query_type);
 
148
  virtual void fix_num_length_and_dec();
 
149
  void count_only_length();
 
150
  void count_real_length();
 
151
  void count_decimal_length();
 
152
 
 
153
  bool get_arg0_date(DRIZZLE_TIME *ltime, uint32_t fuzzy_date);
 
154
  bool get_arg0_time(DRIZZLE_TIME *ltime);
 
155
 
 
156
  bool is_null();
 
157
 
 
158
  void signal_divide_by_null();
 
159
 
 
160
  virtual Field *tmp_table_field() { return result_field; }
 
161
  virtual Field *tmp_table_field(Table *t_arg);
 
162
 
 
163
  Item *get_tmp_table_item(Session *session);
 
164
 
 
165
  my_decimal *val_decimal(my_decimal *);
 
166
 
 
167
  bool agg_arg_collations(DTCollation &c, Item **items, uint32_t nitems,
 
168
                          uint32_t flags);
 
169
  bool agg_arg_collations_for_comparison(DTCollation &c,
 
170
                                         Item **items, uint32_t nitems,
 
171
                                         uint32_t flags);
 
172
  bool agg_arg_charsets(DTCollation &c, Item **items, uint32_t nitems,
 
173
                        uint32_t flags, int item_sep);
 
174
  bool walk(Item_processor processor, bool walk_subquery, unsigned char *arg);
 
175
  Item *transform(Item_transformer transformer, unsigned char *arg);
 
176
  Item* compile(Item_analyzer analyzer, unsigned char **arg_p,
 
177
                Item_transformer transformer, unsigned char *arg_t);
 
178
  void traverse_cond(Cond_traverser traverser,
 
179
                     void * arg, traverse_order order);
 
180
  double fix_result(double value);
 
181
 
 
182
};
 
183
 
 
184
 
 
185
#endif /* DRIZZLED_FUNCTION_FUNC_H */