home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / myisam / mi_update.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  6KB  |  185 lines

  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. /* Update an old row in a MyISAM table */
  18.  
  19. #include "fulltext.h"
  20. #ifdef    __WIN__
  21. #include <errno.h>
  22. #endif
  23.  
  24.  
  25. int mi_update(register MI_INFO *info, const byte *oldrec, byte *newrec)
  26. {
  27.   int flag,key_changed,save_errno;
  28.   reg3 my_off_t pos;
  29.   uint i;
  30.   uchar old_key[MI_MAX_KEY_BUFF],*new_key;
  31.   bool auto_key_changed=0;
  32.   ulonglong changed;
  33.   MYISAM_SHARE *share=info->s;
  34.   ha_checksum old_checksum;
  35.   DBUG_ENTER("mi_update");
  36.   LINT_INIT(new_key);
  37.   LINT_INIT(changed);
  38.   LINT_INIT(old_checksum);
  39.  
  40.   if (!(info->update & HA_STATE_AKTIV))
  41.   {
  42.     DBUG_RETURN(my_errno=HA_ERR_KEY_NOT_FOUND);
  43.   }
  44.   if (share->options & HA_OPTION_READ_ONLY_DATA)
  45.   {
  46.     DBUG_RETURN(my_errno=EACCES);
  47.   }
  48.   if (info->state->key_file_length >= share->base.margin_key_file_length)
  49.   {
  50.     DBUG_RETURN(my_errno=HA_ERR_INDEX_FILE_FULL);
  51.   }
  52.   pos=info->lastpos;
  53.   if (_mi_readinfo(info,F_WRLCK,1))
  54.     DBUG_RETURN(my_errno);
  55.  
  56.   if (share->calc_checksum)
  57.     old_checksum=info->checksum=(*share->calc_checksum)(info,oldrec);
  58.   if ((*share->compare_record)(info,oldrec))
  59.   {
  60.     save_errno=my_errno;
  61.     goto err_end;            /* Record has changed */
  62.   }
  63.  
  64.   /* Calculate and check all unique constraints */
  65.   key_changed=0;
  66.   for (i=0 ; i < share->state.header.uniques ; i++)
  67.   {
  68.     MI_UNIQUEDEF *def=share->uniqueinfo+i;
  69.     if (mi_unique_comp(def, newrec, oldrec,1) &&
  70.     mi_check_unique(info, def, newrec, mi_unique_hash(def, newrec),
  71.             info->lastpos))
  72.     {
  73.       save_errno=my_errno;
  74.       goto err_end;
  75.     }
  76.   }
  77.   if (_mi_mark_file_changed(info))
  78.   {
  79.     save_errno=my_errno;
  80.     goto err_end;
  81.   }
  82.  
  83.   /* Check which keys changed from the original row */
  84.  
  85.   new_key=info->lastkey2;
  86.   key_changed=HA_STATE_KEY_CHANGED;    /* We changed current database */
  87.                     /* Remove key that didn't change */
  88.   changed=0;
  89.   for (i=0 ; i < share->base.keys ; i++)
  90.   {
  91.     if (((ulonglong) 1 << i) & share->state.key_map)
  92.     {
  93.       /* The following code block is for text searching by SerG */
  94.       if (share->keyinfo[i].flag & HA_FULLTEXT )
  95.       {
  96.     if(_mi_ft_cmp(info,i,oldrec, newrec))
  97.     {
  98.       if ((int) i == info->lastinx)
  99.         key_changed|=HA_STATE_WRITTEN;
  100.       changed|=((ulonglong) 1 << i);
  101.       if (_mi_ft_del(info,i,(char*) old_key,oldrec,pos))
  102.         goto err;
  103.       if (_mi_ft_add(info,i,(char*) new_key,newrec,pos))
  104.         goto err;
  105.     }
  106.       }
  107.       else
  108.       {
  109.     uint new_length=_mi_make_key(info,i,new_key,newrec,pos);
  110.     uint old_length=_mi_make_key(info,i,old_key,oldrec,pos);
  111.     if (new_length != old_length ||
  112.         memcmp((byte*) old_key,(byte*) new_key,new_length))
  113.     {
  114.       if ((int) i == info->lastinx)
  115.         key_changed|=HA_STATE_WRITTEN;    /* Mark that keyfile changed */
  116.       changed|=((ulonglong) 1 << i);
  117.       share->keyinfo[i].version++;
  118.       if (_mi_ck_delete(info,i,old_key,old_length)) goto err;
  119.       if (_mi_ck_write(info,i,new_key,new_length)) goto err;
  120.       if (share->base.auto_key == i+1)
  121.         auto_key_changed=1;
  122.     }
  123.       }
  124.     }
  125.   }
  126.  
  127.   if (share->calc_checksum)
  128.     info->checksum=(*share->calc_checksum)(info,newrec);
  129.   if ((*share->update_record)(info,pos,newrec))
  130.     goto err;
  131.   if (auto_key_changed)
  132.     update_auto_increment(info,newrec);
  133.   if (share->calc_checksum)
  134.     share->state.checksum+=(info->checksum - old_checksum);
  135.  
  136.   info->update= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED | HA_STATE_AKTIV |
  137.          key_changed);
  138.   myisam_log_record(MI_LOG_UPDATE,info,newrec,info->lastpos,0);
  139.   VOID(_mi_writeinfo(info,key_changed ?  WRITEINFO_UPDATE_KEYFILE : 0));
  140.   allow_break();                /* Allow SIGHUP & SIGINT */
  141.   DBUG_RETURN(0);
  142.  
  143. err:
  144.   DBUG_PRINT("error",("key: %d  errno: %d",i,my_errno));
  145.   save_errno=my_errno;
  146.   if (my_errno == HA_ERR_FOUND_DUPP_KEY || my_errno == HA_ERR_RECORD_FILE_FULL)
  147.   {
  148.     info->errkey= (int) i;
  149.     flag=0;
  150.     do
  151.     {
  152.       if (((ulonglong) 1 << i) & changed)
  153.       {
  154.     /* The following code block is for text searching by SerG */
  155.     if (share->keyinfo[i].flag & HA_FULLTEXT)
  156.     {
  157.       if ((flag++ && _mi_ft_del(info,i,(char*) new_key,newrec,pos)) ||
  158.           _mi_ft_add(info,i,(char*) old_key,oldrec,pos))
  159.         break;
  160.     }
  161.     else
  162.     {
  163.       uint new_length=_mi_make_key(info,i,new_key,newrec,pos);
  164.       uint old_length= _mi_make_key(info,i,old_key,oldrec,pos);
  165.       if ((flag++ && _mi_ck_delete(info,i,new_key,new_length)) ||
  166.           _mi_ck_write(info,i,old_key,old_length))
  167.         break;
  168.     }
  169.       }
  170.     } while (i-- != 0);
  171.   }
  172.   else
  173.     mi_mark_crashed(info);
  174.   info->update= (HA_STATE_CHANGED | HA_STATE_AKTIV | HA_STATE_ROW_CHANGED |
  175.          key_changed);
  176.  
  177.  err_end:
  178.   myisam_log_record(MI_LOG_UPDATE,info,newrec,info->lastpos,my_errno);
  179.   VOID(_mi_writeinfo(info,WRITEINFO_UPDATE_KEYFILE));
  180.   allow_break();                /* Allow SIGHUP & SIGINT */
  181.   if (save_errno == HA_ERR_KEY_NOT_FOUND)
  182.     save_errno=HA_ERR_CRASHED;
  183.   DBUG_RETURN(my_errno=save_errno);
  184. } /* mi_update */
  185.