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