mi_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 myisam */
  17. /* Used instead of my_b_read() to allow for no-cacheed seeks */
  18. #include "myisamdef.h"
  19. /* Copy block from cache if it`s in it. If re_read_if_possibly is */
  20. /* set read to cache (if after current file-position) else read to */
  21. /* buff   */
  22. int _mi_read_cache(IO_CACHE *info, byte *buff, my_off_t pos, uint length,
  23.    int flag)
  24. {
  25.   uint read_length,in_buff_length;
  26.   my_off_t offset;
  27.   char *in_buff_pos;
  28.   DBUG_ENTER("_mi_read_cache");
  29.   if (pos < info->pos_in_file)
  30.   {
  31.     read_length=length;
  32.     if ((my_off_t) read_length > (my_off_t) (info->pos_in_file-pos))
  33.       read_length=(uint) (info->pos_in_file-pos);
  34.     info->seek_not_done=1;
  35.     if (my_pread(info->file,buff,read_length,pos,MYF(MY_NABP)))
  36.       DBUG_RETURN(1);
  37.     if (!(length-=read_length))
  38.       DBUG_RETURN(0);
  39.     pos+=read_length;
  40.     buff+=read_length;
  41.   }
  42.   if ((offset= (my_off_t) (pos - info->pos_in_file)) <
  43.       (my_off_t) (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.       DBUG_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.       DBUG_RETURN(0);
  68.     if (!(flag & READING_HEADER) || info->error == -1 ||
  69. (uint) info->error+in_buff_length < 3)
  70.     {
  71.       if (!my_errno)
  72. my_errno=HA_ERR_WRONG_IN_RECORD;
  73.       DBUG_RETURN(1);
  74.     }
  75.     bzero(buff+info->error,MI_BLOCK_INFO_HEADER_LENGTH - in_buff_length -
  76.   (uint) info->error);
  77.     DBUG_RETURN(0);
  78.   }
  79.   info->seek_not_done=1;
  80.   if ((read_length=my_pread(info->file,buff,length,pos,MYF(0))) == length)
  81.     DBUG_RETURN(0);
  82.   if (!(flag & READING_HEADER) || (int) read_length == -1 ||
  83.       read_length+in_buff_length < 3)
  84.   {
  85.     if (!my_errno)
  86.       my_errno=HA_ERR_WRONG_IN_RECORD;
  87.     DBUG_RETURN(1);
  88.   }
  89.   bzero(buff+read_length,MI_BLOCK_INFO_HEADER_LENGTH - in_buff_length -
  90. read_length);
  91.   DBUG_RETURN(0);
  92. } /* _mi_read_cache */