~drizzle-trunk/drizzle/development

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;
1 by brian
clean slate
165
} MI_CREATE_INFO;
166
167
struct st_myisam_info;			/* For referense */
168
struct st_mi_isam_share;
169
typedef struct st_myisam_info MI_INFO;
170
struct st_mi_s_param;
171
172
typedef struct st_mi_keydef		/* Key definition with open & info */
173
{
174
  struct st_mi_isam_share *share;       /* Pointer to base (set in mi_open) */
206 by Brian Aker
Removed final uint dead types.
175
  uint16_t keysegs;			/* Number of key-segment */
176
  uint16_t flag;				/* NOSAME, PACK_USED */
1 by brian
clean slate
177
206 by Brian Aker
Removed final uint dead types.
178
  uint8_t  key_alg;			/* BTREE, RTREE */
179
  uint16_t block_length;			/* Length of keyblock (auto) */
180
  uint16_t underflow_block_length;	/* When to execute underflow */
181
  uint16_t keylength;			/* Tot length of keyparts (auto) */
182
  uint16_t minlength;			/* min length of (packed) key (auto) */
183
  uint16_t maxlength;			/* max length of (packed) key (auto) */
184
  uint16_t block_size_index;		/* block_size (auto) */
205 by Brian Aker
uint32 -> uin32_t
185
  uint32_t version;			/* For concurrent read/write */
1 by brian
clean slate
186
187
  HA_KEYSEG *seg,*end;
160.1.2 by mark
remove FTPARSER and last remains of full text search
188
1 by brian
clean slate
189
  int (*bin_search)(struct st_myisam_info *info,struct st_mi_keydef *keyinfo,
481 by Brian Aker
Remove all of uchar.
190
		    unsigned char *page,unsigned char *key,
482 by Brian Aker
Remove uint.
191
		    uint32_t key_len,uint32_t comp_flag,unsigned char * *ret_pos,
481 by Brian Aker
Remove all of uchar.
192
		    unsigned char *buff, bool *was_last_key);
482 by Brian Aker
Remove uint.
193
  uint32_t (*get_key)(struct st_mi_keydef *keyinfo,uint32_t nod_flag,unsigned char * *page,
481 by Brian Aker
Remove all of uchar.
194
		  unsigned char *key);
482 by Brian Aker
Remove uint.
195
  int (*pack_key)(struct st_mi_keydef *keyinfo,uint32_t nod_flag,unsigned char *next_key,
481 by Brian Aker
Remove all of uchar.
196
		  unsigned char *org_key, unsigned char *prev_key, unsigned char *key,
1 by brian
clean slate
197
		  struct st_mi_s_param *s_temp);
481 by Brian Aker
Remove all of uchar.
198
  void (*store_key)(struct st_mi_keydef *keyinfo, unsigned char *key_pos,
1 by brian
clean slate
199
		    struct st_mi_s_param *s_temp);
482 by Brian Aker
Remove uint.
200
  int (*ck_insert)(struct st_myisam_info *inf, uint32_t k_nr, unsigned char *k, uint32_t klen);
201
  int (*ck_delete)(struct st_myisam_info *inf, uint32_t k_nr, unsigned char *k, uint32_t klen);
1 by brian
clean slate
202
} MI_KEYDEF;
203
204
205
#define MI_UNIQUE_HASH_LENGTH	4
206
207
typedef struct st_unique_def		/* Segment definition of unique */
208
{
206 by Brian Aker
Removed final uint dead types.
209
  uint16_t keysegs;			/* Number of key-segment */
481 by Brian Aker
Remove all of uchar.
210
  unsigned char key;				/* Mapped to which key */
206 by Brian Aker
Removed final uint dead types.
211
  uint8_t null_are_equal;
1 by brian
clean slate
212
  HA_KEYSEG *seg,*end;
213
} MI_UNIQUEDEF;
214
215
typedef struct st_mi_decode_tree	/* Decode huff-table */
216
{
206 by Brian Aker
Removed final uint dead types.
217
  uint16_t *table;
1 by brian
clean slate
218
  uint	 quick_table_bits;
481 by Brian Aker
Remove all of uchar.
219
  unsigned char	 *intervalls;
1 by brian
clean slate
220
} MI_DECODE_TREE;
221
222
223
struct st_mi_bit_buff;
224
225
/*
226
  Note that null markers should always be first in a row !
227
  When creating a column, one should only specify:
228
  type, length, null_bit and null_pos
229
*/
230
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
231
namespace drizzled
232
{
233
1 by brian
clean slate
234
typedef struct st_columndef		/* column information */
235
{
206 by Brian Aker
Removed final uint dead types.
236
  int16_t  type;				/* en_fieldtype */
237
  uint16_t length;			/* length of field */
205 by Brian Aker
uint32 -> uin32_t
238
  uint32_t offset;			/* Offset to position in row */
206 by Brian Aker
Removed final uint dead types.
239
  uint8_t  null_bit;			/* If column may be 0 */
240
  uint16_t null_pos;			/* position for null marker */
1 by brian
clean slate
241
242
#ifndef NOT_PACKED_DATABASES
243
  void (*unpack)(struct st_columndef *rec,struct st_mi_bit_buff *buff,
481 by Brian Aker
Remove all of uchar.
244
		 unsigned char *start,unsigned char *end);
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
245
  enum drizzled::en_fieldtype base_type;
482 by Brian Aker
Remove uint.
246
  uint32_t space_length_bits,pack_type;
1 by brian
clean slate
247
  MI_DECODE_TREE *huff_tree;
248
#endif
249
} MI_COLUMNDEF;
250
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
251
}
252
1 by brian
clean slate
253
254
extern char * myisam_log_filename;		/* Name of logfile */
312 by Brian Aker
Removed global variable calls, cleaned up static.
255
extern uint32_t myisam_block_size;
256
extern uint32_t myisam_concurrent_insert;
790 by Brian Aker
More myisam plugin conversion.
257
extern uint32_t myisam_bulk_insert_tree_size; 
258
extern uint32_t data_pointer_size;
1 by brian
clean slate
259
260
	/* Prototypes for myisam-functions */
