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

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 myrg_info(). The next record can be read with pos= -1 */
  16. #include "myrg_def.h"
  17. static MYRG_TABLE *find_table(MYRG_TABLE *start,MYRG_TABLE *end,ulonglong pos);
  18. /*
  19. If filepos == HA_OFFSET_ERROR, read next
  20. Returns same as mi_rrnd:
  21.    0 = Ok.
  22.    HA_ERR_RECORD_DELETED = Record is deleted.
  23.    HA_ERR_END_OF_FILE = EOF.
  24. */
  25. int myrg_rrnd(MYRG_INFO *info,byte *buf,ulonglong filepos)
  26. {
  27.   int error;
  28.   MI_INFO *isam_info;
  29.   DBUG_ENTER("myrg_rrnd");
  30.   DBUG_PRINT("info",("offset: %lu", (ulong) filepos));
  31.   if (filepos == HA_OFFSET_ERROR)
  32.   {
  33.     if (!info->current_table)
  34.     {
  35.       if (info->open_tables == info->end_table)
  36.       { /* No tables */
  37. DBUG_RETURN(my_errno=HA_ERR_END_OF_FILE);
  38.       }
  39.       isam_info=(info->current_table=info->open_tables)->table;
  40.       if (info->cache_in_use)
  41. mi_extra(isam_info,HA_EXTRA_CACHE,(byte*) &info->cache_size);
  42.       filepos=isam_info->s->pack.header_length;
  43.       isam_info->lastinx= (uint) -1; /* Can't forward or backward */
  44.     }
  45.     else
  46.     {
  47.       isam_info=info->current_table->table;
  48.       filepos= isam_info->nextpos;
  49.     }
  50.     for (;;)
  51.     {
  52.       isam_info->update&= HA_STATE_CHANGED;
  53.       if ((error=(*isam_info->s->read_rnd)(isam_info,(byte*) buf,
  54.    (my_off_t) filepos,1)) !=
  55.   HA_ERR_END_OF_FILE)
  56. DBUG_RETURN(error);
  57.       if (info->cache_in_use)
  58. mi_extra(info->current_table->table, HA_EXTRA_NO_CACHE,
  59.  (byte*) &info->cache_size);
  60.       if (info->current_table+1 == info->end_table)
  61. DBUG_RETURN(HA_ERR_END_OF_FILE);
  62.       info->current_table++;
  63.       info->last_used_table=info->current_table;
  64.       if (info->cache_in_use)
  65. mi_extra(info->current_table->table, HA_EXTRA_CACHE,
  66.  (byte*) &info->cache_size);
  67.       info->current_table->file_offset=
  68. info->current_table[-1].file_offset+
  69. info->current_table[-1].table->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.   DBUG_RETURN((*isam_info->s->read_rnd)
  80.               (isam_info, (byte*) buf,
  81.       (my_off_t) (filepos - info->current_table->file_offset),
  82.       0));
  83. }
  84. /* Find which table to use according to file-pos */
  85. static MYRG_TABLE *find_table(MYRG_TABLE *start, MYRG_TABLE *end,
  86.       ulonglong pos)
  87. {
  88.   MYRG_TABLE *mid;
  89.   DBUG_ENTER("find_table");
  90.   while (start != end)
  91.   {
  92.     mid=start+((uint) (end-start)+1)/2;
  93.     if (mid->file_offset > pos)
  94.       end=mid-1;
  95.     else
  96.       start=mid;
  97.   }
  98.   DBUG_PRINT("info",("offset: %lu, table: %s",
  99.      (ulong) pos, start->table->filename));
  100.   DBUG_RETURN(start);
  101. }