item.h 28.8 KB
Newer Older
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
1
/* Copyright (C) 2000-2003
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
2

bk@work.mysql.com's avatar
bk@work.mysql.com committed
3 4 5 6
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
7

bk@work.mysql.com's avatar
bk@work.mysql.com committed
8 9 10 11
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
12

bk@work.mysql.com's avatar
bk@work.mysql.com committed
13 14 15 16 17 18 19 20 21
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */


#ifdef __GNUC__
#pragma interface			/* gcc class implementation */
#endif

22
class Protocol;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
23
struct st_table_list;
24
void item_init(void);			/* Init item functions */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
25

26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54

/*
   "Declared Type Collation"
   A combination of collation and its deriviation.
*/

enum Derivation
{
  DERIVATION_COERCIBLE= 3,
  DERIVATION_IMPLICIT= 2,
  DERIVATION_NONE= 1,
  DERIVATION_EXPLICIT= 0
};

class DTCollation {
public:
  CHARSET_INFO     *collation;
  enum Derivation derivation;
  
  DTCollation()
  {
    collation= &my_charset_bin;
    derivation= DERIVATION_NONE;
  }
  DTCollation(CHARSET_INFO *collation_arg, Derivation derivation_arg)
  {
    collation= collation_arg;
    derivation= derivation_arg;
  }
55
  void set(DTCollation &dt)
56
  { 
57 58
    collation= dt.collation;
    derivation= dt.derivation;
59 60 61 62 63 64 65 66 67 68
  }
  void set(CHARSET_INFO *collation_arg, Derivation derivation_arg)
  {
    collation= collation_arg;
    derivation= derivation_arg;
  }
  void set(CHARSET_INFO *collation_arg)
  { collation= collation_arg; }
  void set(Derivation derivation_arg)
  { derivation= derivation_arg; }
69 70 71
  bool aggregate(DTCollation &dt);
  bool set(DTCollation &dt1, DTCollation &dt2)
  { set(dt1); return aggregate(dt2); }
72 73 74 75 76 77 78 79 80 81 82 83 84
  const char *derivation_name() const
  {
    switch(derivation)
    {
      case DERIVATION_COERCIBLE: return "COERCIBLE";
      case DERIVATION_IMPLICIT:  return "IMPLICIT";
      case DERIVATION_EXPLICIT:  return "EXPLICIT";
      case DERIVATION_NONE:      return "NONE";
      default: return "UNKNOWN";
    }
  }
};

bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
85 86
typedef bool (Item::*Item_processor)(byte *arg);

