hp_rrnd.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. /* Read a record from a random position */
  14. #include "heapdef.h"
  15. /*
  16.    Returns one of following values:
  17.    0 = Ok.
  18.    HA_ERR_RECORD_DELETED = Record is deleted.
  19.    HA_ERR_END_OF_FILE = EOF.
  20. */
  21. int heap_rrnd(register HP_INFO *info, byte *record, byte *pos)
  22. {
  23.   HP_SHARE *share=info->s;
  24.   DBUG_ENTER("heap_rrnd");
  25.   DBUG_PRINT("enter",("info: %lx  pos: %lx",info,pos));
  26.   info->lastinx= -1;
  27.   if (!(info->current_ptr= pos))
  28.   {
  29.     info->update= 0;
  30.     DBUG_RETURN(my_errno= HA_ERR_END_OF_FILE);
  31.   }
  32.   if (!info->current_ptr[share->reclength])
  33.   {
  34.     info->update= HA_STATE_PREV_FOUND | HA_STATE_NEXT_FOUND;
  35.     DBUG_RETURN(my_errno=HA_ERR_RECORD_DELETED);
  36.   }
  37.   info->update=HA_STATE_PREV_FOUND | HA_STATE_NEXT_FOUND | HA_STATE_AKTIV;
  38.   memcpy(record,info->current_ptr,(size_t) share->reclength);
  39.   DBUG_PRINT("exit",("found record at %lx",info->current_ptr));
  40.   info->current_hash_ptr=0; /* Can't use rnext */
  41.   DBUG_RETURN(0);
  42. } /* heap_rrnd */
  43. #ifdef WANT_OLD_HEAP_VERSION
  44. /*
  45.    If pos == -1 then read next record
  46.    Returns one of following values:
  47.    0 = Ok.
  48.    HA_ERR_RECORD_DELETED = Record is deleted.
  49.    HA_ERR_END_OF_FILE = EOF.
  50. */
  51. int heap_rrnd_old(register HP_INFO *info, byte *record, ulong pos)
  52. {
  53.   HP_SHARE *share=info->s;
  54.   DBUG_ENTER("heap_rrnd");
  55.   DBUG_PRINT("enter",("info: %lx  pos: %ld",info,pos));
  56.   info->lastinx= -1;
  57.   if (pos == (ulong) -1)
  58.   {
  59.     pos= ++info->current_record;
  60.     if (pos % share->block.records_in_block && /* Quick next record */
  61. pos < share->records+share->deleted &&
  62. (info->update & HA_STATE_PREV_FOUND))
  63.     {
  64.       info->current_ptr+=share->block.recbuffer;
  65.       goto end;
  66.     }
  67.   }
  68.   else
  69.     info->current_record=pos;
  70.   if (pos >= share->records+share->deleted)
  71.   {
  72.     info->update= 0;
  73.     DBUG_RETURN(my_errno= HA_ERR_END_OF_FILE);
  74.   }
  75. /* Find record number pos */
  76.   hp_find_record(info, pos);
  77. end:
  78.   if (!info->current_ptr[share->reclength])
  79.   {
  80.     info->update= HA_STATE_PREV_FOUND | HA_STATE_NEXT_FOUND;
  81.     DBUG_RETURN(my_errno=HA_ERR_RECORD_DELETED);
  82.   }
  83.   info->update=HA_STATE_PREV_FOUND | HA_STATE_NEXT_FOUND | HA_STATE_AKTIV;
  84.   memcpy(record,info->current_ptr,(size_t) share->reclength);
  85.   DBUG_PRINT("exit",("found record at %lx",info->current_ptr));
  86.   info->current_hash_ptr=0; /* Can't use rnext */
  87.   DBUG_RETURN(0);
  88. } /* heap_rrnd */
  89. #endif /* WANT_OLD_HEAP_VERSION */