home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / isam / rkey.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  2KB  |  64 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. /* L{ser p} basen av en isam_nyckel */
  18.  
  19. #include "isamdef.h"
  20.  
  21.  
  22.     /* Read a record using key */
  23.     /* Ordinary search_flag is 0 ; Give error if no record with key */
  24.  
  25. int nisam_rkey(N_INFO *info, byte *buf, int inx, const byte *key, uint key_len, enum ha_rkey_function search_flag)
  26. {
  27.   uchar *key_buff;
  28.   ISAM_SHARE *share=info->s;
  29.   DBUG_ENTER("nisam_rkey");
  30.   DBUG_PRINT("enter",("base: %lx  inx: %d  search_flag: %d",
  31.               info,inx,search_flag));
  32.  
  33.   if ((inx = _nisam_check_index(info,inx)) < 0)
  34.     DBUG_RETURN(-1);
  35.   info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  36.   if (key_len >= (share->keyinfo[inx].base.keylength - share->rec_reflength)
  37.       && !(info->s->keyinfo[inx].base.flag & HA_SPACE_PACK_USED))
  38.     key_len=USE_HOLE_KEY;
  39.   key_buff=info->lastkey+info->s->base.max_key_length;
  40.   key_len=_nisam_pack_key(info,(uint) inx,key_buff,(uchar*) key,key_len);
  41.   DBUG_EXECUTE("key",_nisam_print_key(DBUG_FILE,share->keyinfo[inx].seg,
  42.                     (uchar*) key););
  43.  
  44. #ifndef NO_LOCKING
  45.   if (_nisam_readinfo(info,F_RDLCK,1))
  46.     goto err;
  47. #endif
  48.  
  49.   VOID(_nisam_search(info,info->s->keyinfo+inx,key_buff,key_len,
  50.           nisam_read_vec[search_flag],info->s->state.key_root[inx]));
  51.   if ((*info->read_record)(info,info->lastpos,buf) >= 0)
  52.   {
  53.     info->update|= HA_STATE_AKTIV;        /* Record is read */
  54.     DBUG_RETURN(0);
  55.   }
  56.  
  57.   info->lastpos = NI_POS_ERROR;            /* Didn't find key */
  58.   VOID(_nisam_move_key(info->s->keyinfo+inx,info->lastkey,key_buff));
  59.   if (search_flag == HA_READ_AFTER_KEY)
  60.     info->update|=HA_STATE_NEXT_FOUND;        /* Previous gives last row */
  61. err:
  62.   DBUG_RETURN(-1);
  63. } /* nisam_rkey */
  64.