bk@work.mysql.com's avatar
bk@work.mysql.com committed
87
class Item {
88
  Item(const Item &);			/* Prevent use of these */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
89 90
  void operator=(Item &);
public:
monty@donna.mysql.com's avatar
monty@donna.mysql.com committed
91
  static void *operator new(size_t size) {return (void*) sql_alloc((uint) size); }
92 93
  static void *operator new(size_t size, MEM_ROOT *mem_root)
  { return (void*) alloc_root(mem_root, (uint) size); }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
94 95
  static void operator delete(void *ptr,size_t size) {} /*lint -e715 */

96 97
  enum Type {FIELD_ITEM, FUNC_ITEM, SUM_FUNC_ITEM, STRING_ITEM,
	     INT_ITEM, REAL_ITEM, NULL_ITEM, VARBIN_ITEM,
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
98
	     COPY_STR_ITEM, FIELD_AVG_ITEM, DEFAULT_VALUE_ITEM,
99 100
	     PROC_ITEM,COND_ITEM, REF_ITEM, FIELD_STD_ITEM,
	     FIELD_VARIANCE_ITEM, INSERT_VALUE_ITEM,
101
             SUBSELECT_ITEM, ROW_ITEM, CACHE_ITEM};
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
102

bk@work.mysql.com's avatar
bk@work.mysql.com committed
103
  enum cond_result { COND_UNDEF,COND_OK,COND_TRUE,COND_FALSE };
104
  
bk@work.mysql.com's avatar
bk@work.mysql.com committed
105 106 107 108 109 110 111
  String str_value;			/* used to store value */
  my_string name;			/* Name from select */
  Item *next;
  uint32 max_length;
  uint8 marker,decimals;
  my_bool maybe_null;			/* If item may be null */
  my_bool null_value;			/* if item is null */
112
  my_bool unsigned_flag;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
113
  my_bool with_sum_func;
114
  my_bool fixed;                        /* If item fixed with fix_fields */
115 116
  DTCollation collation;
  
bk@work.mysql.com's avatar
bk@work.mysql.com committed
117 118
  // alloc & destruct is done as start of select using sql_alloc
  Item();
119 120 121 122 123 124
  /*
     Constructor used by Item_field, Item_ref & agregate (sum) functions.
     Used for duplicating lists in processing queries with temporary
     tables
  */
  Item(THD *thd, Item &item);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
125
  virtual ~Item() { name=0; }		/*lint -e1509 */
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
126
  void set_name(const char *str,uint length, CHARSET_INFO *cs);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
127
  void init_make_field(Send_field *tmp_field,enum enum_field_types type);
128
  virtual void make_field(Send_field *field);
129
  virtual bool fix_fields(THD *, struct st_table_list *, Item **);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
130
  virtual int save_in_field(Field *field, bool no_conversions);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
131
  virtual void save_org_in_field(Field *field)
132
  { (void) save_in_field(field, 1); }
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
133
  virtual int save_safe_in_field(Field *field)
134
  { return save_in_field(field, 1); }
135
  virtual bool send(Protocol *protocol, String *str);
136
  virtual bool eq(const Item *, bool binary_cmp) const;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
137
  virtual Item_result result_type () const { return REAL_RESULT; }
138
  virtual enum_field_types field_type() const;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
139 140 141 142
  virtual enum Type type() const =0;
  virtual double val()=0;
  virtual longlong val_int()=0;
  virtual String *val_str(String*)=0;
143 144
  virtual Field *tmp_table_field() { return 0; }
  virtual Field *tmp_table_field(TABLE *t_arg) { return 0; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
145 146 147 148 149 150 151 152 153 154 155 156 157
  virtual const char *full_name() const { return name ? name : "???"; }
  virtual double  val_result() { return val(); }
  virtual longlong val_int_result() { return val_int(); }
  virtual String *str_result(String* tmp) { return val_str(tmp); }
  virtual table_map used_tables() const { return (table_map) 0L; }
  virtual bool basic_const_item() const { return 0; }
  virtual Item *new_item() { return 0; }	/* Only for const items */
  virtual cond_result eq_cmp_result() const { return COND_OK; }
  inline uint float_length(uint decimals_par) const
  { return decimals != NOT_FIXED_DEC ? (DBL_DIG+2+decimals_par) : DBL_DIG+8;}
  virtual bool const_item() const { return used_tables() == 0; }
  virtual void print(String *str_arg) { str_arg->append(full_name()); }
  virtual void update_used_tables() {}
158
  virtual void split_sum_func(Item **ref_pointer_array, List<Item> &fields) {}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
159 160
  virtual bool get_date(TIME *ltime,bool fuzzydate);
  virtual bool get_time(TIME *ltime);
161 162
  virtual bool get_date_result(TIME *ltime,bool fuzzydate)
  { return get_date(ltime,fuzzydate); }
163
  virtual bool is_null() { return 0; }
164
  virtual void top_level_item() {}
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
165 166 167
  virtual void set_result_field(Field *field) {}
  virtual bool is_result_field() { return 0; }
  virtual void save_in_result_field(bool no_conversions) {}
168
  virtual void no_rows_in_result() {}
169
  virtual Item *copy_or_same(THD *thd) { return this; }
170
  virtual Item *real_item() { return this; }
171
  virtual Item *get_tmp_table_item(THD *thd) { return copy_or_same(thd); }
172

173
  CHARSET_INFO *default_charset() const;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
174 175 176 177 178 179 180

  virtual bool walk(Item_processor processor, byte *arg)
  {
    return (this->*processor)(arg);
  }

  virtual bool remove_dependence_processor(byte * arg) { return 0; }
181
  
182 183 184
  // Row emulation
  virtual uint cols() { return 1; }
  virtual Item* el(uint i) { return this; }
185
  virtual Item** addr(uint i) { return 0; }
186
  virtual bool check_cols(uint c);
187
  // It is not row => null inside is impossible
188 189 190
  virtual bool null_inside() { return 0; }
  // used in row subselects to get value of elements
  virtual void bring_value() {}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
191 192 193
};


194
class st_select_lex;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
195 196 197 198 199 200
class Item_ident :public Item
{
public:
  const char *db_name;
  const char *table_name;
  const char *field_name;
201
  st_select_lex *depended_from;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
202 203
  Item_ident(const char *db_name_par,const char *table_name_par,
	     const char *field_name_par)
204
    :db_name(db_name_par), table_name(table_name_par),
205
     field_name(field_name_par), depended_from(0)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
206
    { name = (char*) field_name_par; }
207 208
  // Constructor used by Item_field & Item_ref (see Item comment)
  Item_ident(THD *thd, Item_ident &item);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
209
  const char *full_name() const;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
210 211

