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