item_cmpfunc.h 20.4 KB
Newer Older
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
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 22 23 24 25 26 27 28 29 30 31 32
   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 */


/* compare and test functions */

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

class Item_bool_func :public Item_int_func
{
public:
  Item_bool_func() :Item_int_func() {}
  Item_bool_func(Item *a) :Item_int_func(a) {}
  Item_bool_func(Item *a,Item *b) :Item_int_func(a,b) {}
  void fix_length_and_dec() { decimals=0; max_length=1; }
};

33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
class Item_bool_func2;

class Compare_func
{
protected:
  Item_bool_func2 *owner;
public:
  static void *operator new(size_t size)
  {
    return (void*) sql_alloc((uint) size);
  }
  static void operator delete(void *ptr,size_t size) {}

  Compare_func(Item_bool_func2 *o) { owner= o; }
  virtual ~Compare_func() {};
  virtual int compare(Item *, Item*)= 0;

  static Compare_func* get_compare_func(Item_bool_func2 *owner,
					Item* a, Item* b);
};

class Compare_func_string: public Compare_func
{
public:
  Compare_func_string(Item_bool_func2 *owner): Compare_func(owner) {};
  int compare(Item *, Item*);
};

class Compare_func_real: public Compare_func
{
public:
  Compare_func_real(Item_bool_func2 *owner): Compare_func(owner) {};
  int compare(Item *, Item*);
};

class Compare_func_int: public Compare_func
{
public:
  Compare_func_int(Item_bool_func2 *owner): Compare_func(owner) {};
  int compare(Item *, Item*);
};

class Compare_func_row: public Compare_func
{
  Compare_func **cmp_func;
public:
  Compare_func_row(Item_bool_func2 *owner, Item* a, Item* b);
  ~Compare_func_row()
  {
    if(cmp_func)
      sql_element_free(cmp_func);
  }
  int compare(Item *, Item*);
};

