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