_cache.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. /* Functions for read record cacheing with nisam */
  17. /* Used instead of my_b_read() to allow for no-cacheed seeks */
  18. #include "isamdef.h"
  19. #define READING_NEXT 1
  20. #define READING_HEADER 2
  21. /* Copy block from cache if it`s in it. If re_read_if_possibly is */
  22. /* set read to cache (if after current file-position) else read to */
  23. /* buff   */
  24. int _nisam_read_cache(IO_CACHE *info, byte *buff, ulong pos, uint length,
  25.       int flag)
  26. {
  27.   uint read_length,in_buff_length;
  28.   ulong offset;
  29.   char *in_buff_pos;
  30.   if (pos < info->pos_in_file)
  31.   {
  32.     read_length= (uint) min((ulong) length,(ulong) (info->pos_in_file-pos));
  33.     info->seek_not_done=1;
  34.     VOID(my_seek(info->file,pos,MY_SEEK_SET,MYF(0)));
  35.     if (my_read(info->file,buff,read_length,MYF(MY_NABP)))
  36.       return 1;
  37.     if (!(length-=read_length))
  38.       return 0;
  39.     pos+=read_length;
  40.     buff+=read_length;
  41.   }
  42.   if ((offset=pos - (ulong) info->pos_in_file) <
  43.       (ulong) (info->rc_end - info->rc_request_pos))
  44.   {
  45.     in_buff_pos=info->rc_request_pos+(uint) offset;
  46.     in_buff_length= min(length,(uint) (info->rc_end-in_buff_pos));
  47.     memcpy(buff,info->rc_request_pos+(uint) offset,(size_t) in_buff_length);
  48.     if (!(length-=in_buff_length))
  49.       return 0;
  50.     pos+=in_buff_length;
  51.     buff+=in_buff_length;
  52.   }
  53.   else
  54.     in_buff_length=0;
  55.   if (flag & READING_NEXT)
  56.   {
  57.     if (pos != ((info)->pos_in_file +
  58. (uint) ((info)->rc_end - (info)->rc_request_pos)))
  59.     {
  60.       info->pos_in_file=pos; /* Force start here */
  61.       info->rc_pos=info->rc_end=info->rc_request_pos; /* Everything used */
  62.       info->seek_not_done=1;
  63.     }
  64.     else
  65.       info->rc_pos=info->rc_end; /* All block used */
  66.     if (!(*info->read_function)(info,buff,length))
  67.       return 0;
  68.     if (!(flag & READING_HEADER) || info->error == -1 ||
  69. (uint) info->error+in_buff_length < 3)
  70.       return 1;
  71.     if (BLOCK_INFO_HEADER_LENGTH < in_buff_length + (uint) info->error)
  72.       bzero(buff+info->error,BLOCK_INFO_HEADER_LENGTH - in_buff_length -
  73.     (uint) info->error);
  74.     return 0;
  75.   }
  76.   info->seek_not_done=1;
  77.   VOID(my_seek(info->file,pos,MY_SEEK_SET,MYF(0)));
  78.   if ((read_length=my_read(info->file,buff,length,MYF(0))) == length)
  79.     return 0;
  80.   if (!(flag & READING_HEADER) || (int) read_length == -1 ||
  81.       read_length+in_buff_length < 3)
  82.     return 1;
  83.   bzero(buff+read_length,BLOCK_INFO_HEADER_LENGTH - in_buff_length -
  84. read_length);
  85.   return 0;
  86. } /* _nisam_read_cache */