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_rprev.c < prev    next >
C/C++ Source or Header  |  2000-11-21  |  3KB  |  88 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. #include "myisamdef.h"
  18.  
  19.     /*
  20.        Read previous row with the same key as previous read
  21.        One may have done a write, update or delete of the previous row.
  22.        NOTE! Even if one changes the previous row, the next read is done
  23.        based on the position of the last used key!
  24.     */
  25.  
  26. int mi_rprev(MI_INFO *info, byte *buf, int inx)
  27. {
  28.   int error,changed;
  29.   register uint flag;
  30.   MYISAM_SHARE *share=info->s;
  31.   DBUG_ENTER("mi_rprev");
  32.  
  33.   if ((inx = _mi_check_index(info,inx)) < 0)
  34.     DBUG_RETURN(my_errno);
  35.   flag=SEARCH_SMALLER;                /* Read previous */
  36.   if (info->lastpos == HA_OFFSET_ERROR && info->update & HA_STATE_NEXT_FOUND)
  37.     flag=0;                    /* Read last */
  38.  
  39.   if (_mi_readinfo(info,F_RDLCK,1))
  40.     DBUG_RETURN(my_errno);
  41.   changed=_mi_test_if_changed(info);
  42.   if (share->concurrent_insert)
  43.     rw_rdlock(&share->key_root_lock[inx]);
  44.   if (!flag)
  45.     error=_mi_search_last(info, share->keyinfo+inx,
  46.               share->state.key_root[inx]);
  47.   else if (!changed)
  48.     error=_mi_search_next(info,share->keyinfo+inx,info->lastkey,
  49.               info->lastkey_length,flag,
  50.               share->state.key_root[inx]);
  51.   else
  52.     error=_mi_search(info,share->keyinfo+inx,info->lastkey,
  53.              info->lastkey_length, flag, share->state.key_root[inx]);
  54.  
  55.   if (!error)
  56.   {
  57.     while (info->lastpos > info->state->data_file_length)
  58.     {
  59.       /* Skip rows that are inserted by other threads since we got a lock */
  60.       if  ((error=_mi_search_next(info,share->keyinfo+inx,info->lastkey,
  61.                   info->lastkey_length,
  62.                   SEARCH_SMALLER,
  63.                   share->state.key_root[inx])))
  64.     break;
  65.     }
  66.   }
  67.  
  68.   if (share->concurrent_insert)
  69.     rw_unlock(&share->key_root_lock[inx]);
  70.   info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  71.   info->update|= HA_STATE_PREV_FOUND;
  72.   if (error)
  73.   {
  74.     if (my_errno == HA_ERR_KEY_NOT_FOUND)
  75.       my_errno=HA_ERR_END_OF_FILE;
  76.   }
  77.   else if (!buf)
  78.   {
  79.     DBUG_RETURN(info->lastpos==HA_OFFSET_ERROR ? my_errno : 0);
  80.   }
  81.   else if (!(*info->read_record)(info,info->lastpos,buf))
  82.   {
  83.     info->update|= HA_STATE_AKTIV;        /* Record is read */
  84.     DBUG_RETURN(0);
  85.   }
  86.   DBUG_RETURN(my_errno);
  87. } /* mi_rprev */
  88.