261
262
extern int mi_close(struct st_myisam_info *file);
481 by Brian Aker
Remove all of uchar.
263
extern int mi_delete(struct st_myisam_info *file,const unsigned char *buff);
1 by brian
clean slate
264
extern struct st_myisam_info *mi_open(const char *name,int mode,
482 by Brian Aker
Remove uint.
265
				      uint32_t wait_if_locked);
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
266
extern int mi_panic(enum drizzled::ha_panic_function function);
481 by Brian Aker
Remove all of uchar.
267
extern int mi_rfirst(struct st_myisam_info *file,unsigned char *buf,int inx);
268
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.
269
                   drizzled::key_part_map keypart_map, enum drizzled::ha_rkey_function search_flag);
481 by Brian Aker
Remove all of uchar.
270
extern int mi_rlast(struct st_myisam_info *file,unsigned char *buf,int inx);
271
extern int mi_rnext(struct st_myisam_info *file,unsigned char *buf,int inx);
272
extern int mi_rnext_same(struct st_myisam_info *info, unsigned char *buf);
273
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.
274
extern int mi_rrnd(struct st_myisam_info *file,unsigned char *buf, drizzled::internal::my_off_t pos);
1 by brian
clean slate
275
extern int mi_scan_init(struct st_myisam_info *file);
481 by Brian Aker
Remove all of uchar.
276
extern int mi_scan(struct st_myisam_info *file,unsigned char *buf);
277
extern int mi_rsame(struct st_myisam_info *file,unsigned char *record,int inx);
278
extern int mi_update(struct st_myisam_info *file,const unsigned char *old,
279
		     unsigned char *new_record);
280
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.
281
extern drizzled::internal::my_off_t mi_position(struct st_myisam_info *file);
482 by Brian Aker
Remove uint.
282
extern int mi_status(struct st_myisam_info *info, MI_ISAMINFO *x, uint32_t flag);
1 by brian
clean slate
283
extern int mi_lock_database(struct st_myisam_info *file,int lock_type);
482 by Brian Aker
Remove uint.
284
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.
285
		     uint32_t columns, drizzled::MI_COLUMNDEF *columndef,
