mrg_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. /*
  14.   Read a record with random-access. The position to the record must
  15.   get by mrg_info(). The next record can be read with pos= -1 */
  16. #include "mrg_def.h"
  17. static MRG_TABLE *find_table(MRG_TABLE *start,MRG_TABLE *end,mrg_off_t pos);
  18. /*
  19.    If filepos == -1, read next
  20. Returns same as nisam_rrnd:
  21.    0 = Ok.
  22.    1 = Record deleted.
  23.   -1 = EOF (or something, errno should be HA_ERR_END_OF_FILE)
  24. */
  25. int mrg_rrnd(MRG_INFO *info,byte *buf,mrg_off_t filepos)
  26. {
  27.   int error;
  28.   N_INFO *isam_info;
  29.   if (filepos == ~(mrg_off_t) 0) /* Can't use HA_POS_ERROR */
  30.   {
  31.     if (!info->current_table)
  32.     {
  33.       if (info->open_tables == info->end_table)
  34.       { /* No tables */
  35. my_errno=HA_ERR_END_OF_FILE;
  36. return -1;
  37.       }
  38.       isam_info=(info->current_table=info->open_tables)->table;
  39.       if (info->cache_in_use)
  40. nisam_extra(isam_info,HA_EXTRA_CACHE);
  41.       filepos=isam_info->s->pack.header_length;
  42.       isam_info->lastinx= (uint) -1; /* Can't forward or backward */
  43.     }
  44.     else
  45.     {
  46.       isam_info=info->current_table->table;
  47.       filepos= isam_info->nextpos;
  48.     }
  49.     for (;;)
  50.     {
  51.       isam_info->update&= HA_STATE_CHANGED;
  52.       if ((error=(*isam_info->s->read_rnd)(isam_info,(byte*) buf,
  53. filepos,1)) >= 0 ||
  54.   my_errno != HA_ERR_END_OF_FILE)
  55. return (error);
  56.       if (info->cache_in_use)
  57. nisam_extra(info->current_table->table,HA_EXTRA_NO_CACHE);
  58.       if (info->current_table+1 == info->end_table)
  59. return(-1);
  60.       info->current_table++;
  61.       info->last_used_table=info->current_table;
  62.       if (info->cache_in_use)
  63. nisam_extra(info->current_table->table,HA_EXTRA_CACHE);
  64.       info->current_table->file_offset=
  65. info->current_table[-1].file_offset+
  66. info->current_table[-1].table->s->state.data_file_length;
  67.       isam_info=info->current_table->table;
  68.       filepos=isam_info->s->pack.header_length;
  69.       isam_info->lastinx= (uint) -1;
  70.     }
  71.   }
  72.   info->current_table=find_table(info->open_tables,
  73.  info->end_table-1,filepos);
  74.   isam_info=info->current_table->table;
  75.   isam_info->update&= HA_STATE_CHANGED;
  76.   return ((*isam_info->s->read_rnd)(isam_info,(byte*) buf,
  77.     (ulong) (filepos -
  78.      info->current_table->file_offset),
  79.     0));
  80. }
  81. /* Find which table to use according to file-pos */
  82. static MRG_TABLE *find_table(MRG_TABLE *start,MRG_TABLE *end,mrg_off_t pos)
  83. {
  84.   MRG_TABLE *mid;
  85.   while (start != end)
  86.   {
  87.     mid=start+((uint) (end-start)+1)/2;
  88.     if (mid->file_offset > pos)
  89.       end=mid-1;
  90.     else
  91.       start=mid;
  92.   }
  93.   return start;
  94. }