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

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. #include "myisamdef.h"
  17. /*
  18.    Read next row with the same key as previous read, but abort if
  19.    the key changes.
  20.    One may have done a write, update or delete of the previous row.
  21.    NOTE! Even if one changes the previous row, the next read is done
  22.    based on the position of the last used key!
  23. */
  24. int mi_rnext_same(MI_INFO *info, byte *buf)
  25. {
  26.   int error;
  27.   uint inx,flag,not_used;
  28.   MI_KEYDEF *keyinfo;
  29.   DBUG_ENTER("mi_rnext_same");
  30.   if ((int) (inx=info->lastinx) < 0 || info->lastpos == HA_OFFSET_ERROR)
  31.     DBUG_RETURN(my_errno=HA_ERR_WRONG_INDEX);
  32.   keyinfo=info->s->keyinfo+inx;
  33.   flag=SEARCH_BIGGER; /* Read next */
  34.   if (_mi_readinfo(info,F_RDLCK,1))
  35.     DBUG_RETURN(my_errno);
  36.   memcpy(info->lastkey2,info->lastkey,info->last_rkey_length);
  37.   if (info->s->concurrent_insert)
  38.     rw_rdlock(&info->s->key_root_lock[inx]);
  39.   for (;;)
  40.   {
  41.     if ((error=_mi_search_next(info,keyinfo,info->lastkey,
  42.        info->lastkey_length,flag,
  43.        info->s->state.key_root[inx])))
  44.       break;
  45.     if (_mi_key_cmp(keyinfo->seg,info->lastkey2,info->lastkey,
  46.     info->last_rkey_length, SEARCH_FIND, &not_used))
  47.     {
  48.       error=1;
  49.       my_errno=HA_ERR_END_OF_FILE;
  50.       info->lastpos= HA_OFFSET_ERROR;
  51.       break;
  52.     }
  53.     /* Skip rows that are inserted by other threads since we got a lock */
  54.     if (info->lastpos < info->state->data_file_length)
  55.       break;
  56.   }
  57.   if (info->s->concurrent_insert)
  58.     rw_unlock(&info->s->key_root_lock[inx]);
  59. /* Don't clear if database-changed */
  60.   info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  61.   info->update|= HA_STATE_NEXT_FOUND;
  62.   if (error)
  63.   {
  64.     if (my_errno == HA_ERR_KEY_NOT_FOUND)
  65.       my_errno=HA_ERR_END_OF_FILE;
  66.   }
  67.   else if (!(*info->read_record)(info,info->lastpos,buf))
  68.   {
  69.     info->update|= HA_STATE_AKTIV; /* Record is read */
  70.     DBUG_RETURN(0);
  71.   }
  72.   DBUG_RETURN(my_errno);
  73. } /* mi_rnext */