hp_delete.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. /* remove current record in heap-database */
  14. #include "heapdef.h"
  15. int heap_delete(HP_INFO *info, const byte *record)
  16. {
  17.   byte *pos;
  18.   HP_SHARE *share=info->s;
  19.   HP_KEYDEF *keydef, *end, *p_lastinx;
  20.   DBUG_ENTER("heap_delete");
  21.   DBUG_PRINT("enter",("info: %lx  record: %lx",info,record));
  22.   test_active(info);
  23.   if (info->opt_flag & READ_CHECK_USED && hp_rectest(info,record))
  24.     DBUG_RETURN(my_errno); /* Record changed */
  25.   share->changed=1;
  26.   if ( --(share->records) < share->blength >> 1) share->blength>>=1;
  27.   pos=info->current_ptr;
  28.   p_lastinx = share->keydef + info->lastinx;
  29.   for (keydef = share->keydef, end = keydef + share->keys; keydef < end; 
  30.        keydef++)
  31.   {
  32.     if ((*keydef->delete_key)(info, keydef, record, pos, keydef == p_lastinx))
  33.       goto err;
  34.   }
  35.   info->update=HA_STATE_DELETED;
  36.   *((byte**) pos)=share->del_link;
  37.   share->del_link=pos;
  38.   pos[share->reclength]=0; /* Record deleted */
  39.   share->deleted++;
  40.   info->current_hash_ptr=0;
  41. #if !defined(DBUG_OFF) && defined(EXTRA_HEAP_DEBUG)
  42.   DBUG_EXECUTE("check_heap",heap_check_heap(info, 0););
  43. #endif
  44.   DBUG_RETURN(0);
  45. err:
  46.   if (++(share->records) == share->blength)
  47.     share->blength+= share->blength;
  48.   DBUG_RETURN(my_errno);
  49. }
  50. /*
  51.   Remove one key from rb-tree
  52. */
  53. int hp_rb_delete_key(HP_INFO *info, register HP_KEYDEF *keyinfo,
  54.    const byte *record, byte *recpos, int flag)
  55. {
  56.   heap_rb_param custom_arg;
  57.   uint old_allocated;
  58.   int res;
  59.   if (flag) 
  60.     info->last_pos= NULL; /* For heap_rnext/heap_rprev */
  61.   custom_arg.keyseg= keyinfo->seg;
  62.   custom_arg.key_length= hp_rb_make_key(keyinfo, info->recbuf, record, recpos);
  63.   custom_arg.search_flag= SEARCH_SAME;
  64.   old_allocated= keyinfo->rb_tree.allocated;
  65.   res= tree_delete(&keyinfo->rb_tree, info->recbuf, &custom_arg);
  66.   info->s->index_length-= (old_allocated - keyinfo->rb_tree.allocated);
  67.   return res;
  68. }
  69. /*
  70.   Remove one key from hash-table
  71.   SYNPOSIS
  72.     hp_delete_key()
  73.     info Hash handler
  74.     keyinfo key definition of key that we want to delete
  75.     record row data to be deleted
  76.     recpos Pointer to heap record in memory
  77.     flag Is set if we want's to correct info->current_ptr
  78.   RETURN
  79.     0      Ok
  80.     other  Error code
  81. */
  82. int hp_delete_key(HP_INFO *info, register HP_KEYDEF *keyinfo,
  83.   const byte *record, byte *recpos, int flag)
  84. {
  85.   ulong blength,pos2,pos_hashnr,lastpos_hashnr;
  86.   HASH_INFO *lastpos,*gpos,*pos,*pos3,*empty,*last_ptr;
  87.   HP_SHARE *share=info->s;
  88.   DBUG_ENTER("hp_delete_key");
  89.   blength=share->blength;
  90.   if (share->records+1 == blength)
  91.     blength+= blength;
  92.   lastpos=hp_find_hash(&keyinfo->block,share->records);
  93.   last_ptr=0;
  94.   /* Search after record with key */
  95.   pos= hp_find_hash(&keyinfo->block,
  96.     hp_mask(hp_rec_hashnr(keyinfo, record), blength,
  97.     share->records + 1));
  98.   gpos = pos3 = 0;
  99.   while (pos->ptr_to_rec != recpos)
  100.   {
  101.     if (flag && !hp_rec_key_cmp(keyinfo, record, pos->ptr_to_rec))
  102.       last_ptr=pos; /* Previous same key */
  103.     gpos=pos;
  104.     if (!(pos=pos->next_key))
  105.     {
  106.       DBUG_RETURN(my_errno=HA_ERR_CRASHED); /* This shouldn't happend */
  107.     }
  108.   }
  109.   /* Remove link to record */
  110.   if (flag)
  111.   {
  112.     /* Save for heap_rnext/heap_rprev */
  113.     info->current_hash_ptr=last_ptr;
  114.     info->current_ptr = last_ptr ? last_ptr->ptr_to_rec : 0;
  115.     DBUG_PRINT("info",("Corrected current_ptr to point at: %lx",
  116.        info->current_ptr));
  117.   }
  118.   empty=pos;
  119.   if (gpos)
  120.     gpos->next_key=pos->next_key; /* unlink current ptr */
  121.   else if (pos->next_key)
  122.   {
  123.     empty=pos->next_key;
  124.     pos->ptr_to_rec=empty->ptr_to_rec;
  125.     pos->next_key=empty->next_key;
  126.   }
  127.   else
  128.     keyinfo->hash_buckets--;
  129.   if (empty == lastpos) /* deleted last hash key */
  130.     DBUG_RETURN (0);
  131.   /* Move the last key (lastpos) */
  132.   lastpos_hashnr = hp_rec_hashnr(keyinfo, lastpos->ptr_to_rec);
  133.   /* pos is where lastpos should be */
  134.   pos=hp_find_hash(&keyinfo->block, hp_mask(lastpos_hashnr, share->blength,
  135.     share->records));
  136.   if (pos == empty) /* Move to empty position. */
  137.   {
  138.     empty[0]=lastpos[0];
  139.     DBUG_RETURN(0);
  140.   }
  141.   pos_hashnr = hp_rec_hashnr(keyinfo, pos->ptr_to_rec);
  142.   /* pos3 is where the pos should be */
  143.   pos3= hp_find_hash(&keyinfo->block,
  144.      hp_mask(pos_hashnr, share->blength, share->records));
  145.   if (pos != pos3)
  146.   { /* pos is on wrong posit */
  147.     empty[0]=pos[0]; /* Save it here */
  148.     pos[0]=lastpos[0]; /* This shold be here */
  149.     hp_movelink(pos, pos3, empty); /* Fix link to pos */
  150.     DBUG_RETURN(0);
  151.   }
  152.   pos2= hp_mask(lastpos_hashnr, blength, share->records + 1);
  153.   if (pos2 == hp_mask(pos_hashnr, blength, share->records + 1))
  154.   { /* Identical key-positions */
  155.     if (pos2 != share->records)
  156.     {
  157.       empty[0]=lastpos[0];
  158.       hp_movelink(lastpos, pos, empty);
  159.       DBUG_RETURN(0);
  160.     }
  161.     pos3= pos; /* Link pos->next after lastpos */
  162.   }
  163.   else
  164.   {
  165.     pos3= 0; /* Different positions merge */
  166.     keyinfo->hash_buckets--;
  167.   }
  168.   empty[0]=lastpos[0];
  169.   hp_movelink(pos3, empty, pos->next_key);
  170.   pos->next_key=empty;
  171.   DBUG_RETURN(0);
  172. }