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