hp_rnext.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 "heapdef.h"
  14. /* Read next record with the same key */
  15. int heap_rnext(HP_INFO *info, byte *record)
  16. {
  17.   byte *pos;
  18.   HP_SHARE *share=info->s;
  19.   HP_KEYDEF *keyinfo;
  20.   DBUG_ENTER("heap_rnext");
  21.   
  22.   if (info->lastinx < 0)
  23.     DBUG_RETURN(my_errno=HA_ERR_WRONG_INDEX);
  24.   keyinfo = share->keydef + info->lastinx;
  25.   if (keyinfo->algorithm == HA_KEY_ALG_BTREE)
  26.   {
  27.     heap_rb_param custom_arg;
  28.     if (info->last_pos)
  29.       pos = tree_search_next(&keyinfo->rb_tree, &info->last_pos,
  30.                              offsetof(TREE_ELEMENT, left),
  31.                              offsetof(TREE_ELEMENT, right));
  32.     else
  33.     {
  34.       custom_arg.keyseg = keyinfo->seg;
  35.       custom_arg.key_length = info->lastkey_len;
  36.       custom_arg.search_flag = SEARCH_SAME | SEARCH_FIND;
  37.       pos = tree_search_key(&keyinfo->rb_tree, info->lastkey, info->parents, 
  38.                            &info->last_pos, info->last_find_flag, &custom_arg);
  39.     }
  40.     if (pos)
  41.     {
  42.       memcpy(&pos, pos + (*keyinfo->get_key_length)(keyinfo, pos), 
  43.      sizeof(byte*));
  44.       info->current_ptr = pos;
  45.     }
  46.     else
  47.     {
  48.       my_errno = HA_ERR_KEY_NOT_FOUND;
  49.     }
  50.   }
  51.   else
  52.   {
  53.     if (info->current_hash_ptr)
  54.       pos= hp_search_next(info, keyinfo, info->lastkey,
  55.    info->current_hash_ptr);
  56.     else
  57.     {
  58.       if (!info->current_ptr && (info->update & HA_STATE_NEXT_FOUND))
  59.       {
  60. pos=0; /* Read next after last */
  61. my_errno=HA_ERR_KEY_NOT_FOUND;
  62.       }
  63.       else if (!info->current_ptr) /* Deleted or first call */
  64. pos= hp_search(info, keyinfo, info->lastkey, 0);
  65.       else
  66. pos= hp_search(info, keyinfo, info->lastkey, 1);
  67.     }
  68.   }
  69.   if (!pos)
  70.   {
  71.     info->update=HA_STATE_NEXT_FOUND; /* For heap_rprev */
  72.     if (my_errno == HA_ERR_KEY_NOT_FOUND)
  73.       my_errno=HA_ERR_END_OF_FILE;
  74.     DBUG_RETURN(my_errno);
  75.   }
  76.   memcpy(record,pos,(size_t) share->reclength);
  77.   info->update=HA_STATE_AKTIV | HA_STATE_NEXT_FOUND;
  78.   DBUG_RETURN(0);
  79. }