item_buff.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* Buffers to save and compare item values */
  14. #include "mysql_priv.h"
  15. /*
  16. ** Create right type of item_buffer for an item
  17. */
  18. Item_buff *new_Item_buff(THD *thd, Item *item)
  19. {
  20.   if (item->type() == Item::FIELD_ITEM &&
  21.       !(((Item_field *) item)->field->flags & BLOB_FLAG))
  22.     return new Item_field_buff((Item_field *) item);
  23.   if (item->result_type() == STRING_RESULT)
  24.     return new Item_str_buff(thd, (Item_field *) item);
  25.   if (item->result_type() == INT_RESULT)
  26.     return new Item_int_buff((Item_field *) item);
  27.   return new Item_real_buff(item);
  28. }
  29. Item_buff::~Item_buff() {}
  30. /*
  31. ** Compare with old value and replace value with new value
  32. ** Return true if values have changed
  33. */
  34. Item_str_buff::Item_str_buff(THD *thd, Item *arg)
  35.   :item(arg), value(min(arg->max_length, thd->variables.max_sort_length))
  36. {}
  37. bool Item_str_buff::cmp(void)
  38. {
  39.   String *res;
  40.   bool tmp;
  41.   if ((res=item->val_str(&tmp_value)))
  42.     res->length(min(res->length(), value.alloced_length()));
  43.   if (null_value != item->null_value)
  44.   {
  45.     if ((null_value= item->null_value))
  46.       return TRUE; // New value was null
  47.     tmp=TRUE;
  48.   }
  49.   else if (null_value)
  50.     return 0; // new and old value was null
  51.   else
  52.     tmp= sortcmp(&value,res,item->collation.collation) != 0;
  53.   if (tmp)
  54.     value.copy(*res); // Remember for next cmp
  55.   return tmp;
  56. }
  57. Item_str_buff::~Item_str_buff()
  58. {
  59.   item=0; // Safety
  60. }
  61. bool Item_real_buff::cmp(void)
  62. {
  63.   double nr=item->val();
  64.   if (null_value != item->null_value || nr != value)
  65.   {
  66.     null_value= item->null_value;
  67.     value=nr;
  68.     return TRUE;
  69.   }
  70.   return FALSE;
  71. }
  72. bool Item_int_buff::cmp(void)
  73. {
  74.   longlong nr=item->val_int();
  75.   if (null_value != item->null_value || nr != value)
  76.   {
  77.     null_value= item->null_value;
  78.     value=nr;
  79.     return TRUE;
  80.   }
  81.   return FALSE;
  82. }
  83. bool Item_field_buff::cmp(void)
  84. {
  85.   bool tmp= field->cmp(buff) != 0; // This is not a blob!
  86.   if (tmp)
  87.     field->get_image(buff,length,field->charset());
  88.   if (null_value != field->is_null())
  89.   {
  90.     null_value= !null_value;
  91.     tmp=TRUE;
  92.   }
  93.   return tmp;
  94. }
  95. /*****************************************************************************
  96. ** Instansiate templates
  97. *****************************************************************************/
  98. #ifdef __GNUC__
  99. template class List<Item_buff>;
  100. template class List_iterator<Item_buff>;
  101. #endif