hp_scan.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

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. /* Scan through all rows */
  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_scan_init(register HP_INFO *info)
  25. {
  26.   DBUG_ENTER("heap_scan_init");
  27.   info->lastinx= -1;
  28.   info->current_record= (ulong) ~0L; /* No current record */
  29.   info->update=0;
  30.   info->next_block=0;
  31.   DBUG_RETURN(0);
  32. }
  33. int heap_scan(register HP_INFO *info, byte *record)
  34. {
  35.   HP_SHARE *share=info->s;
  36.   ulong pos;
  37.   DBUG_ENTER("heap_scan");
  38.   pos= ++info->current_record;
  39.   if (pos < info->next_block)
  40.   {
  41.     info->current_ptr+=share->block.recbuffer;
  42.   }
  43.   else
  44.   {
  45.     info->next_block+=share->block.records_in_block;
  46.     if (info->next_block >= share->records+share->deleted)
  47.     {
  48.       info->next_block= share->records+share->deleted;
  49.       if (pos >= info->next_block)
  50.       {
  51. info->update= 0;
  52. DBUG_RETURN(my_errno= HA_ERR_END_OF_FILE);
  53.       }
  54.     }
  55.     _hp_find_record(info,pos);
  56.   }
  57.   if (!info->current_ptr[share->reclength])
  58.   {
  59.     info->update= HA_STATE_PREV_FOUND | HA_STATE_NEXT_FOUND;
  60.     DBUG_RETURN(my_errno=HA_ERR_RECORD_DELETED);
  61.   }
  62.   info->update= HA_STATE_PREV_FOUND | HA_STATE_NEXT_FOUND | HA_STATE_AKTIV;
  63.   memcpy(record,info->current_ptr,(size_t) share->reclength);
  64.   info->current_hash_ptr=0; /* Can't use read_next */
  65.   DBUG_RETURN(0);
  66. } /* heap_scan */