2006-12-31 01:02:27 +01:00
|
|
|
/* Copyright (C) 2000-2001, 2003-2004 MySQL AB
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
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
|
2006-12-23 20:17:15 +01:00
|
|
|
the Free Software Foundation; version 2 of the License.
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
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.
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
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 */
|
|
|
|
|
|
|
|
/* Calculate a checksum for a row */
|
|
|
|
|
|
|
|
#include "myisamdef.h"
|
|
|
|
|
|
|
|
ha_checksum mi_checksum(MI_INFO *info, const byte *buf)
|
|
|
|
{
|
|
|
|
uint i;
|
|
|
|
ha_checksum crc=0;
|
|
|
|
MI_COLUMNDEF *rec=info->s->rec;
|
|
|
|
|
|
|
|
for (i=info->s->base.fields ; i-- ; buf+=(rec++)->length)
|
|
|
|
{
|
|
|
|
const byte *pos;
|
2003-08-05 21:14:15 +02:00
|
|
|
ulong length;
|
2000-07-31 21:29:14 +02:00
|
|
|
switch (rec->type) {
|
|
|
|
case FIELD_BLOB:
|
|
|
|
{
|
2003-08-05 21:14:15 +02:00
|
|
|
length=_mi_calc_blob_length(rec->length-
|
2000-07-31 21:29:14 +02:00
|
|
|
mi_portable_sizeof_char_ptr,
|
|
|
|
buf);
|
|
|
|
memcpy((char*) &pos, buf+rec->length- mi_portable_sizeof_char_ptr,
|
|
|
|
sizeof(char*));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case FIELD_VARCHAR:
|
|
|
|
{
|
2004-12-18 04:19:21 +01:00
|
|
|
uint pack_length= HA_VARCHAR_PACKLENGTH(rec->length-1);
|
|
|
|
if (pack_length == 1)
|
|
|
|
length= (ulong) *(uchar*) buf;
|
|
|
|
else
|
|
|
|
length= uint2korr(buf);
|
|
|
|
pos= buf+pack_length;
|
2000-07-31 21:29:14 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
2003-08-05 21:14:15 +02:00
|
|
|
length=rec->length;
|
|
|
|
pos=buf;
|
2000-07-31 21:29:14 +02:00
|
|
|
break;
|
|
|
|
}
|
2003-09-03 11:34:32 +02:00
|
|
|
crc=my_checksum(crc, pos ? pos : "", length);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
return crc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ha_checksum mi_static_checksum(MI_INFO *info, const byte *pos)
|
|
|
|
{
|
2003-08-05 21:14:15 +02:00
|
|
|
return my_checksum(0, pos, info->s->base.reclength);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|