bk@work.mysql.com's avatar
bk@work.mysql.com committed
88 89 90 91 92 93 94
class Item_bool_func2 :public Item_int_func
{						/* Bool with 2 string args */
protected:
  String tmp_value1,tmp_value2;
public:
  Item_bool_func2(Item *a,Item *b) :Item_int_func(a,b) {}
  void fix_length_and_dec();
95 96 97 98 99
  Compare_func *cmp_func;
  void set_cmp_func(Item *a, Item *b)
  {
    cmp_func= Compare_func::get_compare_func(this, args[0], args[1]);
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
100 101 102 103
  optimize_type select_optimize() const { return OPTIMIZE_OP; }
  virtual enum Functype rev_functype() const { return UNKNOWN_FUNC; }
  bool have_rev_func() const { return rev_functype() != UNKNOWN_FUNC; }
  void print(String *str) { Item_func::print_op(str); }
104
  bool is_null() { return test(args[0]->is_null() || args[1]->is_null()); }
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
105

106
  friend class Compare_func_string;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
107 108 109 110 111 112
  static Item_bool_func2* eq_creator(Item *a, Item *b);
  static Item_bool_func2* ne_creator(Item *a, Item *b);
  static Item_bool_func2* gt_creator(Item *a, Item *b);
  static Item_bool_func2* lt_creator(Item *a, Item *b);
  static Item_bool_func2* ge_creator(Item *a, Item *b);
  static Item_bool_func2* le_creator(Item *a, Item *b);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
113 114
};

115 116 117 118 119 120 121 122
class Item_bool_rowready_func2 :public Item_bool_func2
{
public:
  Item_bool_rowready_func2(Item *a,Item *b) :Item_bool_func2(a,b)
  {
    allowed_arg_cols= a->cols();
  }
};
bk@work.mysql.com's avatar
bk@work.mysql.com committed
123 124 125 126 127 128 129 130 131

class Item_func_not :public Item_bool_func
{
public:
  Item_func_not(Item *a) :Item_bool_func(a) {}
  longlong val_int();
  const char *func_name() const { return "not"; }
};

132
class Item_func_eq :public Item_bool_rowready_func2
bk@work.mysql.com's avatar
bk@work.mysql.com committed
133 134
{
public:
135
  Item_func_eq(Item *a,Item *b) :Item_bool_rowready_func2(a,b) { };
bk@work.mysql.com's avatar
bk@work.mysql.com committed
136 137 138 139 140 141 142 143 144
  longlong val_int();
  enum Functype functype() const { return EQ_FUNC; }
  enum Functype rev_functype() const { return EQ_FUNC; }
  cond_result eq_cmp_result() const { return COND_TRUE; }
  const char *func_name() const { return "="; }
};

class Item_func_equal :public Item_bool_func2
{
145
  Item_result cmp_result_type;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
146 147 148
public:
  Item_func_equal(Item *a,Item *b) :Item_bool_func2(a,b) { };
  longlong val_int();
monty@donna.mysql.com's avatar
monty@donna.mysql.com committed
149
  void fix_length_and_dec();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
150 151 152 153 154 155 156
  enum Functype functype() const { return EQUAL_FUNC; }
  enum Functype rev_functype() const { return EQUAL_FUNC; }
  cond_result eq_cmp_result() const { return COND_TRUE; }
  const char *func_name() const { return "<=>"; }
};


157
class Item_func_ge :public Item_bool_rowready_func2
bk@work.mysql.com's avatar
bk@work.mysql.com committed
158 159
{
public:
160
  Item_func_ge(Item *a,Item *b) :Item_bool_rowready_func2(a,b) { };
bk@work.mysql.com's avatar
bk@work.mysql.com committed
161 162 163 164 165 166 167 168
  longlong val_int();
  enum Functype functype() const { return GE_FUNC; }
  enum Functype rev_functype() const { return LE_FUNC; }
  cond_result eq_cmp_result() const { return COND_TRUE; }
  const char *func_name() const { return ">="; }
};


169
class Item_func_gt :public Item_bool_rowready_func2
bk@work.mysql.com's avatar
bk@work.mysql.com committed
170 171
{
public:
172
  Item_func_gt(Item *a,Item *b) :Item_bool_rowready_func2(a,b) { };
bk@work.mysql.com's avatar
bk@work.mysql.com committed
173 174 175 176 177 178 179 180
  longlong val_int();
  enum Functype functype() const { return GT_FUNC; }
  enum Functype rev_functype() const { return LT_FUNC; }
  cond_result eq_cmp_result() const { return COND_FALSE; }
  const char *func_name() const { return ">"; }
};


181
class Item_func_le :public Item_bool_rowready_func2
bk@work.mysql.com's avatar
bk@work.mysql.com committed
182 183
{
public:
184
  Item_func_le(Item *a,Item *b) :Item_bool_rowready_func2(a,b) { };
bk@work.mysql.com's avatar
bk@work.mysql.com committed
185 186 187 188 189 190 191 192
  longlong val_int();
  enum Functype functype() const { return LE_FUNC; }
  enum Functype rev_functype() const { return GE_FUNC; }
  cond_result eq_cmp_result() const { return COND_TRUE; }
  const char *func_name() const { return "<="; }
};


193
class Item_func_lt :public Item_bool_rowready_func2
bk@work.mysql.com's avatar
bk@work.mysql.com committed
194 195
{
public:
196
  Item_func_lt(Item *a,Item *b) :Item_bool_rowready_func2(a,b) { }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
197 198 199 200 201 202 203 204
  longlong val_int();
  enum Functype functype() const { return LT_FUNC; }
  enum Functype rev_functype() const { return GT_FUNC; }
  cond_result eq_cmp_result() const { return COND_FALSE; }
  const char *func_name() const { return "<"; }
};


205
class Item_func_ne :public Item_bool_rowready_func2
bk@work.mysql.com's avatar
bk@work.mysql.com committed
206 207
{
public:
208
  Item_func_ne(Item *a,Item *b) :Item_bool_rowready_func2(a,b) { }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
  longlong val_int();
  enum Functype functype() const { return NE_FUNC; }
  cond_result eq_cmp_result() const { return COND_FALSE; }
  optimize_type select_optimize() const { return OPTIMIZE_NONE; }
  const char *func_name() const { return "<>"; }
};


class Item_func_between :public Item_int_func
{
  int (*string_compare)(const String *x,const String *y);
public:
  Item_result cmp_type;
  String value0,value1,value2;
  Item_func_between(Item *a,Item *b,Item *c) :Item_int_func(a,b,c) {}
  longlong val_int();
  optimize_type select_optimize() const { return OPTIMIZE_KEY; }
  enum Functype functype() const   { return BETWEEN; }
  const char *func_name() const { return "between"; }
  void fix_length_and_dec();
};


class Item_func_strcmp :public Item_bool_func2
{
public:
  Item_func_strcmp(Item *a,Item *b) :Item_bool_func2(a,b) {}
  longlong val_int();
  void fix_length_and_dec() { max_length=2; }
  optimize_type select_optimize() const { return OPTIMIZE_NONE; }
  const char *func_name() const { return "strcmp"; }
};


class Item_func_interval :public Item_int_func
{
  Item *item;
  double *intervals;
public:
  Item_func_interval(Item *a,List<Item> &list)
    :Item_int_func(list),item(a),intervals(0) {}
  longlong val_int();
251
  bool fix_fields(THD *thd, struct st_table_list *tlist, Item **ref)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
252
  {
253 254
    return (item->check_cols(1) || 
	    item->fix_fields(thd, tlist, &item) || 
255
	    Item_func::fix_fields(thd, tlist, ref));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
256 257 258 259 260
  }
  void fix_length_and_dec();
  ~Item_func_interval() { delete item; }
  const char *func_name() const { return "interval"; }
  void update_used_tables();
261
  bool check_loop(uint id);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
};


class Item_func_ifnull :public Item_func
{
  enum Item_result cached_result_type;
public:
  Item_func_ifnull(Item *a,Item *b) :Item_func(a,b) { }
  double val();
  longlong val_int();
  String *val_str(String *str);
  enum Item_result result_type () const { return cached_result_type; }
  void fix_length_and_dec();
  const char *func_name() const { return "ifnull"; }
};


class Item_func_if :public Item_func
{
  enum Item_result cached_result_type;
public:
  Item_func_if(Item *a,Item *b,Item *c) :Item_func(a,b,c) { }
  double val();
  longlong val_int();
  String *val_str(String *str);
  enum Item_result result_type () const { return cached_result_type; }
288
  bool fix_fields(THD *thd,struct st_table_list *tlist, Item **ref)
289 290
  {
    args[0]->top_level_item();
291
    return Item_func::fix_fields(thd, tlist, ref);
292
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
  void fix_length_and_dec();
  const char *func_name() const { return "if"; }
};


class Item_func_nullif :public Item_bool_func2
{
  enum Item_result cached_result_type;
public:
  Item_func_nullif(Item *a,Item *b) :Item_bool_func2(a,b) { }
  double val();
  longlong val_int();
  String *val_str(String *str);
  enum Item_result result_type () const { return cached_result_type; }
  void fix_length_and_dec();
  const char *func_name() const { return "nullif"; }
};


class Item_func_coalesce :public Item_func
{
  enum Item_result cached_result_type;
public:
  Item_func_coalesce(List<Item> &list) :Item_func(list) {}
  double val();
  longlong val_int();
  String *val_str(String *);
  void fix_length_and_dec();
  enum Item_result result_type () const { return cached_result_type; }
  const char *func_name() const { return "coalesce"; }
};

class Item_func_case :public Item_func
{
  Item * first_expr, *else_expr;
  enum Item_result cached_result_type;
  String tmp_value;
public:
  Item_func_case(List<Item> &list, Item *first_expr_, Item *else_expr_)
    :Item_func(list), first_expr(first_expr_), else_expr(else_expr_) {}
  double val();
  longlong val_int();
  String *val_str(String *);
  void fix_length_and_dec();
337
  void update_used_tables();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
338 339 340
  enum Item_result result_type () const { return cached_result_type; }
  const char *func_name() const { return "case"; }
  void print(String *str);
341
  bool fix_fields(THD *thd, struct st_table_list *tlist, Item **ref);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
342
  Item *find_item(String *str);
343
  bool check_loop(uint id);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
};


/* Functions to handle the optimized IN */

class in_vector :public Sql_alloc
{
 protected:
  char *base;
  uint size;
  qsort_cmp compare;
  uint count;
public:
  uint used_count;
  in_vector(uint elements,uint element_length,qsort_cmp cmp_func)
    :base((char*) sql_calloc(elements*element_length)),
     size(element_length), compare(cmp_func), count(elements),
     used_count(elements) {}
  virtual ~in_vector() {}
  virtual void set(uint pos,Item *item)=0;
  virtual byte *get_value(Item *item)=0;
  void sort()
366 367 368
  {
    qsort(base,used_count,size,compare);
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
  int find(Item *item);
};


class in_string :public in_vector
{
  char buff[80];
  String tmp;
public:
  in_string(uint elements,qsort_cmp cmp_func);
  ~in_string();
  void set(uint pos,Item *item);
  byte *get_value(Item *item);
};


class in_longlong :public in_vector
{
  longlong tmp;
public:
  in_longlong(uint elements);
  void set(uint pos,Item *item);
  byte *get_value(Item *item);
};


class in_double :public in_vector
{
  double tmp;
public:
  in_double(uint elements);
  void set(uint pos,Item *item);
  byte *get_value(Item *item);
};


/*
** Classes for easy comparing of non const items
*/

class cmp_item :public Sql_alloc
{
public:
  cmp_item() {}
  virtual ~cmp_item() {}
  virtual void store_value(Item *item)=0;
  virtual int cmp(Item *item)=0;
};


class cmp_item_sort_string :public cmp_item {
 protected:
  char value_buff[80];
  String value,*value_res;
public:
424
  cmp_item_sort_string() :value(value_buff,sizeof(value_buff),default_charset_info) {}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
425 426 427 428 429 430 431
  void store_value(Item *item)
    {
      value_res=item->val_str(&value);
    }
  int cmp(Item *arg)
    {
      char buff[80];
432
      String tmp(buff,sizeof(buff),default_charset_info),*res;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
433 434 435 436 437 438 439 440 441 442 443 444
      if (!(res=arg->val_str(&tmp)))
	return 1;				/* Can't be right */
      return sortcmp(value_res,res);
    }
};

class cmp_item_binary_string :public cmp_item_sort_string {
public:
  cmp_item_binary_string() {}
  int cmp(Item *arg)
    {
      char buff[80];
445
      String tmp(buff,sizeof(buff),default_charset_info),*res;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
      if (!(res=arg->val_str(&tmp)))
	return 1;				/* Can't be right */
      return stringcmp(value_res,res);
    }
};


class cmp_item_int :public cmp_item
{
  longlong value;
public:
  void store_value(Item *item)
    {
      value=item->val_int();
    }
  int cmp(Item *arg)
    {
      return value != arg->val_int();
    }
};


class cmp_item_real :public cmp_item
{
  double value;
public:
  void store_value(Item *item)
    {
      value= item->val();
    }
  int cmp(Item *arg)
    {
      return value != arg->val();
    }
};


class Item_func_in :public Item_int_func
{
  Item *item;
  in_vector *array;
  cmp_item *in_item;
 public:
  Item_func_in(Item *a,List<Item> &list)
    :Item_int_func(list),item(a),array(0),in_item(0) {}
  longlong val_int();
492
  bool fix_fields(THD *thd, struct st_table_list *tlist, Item **ref)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
493
  {
494 495
    return (item->check_cols(1) ||
	    item->fix_fields(thd, tlist, &item) ||
496
	    Item_func::fix_fields(thd, tlist, ref));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
497 498 499 500 501 502 503 504 505 506
  }
  void fix_length_and_dec();
  ~Item_func_in() { delete item; delete array; delete in_item; }
  optimize_type select_optimize() const
    { return array ? OPTIMIZE_KEY : OPTIMIZE_NONE; }
  Item *key_item() const { return item; }
  void print(String *str);
  enum Functype functype() const { return IN_FUNC; }
  const char *func_name() const { return " IN "; }
  void update_used_tables();
507 508 509 510 511 512 513
  bool check_loop(uint id)
  {
    DBUG_ENTER("Item_func_in::check_loop");
    if (Item_func::check_loop(id))
      DBUG_RETURN(1);
    DBUG_RETURN(item->check_loop(id));
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
514 515 516 517 518 519 520 521
};



/* Functions used by where clause */

class Item_func_isnull :public Item_bool_func
{
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
522
  longlong cached_value;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
public:
  Item_func_isnull(Item *a) :Item_bool_func(a) {}
  longlong val_int();
  enum Functype functype() const { return ISNULL_FUNC; }
  void fix_length_and_dec()
  {
    decimals=0; max_length=1; maybe_null=0;
    Item_func_isnull::update_used_tables();
  }
  const char *func_name() const { return "isnull"; }
  /* Optimize case of not_null_column IS NULL */
  void update_used_tables()
  {
    if (!args[0]->maybe_null)
      used_tables_cache=0;			/* is always false */
    else
    {
      args[0]->update_used_tables();
      used_tables_cache=args[0]->used_tables();
    }
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
543 544 545 546 547 548
    if (!used_tables_cache)
    {
      /* Remember if the value is always NULL or never NULL */
      args[0]->val();
      cached_value= args[0]->null_value ? (longlong) 1 : (longlong) 0;
    }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
549 550 551 552 553 554 555 556 557 558
  }
  optimize_type select_optimize() const { return OPTIMIZE_NULL; }
};

class Item_func_isnotnull :public Item_bool_func
{
public:
  Item_func_isnotnull(Item *a) :Item_bool_func(a) {}
  longlong val_int();
  enum Functype functype() const { return ISNOTNULL_FUNC; }
559 560 561 562
  void fix_length_and_dec()
  {
    decimals=0; max_length=1; maybe_null=0;
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
563 564 565 566 567 568 569
  const char *func_name() const { return "isnotnull"; }
  optimize_type select_optimize() const { return OPTIMIZE_NULL; }
};

class Item_func_like :public Item_bool_func2
{
  char escape;
570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585

