~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/iocache.h

  • Committer: Brian Aker
  • Date: 2008-09-04 19:31:00 UTC
  • Revision ID: brian@tangent.org-20080904193100-l849hgghfy4urj43
Changing default character set from this point on.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 
 *
4
 
 *  Copyright (C) 2008 MySQL
5
 
 *
6
 
 *  This program is free software; you can redistribute it and/or modify
7
 
 *  it under the terms of the GNU General Public License as published by
8
 
 *  the Free Software Foundation; either version 2 of the License, or
9
 
 *  (at your option) any later version.
10
 
 *
11
 
 *  This program is distributed in the hope that it will be useful,
12
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 *  GNU General Public License for more details.
15
 
 *
16
 
 *  You should have received a copy of the GNU General Public License
17
 
 *  along with this program; if not, write to the Free Software
18
 
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 
 */
20
 
 
21
 
#ifndef mysys_iocache_h
22
 
#define mysys_iocache_h
23
 
 
24
 
#if defined(__cplusplus)
25
 
extern "C" {
26
 
#endif
27
 
 
28
 
struct st_io_cache;
29
 
typedef int (*IO_CACHE_CALLBACK)(struct st_io_cache*);
30
 
 
31
 
typedef struct st_io_cache_share
32
 
{
33
 
  pthread_mutex_t       mutex;           /* To sync on reads into buffer. */
34
 
  pthread_cond_t        cond;            /* To wait for signals. */
35
 
  pthread_cond_t        cond_writer;     /* For a synchronized writer. */
36
 
  /* Offset in file corresponding to the first byte of buffer. */
37
 
  my_off_t              pos_in_file;
38
 
  /* If a synchronized write cache is the source of the data. */
39
 
  struct st_io_cache    *source_cache;
40
 
  unsigned char                 *buffer;         /* The read buffer. */
41
 
  unsigned char                 *read_end;       /* Behind last valid byte of buffer. */
42
 
  int                   running_threads; /* threads not in lock. */
43
 
  int                   total_threads;   /* threads sharing the cache. */
44
 
  int                   error;           /* Last error. */
45
 
#ifdef NOT_YET_IMPLEMENTED
46
 
  /* whether the structure should be free'd */
47
 
  bool alloced;
48
 
#endif
49
 
} IO_CACHE_SHARE;
50
 
 
51
 
typedef struct st_io_cache    /* Used when cacheing files */
52
 
{
53
 
  /* Offset in file corresponding to the first byte of unsigned char* buffer. */
54
 
  my_off_t pos_in_file;
55
 
  /*
56
 
    The offset of end of file for READ_CACHE and WRITE_CACHE.
57
 
    For SEQ_READ_APPEND it the maximum of the actual end of file and
58
 
    the position represented by read_end.
59
 
  */
60
 
  my_off_t end_of_file;
61
 
  /* Points to current read position in the buffer */
62
 
  unsigned char  *read_pos;
63
 
  /* the non-inclusive boundary in the buffer for the currently valid read */
64
 
  unsigned char  *read_end;
65
 
  unsigned char  *buffer;        /* The read buffer */
66
 
  /* Used in ASYNC_IO */
67
 
  unsigned char  *request_pos;
68
 
 
69
 
  /* Only used in WRITE caches and in SEQ_READ_APPEND to buffer writes */
70
 
  unsigned char  *write_buffer;
71
 
  /*
72
 
    Only used in SEQ_READ_APPEND, and points to the current read position
73
 
    in the write buffer. Note that reads in SEQ_READ_APPEND caches can
74
 
    happen from both read buffer (unsigned char* buffer) and write buffer
75
 
    (unsigned char* write_buffer).
76
 
  */
77
 
  unsigned char *append_read_pos;
78
 
  /* Points to current write position in the write buffer */
79
 
  unsigned char *write_pos;
80
 
  /* The non-inclusive boundary of the valid write area */
81
 
  unsigned char *write_end;
82
 
 
83
 
  /*
84
 
    Current_pos and current_end are convenience variables used by
85
 
    my_b_tell() and other routines that need to know the current offset
86
 
    current_pos points to &write_pos, and current_end to &write_end in a
87
 
    WRITE_CACHE, and &read_pos and &read_end respectively otherwise
88
 
  */
89
 
  unsigned char  **current_pos, **current_end;
90
 
  /*
91
 
    The lock is for append buffer used in SEQ_READ_APPEND cache
92
 
    need mutex copying from append buffer to read buffer.
93
 
  */
94
 
  pthread_mutex_t append_buffer_lock;
95
 
  /*
96
 
    The following is used when several threads are reading the
97
 
    same file in parallel. They are synchronized on disk
98
 
    accesses reading the cached part of the file asynchronously.
99
 
    It should be set to NULL to disable the feature.  Only
100
 
    READ_CACHE mode is supported.
101
 
  */
102
 
  IO_CACHE_SHARE *share;
103
 
  /*
104
 
    A caller will use my_b_read() macro to read from the cache
105
 
    if the data is already in cache, it will be simply copied with
106
 
    memcpy() and internal variables will be accordinging updated with
107
 
    no functions invoked. However, if the data is not fully in the cache,
108
 
    my_b_read() will call read_function to fetch the data. read_function
109
 
    must never be invoked directly.
110
 
  */
111
 
  int (*read_function)(struct st_io_cache *,unsigned char *,size_t);
112
 
  /*
113
 
    Same idea as in the case of read_function, except my_b_write() needs to
114
 
    be replaced with my_b_append() for a SEQ_READ_APPEND cache
115
 
  */
116
 
  int (*write_function)(struct st_io_cache *,const unsigned char *,size_t);
117
 
  /*
118
 
    Specifies the type of the cache. Depending on the type of the cache
119
 
    certain operations might not be available and yield unpredicatable
120
 
    results. Details to be documented later
121
 
  */
122
 
  enum cache_type type;
123
 
  /*
124
 
    Callbacks when the actual read I/O happens. These were added and
125
 
    are currently used for binary logging of LOAD DATA INFILE - when a
126
 
    block is read from the file, we create a block create/append event, and
127
 
    when IO_CACHE is closed, we create an end event. These functions could,
128
 
    of course be used for other things
129
 
  */
130
 
  IO_CACHE_CALLBACK pre_read;
131
 
  IO_CACHE_CALLBACK post_read;
132
 
  IO_CACHE_CALLBACK pre_close;
133
 
  /*
134
 
    Counts the number of times, when we were forced to use disk. We use it to
135
 
    increase the binlog_cache_disk_use status variable.
136
 
  */
137
 
  uint32_t disk_writes;
138
 
  void* arg;        /* for use by pre/post_read */
139
 
  char *file_name;      /* if used with 'open_cached_file' */
140
 
  char *dir,*prefix;
141
 
  File file; /* file descriptor */
142
 
  /*
143
 
    seek_not_done is set by my_b_seek() to inform the upcoming read/write
144
 
    operation that a seek needs to be preformed prior to the actual I/O
145
 
    error is 0 if the cache operation was successful, -1 if there was a
146
 
    "hard" error, and the actual number of I/O-ed bytes if the read/write was
147
 
    partial.
148
 
  */
149
 
  int  seek_not_done,error;
150
 
  /* buffer_length is memory size allocated for buffer or write_buffer */
151
 
  size_t  buffer_length;
152
 
  /* read_length is the same as buffer_length except when we use async io */
153
 
  size_t  read_length;
154
 
  myf  myflags;      /* Flags used to my_read/my_write */
155
 
  /*
156
 
    alloced_buffer is 1 if the buffer was allocated by init_io_cache() and
157
 
    0 if it was supplied by the user.
158
 
    Currently READ_NET is the only one that will use a buffer allocated
159
 
    somewhere else
160
 
  */
161
 
  bool alloced_buffer;
162
 
#ifdef HAVE_AIOWAIT
163
 
  /*
164
 
    As inidicated by ifdef, this is for async I/O, which is not currently
165
 
    used (because it's not reliable on all systems)
166
 
  */
167
 
  uint32_t inited;
168
 
  my_off_t aio_read_pos;
169
 
  my_aio_result aio_result;
170
 
#endif
171
 
} IO_CACHE;
172
 
 
173
 
/* tell write offset in the SEQ_APPEND cache */
174
 
int      my_b_copy_to_file(IO_CACHE *cache, FILE *file);
175
 
my_off_t my_b_append_tell(IO_CACHE* info);
176
 
my_off_t my_b_safe_tell(IO_CACHE* info); /* picks the correct tell() */
177
 
 
178
 
extern int init_io_cache(IO_CACHE *info,File file,size_t cachesize,
179
 
                         enum cache_type type,my_off_t seek_offset,
180
 
                         bool use_async_io, myf cache_myflags);
181
 
extern bool reinit_io_cache(IO_CACHE *info,enum cache_type type,
182
 
                            my_off_t seek_offset,bool use_async_io,
183
 
                            bool clear_cache);
184
 
extern void setup_io_cache(IO_CACHE* info);
185
 
extern int _my_b_read(IO_CACHE *info,unsigned char *Buffer,size_t Count);
186
 
extern int _my_b_read_r(IO_CACHE *info,unsigned char *Buffer,size_t Count);
187
 
extern void init_io_cache_share(IO_CACHE *read_cache, IO_CACHE_SHARE *cshare,
188
 
                                IO_CACHE *write_cache, uint32_t num_threads);
189
 
extern void remove_io_thread(IO_CACHE *info);
190
 
extern int _my_b_seq_read(IO_CACHE *info,unsigned char *Buffer,size_t Count);
191
 
extern int _my_b_net_read(IO_CACHE *info,unsigned char *Buffer,size_t Count);
192
 
extern int _my_b_get(IO_CACHE *info);
193
 
extern int _my_b_async_read(IO_CACHE *info,unsigned char *Buffer,size_t Count);
194
 
extern int _my_b_write(IO_CACHE *info,const unsigned char *Buffer,
195
 
                       size_t Count);
196
 
extern int my_b_append(IO_CACHE *info,const unsigned char *Buffer,
197
 
                       size_t Count);
198
 
extern int my_b_safe_write(IO_CACHE *info,const unsigned char *Buffer,
199
 
                           size_t Count);
200
 
 
201
 
extern int my_block_write(IO_CACHE *info, const unsigned char *Buffer,
202
 
                          size_t Count, my_off_t pos);
203
 
extern int my_b_flush_io_cache(IO_CACHE *info, int need_append_buffer_lock);
204
 
 
205
 
#define flush_io_cache(info) my_b_flush_io_cache((info),1)
206
 
 
207
 
extern int end_io_cache(IO_CACHE *info);
208
 
extern size_t my_b_fill(IO_CACHE *info);
209
 
extern void my_b_seek(IO_CACHE *info,my_off_t pos);
210
 
extern size_t my_b_gets(IO_CACHE *info, char *to, size_t max_length);
211
 
extern my_off_t my_b_filelength(IO_CACHE *info);
212
 
extern size_t my_b_printf(IO_CACHE *info, const char* fmt, ...);
213
 
extern size_t my_b_vprintf(IO_CACHE *info, const char* fmt, va_list ap);
214
 
extern bool open_cached_file(IO_CACHE *cache,const char *dir,
215
 
                             const char *prefix, size_t cache_size,
216
 
                             myf cache_myflags);
217
 
extern bool real_open_cached_file(IO_CACHE *cache);
218
 
extern void close_cached_file(IO_CACHE *cache);
219
 
 
220
 
#if defined(__cplusplus)
221
 
}
222
 
#endif
223
 
 
224
 
#endif