hp_scan.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

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