482 by Brian Aker
Remove uint.
286
		     uint32_t uniques, MI_UNIQUEDEF *uniquedef,
287
		     MI_CREATE_INFO *create_info, uint32_t flags);
1 by brian
clean slate
288
extern int mi_delete_table(const char *name);
289
extern int mi_rename(const char *from, const char *to);
290
extern int mi_extra(struct st_myisam_info *file,
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
291
		    enum drizzled::ha_extra_function function,
1 by brian
clean slate
292
		    void *extra_arg);
293
extern int mi_reset(struct st_myisam_info *file);
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
294
extern drizzled::ha_rows mi_records_in_range(MI_INFO *info, int inx,
295
                                   drizzled::key_range *min_key, drizzled::key_range *max_key);
1 by brian
clean slate
296
extern int mi_log(int activate_log);
297
extern int mi_delete_all_rows(struct st_myisam_info *info);
482 by Brian Aker
Remove uint.
298
extern ulong _mi_calc_blob_length(uint32_t length , const unsigned char *pos);
299
extern uint32_t mi_get_pointer_length(uint64_t file_length, uint32_t def);
1 by brian
clean slate
300
301
/* this is used to pass to mysql_myisamchk_table */
302
303
#define   MYISAMCHK_REPAIR 1  /* equivalent to myisamchk -r */
304
#define   MYISAMCHK_VERIFY 2  /* Verify, run repair if failure */
305
306
/*
307
  Definitions needed for myisamchk.c
308
309
  Entries marked as "QQ to be removed" are NOT used to
310
  pass check/repair options to mi_check.c. They are used
311
  internally by myisamchk.c or/and ha_myisam.cc and should NOT
312
  be stored together with other flags. They should be removed
313
  from the following list to make addition of new flags possible.
314
*/
315
316
#define T_AUTO_INC              1
317
#define T_AUTO_REPAIR           2              /* QQ to be removed */
318
#define T_BACKUP_DATA           4
319
#define T_CALC_CHECKSUM         8
320
#define T_CHECK                 16             /* QQ to be removed */
321
#define T_CHECK_ONLY_CHANGED    32             /* QQ to be removed */
322
#define T_CREATE_MISSING_KEYS   64
323
#define T_DESCRIPT              128
324
#define T_DONT_CHECK_CHECKSUM   256
325
#define T_EXTEND                512
326
#define T_FAST                  (1L << 10)     /* QQ to be removed */
327
#define T_FORCE_CREATE          (1L << 11)     /* QQ to be removed */
328
#define T_FORCE_UNIQUENESS      (1L << 12)
329
#define T_INFO                  (1L << 13)
330
#define T_MEDIUM                (1L << 14)
331
#define T_QUICK                 (1L << 15)     /* QQ to be removed */
332
#define T_READONLY              (1L << 16)     /* QQ to be removed */
333
#define T_REP                   (1L << 17)
334
#define T_REP_BY_SORT           (1L << 18)     /* QQ to be removed */
335
#define T_REP_PARALLEL          (1L << 19)     /* QQ to be removed */
336
#define T_RETRY_WITHOUT_QUICK   (1L << 20)
337
#define T_SAFE_REPAIR           (1L << 21)
338
#define T_SILENT                (1L << 22)
339
#define T_SORT_INDEX            (1L << 23)     /* QQ to be removed */
340
#define T_SORT_RECORDS          (1L << 24)     /* QQ to be removed */
341
#define T_STATISTICS            (1L << 25)
342
#define T_UNPACK                (1L << 26)
343
#define T_UPDATE_STATE          (1L << 27)
344
#define T_VERBOSE               (1L << 28)
345
#define T_VERY_SILENT           (1L << 29)
346
#define T_WAIT_FOREVER          (1L << 30)
347
#define T_WRITE_LOOP            ((ulong) 1L << 31)
348
349
#define T_REP_ANY               (T_REP | T_REP_BY_SORT | T_REP_PARALLEL)
350
351
#define O_NEW_INDEX	1		/* Bits set in out_flag */
352
#define O_NEW_DATA	2
353
#define O_DATA_LOST	4
354
355
/* these struct is used by my_check to tell it what to do */
356
357
typedef struct st_sort_key_blocks		/* Used when sorting */
358
{
481 by Brian Aker
Remove all of uchar.
359
  unsigned char *buff,*end_pos;
360
  unsigned char lastkey[MI_MAX_POSSIBLE_KEY_BUFF];
482 by Brian Aker
Remove uint.
361
  uint32_t last_length;
1 by brian
clean slate
362
  int inited;
363
} SORT_KEY_BLOCKS;
364
365
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
366
/*
367
  MyISAM supports several statistics collection methods. Currently statistics
368
  collection method is not stored in MyISAM file and has to be specified for
1 by brian
clean slate
369
  each table analyze/repair operation in  MI_CHECK::stats_method.
370
*/
371
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
372
typedef enum
1 by brian
clean slate
373
{
374
  /* Treat NULLs as inequal when collecting statistics (default for 4.1/5.0) */
375
  MI_STATS_METHOD_NULLS_NOT_EQUAL,
376
  /* Treat NULLs as equal when collecting statistics (like 4.0 did) */
377
  MI_STATS_METHOD_NULLS_EQUAL,
378
  /* Ignore NULLs - count only tuples without NULLs in the index components */
379
  MI_STATS_METHOD_IGNORE_NULLS
380
} enum_mi_stats_method;
381
382
typedef struct st_mi_check_param
383
{
151 by Brian Aker
Ulonglong to uint64_t
384
  uint64_t auto_increment_value;
385
  uint64_t max_data_file_length;
386
  uint64_t keys_in_use;
387
  uint64_t max_record_length;
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
388
  drizzled::internal::my_off_t search_after_block;
389
  drizzled::internal::my_off_t new_file_pos,key_file_blocks;
390
  drizzled::internal::my_off_t keydata,totaldata,key_blocks,start_check_pos;
391
  drizzled::ha_rows total_records,total_deleted;
392
  drizzled::internal::ha_checksum record_checksum,glob_crc;
896.4.16 by Stewart Smith
for getopt, replace GET_ULONG with GET_UINT32.
393
  uint64_t use_buffers;
779.3.20 by Monty Taylor
Fixed Solaris warnings for MyISAM.
394
  size_t read_buffer_length, write_buffer_length,
395
         sort_buffer_length, sort_key_blocks;
482 by Brian Aker
Remove uint.
396
  uint32_t out_flag,warning_printed,error_printed,verbose;
397
  uint32_t opt_sort_key,total_files,max_level;
398
  uint32_t testflag, key_cache_block_size;
206 by Brian Aker
Removed final uint dead types.
399
  uint8_t language;
281 by Brian Aker
Converted myisam away from my_bool
400
  bool using_global_keycache, opt_lock_memory, opt_follow_links;
401
  bool retry_repair, force_sort;
1 by brian
clean slate
402
  char temp_filename[FN_REFLEN],*isam_file_name;
403
  int tmpfile_createflag;
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
404
  drizzled::myf myf_rw;
405
  drizzled::internal::IO_CACHE read_cache;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
406
407
  /*
1 by brian
clean slate
408
    The next two are used to collect statistics, see update_key_parts for
409
    description.
410
  */
151 by Brian Aker
Ulonglong to uint64_t
411
  uint64_t unique_count[MI_MAX_KEY_SEG+1];
412
  uint64_t notnull_count[MI_MAX_KEY_SEG+1];
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
413
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
414
  drizzled::internal::ha_checksum key_crc[HA_MAX_POSSIBLE_KEY];
1 by brian
clean slate
415
  ulong rec_per_key_part[MI_MAX_KEY_SEG*HA_MAX_POSSIBLE_KEY];
520.1.22 by Brian Aker
Second pass of thd cleanup
416
  void *session;
1 by brian
clean slate
417
  const char *db_name, *table_name;
418
  const char *op_name;
419
  enum_mi_stats_method stats_method;
420
} MI_CHECK;
421
422
typedef struct st_sort_info
423
{
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
424
  drizzled::internal::my_off_t filelength,dupp,buff_length;
425
  drizzled::ha_rows max_records;
482 by Brian Aker
Remove uint.
426
  uint32_t current_key, total_keys;
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
427
  drizzled::myf myf_rw;
428
  enum drizzled::data_file_type new_data_file_type;
1 by brian
clean slate
429
  MI_INFO *info;
430
  MI_CHECK *param;
481 by Brian Aker
Remove all of uchar.
431
  unsigned char *buff;
1 by brian
clean slate
432
  SORT_KEY_BLOCKS *key_block,*key_block_end;
433
  /* sync things */
482 by Brian Aker
Remove uint.
434
  uint32_t got_error, threads_running;
1 by brian
clean slate
435
  pthread_mutex_t mutex;
436
  pthread_cond_t  cond;
437
} SORT_INFO;
438
439
/* functions in mi_check */
440
void myisamchk_init(MI_CHECK *param);
441
int chk_status(MI_CHECK *param, MI_INFO *info);
482 by Brian Aker
Remove uint.
442
int chk_del(MI_CHECK *param, register MI_INFO *info, uint32_t test_flag);
1 by brian
clean slate
443
int chk_size(MI_CHECK *param, MI_INFO *info);
444
int chk_key(MI_CHECK *param, MI_INFO *info);
445
int chk_data_link(MI_CHECK *param, MI_INFO *info,int extend);
446
int mi_repair(MI_CHECK *param, register MI_INFO *info,
447
	      char * name, int rep_quick);
