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

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. #include "heapdef.h"
  14. int heap_rkey(HP_INFO *info, byte *record, int inx, const byte *key, 
  15.               uint key_len, enum ha_rkey_function find_flag)
  16. {
  17.   byte *pos;
  18.   HP_SHARE *share= info->s;
  19.   HP_KEYDEF *keyinfo= share->keydef + inx;
  20.   DBUG_ENTER("heap_rkey");
  21.   DBUG_PRINT("enter",("base: %lx  inx: %d",info,inx));
  22.   if ((uint) inx >= share->keys)
  23.   {
  24.     DBUG_RETURN(my_errno= HA_ERR_WRONG_INDEX);
  25.   }
  26.   info->lastinx= inx;
  27.   info->current_record= (ulong) ~0L; /* For heap_rrnd() */
  28.   if (keyinfo->algorithm == HA_KEY_ALG_BTREE)
  29.   {
  30.     heap_rb_param custom_arg;
  31.     custom_arg.keyseg= info->s->keydef[inx].seg;
  32.     custom_arg.key_length= info->lastkey_len= 
  33.       hp_rb_pack_key(keyinfo, (uchar*) info->lastkey,
  34.      (uchar*) key, key_len);
  35.     custom_arg.search_flag= SEARCH_FIND | SEARCH_SAME;
  36.     /* for next rkey() after deletion */
  37.     if (find_flag == HA_READ_AFTER_KEY)
  38.       info->last_find_flag= HA_READ_KEY_OR_NEXT;
  39.     else if (find_flag == HA_READ_BEFORE_KEY)
  40.       info->last_find_flag= HA_READ_KEY_OR_PREV;
  41.     else
  42.       info->last_find_flag= find_flag;
  43.     if (!(pos= tree_search_key(&keyinfo->rb_tree, info->lastkey, info->parents,
  44.        &info->last_pos, find_flag, &custom_arg)))
  45.     {
  46.       info->update= 0;
  47.       DBUG_RETURN(my_errno= HA_ERR_KEY_NOT_FOUND);
  48.     }
  49.     memcpy(&pos, pos + (*keyinfo->get_key_length)(keyinfo, pos), sizeof(byte*));
  50.     info->current_ptr= pos;
  51.   }
  52.   else
  53.   {
  54.     if (!(pos= hp_search(info, share->keydef + inx, key, 0)))
  55.     {
  56.       info->update= 0;
  57.       DBUG_RETURN(my_errno);
  58.     }
  59.     if (!(keyinfo->flag & HA_NOSAME))
  60.       memcpy(info->lastkey, key, (size_t) keyinfo->length);
  61.   }
  62.   memcpy(record, pos, (size_t) share->reclength);
  63.   info->update= HA_STATE_AKTIV;
  64.   DBUG_RETURN(0);
  65. }
  66. /* Quick find of record */
  67. gptr heap_find(HP_INFO *info, int inx, const byte *key)
  68. {
  69.   return hp_search(info, info->s->keydef + inx, key, 0);
  70. }