  // Turbo Boyer-Moore data
  bool        canDoTurboBM;	// pattern is '%abcd%' case
  const char* pattern;
  int         pattern_len;

  // TurboBM buffers, *this is owner
  int* bmGs; //   good suffix shift table, size is pattern_len + 1
  int* bmBc; // bad character shift table, size is alphabet_size

  void turboBM_compute_suffixes(int* suff);
  void turboBM_compute_good_suffix_shifts(int* suff);
  void turboBM_compute_bad_character_shifts();
  bool turboBM_matches(const char* text, int text_len) const;
  enum { alphabet_size = 256 };

bk@work.mysql.com's avatar
bk@work.mysql.com committed
586
public:
587 588 589
  Item_func_like(Item *a,Item *b, char* escape_arg)
    :Item_bool_func2(a,b), escape(*escape_arg), canDoTurboBM(false),
    pattern(0), pattern_len(0), bmGs(0), bmBc(0)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
590 591 592 593 594 595 596
  {}
  longlong val_int();
  enum Functype functype() const { return LIKE_FUNC; }
  optimize_type select_optimize() const;
  cond_result eq_cmp_result() const { return COND_TRUE; }
  const char *func_name() const { return "like"; }
  void fix_length_and_dec();
597
  bool fix_fields(THD *thd, struct st_table_list *tlist, Item **ref);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614
};

#ifdef USE_REGEX

#include <regex.h>

class Item_func_regex :public Item_bool_func
{
  regex_t preg;
  bool regex_compiled;
  bool regex_is_const;
  String prev_regexp;
public:
  Item_func_regex(Item *a,Item *b) :Item_bool_func(a,b),
    regex_compiled(0),regex_is_const(0) {}
  ~Item_func_regex();
  longlong val_int();
615
  bool fix_fields(THD *thd, struct st_table_list *tlist, Item **ref);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637
  const char *func_name() const { return "regex"; }
};

#else

class Item_func_regex :public Item_bool_func
{
public:
  Item_func_regex(Item *a,Item *b) :Item_bool_func(a,b) {}
  longlong val_int() { return 0;}
  const char *func_name() const { return "regex"; }
};

#endif /* USE_REGEX */


typedef class Item COND;

class Item_cond :public Item_bool_func
{
protected:
  List<Item> list;
638
  bool abort_on_null;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
639
public:
640 641 642 643
  /* Item_cond() is only used to create top level items */
  Item_cond() : Item_bool_func(), abort_on_null(1) { const_item_cache=0; }
  Item_cond(Item *i1,Item *i2) :Item_bool_func(), abort_on_null(0)
  { list.push_back(i1); list.push_back(i2); }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
644 645
  ~Item_cond() { list.delete_elements(); }
  bool add(Item *item) { return list.push_back(item); }
646
  bool fix_fields(THD *, struct st_table_list *, Item **ref);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
647 648 649 650 651 652 653 654