448
int mi_sort_index(MI_CHECK *param, register MI_INFO *info, char * name);
449
int mi_repair_by_sort(MI_CHECK *param, register MI_INFO *info,
450
		      const char * name, int rep_quick);
451
int change_to_newfile(const char * filename, const char * old_ext,
482 by Brian Aker
Remove uint.
452
		      const char * new_ext, uint32_t raid_chunks,
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
453
		      drizzled::myf myflags);
1 by brian
clean slate
454
void lock_memory(MI_CHECK *param);
455
void update_auto_increment_key(MI_CHECK *param, MI_INFO *info,
281 by Brian Aker
Converted myisam away from my_bool
456
			       bool repair);
482 by Brian Aker
Remove uint.
457
int update_state_info(MI_CHECK *param, MI_INFO *info,uint32_t update);
1 by brian
clean slate
458
void update_key_parts(MI_KEYDEF *keyinfo, ulong *rec_per_key_part,
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
459
                      uint64_t *unique, uint64_t *notnull,
151 by Brian Aker
Ulonglong to uint64_t
460
                      uint64_t records);
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
461
int filecopy(MI_CHECK *param, int to,int from,drizzled::internal::my_off_t start,
462
	     drizzled::internal::my_off_t length, const char *type);
463
int movepoint(MI_INFO *info,unsigned char *record,drizzled::internal::my_off_t oldpos,
464
	      drizzled::internal::my_off_t newpos, uint32_t prot_key);
281 by Brian Aker
Converted myisam away from my_bool
465
int write_data_suffix(SORT_INFO *sort_info, bool fix_datafile);
1 by brian
clean slate
466
int test_if_almost_full(MI_INFO *info);
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
467
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
468
			    bool force);
1 by brian
clean slate
469
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
470
int mi_init_bulk_insert(MI_INFO *info, uint32_t cache_size, drizzled::ha_rows rows);
482 by Brian Aker
Remove uint.
471
void mi_flush_bulk_insert(MI_INFO *info, uint32_t inx);
1 by brian
clean slate
472
void mi_end_bulk_insert(MI_INFO *info);
281 by Brian Aker
Converted myisam away from my_bool
473
int mi_preload(MI_INFO *info, uint64_t key_map, bool ignore_leaves);
1 by brian
clean slate
474
1122.2.10 by Monty Taylor
Fixed all of the include guards.
475
#endif /* PLUGIN_MYISAM_MYISAM_H */