1
/* Copyright (C) 2000-2003 MySQL AB
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; version 2 of the License.
7
This program is distributed in the hope that it will be useful,
8
but WITHOUT ANY WARRANTY; without even the implied warranty of
9
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
GNU General Public License for more details.
12
You should have received a copy of the GNU General Public License
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
17
Functions for read record cacheing with myisam
18
Used for reading dynamic/compressed records from datafile.
20
Can fetch data directly from file (outside cache),
21
if reading a small chunk straight before the cached part (with possible
24
Can be explicitly asked not to use cache (by not setting READING_NEXT in
25
flag) - useful for occasional out-of-cache reads, when the next read is
26
expected to hit the cache again.
28
Allows "partial read" errors in the record header (when READING_HEADER flag
29
is set) - unread part is bzero'ed
31
Note: out-of-cache reads are enabled for shared IO_CACHE's too,
32
as these reads will be cached by OS cache (and my_pread is always atomic)
36
#include "myisamdef.h"
38
int _mi_read_cache(IO_CACHE *info, uchar *buff, my_off_t pos, uint length,
41
uint read_length,in_buff_length;
44
DBUG_ENTER("_mi_read_cache");
46
if (pos < info->pos_in_file)
49
if ((my_off_t) read_length > (my_off_t) (info->pos_in_file-pos))
50
read_length=(uint) (info->pos_in_file-pos);
51
info->seek_not_done=1;
52
if (my_pread(info->file,buff,read_length,pos,MYF(MY_NABP)))
54
if (!(length-=read_length))
59
if (pos >= info->pos_in_file &&
60
(offset= (my_off_t) (pos - info->pos_in_file)) <
61
(my_off_t) (info->read_end - info->request_pos))
63
in_buff_pos=info->request_pos+(uint) offset;
64
in_buff_length= min(length, (size_t) (info->read_end-in_buff_pos));
65
memcpy(buff,info->request_pos+(uint) offset,(size_t) in_buff_length);
66
if (!(length-=in_buff_length))
73
if (flag & READING_NEXT)
75
if (pos != (info->pos_in_file +
76
(uint) (info->read_end - info->request_pos)))
78
info->pos_in_file=pos; /* Force start here */
79
info->read_pos=info->read_end=info->request_pos; /* Everything used */
80
info->seek_not_done=1;
83
info->read_pos=info->read_end; /* All block used */
84
if (!(*info->read_function)(info,buff,length))
86
read_length=info->error;
90
info->seek_not_done=1;
91
if ((read_length=my_pread(info->file,buff,length,pos,MYF(0))) == length)
94
if (!(flag & READING_HEADER) || (int) read_length == -1 ||
95
read_length+in_buff_length < 3)
98
("Error %d reading next-multi-part block (Got %d bytes)",
99
my_errno, (int) read_length));
100
if (!my_errno || my_errno == -1)
101
my_errno=HA_ERR_WRONG_IN_RECORD;
104
bzero(buff+read_length,MI_BLOCK_INFO_HEADER_LENGTH - in_buff_length -
107
} /* _mi_read_cache */