  enum Type type() const { return COND_ITEM; }
  List<Item>* argument_list() { return &list; }
  table_map used_tables() const;
  void update_used_tables();
  void print(String *str);
  void split_sum_func(List<Item> &fields);
  friend int setup_conds(THD *thd,TABLE_LIST *tables,COND **conds);
655
  bool check_loop(uint id);
656
  void top_level_item() { abort_on_null=1; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
};


class Item_cond_and :public Item_cond
{
public:
  Item_cond_and() :Item_cond() {}
  Item_cond_and(Item *i1,Item *i2) :Item_cond(i1,i2) {}
  enum Functype functype() const { return COND_AND_FUNC; }
  longlong val_int();
  const char *func_name() const { return "and"; }
};

class Item_cond_or :public Item_cond
{
public:
  Item_cond_or() :Item_cond() {}
  Item_cond_or(Item *i1,Item *i2) :Item_cond(i1,i2) {}
  enum Functype functype() const { return COND_OR_FUNC; }
  longlong val_int();
  const char *func_name() const { return "or"; }
};


monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
681 682 683 684 685 686 687 688 689 690 691
class Item_cond_xor :public Item_cond
{
public:
  Item_cond_xor() :Item_cond() {}
  Item_cond_xor(Item *i1,Item *i2) :Item_cond(i1,i2) {}
  enum Functype functype() const { return COND_XOR_FUNC; }
  longlong val_int();
  const char *func_name() const { return "xor"; }
};


bk@work.mysql.com's avatar
bk@work.mysql.com committed
692 693 694 695 696 697 698 699 700 701 702
/* Some usefull inline functions */

inline Item *and_conds(Item *a,Item *b)
{
  if (!b) return a;
  if (!a) return b;
  Item *cond=new Item_cond_and(a,b);
  if (cond)
    cond->update_used_tables();
  return cond;
}
703

monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
704
Item *and_expressions(Item *a, Item *b, Item **org_item);
705 706

/**************************************************************
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
707
  Spatial relations
708 709 710
***************************************************************/

class Item_func_spatial_rel :public Item_bool_func2
711
{
712
  enum Functype spatial_rel;
713
public:
714
  Item_func_spatial_rel(Item *a,Item *b, enum Functype sp_rel) :
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
715
    Item_bool_func2(a,b) { spatial_rel = sp_rel; }
716
  longlong val_int();
717 718
  enum Functype functype() const 
  { 
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
719 720 721 722 723 724 725
    switch (spatial_rel) {
    case SP_CONTAINS_FUNC:
      return SP_WITHIN_FUNC;
    case SP_WITHIN_FUNC:
      return SP_CONTAINS_FUNC;
    default:
      return spatial_rel;
726 727 728 729 730
    }
  }
  enum Functype rev_functype() const { return spatial_rel; }
  const char *func_name() const 
  { 
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750
    switch (spatial_rel) {
    case SP_CONTAINS_FUNC:
      return "contains";
    case SP_WITHIN_FUNC:
      return "within";
    case SP_EQUALS_FUNC:
      return "equals";
    case SP_DISJOINT_FUNC:
      return "disjoint";
    case SP_INTERSECTS_FUNC:
      return "intersects";
    case SP_TOUCHES_FUNC:
      return "touches";
    case SP_CROSSES_FUNC:
      return "crosses";
    case SP_OVERLAPS_FUNC:
      return "overlaps";
    default:
      return "sp_unknown"; 
    }
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
    }
};


class Item_func_isempty :public Item_bool_func
{
public:
  Item_func_isempty(Item *a) :Item_bool_func(a) {}
  longlong val_int();
  optimize_type select_optimize() const { return OPTIMIZE_NONE; }
  const char *func_name() const { return "isempty"; }
};

class Item_func_issimple :public Item_bool_func
{
public:
  Item_func_issimple(Item *a) :Item_bool_func(a) {}
  longlong val_int();
  optimize_type select_optimize() const { return OPTIMIZE_NONE; }
  const char *func_name() const { return "issimple"; }
};

class Item_func_isclosed :public Item_bool_func
{
public:
  Item_func_isclosed(Item *a) :Item_bool_func(a) {}
  longlong val_int();
  optimize_type select_optimize() const { return OPTIMIZE_NONE; }
  const char *func_name() const { return "isclosed"; }
780
};