home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / myisam / mi_rkey.c < prev    next >
C/C++ Source or Header  |  2000-09-29  |  4KB  |  112 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. /* Read record based on a key */
  18.  
  19. #include "myisamdef.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 _mi_rkey(MI_INFO *info, byte *buf, int inx, const byte *key, uint key_len,
  26.          enum ha_rkey_function search_flag, bool raw_key)
  27. {
  28.   uchar *key_buff;
  29.   MYISAM_SHARE *share=info->s;
  30.   uint pack_key_length;
  31.   DBUG_ENTER("_mi_rkey");
  32.   DBUG_PRINT("enter",("base: %lx  inx: %d  search_flag: %d",
  33.               info,inx,search_flag));
  34.  
  35.   if ((inx = _mi_check_index(info,inx)) < 0)
  36.     DBUG_RETURN(my_errno);
  37.  
  38.   info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  39.  
  40.   if (raw_key)
  41.   {
  42.     if (key_len == 0)
  43.       key_len=USE_WHOLE_KEY;
  44.     key_buff=info->lastkey+info->s->base.max_key_length;
  45.     pack_key_length=_mi_pack_key(info,(uint) inx,key_buff,(uchar*) key,key_len);
  46.     info->last_rkey_length=pack_key_length;
  47.     DBUG_EXECUTE("key",_mi_print_key(DBUG_FILE,share->keyinfo[inx].seg,
  48.                      key_buff,pack_key_length););
  49.   }
  50.   else
  51.   {
  52.     /* key is already packed! */
  53.     key_buff=info->lastkey+info->s->base.max_key_length;
  54.     info->last_rkey_length=pack_key_length=key_len;
  55.     bmove(key_buff,key,key_len);
  56.   }
  57.  
  58.   if (_mi_readinfo(info,F_RDLCK,1))
  59.     goto err;
  60.   if (share->concurrent_insert)
  61.     rw_rdlock(&share->key_root_lock[inx]);
  62.   if (!_mi_search(info,info->s->keyinfo+inx,key_buff,pack_key_length,
  63.           myisam_read_vec[search_flag],info->s->state.key_root[inx]))
  64.   {
  65.     while (info->lastpos >= info->state->data_file_length)
  66.     {
  67.       /*
  68.     Skip rows that are inserted by other threads since we got a lock
  69.     Note that this can only happen if we are not searching after an
  70.     exact key, because the keys are sorted according to position
  71.       */
  72.  
  73.       if  (_mi_search_next(info,info->s->keyinfo+inx,info->lastkey,
  74.                info->lastkey_length,
  75.                myisam_readnext_vec[search_flag],
  76.                info->s->state.key_root[inx]))
  77.     break;
  78.     }
  79.   }
  80.   if (share->concurrent_insert)
  81.     rw_unlock(&share->key_root_lock[inx]);
  82.  
  83.   if (!buf)
  84.     DBUG_RETURN(info->lastpos==HA_OFFSET_ERROR ? my_errno : 0);
  85.  
  86.   if (!(*info->read_record)(info,info->lastpos,buf))
  87.   {
  88.     info->update|= HA_STATE_AKTIV;        /* Record is read */
  89.     DBUG_RETURN(0);
  90.   }
  91.  
  92.   info->lastpos = HA_OFFSET_ERROR;        /* Didn't find key */
  93.  
  94.   /* Store key for read next */
  95.   memcpy(info->lastkey,key_buff,pack_key_length);
  96.   bzero((char*) info->lastkey+pack_key_length,info->s->base.rec_reflength);
  97.   info->lastkey_length=pack_key_length+info->s->base.rec_reflength;
  98.  
  99.   if (search_flag == HA_READ_AFTER_KEY)
  100.     info->update|=HA_STATE_NEXT_FOUND;        /* Previous gives last row */
  101. err:
  102.   DBUG_RETURN(my_errno);
  103. } /* _mi_rkey */
  104.  
  105. /* shouldn't forget to do it inline sometime */
  106. int mi_rkey(MI_INFO *info, byte *buf, int inx, const byte *key, uint key_len,
  107.             enum ha_rkey_function search_flag)
  108. {
  109.   return _mi_rkey(info,buf,inx,key,key_len,search_flag,TRUE);
  110. }
  111.  
  112.