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

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. /* Calculate a checksum for a row */
  14. #include "myisamdef.h"
  15. ha_checksum mi_checksum(MI_INFO *info, const byte *buf)
  16. {
  17.   uint i;
  18.   ha_checksum crc=0;
  19.   MI_COLUMNDEF *rec=info->s->rec;
  20.   for (i=info->s->base.fields ; i-- ; buf+=(rec++)->length)
  21.   {
  22.     const byte *pos;
  23.     ulong length;
  24.     switch (rec->type) {
  25.     case FIELD_BLOB:
  26.     {
  27.       length=_mi_calc_blob_length(rec->length-
  28. mi_portable_sizeof_char_ptr,
  29. buf);
  30.       memcpy((char*) &pos, buf+rec->length- mi_portable_sizeof_char_ptr,
  31.      sizeof(char*));
  32.       break;
  33.     }
  34.     case FIELD_VARCHAR:
  35.     {
  36.       length=uint2korr(buf);
  37.       pos=buf+2;
  38.       break;
  39.     }
  40.     default:
  41.       length=rec->length;
  42.       pos=buf;
  43.       break;
  44.     }
  45.     crc=my_checksum(crc, pos ? pos : "", length);
  46.   }
  47.   return crc;
  48. }
  49. ha_checksum mi_static_checksum(MI_INFO *info, const byte *pos)
  50. {
  51.   return my_checksum(0, pos, info->s->base.reclength);
  52. }