  bool remove_dependence_processor(byte * arg);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
212 213
};

214

bk@work.mysql.com's avatar
bk@work.mysql.com committed
215 216 217 218 219 220 221 222 223 224
class Item_field :public Item_ident
{
  void set_field(Field *field);
public:
  Field *field,*result_field;
  // Item_field() {}

  Item_field(const char *db_par,const char *table_name_par,
	     const char *field_name_par)
    :Item_ident(db_par,table_name_par,field_name_par),field(0),result_field(0)
225
  { collation.set(DERIVATION_IMPLICIT); }
226 227
  // Constructor need to process subselect with temporary tables (see Item)
  Item_field(THD *thd, Item_field &item);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
228 229
  Item_field(Field *field);
  enum Type type() const { return FIELD_ITEM; }
230
  bool eq(const Item *item, bool binary_cmp) const;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
231 232 233 234 235 236
  double val();
  longlong val_int();
  String *val_str(String*);
  double val_result();
  longlong val_int_result();
  String *str_result(String* tmp);
237
  bool send(Protocol *protocol, String *str_arg);
238
  bool fix_fields(THD *, struct st_table_list *, Item **);
239
  void make_field(Send_field *tmp_field);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
240
  int save_in_field(Field *field,bool no_conversions);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
241 242 243 244 245 246
  void save_org_in_field(Field *field);
  table_map used_tables() const;
  enum Item_result result_type () const
  {
    return field->result_type();
  }
247
  enum_field_types field_type() const
248 249 250
  {
    return field->type();
  }
251 252
  Field *tmp_table_field() { return result_field; }
  Field *tmp_table_field(TABLE *t_arg) { return result_field; }
253 254 255
  bool get_date(TIME *ltime,bool fuzzydate);
  bool get_date_result(TIME *ltime,bool fuzzydate);
  bool get_time(TIME *ltime);
256
  bool is_null() { return field->is_null(); }
257
  Item *get_tmp_table_item(THD *thd);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
258
  friend class Item_default_value;
259
  friend class Item_insert_value;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
260 261 262 263 264 265 266 267
};

class Item_null :public Item
{
public:
  Item_null(char *name_par=0)
    { maybe_null=null_value=TRUE; name= name_par ? name_par : (char*) "NULL";}
  enum Type type() const { return NULL_ITEM; }
268
  bool eq(const Item *item, bool binary_cmp) const;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
269 270 271
  double val();
  longlong val_int();
  String *val_str(String *str);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
272
  int save_in_field(Field *field, bool no_conversions);
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
273
  int save_safe_in_field(Field *field);
hf@deer.mysql.r18.ru's avatar
hf@deer.mysql.r18.ru committed
274
  bool send(Protocol *protocol, String *str);
275 276 277 278 279 280 281 282
  enum Item_result result_type () const { return STRING_RESULT; }
  enum_field_types field_type() const   { return MYSQL_TYPE_NULL; }
  bool fix_fields(THD *thd, struct st_table_list *list, Item **item)
  {
    bool res= Item::fix_fields(thd, list, item);
    max_length=0;
    return res;
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
283 284
  bool basic_const_item() const { return 1; }
  Item *new_item() { return new Item_null(name); }
285
  bool is_null() { return 1; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
286 287
};

288 289 290 291 292
class Item_param :public Item
{
public:    
  longlong int_value;
  double   real_value;
293
  TIME     ltime;
294 295 296
  enum Item_result item_result_type;
  enum Type item_type;
  enum enum_field_types buffer_type;
297
  bool item_is_time;
298 299
  bool long_data_supplied;
  uint pos_in_query;
300

301
  Item_param::Item_param(uint position)
302
  { 
303 304
    name= (char*) "?";
    pos_in_query= position;
venu@myvenu.com's avatar
venu@myvenu.com committed
305
    item_type= STRING_ITEM;
306
    item_result_type = STRING_RESULT;
307
    item_is_time= false;
308
    long_data_supplied= false;
309 310 311 312 313
  }
  enum Type type() const { return item_type; }
  double val();
  longlong val_int();
  String *val_str(String*);
venu@myvenu.com's avatar
venu@myvenu.com committed
314
  int  save_in_field(Field *field, bool no_conversions);
315 316 317
  void set_null();
  void set_int(longlong i);
  void set_double(double i);
venu@myvenu.com's avatar
venu@myvenu.com committed
318 319 320 321
  void set_value(const char *str, uint length);
  void set_long_str(const char *str, ulong length);
  void set_long_binary(const char *str, ulong length);
  void set_longdata(const char *str, ulong length);
322
  void set_long_end();
323 324
  void set_time(TIME *tm, timestamp_type type);
  bool get_time(TIME *tm);
325
  void reset() {}
venu@myvenu.com's avatar
venu@myvenu.com committed
326
  void (*setup_param_func)(Item_param *param, uchar **pos);
327
  enum Item_result result_type () const
328
  { return item_result_type; }
329
  String *query_val_str(String *str);
330
  enum_field_types field_type() const { return MYSQL_TYPE_STRING; }
331
  Item *new_item() { return new Item_param(pos_in_query); }
332
};
bk@work.mysql.com's avatar
bk@work.mysql.com committed
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348

class Item_int :public Item
{
public:
  const longlong value;
  Item_int(int32 i,uint length=11) :value((longlong) i)
    { max_length=length;}
#ifdef HAVE_LONG_LONG
  Item_int(longlong i,uint length=21) :value(i)
    { max_length=length;}
#endif
  Item_int(const char *str_arg,longlong i,uint length) :value(i)
    { max_length=length; name=(char*) str_arg;}
  Item_int(const char *str_arg) :
    value(str_arg[0] == '-' ? strtoll(str_arg,(char**) 0,10) :
	  (longlong) strtoull(str_arg,(char**) 0,10))
monty@donna.mysql.com's avatar
monty@donna.mysql.com committed
349
    { max_length= (uint) strlen(str_arg); name=(char*) str_arg;}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
350
  enum Type type() const { return INT_ITEM; }
351 352
  enum Item_result result_type () const { return INT_RESULT; }
  enum_field_types field_type() const { return MYSQL_TYPE_LONGLONG; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
353 354 355
  longlong val_int() { return value; }
  double val() { return (double) value; }
  String *val_str(String*);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
356
  int save_in_field(Field *field, bool no_conversions);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
357 358 359 360 361 362
  bool basic_const_item() const { return 1; }
  Item *new_item() { return new Item_int(name,value,max_length); }
  void print(String *str);
};


363 364 365 366 367
class Item_uint :public Item_int
{
public:
  Item_uint(const char *str_arg, uint length) :
    Item_int(str_arg, (longlong) strtoull(str_arg,(char**) 0,10), length) {}
368
  Item_uint(uint32 i) :Item_int((longlong) i, 10) {}
369
  double val() { return ulonglong2double((ulonglong)value); }
370 371
  String *val_str(String*);
  Item *new_item() { return new Item_uint(name,max_length); }
372 373 374 375 376 377
  bool fix_fields(THD *thd, struct st_table_list *list, Item **item)
  {
    bool res= Item::fix_fields(thd, list, item);
    unsigned_flag= 1;
    return res;
  }
378 379 380 381
  void print(String *str);
};


bk@work.mysql.com's avatar
bk@work.mysql.com committed
382 383 384 385 386 387 388 389
class Item_real :public Item
{
public:
  const double value;
  // Item_real() :value(0) {}
  Item_real(const char *str_arg,uint length) :value(atof(str_arg))
  {
    name=(char*) str_arg;
390
    decimals=(uint8) nr_of_decimals(str_arg);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
391 392 393 394 395 396
    max_length=length;
  }
  Item_real(const char *str,double val_arg,uint decimal_par,uint length)
    :value(val_arg)
  {
    name=(char*) str;
397
    decimals=(uint8) decimal_par;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
398 399 400
    max_length=length;
  }
  Item_real(double value_par) :value(value_par) {}
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
401
  int save_in_field(Field *field, bool no_conversions);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
402
  enum Type type() const { return REAL_ITEM; }
403
  enum_field_types field_type() const { return MYSQL_TYPE_DOUBLE; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
  double val() { return value; }
  longlong val_int() { return (longlong) (value+(value > 0 ? 0.5 : -0.5));}
  String *val_str(String*);
  bool basic_const_item() const { return 1; }
  Item *new_item() { return new Item_real(name,value,decimals,max_length); }
};


class Item_float :public Item_real
{
public:
  Item_float(const char *str,uint length) :Item_real(str,length)
  {
    decimals=NOT_FIXED_DEC;
    max_length=DBL_DIG+8;
  }
};

class Item_string :public Item
{
public:
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
425
  Item_string(const char *str,uint length,
426
  	      CHARSET_INFO *cs, Derivation dv= DERIVATION_COERCIBLE)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
427
  {
428
    collation.set(cs, dv);
429
    str_value.set(str,length,cs);
430
    max_length= str_value.numchars()*cs->mbmaxlen;
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
431
    set_name(str, length, cs);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
432 433
    decimals=NOT_FIXED_DEC;
  }
434
  Item_string(const char *name_par, const char *str, uint length,
435
	      CHARSET_INFO *cs, Derivation dv= DERIVATION_COERCIBLE)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
436
  {
437
    collation.set(cs, dv);
438
    str_value.set(str,length,cs);
439
    max_length= str_value.numchars()*cs->mbmaxlen;
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
440
    set_name(name_par,0,cs);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
441 442 443 444
    decimals=NOT_FIXED_DEC;
  }
  ~Item_string() {}
  enum Type type() const { return STRING_ITEM; }
445 446
  double val()
  { 
447
    int err;
448
    return my_strntod(str_value.charset(), (char*) str_value.ptr(),
449
		      str_value.length(), (char**) 0, &err);
450 451 452
  }
  longlong val_int()
  {
453
    int err;
454
    return my_strntoll(str_value.charset(), str_value.ptr(),
455
		       str_value.length(), 10, (char**) 0, &err);
456
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
457
  String *val_str(String*) { return (String*) &str_value; }
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
458
  int save_in_field(Field *field, bool no_conversions);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
459
  enum Item_result result_type () const { return STRING_RESULT; }
460
  enum_field_types field_type() const { return MYSQL_TYPE_STRING; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
461
  bool basic_const_item() const { return 1; }
462
  bool eq(const Item *item, bool binary_cmp) const;
463 464
  Item *new_item() 
  {
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
465
    return new Item_string(name, str_value.ptr(), max_length, &my_charset_bin);
466
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
467
  String *const_string() { return &str_value; }
468
  inline void append(char *str, uint length) { str_value.append(str, length); }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
469 470 471 472 473 474 475 476
  void print(String *str);
};

/* for show tables */

class Item_datetime :public Item_string
{
public:
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
477 478
  Item_datetime(const char *item_name): Item_string(item_name,"",0,
  						    &my_charset_bin)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
479
  { max_length=19;}
480
  enum_field_types field_type() const { return MYSQL_TYPE_DATETIME; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
481 482 483 484 485
};

class Item_empty_string :public Item_string
{
public:
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
486 487
  Item_empty_string(const char *header,uint length) :Item_string("",0,
  							&my_charset_bin)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
488 489 490
    { name=(char*) header; max_length=length;}
};

491 492 493 494 495 496 497 498 499 500 501 502 503 504
class Item_return_int :public Item_int
{
  enum_field_types int_field_type;
public:
  Item_return_int(const char *name, uint length,
		  enum_field_types field_type_arg)
    :Item_int(name, 0, length), int_field_type(field_type_arg)
  {
    unsigned_flag=1;
  }
  enum_field_types field_type() const { return int_field_type; }
};


bk@work.mysql.com's avatar
bk@work.mysql.com committed
505 506 507
class Item_varbinary :public Item
{
public:
508
  Item_varbinary(const char *str,uint str_length);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
509 510 511 512 513
  ~Item_varbinary() {}
  enum Type type() const { return VARBIN_ITEM; }
  double val() { return (double) Item_varbinary::val_int(); }
  longlong val_int();
  String *val_str(String*) { return &str_value; }
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
514
  int save_in_field(Field *field, bool no_conversions);
515
  enum Item_result result_type () const { return STRING_RESULT; }
516
  enum_field_types field_type() const { return MYSQL_TYPE_STRING; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
517 518 519 520 521 522 523 524
};


class Item_result_field :public Item	/* Item with result field */
{
public:
  Field *result_field;				/* Save result here */
  Item_result_field() :result_field(0) {}
525 526 527 528
  // Constructor used for Item_sum (see Item comment)
  Item_result_field(THD *thd, Item_result_field &item):
    Item(thd, item), result_field(item.result_field)
  {}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
529
  ~Item_result_field() {}			/* Required with gcc 2.95 */
530 531
  Field *tmp_table_field() { return result_field; }
  Field *tmp_table_field(TABLE *t_arg) { return result_field; }
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
532
  table_map used_tables() const { return 1; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
533
  virtual void fix_length_and_dec()=0;
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
534 535 536 537 538 539
  void set_result_field(Field *field) { result_field= field; }
  bool is_result_field() { return 1; }
  void save_in_result_field(bool no_conversions)
  {
    save_in_field(result_field, no_conversions);
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
540 541 542 543 544 545
};


class Item_ref :public Item_ident
{
public:
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
546
  Field *result_field;				/* Save result here */
serg@serg.mysql.com's avatar
serg@serg.mysql.com committed
547
  Item **ref;
548 549
  Item_ref(const char *db_par, const char *table_name_par,
	   const char *field_name_par)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
550
    :Item_ident(db_par,table_name_par,field_name_par),ref(0) {}
551
  Item_ref(Item **item, const char *table_name_par, const char *field_name_par)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
552
    :Item_ident(NullS,table_name_par,field_name_par),ref(item) {}
553 554 555
  // Constructor need to process subselect with temporary tables (see Item)
  Item_ref(THD *thd, Item_ref &item)
    :Item_ident(thd, item), ref(item.ref) {}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
556
  enum Type type() const		{ return REF_ITEM; }
557
  bool eq(const Item *item, bool binary_cmp) const
558
  { return ref && (*ref)->eq(item, binary_cmp); }
559
  ~Item_ref() { if (ref && (*ref) && (*ref) != this) delete *ref; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
560 561 562
  double val()
  {
    double tmp=(*ref)->val_result();
563
    null_value=(*ref)->null_value;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
564 565 566 567 568
    return tmp;
  }
  longlong val_int()
  {
    longlong tmp=(*ref)->val_int_result();
569
    null_value=(*ref)->null_value;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
570 571 572 573 574
    return tmp;
  }
  String *val_str(String* tmp)
  {
    tmp=(*ref)->str_result(tmp);
575
    null_value=(*ref)->null_value;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
576 577
    return tmp;
  }
578 579 580
  bool is_null()
  {
    (void) (*ref)->val_int_result();
581
    return (*ref)->null_value;
582
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
583
  bool get_date(TIME *ltime,bool fuzzydate)
584 585
  {
    return (null_value=(*ref)->get_date_result(ltime,fuzzydate));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
586
  }
587
  bool send(Protocol *prot, String *tmp){ return (*ref)->send(prot, tmp); }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
588
  void make_field(Send_field *field)	{ (*ref)->make_field(field); }
589
  bool fix_fields(THD *, struct st_table_list *, Item **);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
590
  int save_in_field(Field *field, bool no_conversions)
591
  { return (*ref)->save_in_field(field, no_conversions); }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
592 593
  void save_org_in_field(Field *field)	{ (*ref)->save_org_in_field(field); }
  enum Item_result result_type () const { return (*ref)->result_type(); }
594
  enum_field_types field_type() const   { return (*ref)->field_type(); }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
595
  table_map used_tables() const		{ return (*ref)->used_tables(); }
596
  void set_result_field(Field *field)	{ result_field= field; }
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
597 598 599 600 601
  bool is_result_field() { return 1; }
  void save_in_result_field(bool no_conversions)
  {
    (*ref)->save_in_field(result_field, no_conversions);
  }
602
  Item *real_item() { return *ref; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
603 604
};

605 606 607 608 609 610 611
class Item_in_subselect;
class Item_ref_null_helper: public Item_ref
{
protected:
  Item_in_subselect* owner;
public:
  Item_ref_null_helper(Item_in_subselect* master, Item **item,
612
		       const char *table_name_par, const char *field_name_par):
613 614 615 616 617
    Item_ref(item, table_name_par, field_name_par), owner(master) {}
  double val();
  longlong val_int();
  String* val_str(String* s);
  bool get_date(TIME *ltime, bool fuzzydate);
618 619 620 621 622 623 624 625 626
  void print(String *str)
  {
    str->append("ref_null_helper(");
    if (ref && *ref)
      (*ref)->print(str);
    else
      str->append('?');
    str->append(')');
  }
627 628
};

629 630 631 632 633 634 635 636 637 638
class Item_null_helper :public Item_ref_null_helper
{
  Item *store;
public:
  Item_null_helper(Item_in_subselect* master, Item *item,
		   const char *table_name_par, const char *field_name_par)
    :Item_ref_null_helper(master, &store, table_name_par, field_name_par),
     store(item)
    {}
};
639 640 641

/*
  Used to find item in list of select items after '*' items processing.
642 643 644 645

  Because item '*' can be used in item list. when we create
  Item_ref_on_list_position we do not know how item list will be changed, but
  we know number of item position (I mean queries like "select * from t").
646 647 648 649
*/
class Item_ref_on_list_position: public Item_ref_null_helper
{
protected:
650 651 652
  /* 
     select_lex used for:
     1) receiving expanded variant of item list (to check max possible 
653
        number of elements);
654 655
     2) to have access to  ref_pointer_array, via wich item will refered.
  */
656
  st_select_lex *select_lex;
657 658 659
  uint pos;
public:
  Item_ref_on_list_position(Item_in_subselect* master,
660
			    st_select_lex *sl, uint num,
661 662
			    char *table_name, char *field_name):
    Item_ref_null_helper(master, 0, table_name, field_name),
663
    select_lex(sl), pos(num) {}
664 665 666
  bool fix_fields(THD *, struct st_table_list *, Item ** ref);
};

667 668 669 670 671 672 673 674 675 676 677 678
/*
  The following class is used to optimize comparing of date columns
  We need to save the original item, to be able to set the field to the
  original value in 'opt_range'.
*/

class Item_int_with_ref :public Item_int
{
  Item *ref;
public:
  Item_int_with_ref(longlong i, Item *ref_arg) :Item_int(i), ref(ref_arg)
  {}
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
679
  int save_in_field(Field *field, bool no_conversions)
680
  {
681
    return ref->save_in_field(field, no_conversions);
682 683 684 685
  }
};


686
#include "gstream.h"
687
#include "spatial.h"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
688 689
#include "item_sum.h"
#include "item_func.h"
690
#include "item_row.h"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
691 692
#include "item_cmpfunc.h"
#include "item_strfunc.h"
693
#include "item_geofunc.h"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
694 695
#include "item_timefunc.h"
#include "item_uniq.h"
696
#include "item_subselect.h"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
697 698 699

class Item_copy_string :public Item
{
700
  enum enum_field_types cached_field_type;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
701 702 703 704 705 706 707 708
public:
  Item *item;
  Item_copy_string(Item *i) :item(i)
  {
    null_value=maybe_null=item->maybe_null;
    decimals=item->decimals;
    max_length=item->max_length;
    name=item->name;
709
    cached_field_type= item->field_type();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
710 711 712 713
  }
  ~Item_copy_string() { delete item; }
  enum Type type() const { return COPY_STR_ITEM; }
  enum Item_result result_type () const { return STRING_RESULT; }
714
  enum_field_types field_type() const { return cached_field_type; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
715
  double val()
716
  {
717
    int err;
718 719
    return (null_value ? 0.0 :
	    my_strntod(str_value.charset(), (char*) str_value.ptr(),
720
		       str_value.length(),NULL,&err));
721
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
722
  longlong val_int()
723 724 725 726
  { 
    int err;
    return null_value ? LL(0) : my_strntoll(str_value.charset(),str_value.ptr(),str_value.length(),10, (char**) 0,&err); 
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
727 728 729 730 731
  String *val_str(String*);
  void make_field(Send_field *field) { item->make_field(field); }
  void copy();
  table_map used_tables() const { return (table_map) 1L; }
  bool const_item() const { return 0; }
732
  bool is_null() { return null_value; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789
};


class Item_buff :public Sql_alloc
{
public:
  my_bool null_value;
  Item_buff() :null_value(0) {}
  virtual bool cmp(void)=0;
  virtual ~Item_buff(); /*line -e1509 */
};

class Item_str_buff :public Item_buff
{
  Item *item;
  String value,tmp_value;
public:
  Item_str_buff(Item *arg) :item(arg),value(arg->max_length) {}
  bool cmp(void);
  ~Item_str_buff();				// Deallocate String:s
};


class Item_real_buff :public Item_buff
{
  Item *item;
  double value;
public:
  Item_real_buff(Item *item_par) :item(item_par),value(0.0) {}
  bool cmp(void);
};

class Item_int_buff :public Item_buff
{
  Item *item;
  longlong value;
public:
  Item_int_buff(Item *item_par) :item(item_par),value(0) {}
  bool cmp(void);
};


class Item_field_buff :public Item_buff
{
  char *buff;
  Field *field;
  uint length;

public:
  Item_field_buff(Item_field *item)
  {
    field=item->field;
    buff= (char*) sql_calloc(length=field->pack_length());
  }
  bool cmp(void);
};

hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
790 791 792 793
class Item_default_value : public Item_field
{
public:
  Item *arg;
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
794 795
  Item_default_value() :
    Item_field((const char *)NULL, (const char *)NULL, (const char *)NULL), arg(NULL) {}
796
  Item_default_value(Item *a) :
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
797
    Item_field((const char *)NULL, (const char *)NULL, (const char *)NULL), arg(a) {}
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
798
  enum Type type() const { return DEFAULT_VALUE_ITEM; }
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
799 800
  bool eq(const Item *item, bool binary_cmp) const;
  bool fix_fields(THD *, struct st_table_list *, Item **);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
801
  void print(String *str);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
802 803 804 805 806 807 808 809 810 811
  virtual bool basic_const_item() const { return true; }
  int save_in_field(Field *field, bool no_conversions)
  {
    if (!arg)
    {
      field->set_default();
      return 0;
    }
    return Item_field::save_in_field(field, no_conversions);
  }
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
812
  table_map used_tables() const { return (table_map)0L; }
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
813 814 815 816 817 818
  
  bool walk(Item_processor processor, byte *args)
  {
    return arg->walk(processor, args) ||
      (this->*processor)(args);
  }
hf@deer.mysql.r18.ru's avatar
hf@deer.mysql.r18.ru committed
819
};
hf@deer.mysql.r18.ru's avatar
hf@deer.mysql.r18.ru committed
820

821 822 823 824 825 826 827 828 829 830 831 832 833 834 835
class Item_insert_value : public Item_field
{
public:
  Item *arg;
  Item_insert_value(Item *a) :
    Item_field((const char *)NULL, (const char *)NULL, (const char *)NULL), arg(a) {}
  bool eq(const Item *item, bool binary_cmp) const;
  bool fix_fields(THD *, struct st_table_list *, Item **);
  void print(String *str);
  virtual bool basic_const_item() const { return true; }
  int save_in_field(Field *field, bool no_conversions)
  {
    return Item_field::save_in_field(field, no_conversions);
  }
  table_map used_tables() const { return (table_map)0L; }
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
836 837 838 839 840 841

  bool walk(Item_processor processor, byte *args)
  {
    return arg->walk(processor, args) ||
	    (this->*processor)(args);
  }
842 843
};

844 845
class Item_cache: public Item
{
846
  table_map used_table_map;
847
public:
848 849 850 851
  Item_cache(): used_table_map(0) {fixed= 1; null_value= 1;}

  void set_used_tables(table_map map) { used_table_map= map; }

852 853
  virtual bool allocate(uint i) { return 0; };
  virtual bool setup(Item *) { return 0; };
854 855 856 857 858 859 860
  virtual void store(Item *)= 0;
  void set_len_n_dec(uint32 max_len, uint8 dec)
  {
    max_length= max_len;
    decimals= dec;
  }
  enum Type type() const { return CACHE_ITEM; }
861
  static Item_cache* get_cache(Item_result type);
862
  table_map used_tables() const { return used_table_map; }
863 864 865 866 867 868
};

class Item_cache_int: public Item_cache
{
  longlong value;
public:
869
  Item_cache_int(): Item_cache() {}
870 871 872 873 874 875 876 877
  
  void store(Item *item)
  {
    value= item->val_int_result();
    null_value= item->null_value;
  }
  double val() { return (double) value; }
  longlong val_int() { return value; }
878
  String* val_str(String *str) { str->set(value, default_charset()); return str; }
879 880 881 882 883 884 885
  enum Item_result result_type() const { return INT_RESULT; }
};

class Item_cache_real: public Item_cache
{
  double value;
public:
886
  Item_cache_real(): Item_cache() {}
887 888 889 890 891 892 893 894 895 896
  
  void store(Item *item)
  {
    value= item->val_result();
    null_value= item->null_value;
  }
  double val() { return value; }
  longlong val_int() { return (longlong) (value+(value > 0 ? 0.5 : -0.5)); }
  String* val_str(String *str)
  {
897
    str->set(value, decimals, default_charset());
898 899 900 901 902 903 904 905
    return str;
  }
  enum Item_result result_type() const { return REAL_RESULT; }
};

class Item_cache_str: public Item_cache
{
  char buffer[80];
906
  String *value, value_buff;
907
public:
908
  Item_cache_str(): Item_cache() { }
909
  
910 911 912
  void store(Item *item);
  double val();
  longlong val_int();
913 914 915 916 917
  String* val_str(String *) { return value; }
  enum Item_result result_type() const { return STRING_RESULT; }
  CHARSET_INFO *charset() const { return value->charset(); };
};

918 919 920
class Item_cache_row: public Item_cache
{
  Item_cache  **values;
921
  uint item_count;
922
public:
923
  Item_cache_row(): Item_cache(), values(0), item_count(2) {}
924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957
  
  /*
    'allocate' used only in row transformer, to preallocate space for row 
    cache.
  */
  bool allocate(uint num);
  /*
    'setup' is needed only by row => it not called by simple row subselect
    (only by IN subselect (in subselect optimizer))
  */
  bool setup(Item *item);
  void store(Item *item);
  void illegal_method_call(const char *);
  void make_field(Send_field *)
  {
    illegal_method_call((const char*)"make_field");
  };
  double val()
  {
    illegal_method_call((const char*)"val");
    return 0;
  };
  longlong val_int()
  {
    illegal_method_call((const char*)"val_int");
    return 0;
  };
  String *val_str(String *)
  {
    illegal_method_call((const char*)"val_str");
    return 0;
  };
  enum Item_result result_type() const { return ROW_RESULT; }
  
958
  uint cols() { return item_count; }
959 960 961 962 963 964 965
  Item* el(uint i) { return values[i]; }
  Item** addr(uint i) { return (Item **) (values + i); }
  bool check_cols(uint c);
  bool null_inside();
  void bring_value();
};

bk@work.mysql.com's avatar
bk@work.mysql.com committed
966 967 968 969
extern Item_buff *new_Item_buff(Item *item);
extern Item_result item_cmp_type(Item_result a,Item_result b);
extern Item *resolve_const_item(Item *item,Item *cmp_item);
extern bool field_is_equal_to_item(Field *field,Item *item);