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

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. /* Functions to check if a row is unique */
  14. #include "myisamdef.h"
  15. #include <m_ctype.h>
  16. my_bool mi_check_unique(MI_INFO *info, MI_UNIQUEDEF *def, byte *record,
  17. ha_checksum unique_hash, my_off_t disk_pos)
  18. {
  19.   my_off_t lastpos=info->lastpos;
  20.   MI_KEYDEF *key= &info->s->keyinfo[def->key];
  21.   uchar *key_buff=info->lastkey2;
  22.   DBUG_ENTER("mi_check_unique");
  23.   mi_unique_store(record+key->seg->start, unique_hash);
  24.   _mi_make_key(info,def->key,key_buff,record,0);
  25.   if (_mi_search(info,info->s->keyinfo+def->key,key_buff,MI_UNIQUE_HASH_LENGTH,
  26.  SEARCH_FIND,info->s->state.key_root[def->key]))
  27.   {
  28.     info->page_changed=1; /* Can't optimize read next */
  29.     info->lastpos= lastpos;
  30.     DBUG_RETURN(0); /* No matching rows */
  31.   }
  32.   for (;;)
  33.   {
  34.     if (info->lastpos != disk_pos &&
  35. !(*info->s->compare_unique)(info,def,record,info->lastpos))
  36.     {
  37.       my_errno=HA_ERR_FOUND_DUPP_UNIQUE;
  38.       info->errkey= (int) def->key;
  39.       info->dupp_key_pos= info->lastpos;
  40.       info->page_changed=1; /* Can't optimize read next */
  41.       info->lastpos=lastpos;
  42.       DBUG_PRINT("info",("Found duplicate"));
  43.       DBUG_RETURN(1); /* Found identical  */
  44.     }
  45.     if (_mi_search_next(info,info->s->keyinfo+def->key, info->lastkey,
  46. MI_UNIQUE_HASH_LENGTH, SEARCH_BIGGER,
  47. info->s->state.key_root[def->key]) ||
  48. bcmp(info->lastkey, key_buff, MI_UNIQUE_HASH_LENGTH))
  49.     {
  50.       info->page_changed=1; /* Can't optimize read next */
  51.       info->lastpos=lastpos;
  52.       DBUG_RETURN(0); /* end of tree */
  53.     }
  54.   }
  55. }
  56. /* Calculate a hash for a row */
  57. ha_checksum mi_unique_hash(MI_UNIQUEDEF *def, const byte *record)
  58. {
  59.   const byte *pos, *end;
  60.   ha_checksum crc= 0;
  61.   ulong seed1=0, seed2= 4;
  62.   HA_KEYSEG *keyseg;
  63.   for (keyseg=def->seg ; keyseg < def->end ; keyseg++)
  64.   {
  65.     enum ha_base_keytype type=(enum ha_base_keytype) keyseg->type;
  66.     uint length=keyseg->length;
  67.     if (keyseg->null_bit)
  68.     {
  69.       if (record[keyseg->null_pos] & keyseg->null_bit)
  70.       {
  71. /*
  72.   Change crc in a way different from an empty string or 0.
  73.   (This is an optimisation;  The code will work even if this isn't
  74.   done)
  75. */
  76. crc=((crc << 8) + 511+
  77.      (crc >> (8*sizeof(ha_checksum)-8)));
  78. continue;
  79.       }
  80.     }
  81.     pos= record+keyseg->start;
  82.     if (keyseg->flag & HA_VAR_LENGTH)
  83.     {
  84.       uint tmp_length=uint2korr(pos);
  85.       pos+=2; /* Skip VARCHAR length */
  86.       set_if_smaller(length,tmp_length);
  87.     }
  88.     else if (keyseg->flag & HA_BLOB_PART)
  89.     {
  90.       uint tmp_length=_mi_calc_blob_length(keyseg->bit_start,pos);
  91.       memcpy_fixed((byte*) &pos,pos+keyseg->bit_start,sizeof(char*));
  92.       if (!length || length > tmp_length)
  93. length=tmp_length; /* The whole blob */
  94.     }
  95.     end= pos+length;
  96.     if (type == HA_KEYTYPE_TEXT || type == HA_KEYTYPE_VARTEXT)
  97.     {
  98.       keyseg->charset->coll->hash_sort(keyseg->charset,
  99.                                        (const uchar*) pos, length, &seed1,
  100.                                        &seed2);
  101.       crc^= seed1;
  102.     }
  103.     else
  104.       while (pos != end)
  105. crc=((crc << 8) +
  106.      (((uchar)  *(uchar*) pos++))) +
  107.   (crc >> (8*sizeof(ha_checksum)-8));
  108.   }
  109.   return crc;
  110. }
  111. /*
  112.   Returns 0 if both rows have equal unique value
  113.  */
  114. int mi_unique_comp(MI_UNIQUEDEF *def, const byte *a, const byte *b,
  115.    my_bool null_are_equal)
  116. {
  117.   const byte *pos_a, *pos_b, *end;
  118.   HA_KEYSEG *keyseg;
  119.   for (keyseg=def->seg ; keyseg < def->end ; keyseg++)
  120.   {
  121.     enum ha_base_keytype type=(enum ha_base_keytype) keyseg->type;
  122.     uint length=keyseg->length;
  123.     /* If part is NULL it's regarded as different */
  124.     if (keyseg->null_bit)
  125.     {
  126.       uint tmp;
  127.       if ((tmp=(a[keyseg->null_pos] & keyseg->null_bit)) !=
  128.   (uint) (b[keyseg->null_pos] & keyseg->null_bit))
  129. return 1;
  130.       if (tmp)
  131.       {
  132. if (!null_are_equal)
  133.   return 1;
  134. continue;
  135.       }
  136.     }
  137.     pos_a= a+keyseg->start;
  138.     pos_b= b+keyseg->start;
  139.     if (keyseg->flag & HA_VAR_LENGTH)
  140.     {
  141.       uint tmp_length=uint2korr(pos_a);
  142.       if (tmp_length != uint2korr(pos_b))
  143. return 1;
  144.       pos_a+=2; /* Skip VARCHAR length */
  145.       pos_b+=2;
  146.       set_if_smaller(length,tmp_length);
  147.     }
  148.     else if (keyseg->flag & HA_BLOB_PART)
  149.     {
  150.       /* Only compare 'length' characters if length<> 0 */
  151.       uint a_length= _mi_calc_blob_length(keyseg->bit_start,pos_a);
  152.       uint b_length= _mi_calc_blob_length(keyseg->bit_start,pos_b);
  153.       /* Check that a and b are of equal length */
  154.       if (length && a_length > length)
  155. a_length=length;
  156.       if (!length || length > b_length)
  157. length=b_length;
  158.       if (length != a_length)
  159. return 1;
  160.       /* Both strings are at least 'length' long */
  161.       memcpy_fixed((byte*) &pos_a,pos_a+keyseg->bit_start,sizeof(char*));
  162.       memcpy_fixed((byte*) &pos_b,pos_b+keyseg->bit_start,sizeof(char*));
  163.     }
  164.     if (type == HA_KEYTYPE_TEXT || type == HA_KEYTYPE_VARTEXT)
  165.     {
  166.       if (mi_compare_text(keyseg->charset, (uchar *) pos_a, length,
  167.                                            (uchar *) pos_b, length, 0, 0))
  168.   return 1;
  169.     }
  170.     else
  171.     {
  172.       end= pos_a+length;
  173.       while (pos_a != end)
  174. if (*pos_a++ != *pos_b++)
  175.   return 1;
  176.     }
  177.   }
  178.   return 0;
  179. }