-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheap.h
More file actions
314 lines (276 loc) · 10.7 KB
/
Copy pathheap.h
File metadata and controls
314 lines (276 loc) · 10.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
/*
Copyright (c) 2000, 2021, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is also distributed with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have included with MySQL.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* This file should be included when using heap_database_functions */
/* Author: Michael Widenius */
/**
@file include/heap.h
*/
#ifndef _heap_h
#define _heap_h
#ifndef _my_base_h
#include "my_base.h"
#endif
#include <sys/types.h>
#include <time.h>
#include "field_types.h" // enum_field_types
#include "my_compare.h"
#include "my_inttypes.h"
#include "my_list.h"
#include "my_tree.h"
#include "thr_lock.h"
/* Define index limits to be identical to MyISAM ones for compatibility. */
#if MAX_INDEXES > HA_MAX_POSSIBLE_KEY
#define HP_MAX_KEY HA_MAX_POSSIBLE_KEY /* Max allowed keys */
#else
#define HP_MAX_KEY MAX_INDEXES /* Max allowed keys */
#endif
#define HP_MAX_KEY_LENGTH MAX_KEY_LENGTH /* Max length in bytes */
/* defines used by heap-funktions */
#define HP_MAX_LEVELS 4 /* 128^5 records is enough */
#define HP_PTRS_IN_NOD 128
/* struct used with heap_funktions */
struct HEAPINFO /* Struct from heap_info */
{
ulong records; /* Records in database */
ulong deleted; /* Deleted records in database */
ulong max_records;
ulonglong data_length;
ulonglong index_length;
uint reclength; /* Length of one record */
int errkey;
ulonglong auto_increment;
time_t create_time;
};
/* Structs used by heap-database-handler */
struct HP_PTRS {
uchar *blocks[HP_PTRS_IN_NOD]; /* pointers to HP_PTRS or records */
};
struct st_level_info {
/* Number of unused slots in *last_blocks HP_PTRS block (0 for 0th level) */
uint free_ptrs_in_block{0};
/*
Maximum number of records that can be 'contained' inside of each element
of last_blocks array. For level 0 - 1, for level 1 - HP_PTRS_IN_NOD, for
level 2 - HP_PTRS_IN_NOD^2 and so forth.
*/
ulong records_under_level{0};
/*
Ptr to last allocated HP_PTRS (or records buffer for level 0) on this
level.
*/
HP_PTRS *last_blocks{nullptr};
};
/*
Heap table records and hash index entries are stored in HP_BLOCKs.
HP_BLOCK is used as a 'growable array' of fixed-size records. Size of record
is recbuffer bytes.
The internal representation is as follows:
HP_BLOCK is a hierarchical structure of 'blocks'.
A block at level 0 is an array records_in_block records.
A block at higher level is an HP_PTRS structure with pointers to blocks at
lower levels.
At the highest level there is one top block. It is stored in HP_BLOCK::root.
See hp_find_block for a description of how record pointer is obtained from
its index.
See hp_get_new_block
*/
struct HP_BLOCK {
HP_PTRS *root{nullptr}; /* Top-level block */
struct st_level_info level_info[HP_MAX_LEVELS + 1];
uint levels{0}; /* number of used levels */
uint records_in_block{0}; /* Records in one heap-block */
uint recbuffer{0}; /* Length of one saved record */
ulong last_allocated{0}; /* number of records there is allocated space for */
};
struct HP_INFO; /* For referense */
struct HP_KEYDEF /* Key definition with open */
{
uint flag{0}; /* HA_NOSAME | HA_NULL_PART_KEY */
uint keysegs{0}; /* Number of key-segment */
uint length{0}; /* Length of key (automatic) */
uint8 algorithm{0}; /* HASH / BTREE */
HA_KEYSEG *seg{nullptr};
HP_BLOCK block; /* Where keys are saved */
/*
Number of buckets used in hash table. Used only to provide
#records estimates for heap key scans.
*/
ha_rows hash_buckets{0};
TREE rb_tree;
int (*write_key)(HP_INFO *info, HP_KEYDEF *keyinfo, const uchar *record,
uchar *recpos){nullptr};
int (*delete_key)(HP_INFO *info, HP_KEYDEF *keyinfo, const uchar *record,
uchar *recpos, int flag){nullptr};
uint (*get_key_length)(HP_KEYDEF *keydef, const uchar *key){nullptr};
};
struct HP_COLUMNDEF /* column information */
{
enum_field_types type; /* en_fieldtype */
uint32 length; /* length of field */
uint32 offset; /* Offset to position in row */
uint8 null_bit; /* If column may be 0 */
uint16 null_pos; /* position for null marker */
uint8 length_bytes; /* length of the size, 1 o 2 bytes */
};
struct HP_DATASPACE {
HP_BLOCK block;
/* Total chunks ever allocated in this dataspace */
uint chunk_count;
uint del_chunk_count; /* Deleted chunks count */
uchar *del_link; /* Link to last deleted chunk */
uint chunk_length; /* Total length of one chunk */
/* Length of payload that will be placed into one chunk */
uint chunk_dataspace_length;
/* Offset of the status flag relative to the chunk start */
uint offset_status;
/* Offset of the linking pointer relative to the chunk start */
uint offset_link;
/* Test whether records have variable size and so "next" pointer */
bool is_variable_size;
/* Total size allocated within this data space */
ulonglong total_data_length;
};
struct HP_SHARE {
HP_KEYDEF *keydef;
HP_COLUMNDEF *column_defs;
/* Describes "block", which contains actual records */
HP_DATASPACE recordspace;
ulong min_records, max_records; /* Params to open */
ulonglong index_length, max_table_size;
uint key_stat_version; /* version to indicate insert/delete */
uint records; /* Actual record (row) count */
uint blength; /* used_chunk_count rounded up to 2^n */
/*
Length of record's fixed part, which contains keys and always fits into the
first chunk.
*/
uint fixed_data_length;
uint fixed_column_count; /* Number of columns stored in fixed_data_length */
uint changed;
uint keys, max_key_length;
uint column_count;
uint currently_disabled_keys; /* saved value from "keys" when disabled */
uint open_count;
char *name; /* Name of "memory-file" */
time_t create_time;
THR_LOCK lock;
bool delete_on_close;
LIST open_list;
uint auto_key;
uint auto_key_type; /* real type of the auto key segment */
ulonglong auto_increment;
uint blobs; /* Number of blobs in table */
};
struct HASH_INFO;
struct HP_INFO {
HP_SHARE *s;
uchar *current_ptr;
HASH_INFO *current_hash_ptr;
ulong current_record;
int lastinx, errkey;
int mode; /* Mode of file (READONLY..) */
uint opt_flag, update;
uchar *lastkey; /* Last used key with rkey */
uchar *recbuf; /* Record buffer for rb-tree keys */
enum ha_rkey_function last_find_flag;
TREE_ELEMENT *parents[MAX_TREE_HEIGHT + 1];
TREE_ELEMENT **last_pos;
uint lastkey_len;
bool implicit_emptied;
THR_LOCK_DATA lock;
LIST open_list;
uchar *blob_buffer; /* Temporary buffer used to return BLOB values */
uint blob_size; /* Current blob_buffer size */
uint blob_offset; /* Current offset in blob_buffer */
};
typedef uchar *HEAP_PTR;
struct HP_HEAP_POSITION {
HEAP_PTR ptr{nullptr};
ulong record_no{0}; /* Number of current record in table scan order (starting
at 0) */
};
struct HP_CREATE_INFO {
HP_KEYDEF *keydef;
ulong max_records;
ulong min_records;
uint auto_key; /* keynr [1 - maxkey] for auto key */
uint auto_key_type;
uint keys;
uint reclength;
ulonglong max_table_size;
ulonglong auto_increment;
bool with_auto_increment;
bool single_instance;
bool delete_on_close;
/*
TRUE if heap_create should 'pin' the created share by setting
open_count to 1. Is only looked at if not internal_table.
*/
bool pin_share;
uint columns;
HP_COLUMNDEF *columndef;
uint fixed_key_fieldnr;
uint fixed_data_size;
uint keys_memory_size;
uint max_chunk_size;
bool is_dynamic;
uint blobs;
};
/* Prototypes for heap-functions */
extern HP_INFO *heap_open(const char *name, int mode);
extern HP_INFO *heap_open_from_share(HP_SHARE *share, int mode);
extern HP_INFO *heap_open_from_share_and_register(HP_SHARE *share, int mode);
extern void heap_release_share(HP_SHARE *share, bool single_instance);
extern int heap_close(HP_INFO *info);
extern int heap_write(HP_INFO *info, const uchar *buff);
extern int heap_update(HP_INFO *info, const uchar *old, const uchar *newdata);
extern int heap_rrnd(HP_INFO *info, uchar *buf, HP_HEAP_POSITION *pos);
extern int heap_scan_init(HP_INFO *info);
extern int heap_scan(HP_INFO *info, uchar *record);
extern int heap_delete(HP_INFO *info, const uchar *buff);
extern int heap_info(HP_INFO *info, HEAPINFO *x, int flag);
extern int heap_create(const char *name, HP_CREATE_INFO *create_info,
HP_SHARE **share, bool *created_new_share);
extern int heap_delete_table(const char *name);
extern void heap_drop_table(HP_INFO *info);
extern int heap_extra(HP_INFO *info, enum ha_extra_function function);
extern int heap_reset(HP_INFO *info);
extern int heap_rename(const char *old_name, const char *new_name);
extern int heap_panic(enum ha_panic_function flag);
extern int heap_rsame(HP_INFO *info, uchar *record, int inx);
extern int heap_rnext(HP_INFO *info, uchar *record);
extern int heap_rprev(HP_INFO *info, uchar *record);
extern int heap_rfirst(HP_INFO *info, uchar *record, int inx);
extern int heap_rlast(HP_INFO *info, uchar *record, int inx);
extern void heap_clear(HP_INFO *info);
extern void heap_clear_keys(HP_INFO *info);
extern int heap_disable_indexes(HP_INFO *info);
extern int heap_enable_indexes(HP_INFO *info);
extern int heap_indexes_are_disabled(HP_INFO *info);
extern void heap_update_auto_increment(HP_INFO *info, const uchar *record);
ha_rows hp_rb_records_in_range(HP_INFO *info, int inx, key_range *min_key,
key_range *max_key);
int hp_panic(enum ha_panic_function flag);
int heap_rkey(HP_INFO *info, uchar *record, int inx, const uchar *key,
key_part_map keypart_map, enum ha_rkey_function find_flag);
extern uchar *heap_find(HP_INFO *info, int inx, const uchar *key);
extern int heap_check_heap(HP_INFO *info, bool print_status);
extern void heap_position(HP_INFO *info, HP_HEAP_POSITION *pos);
#endif