1
by brian
clean slate |
1 |
/* Copyright (C) 2000 MySQL 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; version 2 of the License.
|
|
6 |
||
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.
|
|
11 |
||
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 */
|
|
15 |
||
16 |
/* This file should be included when using myisam_funktions */
|
|
17 |
||
1122.2.10
by Monty Taylor
Fixed all of the include guards. |
18 |
#ifndef PLUGIN_MYISAM_MYISAM_H
|
19 |
#define PLUGIN_MYISAM_MYISAM_H
|
|
1005.2.6
by Monty Taylor
Re-added bitset<> as a replacement for Bitmap<> |
20 |
|
21 |
#include <drizzled/key_map.h> |
|
22 |
||
212.5.39
by Monty Taylor
Phew. Moved my_base and my_global. |
23 |
#include <drizzled/base.h> |
1
by brian
clean slate |
24 |
#ifndef _m_ctype_h
|
1241.9.61
by Monty Taylor
No more mystrings in drizzled/ |
25 |
#include "drizzled/charset_info.h" |
1
by brian
clean slate |
26 |
#endif
|
27 |
#ifndef _keycache_h
|
|
28 |
#include "keycache.h" |
|
29 |
#endif
|
|
992.1.25
by Monty Taylor
Moved myisam to new plugin system. |
30 |
#include <plugin/myisam/my_handler.h> |
1241.9.64
by Monty Taylor
Moved remaining non-public portions of mysys and mystrings to drizzled/internal. |
31 |
#include "drizzled/internal/iocache.h" |
1
by brian
clean slate |
32 |
|
33 |
/*
|
|
34 |
Limit max keys according to HA_MAX_POSSIBLE_KEY
|
|
35 |
*/
|
|
36 |
||
37 |
#if MAX_INDEXES > HA_MAX_POSSIBLE_KEY
|
|
38 |
#define MI_MAX_KEY HA_MAX_POSSIBLE_KEY /* Max allowed keys */ |
|
39 |
#else
|
|
40 |
#define MI_MAX_KEY MAX_INDEXES /* Max allowed keys */ |
|
41 |
#endif
|
|
42 |
||
43 |
/*
|
|
44 |
The following defines can be increased if necessary.
|
|
45 |
But beware the dependency of MI_MAX_POSSIBLE_KEY_BUFF and MI_MAX_KEY_LENGTH.
|
|
46 |
*/
|
|
47 |
#define MI_MAX_KEY_LENGTH 1332 /* Max length in bytes */ |
|
48 |
#define MI_MAX_KEY_SEG 16 /* Max segments for key */ |
|
49 |
||
50 |
#define MI_MAX_POSSIBLE_KEY_BUFF (MI_MAX_KEY_LENGTH + 6 + 6) /* For mi_check */ |
|
51 |
||
52 |
#define MI_MAX_KEY_BUFF (MI_MAX_KEY_LENGTH+MI_MAX_KEY_SEG*6+8+8)
|
|
53 |
#define MI_MAX_MSG_BUF 1024 /* used in CHECK TABLE, REPAIR TABLE */ |
|
54 |
#define MI_NAME_IEXT ".MYI"
|
|
55 |
#define MI_NAME_DEXT ".MYD"
|
|
56 |
/* Max extra space to use when sorting keys */
|
|
57 |
#define MI_MAX_TEMP_LENGTH 2*1024L*1024L*1024L
|
|
58 |
||
59 |
/* Possible values for myisam_block_size (must be power of 2) */
|
|
60 |
#define MI_KEY_BLOCK_LENGTH 1024 /* default key block length */ |
|
61 |
#define MI_MIN_KEY_BLOCK_LENGTH 1024 /* Min key block length */ |
|
62 |
#define MI_MAX_KEY_BLOCK_LENGTH 16384
|
|
63 |
||
64 |
/*
|
|
65 |
In the following macros '_keyno_' is 0 .. keys-1.
|
|
66 |
If there can be more keys than bits in the key_map, the highest bit
|
|
67 |
is for all upper keys. They cannot be switched individually.
|
|
68 |
This means that clearing of high keys is ignored, setting one high key
|
|
69 |
sets all high keys.
|
|
70 |
*/
|
|
481.1.5
by Monty Taylor
Removed sizeof(long) sizeof(long long) checks. |
71 |
#define MI_KEYMAP_BITS (64)
|
398.1.8
by Monty Taylor
Enabled -Wlong-long. |
72 |
#define MI_KEYMAP_HIGH_MASK (1UL << (MI_KEYMAP_BITS - 1))
|
1
by brian
clean slate |
73 |
#define mi_get_mask_all_keys_active(_keys_) \
|
74 |
(((_keys_) < MI_KEYMAP_BITS) ? \
|
|
398.1.8
by Monty Taylor
Enabled -Wlong-long. |
75 |
((1UL << (_keys_)) - 1UL) : \
|
76 |
(~ 0UL))
|
|
1
by brian
clean slate |
77 |
|
78 |
#if MI_MAX_KEY > MI_KEYMAP_BITS
|
|
79 |
||
80 |
#define mi_is_key_active(_keymap_,_keyno_) \
|
|
81 |
(((_keyno_) < MI_KEYMAP_BITS) ? \
|
|
398.1.8
by Monty Taylor
Enabled -Wlong-long. |
82 |
test((_keymap_) & (1UL << (_keyno_))) : \
|
1
by brian
clean slate |
83 |
test((_keymap_) & MI_KEYMAP_HIGH_MASK))
|
84 |
#define mi_set_key_active(_keymap_,_keyno_) \
|
|
85 |
(_keymap_)|= (((_keyno_) < MI_KEYMAP_BITS) ? \
|
|
398.1.8
by Monty Taylor
Enabled -Wlong-long. |
86 |
(1UL << (_keyno_)) : \
|
1
by brian
clean slate |
87 |
MI_KEYMAP_HIGH_MASK)
|
88 |
#define mi_clear_key_active(_keymap_,_keyno_) \
|
|
89 |
(_keymap_)&= (((_keyno_) < MI_KEYMAP_BITS) ? \
|
|
398.1.8
by Monty Taylor
Enabled -Wlong-long. |
90 |
(~ (1UL << (_keyno_))) : \
|
91 |
(~ (0UL)) /*ignore*/ ) |
|
1
by brian
clean slate |
92 |
|
93 |
#else
|
|
94 |
||
95 |
#define mi_is_key_active(_keymap_,_keyno_) \
|
|
398.1.8
by Monty Taylor
Enabled -Wlong-long. |
96 |
test((_keymap_) & (1UL << (_keyno_)))
|
1
by brian
clean slate |
97 |
#define mi_set_key_active(_keymap_,_keyno_) \
|
398.1.8
by Monty Taylor
Enabled -Wlong-long. |
98 |
(_keymap_)|= (1UL << (_keyno_))
|
1
by brian
clean slate |
99 |
#define mi_clear_key_active(_keymap_,_keyno_) \
|
398.1.8
by Monty Taylor
Enabled -Wlong-long. |
100 |
(_keymap_)&= (~ (1UL << (_keyno_)))
|
1
by brian
clean slate |
101 |
|
102 |
#endif
|
|
103 |
||
104 |
#define mi_is_any_key_active(_keymap_) \
|
|
105 |
test((_keymap_))
|
|
106 |
#define mi_is_all_keys_active(_keymap_,_keys_) \
|
|
107 |
((_keymap_) == mi_get_mask_all_keys_active(_keys_))
|
|
108 |
#define mi_set_all_keys_active(_keymap_,_keys_) \
|
|
109 |
(_keymap_)= mi_get_mask_all_keys_active(_keys_)
|
|
110 |
#define mi_clear_all_keys_active(_keymap_) \
|
|
111 |
(_keymap_)= 0
|
|
112 |
#define mi_intersect_keys_active(_to_,_from_) \
|
|
113 |
(_to_)&= (_from_)
|
|
114 |
#define mi_is_any_intersect_keys_active(_keymap1_,_keys_,_keymap2_) \
|
|
115 |
((_keymap1_) & (_keymap2_) & \
|
|
116 |
mi_get_mask_all_keys_active(_keys_))
|
|
117 |
#define mi_copy_keys_active(_to_,_maxkeys_,_from_) \
|
|
118 |
(_to_)= (mi_get_mask_all_keys_active(_maxkeys_) & \
|
|
119 |
(_from_))
|
|
120 |
||
121 |
/* Param to/from mi_status */
|
|
122 |
||
123 |
typedef struct st_mi_isaminfo /* Struct from h_info */ |
|
124 |
{
|
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
125 |
drizzled::ha_rows records; /* Records in database */ |
126 |
drizzled::ha_rows deleted; /* Deleted records in database */ |
|
127 |
drizzled::internal::my_off_t recpos; /* Pos for last used record */ |
|
128 |
drizzled::internal::my_off_t newrecpos; /* Pos if we write new record */ |
|
129 |
drizzled::internal::my_off_t dupp_key_pos; /* Position to record with dupp key */ |
|
130 |
drizzled::internal::my_off_t data_file_length, /* Length of data file */ |
|
1
by brian
clean slate |
131 |
max_data_file_length, |
132 |
index_file_length, |
|
133 |
max_index_file_length, |
|
134 |
delete_length; |
|
135 |
ulong reclength; /* Recordlength */ |
|
136 |
ulong mean_reclength; /* Mean recordlength (if packed) */ |
|
151
by Brian Aker
Ulonglong to uint64_t |
137 |
uint64_t auto_increment; |
138 |
uint64_t key_map; /* Which keys are used */ |
|
1
by brian
clean slate |
139 |
char *data_file_name, *index_file_name; |
482
by Brian Aker
Remove uint. |
140 |
uint32_t keys; /* Number of keys in use */ |
1
by brian
clean slate |
141 |
uint options; /* HA_OPTION_... used */ |
142 |
int errkey, /* With key was dupplicated on err */ |
|
143 |
sortkey; /* clustered by this key */ |
|
1241.9.1
by Monty Taylor
Removed global.h. Fixed all the headers. |
144 |
int filenr; /* (uniq) filenr for datafile */ |
1
by brian
clean slate |
145 |
time_t create_time; /* When table was created */ |
146 |
time_t check_time; |
|
147 |
time_t update_time; |
|
482
by Brian Aker
Remove uint. |
148 |
uint32_t reflength; |
1
by brian
clean slate |
149 |
ulong record_offset; |
150 |
ulong *rec_per_key; /* for sql optimizing */ |
|
151 |
} MI_ISAMINFO; |
|
152 |
||
153 |
||
154 |
typedef struct st_mi_create_info |
|
155 |
{
|
|
156 |
const char *index_file_name, *data_file_name; /* If using symlinks */ |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
157 |
drizzled::ha_rows max_rows; |
158 |
drizzled::ha_rows reloc_rows; |
|
151
by Brian Aker
Ulonglong to uint64_t |
159 |
uint64_t auto_increment; |
160 |
uint64_t data_file_length; |
|
161 |
uint64_t key_file_length; |
|
482
by Brian Aker
Remove uint. |
162 |
uint32_t old_options; |
206
by Brian Aker
Removed final uint dead types. |
163 |
uint8_t language; |
281
by Brian Aker
Converted myisam away from my_bool |
164 |
bool with_auto_increment; |
1711.6.5
by Brian Aker
Updating so that structures have constructor (removed memset calls). |
165 |
|
166 |
st_mi_create_info(): |
|
167 |
index_file_name(0), |
|
168 |
data_file_name(0), |
|
169 |
max_rows(0), |
|
170 |
reloc_rows(0), |
|
171 |
auto_increment(0), |
|
172 |
data_file_length(0), |
|
173 |
key_file_length(0), |
|
174 |
old_options(0), |
|
175 |
language(0), |
|
176 |
with_auto_increment(0) |
|
177 |
{ } |
|
178 |
||
1
by brian
clean slate |
179 |
} MI_CREATE_INFO; |
180 |
||
181 |
struct st_myisam_info; /* For referense */ |
|
182 |
struct st_mi_isam_share; |
|
183 |
typedef struct st_myisam_info MI_INFO; |
|
184 |
struct st_mi_s_param; |
|
185 |
||
186 |
typedef struct st_mi_keydef /* Key definition with open & info */ |
|
187 |
{
|
|
188 |
struct st_mi_isam_share *share; /* Pointer to base (set in mi_open) */ |
|
206
by Brian Aker
Removed final uint dead types. |
189 |
uint16_t keysegs; /* Number of key-segment */ |
190 |
uint16_t flag; /* NOSAME, PACK_USED */ |
|
1
by brian
clean slate |
191 |
|
206
by Brian Aker
Removed final uint dead types. |
192 |
uint8_t key_alg; /* BTREE, RTREE */ |
193 |
uint16_t block_length; /* Length of keyblock (auto) */ |
|
194 |
uint16_t underflow_block_length; /* When to execute underflow */ |
|
195 |
uint16_t keylength; /* Tot length of keyparts (auto) */ |
|
196 |
uint16_t minlength; /* min length of (packed) key (auto) */ |
|
197 |
uint16_t maxlength; /* max length of (packed) key (auto) */ |
|
198 |
uint16_t block_size_index; /* block_size (auto) */ |
|
205
by Brian Aker
uint32 -> uin32_t |
199 |
uint32_t version; /* For concurrent read/write */ |
1
by brian
clean slate |
200 |
|
201 |
HA_KEYSEG *seg,*end; |
|
160.1.2
by mark
remove FTPARSER and last remains of full text search |
202 |
|
1
by brian
clean slate |
203 |
int (*bin_search)(struct st_myisam_info *info,struct st_mi_keydef *keyinfo, |
481
by Brian Aker
Remove all of uchar. |
204 |
unsigned char *page,unsigned char *key, |
482
by Brian Aker
Remove uint. |
205 |
uint32_t key_len,uint32_t comp_flag,unsigned char * *ret_pos, |
481
by Brian Aker
Remove all of uchar. |
206 |
unsigned char *buff, bool *was_last_key); |
482
by Brian Aker
Remove uint. |
207 |
uint32_t (*get_key)(struct st_mi_keydef *keyinfo,uint32_t nod_flag,unsigned char * *page, |
481
by Brian Aker
Remove all of uchar. |
208 |
unsigned char *key); |
482
by Brian Aker
Remove uint. |
209 |
int (*pack_key)(struct st_mi_keydef *keyinfo,uint32_t nod_flag,unsigned char *next_key, |
481
by Brian Aker
Remove all of uchar. |
210 |
unsigned char *org_key, unsigned char *prev_key, unsigned char *key, |
1
by brian
clean slate |
211 |
struct st_mi_s_param *s_temp); |
481
by Brian Aker
Remove all of uchar. |
212 |
void (*store_key)(struct st_mi_keydef *keyinfo, unsigned char *key_pos, |
1
by brian
clean slate |
213 |
struct st_mi_s_param *s_temp); |
482
by Brian Aker
Remove uint. |
214 |
int (*ck_insert)(struct st_myisam_info *inf, uint32_t k_nr, unsigned char *k, uint32_t klen); |
215 |
int (*ck_delete)(struct st_myisam_info *inf, uint32_t k_nr, unsigned char *k, uint32_t klen); |
|
1
by brian
clean slate |
216 |
} MI_KEYDEF; |
217 |
||
218 |
||
219 |
#define MI_UNIQUE_HASH_LENGTH 4
|
|
220 |
||
221 |
typedef struct st_unique_def /* Segment definition of unique */ |
|
222 |
{
|
|
206
by Brian Aker
Removed final uint dead types. |
223 |
uint16_t keysegs; /* Number of key-segment */ |
481
by Brian Aker
Remove all of uchar. |
224 |
unsigned char key; /* Mapped to which key */ |
206
by Brian Aker
Removed final uint dead types. |
225 |
uint8_t null_are_equal; |
1
by brian
clean slate |
226 |
HA_KEYSEG *seg,*end; |
227 |
} MI_UNIQUEDEF; |
|
228 |
||
229 |
typedef struct st_mi_decode_tree /* Decode huff-table */ |
|
230 |
{
|
|
206
by Brian Aker
Removed final uint dead types. |
231 |
uint16_t *table; |
1
by brian
clean slate |
232 |
uint quick_table_bits; |
481
by Brian Aker
Remove all of uchar. |
233 |
unsigned char *intervalls; |
1
by brian
clean slate |
234 |
} MI_DECODE_TREE; |
235 |
||
236 |
||
237 |
struct st_mi_bit_buff; |
|
238 |
||
239 |
/*
|
|
240 |
Note that null markers should always be first in a row !
|
|
241 |
When creating a column, one should only specify:
|
|
242 |
type, length, null_bit and null_pos
|
|
243 |
*/
|
|
244 |
||
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
245 |
namespace drizzled |
246 |
{
|
|
247 |
||
1
by brian
clean slate |
248 |
typedef struct st_columndef /* column information */ |
249 |
{
|
|
206
by Brian Aker
Removed final uint dead types. |
250 |
int16_t type; /* en_fieldtype */ |
251 |
uint16_t length; /* length of field */ |
|
205
by Brian Aker
uint32 -> uin32_t |
252 |
uint32_t offset; /* Offset to position in row */ |
206
by Brian Aker
Removed final uint dead types. |
253 |
uint8_t null_bit; /* If column may be 0 */ |
254 |
uint16_t null_pos; /* position for null marker */ |
|
1
by brian
clean slate |
255 |
|
256 |
#ifndef NOT_PACKED_DATABASES
|
|
257 |
void (*unpack)(struct st_columndef *rec,struct st_mi_bit_buff *buff, |
|
481
by Brian Aker
Remove all of uchar. |
258 |
unsigned char *start,unsigned char *end); |
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
259 |
enum drizzled::en_fieldtype base_type; |
482
by Brian Aker
Remove uint. |
260 |
uint32_t space_length_bits,pack_type; |
1
by brian
clean slate |
261 |
MI_DECODE_TREE *huff_tree; |
262 |
#endif
|
|
263 |
} MI_COLUMNDEF; |
|
264 |
||
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
265 |
}
|
266 |
||
1
by brian
clean slate |
267 |
|
268 |
extern char * myisam_log_filename; /* Name of logfile */ |
|
312
by Brian Aker
Removed global variable calls, cleaned up static. |
269 |
extern uint32_t myisam_block_size; |
270 |
extern uint32_t myisam_concurrent_insert; |
|
790
by Brian Aker
More myisam plugin conversion. |
271 |
extern uint32_t myisam_bulk_insert_tree_size; |
272 |
extern uint32_t data_pointer_size; |
|
1
by brian
clean slate |
273 |
|
274 |
/* Prototypes for myisam-functions */
|
|
275 |
||
276 |
extern int mi_close(struct st_myisam_info *file); |
|
481
by Brian Aker
Remove all of uchar. |
277 |
extern int mi_delete(struct st_myisam_info *file,const unsigned char *buff); |
1
by brian
clean slate |
278 |
extern struct st_myisam_info *mi_open(const char *name,int mode, |
482
by Brian Aker
Remove uint. |
279 |
uint32_t wait_if_locked); |
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
280 |
extern int mi_panic(enum drizzled::ha_panic_function function); |
481
by Brian Aker
Remove all of uchar. |
281 |
extern int mi_rfirst(struct st_myisam_info *file,unsigned char *buf,int inx); |
282 |
extern int mi_rkey(MI_INFO *info, unsigned char *buf, int inx, const unsigned char *key, |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
283 |
drizzled::key_part_map keypart_map, enum drizzled::ha_rkey_function search_flag); |
481
by Brian Aker
Remove all of uchar. |
284 |
extern int mi_rlast(struct st_myisam_info *file,unsigned char *buf,int inx); |
285 |
extern int mi_rnext(struct st_myisam_info *file,unsigned char *buf,int inx); |
|
286 |
extern int mi_rnext_same(struct st_myisam_info *info, unsigned char *buf); |
|
287 |
extern int mi_rprev(struct st_myisam_info *file,unsigned char *buf,int inx); |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
288 |
extern int mi_rrnd(struct st_myisam_info *file,unsigned char *buf, drizzled::internal::my_off_t pos); |
1
by brian
clean slate |
289 |
extern int mi_scan_init(struct st_myisam_info *file); |
481
by Brian Aker
Remove all of uchar. |
290 |
extern int mi_scan(struct st_myisam_info *file,unsigned char *buf); |
291 |
extern int mi_rsame(struct st_myisam_info *file,unsigned char *record,int inx); |
|
292 |
extern int mi_update(struct st_myisam_info *file,const unsigned char *old, |
|
293 |
unsigned char *new_record); |
|
294 |
extern int mi_write(struct st_myisam_info *file,unsigned char *buff); |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
295 |
extern drizzled::internal::my_off_t mi_position(struct st_myisam_info *file); |
482
by Brian Aker
Remove uint. |
296 |
extern int mi_status(struct st_myisam_info *info, MI_ISAMINFO *x, uint32_t flag); |
1
by brian
clean slate |
297 |
extern int mi_lock_database(struct st_myisam_info *file,int lock_type); |
482
by Brian Aker
Remove uint. |
298 |
extern int mi_create(const char *name,uint32_t keys,MI_KEYDEF *keydef, |
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
299 |
uint32_t columns, drizzled::MI_COLUMNDEF *columndef, |
482
by Brian Aker
Remove uint. |
300 |
uint32_t uniques, MI_UNIQUEDEF *uniquedef, |
301 |
MI_CREATE_INFO *create_info, uint32_t flags); |
|
1
by brian
clean slate |
302 |
extern int mi_delete_table(const char *name); |
303 |
extern int mi_rename(const char *from, const char *to); |
|
304 |
extern int mi_extra(struct st_myisam_info *file, |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
305 |
enum drizzled::ha_extra_function function, |
1
by brian
clean slate |
306 |
void *extra_arg); |
307 |
extern int mi_reset(struct st_myisam_info *file); |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
308 |
extern drizzled::ha_rows mi_records_in_range(MI_INFO *info, int inx, |
309 |
drizzled::key_range *min_key, drizzled::key_range *max_key); |
|
1
by brian
clean slate |
310 |
extern int mi_log(int activate_log); |
311 |
extern int mi_delete_all_rows(struct st_myisam_info *info); |
|
482
by Brian Aker
Remove uint. |
312 |
extern ulong _mi_calc_blob_length(uint32_t length , const unsigned char *pos); |
313 |
extern uint32_t mi_get_pointer_length(uint64_t file_length, uint32_t def); |
|
1
by brian
clean slate |
314 |
|
315 |
/* this is used to pass to mysql_myisamchk_table */
|
|
316 |
||
317 |
#define MYISAMCHK_REPAIR 1 /* equivalent to myisamchk -r */ |
|
318 |
#define MYISAMCHK_VERIFY 2 /* Verify, run repair if failure */ |
|
319 |
||
320 |
/*
|
|
321 |
Definitions needed for myisamchk.c
|
|
322 |
||
323 |
Entries marked as "QQ to be removed" are NOT used to
|
|
324 |
pass check/repair options to mi_check.c. They are used
|
|
325 |
internally by myisamchk.c or/and ha_myisam.cc and should NOT
|
|
326 |
be stored together with other flags. They should be removed
|
|
327 |
from the following list to make addition of new flags possible.
|
|
328 |
*/
|
|
329 |
||
330 |
#define T_AUTO_INC 1
|
|
331 |
#define T_AUTO_REPAIR 2 /* QQ to be removed */ |
|
332 |
#define T_BACKUP_DATA 4
|
|
333 |
#define T_CALC_CHECKSUM 8
|
|
334 |
#define T_CHECK 16 /* QQ to be removed */ |
|
335 |
#define T_CHECK_ONLY_CHANGED 32 /* QQ to be removed */ |
|
336 |
#define T_CREATE_MISSING_KEYS 64
|
|
337 |
#define T_DESCRIPT 128
|
|
338 |
#define T_DONT_CHECK_CHECKSUM 256
|
|
339 |
#define T_EXTEND 512
|
|
340 |
#define T_FAST (1L << 10) /* QQ to be removed */ |
|
341 |
#define T_FORCE_CREATE (1L << 11) /* QQ to be removed */ |
|
342 |
#define T_FORCE_UNIQUENESS (1L << 12)
|
|
343 |
#define T_INFO (1L << 13)
|
|
344 |
#define T_MEDIUM (1L << 14)
|
|
345 |
#define T_QUICK (1L << 15) /* QQ to be removed */ |
|
346 |
#define T_READONLY (1L << 16) /* QQ to be removed */ |
|
347 |
#define T_REP (1L << 17)
|
|
348 |
#define T_REP_BY_SORT (1L << 18) /* QQ to be removed */ |
|
349 |
#define T_REP_PARALLEL (1L << 19) /* QQ to be removed */ |
|
350 |
#define T_RETRY_WITHOUT_QUICK (1L << 20)
|
|
351 |
#define T_SAFE_REPAIR (1L << 21)
|
|
352 |
#define T_SILENT (1L << 22)
|
|
353 |
#define T_SORT_INDEX (1L << 23) /* QQ to be removed */ |
|
354 |
#define T_SORT_RECORDS (1L << 24) /* QQ to be removed */ |
|
355 |
#define T_STATISTICS (1L << 25)
|
|
356 |
#define T_UNPACK (1L << 26)
|
|
357 |
#define T_UPDATE_STATE (1L << 27)
|
|
358 |
#define T_VERBOSE (1L << 28)
|
|
359 |
#define T_VERY_SILENT (1L << 29)
|
|
360 |
#define T_WAIT_FOREVER (1L << 30)
|
|
361 |
#define T_WRITE_LOOP ((ulong) 1L << 31)
|
|
362 |
||
363 |
#define T_REP_ANY (T_REP | T_REP_BY_SORT | T_REP_PARALLEL)
|
|
364 |
||
365 |
#define O_NEW_INDEX 1 /* Bits set in out_flag */ |
|
366 |
#define O_NEW_DATA 2
|
|
367 |
#define O_DATA_LOST 4
|
|
368 |
||
369 |
/* these struct is used by my_check to tell it what to do */
|
|
370 |
||
371 |
typedef struct st_sort_key_blocks /* Used when sorting */ |
|
372 |
{
|
|
481
by Brian Aker
Remove all of uchar. |
373 |
unsigned char *buff,*end_pos; |
374 |
unsigned char lastkey[MI_MAX_POSSIBLE_KEY_BUFF]; |
|
482
by Brian Aker
Remove uint. |
375 |
uint32_t last_length; |
1
by brian
clean slate |
376 |
int inited; |
377 |
} SORT_KEY_BLOCKS; |
|
378 |
||
379 |
||
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
380 |
/*
|
381 |
MyISAM supports several statistics collection methods. Currently statistics
|
|
382 |
collection method is not stored in MyISAM file and has to be specified for
|
|
1
by brian
clean slate |
383 |
each table analyze/repair operation in MI_CHECK::stats_method.
|
384 |
*/
|
|
385 |
||
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
386 |
typedef enum |
1
by brian
clean slate |
387 |
{
|
388 |
/* Treat NULLs as inequal when collecting statistics (default for 4.1/5.0) */
|
|
389 |
MI_STATS_METHOD_NULLS_NOT_EQUAL, |
|
390 |
/* Treat NULLs as equal when collecting statistics (like 4.0 did) */
|
|
391 |
MI_STATS_METHOD_NULLS_EQUAL, |
|
392 |
/* Ignore NULLs - count only tuples without NULLs in the index components */
|
|
393 |
MI_STATS_METHOD_IGNORE_NULLS
|
|
394 |
} enum_mi_stats_method; |
|
395 |
||
396 |
typedef struct st_mi_check_param |
|
397 |
{
|
|
151
by Brian Aker
Ulonglong to uint64_t |
398 |
uint64_t auto_increment_value; |
399 |
uint64_t max_data_file_length; |
|
400 |
uint64_t keys_in_use; |
|
401 |
uint64_t max_record_length; |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
402 |
drizzled::internal::my_off_t search_after_block; |
403 |
drizzled::internal::my_off_t new_file_pos,key_file_blocks; |
|
404 |
drizzled::internal::my_off_t keydata,totaldata,key_blocks,start_check_pos; |
|
405 |
drizzled::ha_rows total_records,total_deleted; |
|
406 |
drizzled::internal::ha_checksum record_checksum,glob_crc; |
|
896.4.16
by Stewart Smith
for getopt, replace GET_ULONG with GET_UINT32. |
407 |
uint64_t use_buffers; |
779.3.20
by Monty Taylor
Fixed Solaris warnings for MyISAM. |
408 |
size_t read_buffer_length, write_buffer_length, |
409 |
sort_buffer_length, sort_key_blocks; |
|
482
by Brian Aker
Remove uint. |
410 |
uint32_t out_flag,warning_printed,error_printed,verbose; |
411 |
uint32_t opt_sort_key,total_files,max_level; |
|
412 |
uint32_t testflag, key_cache_block_size; |
|
206
by Brian Aker
Removed final uint dead types. |
413 |
uint8_t language; |
281
by Brian Aker
Converted myisam away from my_bool |
414 |
bool using_global_keycache, opt_lock_memory, opt_follow_links; |
415 |
bool retry_repair, force_sort; |
|
1
by brian
clean slate |
416 |
char temp_filename[FN_REFLEN],*isam_file_name; |
417 |
int tmpfile_createflag; |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
418 |
drizzled::myf myf_rw; |
419 |
drizzled::internal::IO_CACHE read_cache; |
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
420 |
|
421 |
/*
|
|
1
by brian
clean slate |
422 |
The next two are used to collect statistics, see update_key_parts for
|
423 |
description.
|
|
424 |
*/
|
|
151
by Brian Aker
Ulonglong to uint64_t |
425 |
uint64_t unique_count[MI_MAX_KEY_SEG+1]; |
426 |
uint64_t notnull_count[MI_MAX_KEY_SEG+1]; |
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
427 |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
428 |
drizzled::internal::ha_checksum key_crc[HA_MAX_POSSIBLE_KEY]; |
1
by brian
clean slate |
429 |
ulong rec_per_key_part[MI_MAX_KEY_SEG*HA_MAX_POSSIBLE_KEY]; |
520.1.22
by Brian Aker
Second pass of thd cleanup |
430 |
void *session; |
1
by brian
clean slate |
431 |
const char *db_name, *table_name; |
432 |
const char *op_name; |
|
433 |
enum_mi_stats_method stats_method; |
|
434 |
} MI_CHECK; |
|
435 |
||
436 |
typedef struct st_sort_info |
|
437 |
{
|
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
438 |
drizzled::internal::my_off_t filelength,dupp,buff_length; |
439 |
drizzled::ha_rows max_records; |
|
482
by Brian Aker
Remove uint. |
440 |
uint32_t current_key, total_keys; |
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
441 |
drizzled::myf myf_rw; |
442 |
enum drizzled::data_file_type new_data_file_type; |
|
1
by brian
clean slate |
443 |
MI_INFO *info; |
444 |
MI_CHECK *param; |
|
481
by Brian Aker
Remove all of uchar. |
445 |
unsigned char *buff; |
1
by brian
clean slate |
446 |
SORT_KEY_BLOCKS *key_block,*key_block_end; |
447 |
/* sync things */
|
|
482
by Brian Aker
Remove uint. |
448 |
uint32_t got_error, threads_running; |
1
by brian
clean slate |
449 |
pthread_mutex_t mutex; |
450 |
pthread_cond_t cond; |
|
451 |
} SORT_INFO; |
|
452 |
||
453 |
/* functions in mi_check */
|
|
454 |
void myisamchk_init(MI_CHECK *param); |
|
455 |
int chk_status(MI_CHECK *param, MI_INFO *info); |
|
482
by Brian Aker
Remove uint. |
456 |
int chk_del(MI_CHECK *param, register MI_INFO *info, uint32_t test_flag); |
1
by brian
clean slate |
457 |
int chk_size(MI_CHECK *param, MI_INFO *info); |
458 |
int chk_key(MI_CHECK *param, MI_INFO *info); |
|
459 |
int chk_data_link(MI_CHECK *param, MI_INFO *info,int extend); |
|
460 |
int mi_repair(MI_CHECK *param, register MI_INFO *info, |
|
461 |
char * name, int rep_quick); |
|
462 |
int mi_sort_index(MI_CHECK *param, register MI_INFO *info, char * name); |
|
463 |
int mi_repair_by_sort(MI_CHECK *param, register MI_INFO *info, |
|
464 |
const char * name, int rep_quick); |
|
465 |
int change_to_newfile(const char * filename, const char * old_ext, |
|
482
by Brian Aker
Remove uint. |
466 |
const char * new_ext, uint32_t raid_chunks, |
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
467 |
drizzled::myf myflags); |
1
by brian
clean slate |
468 |
void lock_memory(MI_CHECK *param); |
469 |
void update_auto_increment_key(MI_CHECK *param, MI_INFO *info, |
|
281
by Brian Aker
Converted myisam away from my_bool |
470 |
bool repair); |
482
by Brian Aker
Remove uint. |
471 |
int update_state_info(MI_CHECK *param, MI_INFO *info,uint32_t update); |
1
by brian
clean slate |
472 |
void update_key_parts(MI_KEYDEF *keyinfo, ulong *rec_per_key_part, |
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
473 |
uint64_t *unique, uint64_t *notnull, |
151
by Brian Aker
Ulonglong to uint64_t |
474 |
uint64_t records); |
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
475 |
int filecopy(MI_CHECK *param, int to,int from,drizzled::internal::my_off_t start, |
476 |
drizzled::internal::my_off_t length, const char *type); |
|
477 |
int movepoint(MI_INFO *info,unsigned char *record,drizzled::internal::my_off_t oldpos, |
|
478 |
drizzled::internal::my_off_t newpos, uint32_t prot_key); |
|
281
by Brian Aker
Converted myisam away from my_bool |
479 |
int write_data_suffix(SORT_INFO *sort_info, bool fix_datafile); |
1
by brian
clean slate |
480 |
int test_if_almost_full(MI_INFO *info); |
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
481 |
bool mi_test_if_sort_rep(MI_INFO *info, drizzled::ha_rows rows, uint64_t key_map, |
281
by Brian Aker
Converted myisam away from my_bool |
482 |
bool force); |
1
by brian
clean slate |
483 |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
484 |
int mi_init_bulk_insert(MI_INFO *info, uint32_t cache_size, drizzled::ha_rows rows); |
482
by Brian Aker
Remove uint. |
485 |
void mi_flush_bulk_insert(MI_INFO *info, uint32_t inx); |
1
by brian
clean slate |
486 |
void mi_end_bulk_insert(MI_INFO *info); |
281
by Brian Aker
Converted myisam away from my_bool |
487 |
int mi_preload(MI_INFO *info, uint64_t key_map, bool ignore_leaves); |
1
by brian
clean slate |
488 |
|
1122.2.10
by Monty Taylor
Fixed all of the include guards. |
489 |
#endif /* PLUGIN_MYISAM_MYISAM_H */ |