field_conv.cc
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:13k
源码类别:

MySQL数据库

开发平台:

Visual C++

  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.  Functions to copy data to or from fields
  18.  This could be done with a single short function but opencooding this
  19.  gives much more speed.
  20.  */
  21. #include "mysql_priv.h"
  22. #include <m_ctype.h>
  23. static void do_field_eq(Copy_field *copy)
  24. {
  25.   memcpy(copy->to_ptr,copy->from_ptr,copy->from_length);
  26. }
  27. static void do_field_1(Copy_field *copy)
  28. {
  29.   copy->to_ptr[0]=copy->from_ptr[0];
  30. }
  31. static void do_field_2(Copy_field *copy)
  32. {
  33.   copy->to_ptr[0]=copy->from_ptr[0];
  34.   copy->to_ptr[1]=copy->from_ptr[1];
  35. }
  36. static void do_field_3(Copy_field *copy)
  37. {
  38.   copy->to_ptr[0]=copy->from_ptr[0];
  39.   copy->to_ptr[1]=copy->from_ptr[1];
  40.   copy->to_ptr[2]=copy->from_ptr[2];
  41. }
  42. static void do_field_4(Copy_field *copy)
  43. {
  44.   copy->to_ptr[0]=copy->from_ptr[0];
  45.   copy->to_ptr[1]=copy->from_ptr[1];
  46.   copy->to_ptr[2]=copy->from_ptr[2];
  47.   copy->to_ptr[3]=copy->from_ptr[3];
  48. }
  49. static void do_field_6(Copy_field *copy)
  50. { // For blob field
  51.   copy->to_ptr[0]=copy->from_ptr[0];
  52.   copy->to_ptr[1]=copy->from_ptr[1];
  53.   copy->to_ptr[2]=copy->from_ptr[2];
  54.   copy->to_ptr[3]=copy->from_ptr[3];
  55.   copy->to_ptr[4]=copy->from_ptr[4];
  56.   copy->to_ptr[5]=copy->from_ptr[5];
  57. }
  58. static void do_field_8(Copy_field *copy)
  59. {
  60.   copy->to_ptr[0]=copy->from_ptr[0];
  61.   copy->to_ptr[1]=copy->from_ptr[1];
  62.   copy->to_ptr[2]=copy->from_ptr[2];
  63.   copy->to_ptr[3]=copy->from_ptr[3];
  64.   copy->to_ptr[4]=copy->from_ptr[4];
  65.   copy->to_ptr[5]=copy->from_ptr[5];
  66.   copy->to_ptr[6]=copy->from_ptr[6];
  67.   copy->to_ptr[7]=copy->from_ptr[7];
  68. }
  69. static void do_field_to_null_str(Copy_field *copy)
  70. {
  71.   if (*copy->from_null_ptr & copy->from_bit)
  72.   {
  73.     bzero(copy->to_ptr,copy->from_length);
  74.     copy->to_null_ptr[0]=1; // Always bit 1
  75.   }
  76.   else
  77.   {
  78.     copy->to_null_ptr[0]=0;
  79.     memcpy(copy->to_ptr,copy->from_ptr,copy->from_length);
  80.   }
  81. }
  82. static void do_outer_field_to_null_str(Copy_field *copy)
  83. {
  84.   if (*copy->null_row ||
  85.       copy->from_null_ptr && (*copy->from_null_ptr & copy->from_bit))
  86.   {
  87.     bzero(copy->to_ptr,copy->from_length);
  88.     copy->to_null_ptr[0]=1; // Always bit 1
  89.   }
  90.   else
  91.   {
  92.     copy->to_null_ptr[0]=0;
  93.     memcpy(copy->to_ptr,copy->from_ptr,copy->from_length);
  94.   }
  95. }
  96. bool
  97. set_field_to_null(Field *field)
  98. {
  99.   if (field->maybe_null())
  100.   {
  101.     field->set_null();
  102.     field->reset();
  103.   }
  104.   else
  105.   {
  106.     if (field->type() == FIELD_TYPE_TIMESTAMP)
  107.     {
  108.       ((Field_timestamp*) field)->set_time();
  109.       return 0; // Ok to set time to NULL
  110.     }
  111.     field->reset();
  112.     if (field == field->table->next_number_field)
  113.       return 0; // field is set in handler.cc
  114.     if (current_thd->count_cuted_fields)
  115.     {
  116.       current_thd->cuted_fields++; // Increment error counter
  117.       return 0;
  118.     }
  119.     if (!current_thd->no_errors)
  120.       my_printf_error(ER_BAD_NULL_ERROR,ER(ER_BAD_NULL_ERROR),MYF(0),
  121.       field->field_name);
  122.     return 1;
  123.   }
  124.   return 0;
  125. }
  126. static void do_skip(Copy_field *copy __attribute__((unused)))
  127. {
  128. }
  129. static void do_copy_null(Copy_field *copy)
  130. {
  131.   if (*copy->from_null_ptr & copy->from_bit)
  132.   {
  133.     *copy->to_null_ptr|=copy->to_bit;
  134.     copy->to_field->reset();
  135.   }
  136.   else
  137.   {
  138.     *copy->to_null_ptr&= ~copy->to_bit;
  139.     (copy->do_copy2)(copy);
  140.   }
  141. }
  142. static void do_outer_field_null(Copy_field *copy)
  143. {
  144.   if (*copy->null_row ||
  145.       copy->from_null_ptr && (*copy->from_null_ptr & copy->from_bit))
  146.   {
  147.     *copy->to_null_ptr|=copy->to_bit;
  148.     copy->to_field->reset();
  149.   }
  150.   else
  151.   {
  152.     *copy->to_null_ptr&= ~copy->to_bit;
  153.     (copy->do_copy2)(copy);
  154.   }
  155. }
  156. static void do_copy_not_null(Copy_field *copy)
  157. {
  158.   if (*copy->from_null_ptr & copy->from_bit)
  159.   {
  160.     current_thd->cuted_fields++;
  161.     copy->to_field->reset();
  162.   }
  163.   else
  164.     (copy->do_copy2)(copy);
  165. }
  166. static void do_copy_maybe_null(Copy_field *copy)
  167. {
  168.   *copy->to_null_ptr&= ~copy->to_bit;
  169.   (copy->do_copy2)(copy);
  170. }
  171. /* timestamp and next_number has special handling in case of NULL values */
  172. static void do_copy_timestamp(Copy_field *copy)
  173. {
  174.   if (*copy->from_null_ptr & copy->from_bit)
  175.   {
  176.     ((Field_timestamp*) copy->to_field)->set_time();// Same as set_field_to_null
  177.   }
  178.   else
  179.     (copy->do_copy2)(copy);
  180. }
  181. static void do_copy_next_number(Copy_field *copy)
  182. {
  183.   if (*copy->from_null_ptr & copy->from_bit)
  184.     copy->to_field->reset(); // Same as set_field_to_null
  185.   else
  186.     (copy->do_copy2)(copy);
  187. }
  188. static void do_copy_blob(Copy_field *copy)
  189. {
  190.   ulong length=((Field_blob*) copy->from_field)->get_length();
  191.   ((Field_blob*) copy->to_field)->store_length(length);
  192.   memcpy_fixed(copy->to_ptr,copy->from_ptr,sizeof(char*));
  193. }
  194. static void do_conv_blob(Copy_field *copy)
  195. {
  196.   copy->from_field->val_str(&copy->tmp,&copy->tmp);
  197.   ((Field_blob *) copy->to_field)->store(copy->tmp.ptr(),
  198.  copy->tmp.length());
  199. }
  200. /* Save blob in copy->tmp for GROUP BY */
  201. static void do_save_blob(Copy_field *copy)
  202. {
  203.   char buff[MAX_FIELD_WIDTH];
  204.   String res(buff,sizeof(buff));
  205.   copy->from_field->val_str(&res,&res);
  206.   copy->tmp.copy(res);
  207.   ((Field_blob *) copy->to_field)->store(copy->tmp.ptr(),
  208.  copy->tmp.length());
  209. }
  210. static void do_field_string(Copy_field *copy)
  211. {
  212.   char buff[MAX_FIELD_WIDTH];
  213.   copy->tmp.set_quick(buff,sizeof(buff));
  214.   copy->from_field->val_str(&copy->tmp,&copy->tmp);
  215.   copy->to_field->store(copy->tmp.c_ptr_quick(),copy->tmp.length());
  216. }
  217. static void do_field_int(Copy_field *copy)
  218. {
  219.   longlong value=copy->from_field->val_int();
  220.   copy->to_field->store(value);
  221. }
  222. static void do_field_real(Copy_field *copy)
  223. {
  224.   double value=copy->from_field->val_real();
  225.   copy->to_field->store(value);
  226. }
  227. static void do_cut_string(Copy_field *copy)
  228. { // Shorter string field
  229.   memcpy(copy->to_ptr,copy->from_ptr,copy->to_length);
  230.   /* Check if we loosed any important characters */
  231.   char *ptr,*end;
  232.   for (ptr=copy->from_ptr+copy->to_length,end=copy->from_ptr+copy->from_length ;
  233.        ptr != end ;
  234.        ptr++)
  235.   {
  236.     if (!isspace(*ptr))
  237.     {
  238.       current_thd->cuted_fields++; // Give a warning
  239.       break;
  240.     }
  241.   }
  242. }
  243. static void do_expand_string(Copy_field *copy)
  244. {
  245.   memcpy(copy->to_ptr,copy->from_ptr,copy->from_length);
  246.   bfill(copy->to_ptr+copy->from_length,copy->to_length-copy->from_length,' ');
  247. }
  248. static void do_varstring(Copy_field *copy)
  249. {
  250.   uint length=uint2korr(copy->from_ptr);
  251.   if (length > copy->to_length-2)
  252.   {
  253.     length=copy->to_length-2;
  254.     if (current_thd->count_cuted_fields)
  255.       current_thd->cuted_fields++; // Increment error counter
  256.   }
  257.   int2store(copy->to_ptr,length);
  258.   memcpy(copy->to_ptr+2, copy->from_ptr,length);
  259. }
  260. /***************************************************************************
  261. ** The different functions that fills in a Copy_field class
  262. ***************************************************************************/
  263. /*
  264.   copy of field to maybe null string.
  265.   If field is null then the all bytes are set to 0.
  266.   if field is not null then the first byte is set to 1 and the rest of the
  267.   string is the field value.
  268.   The 'to' buffer should have a size of field->pack_length()+1
  269. */
  270. void Copy_field::set(char *to,Field *from)
  271. {
  272.   from_ptr=from->ptr;
  273.   to_ptr=to;
  274.   from_length=from->pack_length();
  275.   if (from->maybe_null())
  276.   {
  277.     from_null_ptr=from->null_ptr;
  278.     from_bit=   from->null_bit;
  279.     to_ptr[0]=   1; // Null as default value
  280.     to_null_ptr=  (uchar*) to_ptr++;
  281.     to_bit=   1;
  282.     if (from->table->maybe_null)
  283.     {
  284.       null_row=   &from->table->null_row;
  285.       do_copy=   do_outer_field_to_null_str;
  286.     }
  287.     else
  288.       do_copy=   do_field_to_null_str;
  289.   }
  290.   else
  291.   {
  292.     to_null_ptr=  0; // For easy debugging
  293.     do_copy=   do_field_eq;
  294.   }
  295. }
  296. void Copy_field::set(Field *to,Field *from,bool save)
  297. {
  298.   if (to->type() == FIELD_TYPE_NULL)
  299.   {
  300.     to_null_ptr=0; // For easy debugging
  301.     to_ptr=0;
  302.     do_copy=do_skip;
  303.     return;
  304.   }
  305.   from_field=from;
  306.   to_field=to;
  307.   from_ptr=from->ptr;
  308.   from_length=from->pack_length();
  309.   to_ptr=  to->ptr;
  310.   to_length=to_field->pack_length();
  311.   // set up null handling
  312.   from_null_ptr=to_null_ptr=0;
  313.   if (from->maybe_null())
  314.   {
  315.     from_null_ptr= from->null_ptr;
  316.     from_bit= from->null_bit;
  317.     if (to_field->real_maybe_null())
  318.     {
  319.       to_null_ptr= to->null_ptr;
  320.       to_bit= to->null_bit;
  321.       if (from_null_ptr)
  322. do_copy= do_copy_null;
  323.       else
  324.       {
  325. null_row= &from->table->null_row;
  326. do_copy= do_outer_field_null;
  327.       }
  328.     }
  329.     else
  330.       do_copy=do_copy_not_null;
  331.   }
  332.   else if (to_field->real_maybe_null())
  333.   {
  334.     to_null_ptr= to->null_ptr;
  335.     to_bit= to->null_bit;
  336.     if (to_field->type() == FIELD_TYPE_TIMESTAMP)
  337.       do_copy=do_copy_timestamp; // Automatic timestamp
  338.     else if (to_field == to_field->table->next_number_field)
  339.       do_copy=do_copy_next_number;
  340.     else
  341.       do_copy=do_copy_maybe_null;
  342.   }
  343.   else
  344.    do_copy=0;
  345.   if ((to->flags & BLOB_FLAG) && save)
  346.     do_copy2= do_save_blob;
  347.   else
  348.     do_copy2= get_copy_func(to,from);
  349.   if (!do_copy) // Not null
  350.     do_copy=do_copy2;
  351. }
  352. void (*Copy_field::get_copy_func(Field *to,Field *from))(Copy_field*)
  353. {
  354.   if (to->flags & BLOB_FLAG)
  355.   {
  356.     if (!(from->flags & BLOB_FLAG))
  357.       return do_conv_blob;
  358.     if (from_length != to_length ||
  359. to->table->db_low_byte_first != from->table->db_low_byte_first)
  360.     {
  361.       // Correct pointer to point at char pointer
  362.       to_ptr+=to_length - to->table->blob_ptr_size;
  363.       from_ptr+=from_length- from->table->blob_ptr_size;
  364.       return do_copy_blob;
  365.     }
  366.   }
  367.   else
  368.   {
  369.     // Check if identical fields
  370.     if (from->result_type() == STRING_RESULT)
  371.     {
  372.       if (to->real_type() != from->real_type() ||
  373.   to->table->db_low_byte_first != from->table->db_low_byte_first)
  374.       {
  375. if (from->real_type() == FIELD_TYPE_ENUM ||
  376.     from->real_type() == FIELD_TYPE_SET)
  377.   if (to->result_type() != STRING_RESULT)
  378.     return do_field_int; // Convert SET to number
  379. return do_field_string;
  380.       }
  381.       if (to->real_type() == FIELD_TYPE_ENUM ||
  382.   to->real_type() == FIELD_TYPE_SET)
  383.       {
  384. if (!to->eq_def(from))
  385.   return do_field_string;
  386.       }
  387.       else if (to->real_type() == FIELD_TYPE_VAR_STRING && to_length !=
  388.        from_length)
  389. return do_varstring;
  390.       else if (to_length < from_length)
  391. return do_cut_string;
  392.       else if (to_length > from_length)
  393. return do_expand_string;
  394.     }
  395.     else if (to->real_type() != from->real_type() ||
  396.      to_length != from_length ||
  397.      to->table->db_low_byte_first != from->table->db_low_byte_first)
  398.     {
  399.       if (to->real_type() == FIELD_TYPE_DECIMAL ||
  400.   to->result_type() == STRING_RESULT)
  401. return do_field_string;
  402.       if (to->result_type() == INT_RESULT)
  403. return do_field_int;
  404.       return do_field_real;
  405.     }
  406.     else
  407.     {
  408.       if (!to->eq_def(from) ||
  409.   to->table->db_low_byte_first != from->table->db_low_byte_first)
  410.       {
  411. if (to->real_type() == FIELD_TYPE_DECIMAL)
  412.   return do_field_string;
  413. if (to->result_type() == INT_RESULT)
  414.   return do_field_int;
  415. else
  416.   return do_field_real;
  417.       }
  418.     }
  419.   }
  420.     /* Eq fields */
  421.   switch (to_length) {
  422.   case 1: return do_field_1;
  423.   case 2: return do_field_2;
  424.   case 3: return do_field_3;
  425.   case 4: return do_field_4;
  426.   case 6: return do_field_6;
  427.   case 8: return do_field_8;
  428.   }
  429.   return do_field_eq;
  430. }
  431. /* Simple quick field convert that is called on insert */
  432. void field_conv(Field *to,Field *from)
  433. {
  434.   if (to->real_type() == from->real_type())
  435.   {
  436.     if (to->pack_length() == from->pack_length() &&
  437. to->real_type() != FIELD_TYPE_ENUM &&
  438. to->real_type() != FIELD_TYPE_SET &&
  439. to->table->db_low_byte_first == from->table->db_low_byte_first)
  440.     { // Identical fields
  441.       memcpy(to->ptr,from->ptr,to->pack_length());
  442.       return;
  443.     }
  444.   }
  445.   if (to->type() == FIELD_TYPE_BLOB)
  446.   { // Be sure the value is stored
  447.     Field_blob *blob=(Field_blob*) to;
  448.     from->val_str(&blob->value,&blob->value);
  449.     if (!blob->value.is_alloced() &&
  450. from->real_type() != FIELD_TYPE_STRING)
  451.       blob->value.copy();
  452.     blob->store(blob->value.ptr(),blob->value.length());
  453.     return;
  454.   }
  455.   if ((from->result_type() == STRING_RESULT &&
  456.        (to->result_type() == STRING_RESULT ||
  457. (from->real_type() != FIELD_TYPE_ENUM &&
  458.  from->real_type() != FIELD_TYPE_SET))) ||
  459.       to->type() == FIELD_TYPE_DECIMAL)
  460.   {
  461.     char buff[MAX_FIELD_WIDTH];
  462.     String result(buff,sizeof(buff));
  463.     from->val_str(&result,&result);
  464.     to->store(result.c_ptr_quick(),result.length());
  465.   }
  466.   else if (from->result_type() == REAL_RESULT)
  467.     to->store(from->val_real());
  468.   else
  469.     to->store(from->val_int());
  470. }