rkey.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  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. /* L{ser p} basen av en isam_nyckel */
  17. #include "isamdef.h"
  18. /* Read a record using key */
  19. /* Ordinary search_flag is 0 ; Give error if no record with key */
  20. int nisam_rkey(N_INFO *info, byte *buf, int inx, const byte *key, uint key_len, enum ha_rkey_function search_flag)
  21. {
  22.   uchar *key_buff;
  23.   ISAM_SHARE *share=info->s;
  24.   DBUG_ENTER("nisam_rkey");
  25.   DBUG_PRINT("enter",("base: %lx  inx: %d  search_flag: %d",
  26.       info,inx,search_flag));
  27.   if ((inx = _nisam_check_index(info,inx)) < 0)
  28.     DBUG_RETURN(-1);
  29.   info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  30.   if (key_len >= (share->keyinfo[inx].base.keylength - share->rec_reflength)
  31.       && !(info->s->keyinfo[inx].base.flag & HA_SPACE_PACK_USED))
  32.     key_len=USE_HOLE_KEY;
  33.   key_buff=info->lastkey+info->s->base.max_key_length;
  34.   key_len=_nisam_pack_key(info,(uint) inx,key_buff,(uchar*) key,key_len);
  35.   DBUG_EXECUTE("key",_nisam_print_key(DBUG_FILE,share->keyinfo[inx].seg,
  36.     (uchar*) key););
  37. #ifndef NO_LOCKING
  38.   if (_nisam_readinfo(info,F_RDLCK,1))
  39.     goto err;
  40. #endif
  41.   VOID(_nisam_search(info,info->s->keyinfo+inx,key_buff,key_len,
  42.   nisam_read_vec[search_flag],info->s->state.key_root[inx]));
  43.   if ((*info->read_record)(info,info->lastpos,buf) >= 0)
  44.   {
  45.     info->update|= HA_STATE_AKTIV; /* Record is read */
  46.     DBUG_RETURN(0);
  47.   }
  48.   info->lastpos = NI_POS_ERROR; /* Didn't find key */
  49.   VOID(_nisam_move_key(info->s->keyinfo+inx,info->lastkey,key_buff));
  50.   if (search_flag == HA_READ_AFTER_KEY)
  51.     info->update|=HA_STATE_NEXT_FOUND; /* Previous gives last row */
  52. err:
  53.   DBUG_RETURN(-1);
  54. } /* nisam_rkey */