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