home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / myisammrg / myrg_rrnd.c < prev    next >
C/C++ Source or Header  |  2000-09-14  |  3KB  |  111 lines

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