mi_rnext.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:4k
源码类别:

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. #include "rt_index.h"
  15. /*
  16.    Read next row with the same key as previous read
  17.    One may have done a write, update or delete of the previous row.
  18.    NOTE! Even if one changes the previous row, the next read is done
  19.    based on the position of the last used key!
  20. */
  21. int mi_rnext(MI_INFO *info, byte *buf, int inx)
  22. {
  23.   int error,changed;
  24.   uint flag;
  25.   DBUG_ENTER("mi_rnext");
  26.   if ((inx = _mi_check_index(info,inx)) < 0)
  27.     DBUG_RETURN(my_errno);
  28.   flag=SEARCH_BIGGER; /* Read next */
  29.   if (info->lastpos == HA_OFFSET_ERROR && info->update & HA_STATE_PREV_FOUND)
  30.     flag=0; /* Read first */
  31.   if (fast_mi_readinfo(info))
  32.     DBUG_RETURN(my_errno);
  33.   if (info->s->concurrent_insert)
  34.     rw_rdlock(&info->s->key_root_lock[inx]);
  35.   changed=_mi_test_if_changed(info);
  36.   if (!flag)
  37.   {
  38.     switch(info->s->keyinfo[inx].key_alg){
  39. #ifdef HAVE_RTREE_KEYS
  40.     case HA_KEY_ALG_RTREE:
  41.       error=rtree_get_first(info,inx,info->lastkey_length);
  42.       break;
  43. #endif
  44.     case HA_KEY_ALG_BTREE:
  45.     default:
  46.       error=_mi_search_first(info,info->s->keyinfo+inx,
  47.    info->s->state.key_root[inx]);
  48.       break;
  49.     }
  50.   }
  51.   else
  52.   {
  53.     switch (info->s->keyinfo[inx].key_alg) {
  54. #ifdef HAVE_RTREE_KEYS
  55.     case HA_KEY_ALG_RTREE:
  56.       /*
  57. Note that rtree doesn't support that the table
  58. may be changed since last call, so we do need
  59. to skip rows inserted by other threads like in btree
  60.       */
  61.       error= rtree_get_next(info,inx,info->lastkey_length);
  62.       break;
  63. #endif
  64.     case HA_KEY_ALG_BTREE:
  65.     default:
  66.       if (!changed)
  67. error= _mi_search_next(info,info->s->keyinfo+inx,info->lastkey,
  68.        info->lastkey_length,flag,
  69.        info->s->state.key_root[inx]);
  70.       else
  71. error= _mi_search(info,info->s->keyinfo+inx,info->lastkey,
  72.   USE_WHOLE_KEY,flag, info->s->state.key_root[inx]);
  73.     }
  74.   }
  75.   if (info->s->concurrent_insert)
  76.   {
  77.     if (!error)
  78.     {
  79.       while (info->lastpos >= info->state->data_file_length)
  80.       {
  81. /* Skip rows inserted by other threads since we got a lock */
  82. if  ((error=_mi_search_next(info,info->s->keyinfo+inx,
  83.     info->lastkey,
  84.     info->lastkey_length,
  85.     SEARCH_BIGGER,
  86.     info->s->state.key_root[inx])))
  87.   break;
  88.       }
  89.     }
  90.     rw_unlock(&info->s->key_root_lock[inx]);
  91.   }
  92. /* Don't clear if database-changed */
  93.   info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  94.   info->update|= HA_STATE_NEXT_FOUND;
  95.   if (error)
  96.   {
  97.     if (my_errno == HA_ERR_KEY_NOT_FOUND)
  98.       my_errno=HA_ERR_END_OF_FILE;
  99.   }
  100.   else if (!buf)
  101.   {
  102.     DBUG_RETURN(info->lastpos==HA_OFFSET_ERROR ? my_errno : 0);
  103.   }
  104.   else if (!(*info->read_record)(info,info->lastpos,buf))
  105.   {
  106.     info->update|= HA_STATE_AKTIV; /* Record is read */
  107.     DBUG_RETURN(0);
  108.   }
  109.   DBUG_PRINT("error",("Got error: %d,  errno: %d",error, my_errno));
  110.   DBUG_RETURN(my_errno);
  111. } /* mi_rnext */