12
12
You should have received a copy of the GNU General Public License
13
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
19
#include "drizzled/internal/my_bit.h"
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
18
#include <drizzled/server_includes.h>
19
#include <mysys/my_bit.h>
20
20
#include "myisampack.h"
21
21
#include "ha_myisam.h"
22
22
#include "myisam_priv.h"
23
#include "drizzled/option.h"
24
#include "drizzled/internal/my_bit.h"
25
#include "drizzled/internal/m_string.h"
23
#include "mysys/my_bit.h"
26
24
#include "drizzled/util/test.h"
27
25
#include "drizzled/error.h"
28
26
#include "drizzled/errmsg_print.h"
29
27
#include "drizzled/gettext.h"
30
28
#include "drizzled/session.h"
31
#include "drizzled/plugin.h"
32
29
#include "drizzled/plugin/client.h"
33
30
#include "drizzled/table.h"
31
#include "drizzled/field/timestamp.h"
34
32
#include "drizzled/memory/multi_malloc.h"
35
#include "drizzled/plugin/daemon.h"
37
#include <drizzled/plugin/storage_engine.h>
39
#include <boost/algorithm/string.hpp>
40
#include <boost/scoped_ptr.hpp>
45
36
#include <algorithm>
47
#include <boost/program_options.hpp>
48
#include <drizzled/module/option_map.h>
50
namespace po= boost::program_options;
52
38
using namespace std;
53
using namespace drizzled;
55
40
static const string engine_name("MyISAM");
57
boost::mutex THR_LOCK_myisam;
42
pthread_mutex_t THR_LOCK_myisam= PTHREAD_MUTEX_INITIALIZER;
59
static uint32_t myisam_key_cache_block_size= KEY_CACHE_BLOCK_SIZE;
60
static uint32_t myisam_key_cache_size;
61
static uint32_t myisam_key_cache_division_limit;
62
static uint32_t myisam_key_cache_age_threshold;
44
static uint32_t repair_threads;
45
static uint32_t block_size;
63
46
static uint64_t max_sort_file_size;
64
typedef constrained_check<size_t, SIZE_MAX, 1024, 1024> sort_buffer_constraint;
65
static sort_buffer_constraint sort_buffer_size;
67
void st_mi_isam_share::setKeyCache()
69
(void)init_key_cache(&key_cache,
70
myisam_key_cache_block_size,
71
myisam_key_cache_size,
72
myisam_key_cache_division_limit,
73
myisam_key_cache_age_threshold);
47
static uint64_t sort_buffer_size;
76
49
/*****************************************************************************
86
class MyisamEngine : public plugin::StorageEngine
59
class MyisamEngine : public drizzled::plugin::StorageEngine
89
MyisamEngine(const MyisamEngine&);
90
MyisamEngine& operator=(const MyisamEngine&);
92
explicit MyisamEngine(string name_arg) :
93
plugin::StorageEngine(name_arg,
94
HTON_CAN_INDEX_BLOBS |
95
HTON_STATS_RECORDS_IS_EXACT |
101
HTON_SKIP_STORE_LOCK)
105
virtual ~MyisamEngine()
107
mi_panic(HA_PANIC_CLOSE);
110
virtual Cursor *create(Table &table)
112
return new ha_myisam(*this, table);
62
MyisamEngine(string name_arg)
63
: drizzled::plugin::StorageEngine(name_arg,
64
HTON_HAS_DATA_DICTIONARY |
71
virtual Cursor *create(TableShare &table,
74
return new (mem_root) ha_myisam(*this, table);
115
77
const char **bas_ext() const {
116
78
return ha_myisam_exts;
119
int doCreateTable(Session&,
81
int doCreateTable(Session *, const char *table_name,
121
const identifier::Table &identifier,
124
int doRenameTable(Session&, const identifier::Table &from, const identifier::Table &to);
126
int doDropTable(Session&, const identifier::Table &identifier);
83
HA_CREATE_INFO& ha_create_info,
84
drizzled::message::Table&);
86
int doRenameTable(Session*, const char *from, const char *to);
88
int doDropTable(Session&, const string table_name);
128
90
int doGetTableDefinition(Session& session,
129
const identifier::Table &identifier,
130
message::Table &table_message);
132
uint32_t max_supported_keys() const { return MI_MAX_KEY; }
133
uint32_t max_supported_key_length() const { return MI_MAX_KEY_LENGTH; }
134
uint32_t max_supported_key_part_length() const { return MI_MAX_KEY_LENGTH; }
136
uint32_t index_flags(enum ha_key_alg) const
138
return (HA_READ_NEXT |
144
bool doDoesTableExist(Session& session, const identifier::Table &identifier);
146
void doGetTableIdentifiers(drizzled::CachedDirectory &directory,
147
const drizzled::identifier::Schema &schema_identifier,
148
drizzled::identifier::Table::vector &set_of_identifiers);
149
bool validateCreateTableOption(const std::string &key, const std::string &state)
152
if (boost::iequals(key, "ROW_FORMAT"))
93
const char *table_name,
95
drizzled::message::Table *table_proto);
97
/* Temp only engine, so do not return values. */
98
void doGetTableNames(CachedDirectory &, string& , set<string>&) { };
161
void MyisamEngine::doGetTableIdentifiers(drizzled::CachedDirectory&,
162
const drizzled::identifier::Schema&,
163
drizzled::identifier::Table::vector&)
167
bool MyisamEngine::doDoesTableExist(Session &session, const identifier::Table &identifier)
169
return session.getMessageCache().doesTableMessageExist(identifier);
172
int MyisamEngine::doGetTableDefinition(Session &session,
173
const identifier::Table &identifier,
174
message::Table &table_message)
176
if (session.getMessageCache().getTableMessage(identifier, table_message))
102
int MyisamEngine::doGetTableDefinition(Session&,
107
drizzled::message::Table *table_proto)
110
ProtoCache::iterator iter;
112
pthread_mutex_lock(&proto_cache_mutex);
113
iter= proto_cache.find(path);
115
if (iter!= proto_cache.end())
118
table_proto->CopyFrom(((*iter).second));
121
pthread_mutex_unlock(&proto_cache_mutex);
218
163
uint32_t i, j, recpos, minpos, fieldpos, temp_length, length;
219
164
enum ha_base_keytype type= HA_KEYTYPE_BINARY;
220
165
unsigned char *record;
221
167
MI_KEYDEF *keydef;
222
168
MI_COLUMNDEF *recinfo, *recinfo_pos;
223
169
HA_KEYSEG *keyseg;
224
TableShare *share= table_arg->getMutableShare();
170
TableShare *share= table_arg->s;
225
171
uint32_t options= share->db_options_in_use;
226
if (!(memory::multi_malloc(false,
227
recinfo_out, (share->sizeFields() * 2 + 2) * sizeof(MI_COLUMNDEF),
228
keydef_out, share->sizeKeys() * sizeof(MI_KEYDEF),
229
&keyseg, (share->key_parts + share->sizeKeys()) * sizeof(HA_KEYSEG),
172
if (!(drizzled::memory::multi_malloc(false,
173
recinfo_out, (share->fields * 2 + 2) * sizeof(MI_COLUMNDEF),
174
keydef_out, share->keys * sizeof(MI_KEYDEF),
175
&keyseg, (share->key_parts + share->keys) * sizeof(HA_KEYSEG),
231
177
return(HA_ERR_OUT_OF_MEM);
232
178
keydef= *keydef_out;
233
179
recinfo= *recinfo_out;
234
for (i= 0; i < share->sizeKeys(); i++)
180
pos= table_arg->key_info;
181
for (i= 0; i < share->keys; i++, pos++)
236
KeyInfo *pos= &table_arg->key_info[i];
237
183
keydef[i].flag= ((uint16_t) pos->flags & (HA_NOSAME));
238
184
keydef[i].key_alg= HA_KEY_ALG_BTREE;
239
185
keydef[i].block_length= pos->block_size;
286
232
keydef[i].seg[j].flag|= HA_BLOB_PART;
287
233
/* save number of bytes used to pack length */
288
234
keydef[i].seg[j].bit_start= (uint) (field->pack_length() -
289
share->sizeBlobPtr());
235
share->blob_ptr_size);
292
238
keyseg+= pos->key_parts;
294
240
if (table_arg->found_next_number_field)
295
241
keydef[share->next_number_index].flag|= HA_AUTO_KEY;
296
record= table_arg->getInsertRecord();
242
record= table_arg->record[0];
298
244
recinfo_pos= recinfo;
300
while (recpos < (uint) share->sizeStoredRecord())
245
while (recpos < (uint) share->stored_rec_length)
302
247
Field **field, *found= 0;
303
minpos= share->getRecordLength();
248
minpos= share->reclength;
306
for (field= table_arg->getFields(); *field; field++)
251
for (field= table_arg->field; *field; field++)
308
253
if ((fieldpos= (*field)->offset(record)) >= recpos &&
309
254
fieldpos <= minpos)
532
478
const char *sfile, uint32_t sline)
534
480
Session *cur_session;
481
pthread_mutex_lock(&file->s->intern_lock);
535
482
if ((cur_session= file->in_use))
537
errmsg_printf(error::ERROR, _("Got an error from thread_id=%"PRIu64", %s:%d"),
483
errmsg_printf(ERRMSG_LVL_ERROR, _("Got an error from thread_id=%"PRIu64", %s:%d"),
538
484
cur_session->thread_id,
543
errmsg_printf(error::ERROR, _("Got an error from unknown thread, %s:%d"), sfile, sline);
487
errmsg_printf(ERRMSG_LVL_ERROR, _("Got an error from unknown thread, %s:%d"), sfile, sline);
547
errmsg_printf(error::ERROR, "%s", message);
489
errmsg_printf(ERRMSG_LVL_ERROR, "%s", message);
549
490
list<Session *>::iterator it= file->s->in_use->begin();
550
491
while (it != file->s->in_use->end())
552
errmsg_printf(error::ERROR, "%s", _("Unknown thread accessing table"));
493
errmsg_printf(ERRMSG_LVL_ERROR, "%s", _("Unknown thread accessing table"));
557
ha_myisam::ha_myisam(plugin::StorageEngine &engine_arg,
496
pthread_mutex_unlock(&file->s->intern_lock);
501
ha_myisam::ha_myisam(drizzled::plugin::StorageEngine &engine_arg,
502
TableShare &table_arg)
559
503
: Cursor(engine_arg, table_arg),
561
can_enable_indexes(true),
505
int_table_flags(HA_NULL_IN_KEY |
511
HA_STATS_RECORDS_IS_EXACT |
512
HA_NEED_READ_RANGE_BUFFER |
514
can_enable_indexes(1)
565
Cursor *ha_myisam::clone(memory::Root *mem_root)
517
Cursor *ha_myisam::clone(MEM_ROOT *mem_root)
567
519
ha_myisam *new_handler= static_cast <ha_myisam *>(Cursor::clone(mem_root));
598
550
open of a table that is in use by other threads already (if the
599
551
MyISAM share exists already).
601
if (!(file= mi_open(identifier, mode, test_if_locked)))
602
return (errno ? errno : -1);
553
if (!(file=mi_open(name, mode, test_if_locked)))
554
return (my_errno ? my_errno : -1);
604
if (!getTable()->getShare()->getType()) /* No need to perform a check for tmp table */
556
if (!table->s->tmp_table) /* No need to perform a check for tmp table */
606
if ((errno= table2myisam(getTable(), &keyinfo, &recinfo, &recs)))
558
if ((my_errno= table2myisam(table, &keyinfo, &recinfo, &recs)))
610
if (check_definition(keyinfo, recinfo, getTable()->getShare()->sizeKeys(), recs,
562
if (check_definition(keyinfo, recinfo, table->s->keys, recs,
611
563
file->s->keyinfo, file->s->rec,
612
564
file->s->base.keys, file->s->base.fields, true))
614
errno= HA_ERR_CRASHED;
566
my_errno= HA_ERR_CRASHED;
619
assert(test_if_locked);
620
571
if (test_if_locked & (HA_OPEN_IGNORE_IF_LOCKED | HA_OPEN_TMP_TABLE))
621
572
mi_extra(file, HA_EXTRA_NO_WAIT_LOCK, 0);
623
574
info(HA_STATUS_NO_LOCK | HA_STATUS_VARIABLE | HA_STATUS_CONST);
624
575
if (!(test_if_locked & HA_OPEN_WAIT_IF_LOCKED))
625
576
mi_extra(file, HA_EXTRA_WAIT_LOCK, 0);
626
if (!getTable()->getShare()->db_record_offset)
577
if (!table->s->db_record_offset)
578
int_table_flags|=HA_REC_NOT_IN_SEQ;
630
580
keys_with_parts.reset();
631
for (i= 0; i < getTable()->getShare()->sizeKeys(); i++)
581
for (i= 0; i < table->s->keys; i++)
633
getTable()->key_info[i].block_size= file->s->keyinfo[i].block_length;
583
table->key_info[i].block_size= file->s->keyinfo[i].block_length;
635
KeyPartInfo *kp= getTable()->key_info[i].key_part;
636
KeyPartInfo *kp_end= kp + getTable()->key_info[i].key_parts;
585
KEY_PART_INFO *kp= table->key_info[i].key_part;
586
KEY_PART_INFO *kp_end= kp + table->key_info[i].key_parts;
637
587
for (; kp != kp_end; kp++)
639
589
if (!kp->field->part_of_key.test(i))
701
653
if (file->dfile == -1)
703
errmsg_printf(error::INFO, "Retrying repair of: '%s' failed. "
704
"Please try REPAIR EXTENDED or myisamchk",
705
getTable()->getShare()->getPath());
655
errmsg_printf(ERRMSG_LVL_INFO, "Retrying repair of: '%s' failed. "
656
"Please try REPAIR EXTENDED or myisamchk",
706
658
return(HA_ADMIN_FAILED);
709
param.db_name= getTable()->getShare()->getSchemaName();
710
param.table_name= getTable()->getAlias();
661
param.db_name= table->s->db.str;
662
param.table_name= table->alias;
711
663
param.tmpfile_createflag = O_RDWR | O_TRUNC;
712
664
param.using_global_keycache = 1;
713
665
param.session= session;
714
666
param.out_flag= 0;
715
param.sort_buffer_length= static_cast<size_t>(sort_buffer_size);
667
param.sort_buffer_length= (size_t)sort_buffer_size;
716
668
strcpy(fixed_name,file->filename);
718
670
// Don't lock tables if we have used LOCK Table
719
if (mi_lock_database(file, getTable()->getShare()->getType() ? F_EXTRA_LCK : F_WRLCK))
671
if (mi_lock_database(file, table->s->tmp_table ? F_EXTRA_LCK : F_WRLCK))
721
mi_check_print_error(¶m,ER(ER_CANT_LOCK),errno);
673
mi_check_print_error(¶m,ER(ER_CANT_LOCK),my_errno);
722
674
return(HA_ADMIN_FAILED);
737
689
local_testflag|= T_STATISTICS;
738
690
param.testflag|= T_STATISTICS; // We get this for free
739
691
statistics_done=1;
692
if (repair_threads > 1)
695
/* TODO: respect myisam_repair_threads variable */
696
snprintf(buf, 40, "Repair with %d threads", my_count_bits(key_map));
697
session->set_proc_info(buf);
698
error = mi_repair_parallel(¶m, file, fixed_name,
699
param.testflag & T_QUICK);
700
session->set_proc_info("Repair done"); // to reset proc_info, as
701
// it was pointing to local buffer
741
705
session->set_proc_info("Repair by sorting");
742
706
error = mi_repair_by_sort(¶m, file, fixed_name,
923
886
param.testflag= (T_SILENT | T_REP_BY_SORT | T_QUICK |
924
887
T_CREATE_MISSING_KEYS);
925
888
param.myf_rw&= ~MY_WAIT_IF_FULL;
926
param.sort_buffer_length= static_cast<size_t>(sort_buffer_size);
889
param.sort_buffer_length= (size_t)sort_buffer_size;
927
890
param.stats_method= MI_STATS_METHOD_NULLS_NOT_EQUAL;
928
891
if ((error= (repair(session,param,0) != HA_ADMIN_OK)) && param.retry_repair)
930
errmsg_printf(error::WARN, "Warning: Enabling keys got errno %d on %s.%s, retrying",
931
errno, param.db_name, param.table_name);
893
errmsg_printf(ERRMSG_LVL_WARN, "Warning: Enabling keys got errno %d on %s.%s, retrying",
894
my_errno, param.db_name, param.table_name);
932
895
/* Repairing by sort failed. Now try standard repair method. */
933
896
param.testflag&= ~(T_REP_BY_SORT | T_QUICK);
934
897
error= (repair(session,param,0) != HA_ADMIN_OK);
1045
int ha_myisam::doUpdateRecord(const unsigned char *old_data, unsigned char *new_data)
1008
int ha_myisam::update_row(const unsigned char *old_data, unsigned char *new_data)
1010
ha_statistic_increment(&SSV::ha_update_count);
1011
if (table->timestamp_field_type & TIMESTAMP_AUTO_SET_ON_UPDATE)
1012
table->timestamp_field->set_time();
1047
1013
return mi_update(file,old_data,new_data);
1050
int ha_myisam::doDeleteRecord(const unsigned char *buf)
1016
int ha_myisam::delete_row(const unsigned char *buf)
1018
ha_statistic_increment(&SSV::ha_delete_count);
1052
1019
return mi_delete(file,buf);
1056
int ha_myisam::doStartIndexScan(uint32_t idx, bool )
1023
int ha_myisam::index_init(uint32_t idx, bool )
1058
1025
active_index=idx;
1059
1026
//in_range_read= false;
1064
int ha_myisam::doEndIndexScan()
1031
int ha_myisam::index_end()
1066
1033
active_index=MAX_KEY;
1038
uint32_t ha_myisam::index_flags(uint32_t inx, uint32_t, bool) const
1040
return ((table_share->key_info[inx].algorithm == HA_KEY_ALG_FULLTEXT) ?
1041
0 : HA_READ_NEXT | HA_READ_PREV | HA_READ_RANGE |
1042
HA_READ_ORDER | HA_KEYREAD_ONLY |
1043
(keys_with_parts.test(inx)?0:HA_DO_INDEX_COND_PUSHDOWN));
1071
1047
int ha_myisam::index_read_map(unsigned char *buf, const unsigned char *key,
1072
1048
key_part_map keypart_map,
1073
1049
enum ha_rkey_function find_flag)
1075
1051
assert(inited==INDEX);
1076
ha_statistic_increment(&system_status_var::ha_read_key_count);
1052
ha_statistic_increment(&SSV::ha_read_key_count);
1077
1053
int error=mi_rkey(file, buf, active_index, key, keypart_map, find_flag);
1078
getTable()->status=error ? STATUS_NOT_FOUND: 0;
1054
table->status=error ? STATUS_NOT_FOUND: 0;
1093
1069
key_part_map keypart_map)
1095
1071
assert(inited==INDEX);
1096
ha_statistic_increment(&system_status_var::ha_read_key_count);
1072
ha_statistic_increment(&SSV::ha_read_key_count);
1097
1073
int error=mi_rkey(file, buf, active_index, key, keypart_map,
1098
1074
HA_READ_PREFIX_LAST);
1099
getTable()->status=error ? STATUS_NOT_FOUND: 0;
1075
table->status=error ? STATUS_NOT_FOUND: 0;
1103
1079
int ha_myisam::index_next(unsigned char *buf)
1105
1081
assert(inited==INDEX);
1106
ha_statistic_increment(&system_status_var::ha_read_next_count);
1082
ha_statistic_increment(&SSV::ha_read_next_count);
1107
1083
int error=mi_rnext(file,buf,active_index);
1108
getTable()->status=error ? STATUS_NOT_FOUND: 0;
1084
table->status=error ? STATUS_NOT_FOUND: 0;
1112
1088
int ha_myisam::index_prev(unsigned char *buf)
1114
1090
assert(inited==INDEX);
1115
ha_statistic_increment(&system_status_var::ha_read_prev_count);
1091
ha_statistic_increment(&SSV::ha_read_prev_count);
1116
1092
int error=mi_rprev(file,buf, active_index);
1117
getTable()->status=error ? STATUS_NOT_FOUND: 0;
1093
table->status=error ? STATUS_NOT_FOUND: 0;
1121
1097
int ha_myisam::index_first(unsigned char *buf)
1123
1099
assert(inited==INDEX);
1124
ha_statistic_increment(&system_status_var::ha_read_first_count);
1100
ha_statistic_increment(&SSV::ha_read_first_count);
1125
1101
int error=mi_rfirst(file, buf, active_index);
1126
getTable()->status=error ? STATUS_NOT_FOUND: 0;
1102
table->status=error ? STATUS_NOT_FOUND: 0;
1130
1106
int ha_myisam::index_last(unsigned char *buf)
1132
1108
assert(inited==INDEX);
1133
ha_statistic_increment(&system_status_var::ha_read_last_count);
1109
ha_statistic_increment(&SSV::ha_read_last_count);
1134
1110
int error=mi_rlast(file, buf, active_index);
1135
getTable()->status=error ? STATUS_NOT_FOUND: 0;
1111
table->status=error ? STATUS_NOT_FOUND: 0;
1187
1163
int ha_myisam::rnd_next(unsigned char *buf)
1189
ha_statistic_increment(&system_status_var::ha_read_rnd_next_count);
1165
ha_statistic_increment(&SSV::ha_read_rnd_next_count);
1190
1166
int error=mi_scan(file, buf);
1191
getTable()->status=error ? STATUS_NOT_FOUND: 0;
1167
table->status=error ? STATUS_NOT_FOUND: 0;
1171
int ha_myisam::restart_rnd_next(unsigned char *buf, unsigned char *pos)
1173
return rnd_pos(buf,pos);
1195
1176
int ha_myisam::rnd_pos(unsigned char *buf, unsigned char *pos)
1197
ha_statistic_increment(&system_status_var::ha_read_rnd_count);
1198
int error=mi_rrnd(file, buf, internal::my_get_ptr(pos,ref_length));
1199
getTable()->status=error ? STATUS_NOT_FOUND: 0;
1178
ha_statistic_increment(&SSV::ha_read_rnd_count);
1179
int error=mi_rrnd(file, buf, my_get_ptr(pos,ref_length));
1180
table->status=error ? STATUS_NOT_FOUND: 0;
1204
1185
void ha_myisam::position(const unsigned char *)
1206
internal::my_off_t row_position= mi_position(file);
1207
internal::my_store_ptr(ref, ref_length, row_position);
1187
my_off_t row_position= mi_position(file);
1188
my_store_ptr(ref, ref_length, row_position);
1210
1191
int ha_myisam::info(uint32_t flag)
1226
1207
if (flag & HA_STATUS_CONST)
1228
TableShare *share= getTable()->getMutableShare();
1209
TableShare *share= table->s;
1229
1210
stats.max_data_file_length= misam_info.max_data_file_length;
1230
1211
stats.max_index_file_length= misam_info.max_index_file_length;
1231
1212
stats.create_time= misam_info.create_time;
1232
1213
ref_length= misam_info.reflength;
1233
1214
share->db_options_in_use= misam_info.options;
1234
stats.block_size= myisam_key_cache_block_size; /* record block size */
1215
stats.block_size= block_size; /* record block size */
1236
set_prefix(share->keys_in_use, share->sizeKeys());
1218
if (share->tmp_table == NO_TMP_TABLE)
1219
pthread_mutex_lock(&share->mutex);
1220
set_prefix(share->keys_in_use, share->keys);
1238
1222
* Due to bug 394932 (32-bit solaris build failure), we need
1239
1223
* to convert the uint64_t key_map member of the misam_info
1282
1266
share->keys_for_keyread&= share->keys_in_use;
1283
1267
share->db_record_offset= misam_info.record_offset;
1284
1268
if (share->key_parts)
1285
memcpy(getTable()->key_info[0].rec_per_key,
1269
memcpy(table->key_info[0].rec_per_key,
1286
1270
misam_info.rec_per_key,
1287
sizeof(getTable()->key_info[0].rec_per_key)*share->key_parts);
1288
assert(share->getType() != message::Table::STANDARD);
1271
sizeof(table->key_info[0].rec_per_key)*share->key_parts);
1272
if (share->tmp_table == NO_TMP_TABLE)
1273
pthread_mutex_unlock(&share->mutex);
1291
1276
Set data_file_name and index_file_name to point at the symlink value
1292
1277
if table is symlinked (Ie; Real name is not same as generated name)
1294
1279
data_file_name= index_file_name= 0;
1295
internal::fn_format(name_buff, file->filename, "", MI_NAME_DEXT,
1280
fn_format(name_buff, file->filename, "", MI_NAME_DEXT,
1296
1281
MY_APPEND_EXT | MY_UNPACK_FILENAME);
1297
1282
if (strcmp(name_buff, misam_info.data_file_name))
1298
1283
data_file_name=misam_info.data_file_name;
1299
internal::fn_format(name_buff, file->filename, "", MI_NAME_IEXT,
1284
fn_format(name_buff, file->filename, "", MI_NAME_IEXT,
1300
1285
MY_APPEND_EXT | MY_UNPACK_FILENAME);
1301
1286
if (strcmp(name_buff, misam_info.index_file_name))
1302
1287
index_file_name=misam_info.index_file_name;
1337
1322
return mi_delete_all_rows(file);
1340
int MyisamEngine::doDropTable(Session &session,
1341
const identifier::Table &identifier)
1325
int MyisamEngine::doDropTable(Session&, const string table_path)
1343
session.getMessageCache().removeTableMessage(identifier);
1345
return mi_delete_table(identifier.getPath().c_str());
1327
ProtoCache::iterator iter;
1329
pthread_mutex_lock(&proto_cache_mutex);
1330
iter= proto_cache.find(table_path.c_str());
1332
if (iter!= proto_cache.end())
1333
proto_cache.erase(iter);
1335
pthread_mutex_unlock(&proto_cache_mutex);
1337
return mi_delete_table(table_path.c_str());
1349
1341
int ha_myisam::external_lock(Session *session, int lock_type)
1351
1343
file->in_use= session;
1352
return mi_lock_database(file, !getTable()->getShare()->getType() ?
1344
return mi_lock_database(file, !table->s->tmp_table ?
1353
1345
lock_type : ((lock_type == F_UNLCK) ?
1354
1346
F_UNLCK : F_EXTRA_LCK));
1357
int MyisamEngine::doCreateTable(Session &session,
1349
THR_LOCK_DATA **ha_myisam::store_lock(Session *,
1351
enum thr_lock_type lock_type)
1353
if (lock_type != TL_IGNORE && file->lock.type == TL_UNLOCK)
1354
file->lock.type=lock_type;
1360
int MyisamEngine::doCreateTable(Session *, const char *table_name,
1358
1361
Table& table_arg,
1359
const identifier::Table &identifier,
1360
message::Table& create_proto)
1362
HA_CREATE_INFO& ha_create_info,
1363
drizzled::message::Table& create_proto)
1363
1366
uint32_t create_flags= 0, create_records;
1382
1385
create_info.index_file_name= NULL;
1383
1386
create_info.language= share->table_charset->number;
1385
if (create_proto.type() == message::Table::TEMPORARY)
1388
if (ha_create_info.options & HA_LEX_CREATE_TMP_TABLE)
1386
1389
create_flags|= HA_CREATE_TMP_TABLE;
1390
if (ha_create_info.options & HA_CREATE_KEEP_FILES)
1391
create_flags|= HA_CREATE_KEEP_FILES;
1387
1392
if (options & HA_OPTION_PACK_RECORD)
1388
1393
create_flags|= HA_PACK_RECORD;
1390
/* TODO: Check that the following internal::fn_format is really needed */
1391
error= mi_create(internal::fn_format(buff, identifier.getPath().c_str(), "", "",
1392
MY_UNPACK_FILENAME|MY_APPEND_EXT),
1393
share->sizeKeys(), keydef,
1395
/* TODO: Check that the following fn_format is really needed */
1396
error= mi_create(fn_format(buff, table_name, "", "",
1397
MY_UNPACK_FILENAME|MY_APPEND_EXT),
1398
share->keys, keydef,
1394
1399
create_records, recinfo,
1395
1400
0, (MI_UNIQUEDEF*) 0,
1396
1401
&create_info, create_flags);
1397
1402
free((unsigned char*) recinfo);
1399
session.getMessageCache().storeTableMessage(identifier, create_proto);
1404
pthread_mutex_lock(&proto_cache_mutex);
1405
proto_cache.insert(make_pair(table_name, create_proto));
1406
pthread_mutex_unlock(&proto_cache_mutex);
1405
int MyisamEngine::doRenameTable(Session &session, const identifier::Table &from, const identifier::Table &to)
1412
int MyisamEngine::doRenameTable(Session*,
1413
const char *from, const char *to)
1407
session.getMessageCache().renameTableMessage(from, to);
1409
return mi_rename(from.getPath().c_str(), to.getPath().c_str());
1415
return mi_rename(from,to);
1432
1438
/* it's safe to call the following if bulk_insert isn't on */
1433
mi_flush_bulk_insert(file, getTable()->getShare()->next_number_index);
1439
mi_flush_bulk_insert(file, table->s->next_number_index);
1435
1441
(void) extra(HA_EXTRA_KEYREAD);
1436
key_copy(key, getTable()->getInsertRecord(),
1437
&getTable()->key_info[getTable()->getShare()->next_number_index],
1438
getTable()->getShare()->next_number_key_offset);
1439
error= mi_rkey(file, getTable()->getUpdateRecord(), (int) getTable()->getShare()->next_number_index,
1440
key, make_prev_keypart_map(getTable()->getShare()->next_number_keypart),
1442
key_copy(key, table->record[0],
1443
table->key_info + table->s->next_number_index,
1444
table->s->next_number_key_offset);
1445
error= mi_rkey(file, table->record[1], (int) table->s->next_number_index,
1446
key, make_prev_keypart_map(table->s->next_number_keypart),
1441
1447
HA_READ_PREFIX_LAST);
1446
/* Get data from getUpdateRecord() */
1447
nr= ((uint64_t) getTable()->next_number_field->
1448
val_int_offset(getTable()->getShare()->rec_buff_length)+1);
1452
/* Get data from record[1] */
1453
nr= ((uint64_t) table->next_number_field->
1454
val_int_offset(table->s->rec_buff_length)+1);
1450
1456
extra(HA_EXTRA_NO_KEYREAD);
1451
1457
*first_value= nr;
1496
1502
return (uint)file->state->checksum;
1499
static int myisam_init(module::Context &context)
1501
context.add(new MyisamEngine(engine_name));
1502
context.registerVariable(new sys_var_constrained_value<size_t>("sort-buffer-size",
1504
context.registerVariable(new sys_var_uint64_t_ptr("max_sort_file_size",
1505
&max_sort_file_size,
1506
context.getOptions()["max-sort-file-size"].as<uint64_t>()));
1505
static MyisamEngine *engine= NULL;
1507
static int myisam_init(drizzled::plugin::Registry ®istry)
1510
engine= new MyisamEngine(engine_name);
1511
registry.add(engine);
1513
pthread_mutex_init(&THR_LOCK_myisam,MY_MUTEX_INIT_FAST);
1515
/* call ha_init_key_cache() on all key caches to init them */
1516
error= init_key_cache(dflt_key_cache,
1517
(uint32_t) dflt_key_cache->param_block_size,
1518
(uint32_t) dflt_key_cache->param_buff_size,
1519
dflt_key_cache->param_division_limit,
1520
dflt_key_cache->param_age_threshold);
1523
exit(1); /* Memory Allocation Failure */
1512
static void init_options(drizzled::module::option_context &context)
1528
static int myisam_deinit(drizzled::plugin::Registry ®istry)
1514
context("max-sort-file-size",
1515
po::value<uint64_t>(&max_sort_file_size)->default_value(INT32_MAX),
1516
_("Don't use the fast sort index method to created index if the temporary file would get bigger than this."));
1517
context("sort-buffer-size",
1518
po::value<sort_buffer_constraint>(&sort_buffer_size)->default_value(8192*1024),
1519
_("The buffer that is allocated when sorting the index when doing a REPAIR or when creating indexes with CREATE INDEX or ALTER TABLE."));
1530
registry.remove(engine);
1533
pthread_mutex_destroy(&THR_LOCK_myisam);
1534
end_key_cache(dflt_key_cache, 1); // Can never fail
1536
return mi_panic(HA_PANIC_CLOSE);
1523
DRIZZLE_DECLARE_PLUGIN
1539
static DRIZZLE_SYSVAR_UINT(block_size, block_size,
1540
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_READONLY,
1541
N_("Block size to be used for MyISAM index pages."),
1542
NULL, NULL, MI_KEY_BLOCK_LENGTH, MI_MIN_KEY_BLOCK_LENGTH,
1543
MI_MAX_KEY_BLOCK_LENGTH, 0);
1545
static DRIZZLE_SYSVAR_UINT(repair_threads, repair_threads,
1546
PLUGIN_VAR_RQCMDARG,
1547
N_("Number of threads to use when repairing MyISAM tables. The value of "
1548
"1 disables parallel repair."),
1549
NULL, NULL, 1, 1, UINT32_MAX, 0);
1551
static DRIZZLE_SYSVAR_ULONGLONG(max_sort_file_size, max_sort_file_size,
1552
PLUGIN_VAR_RQCMDARG,
1553
N_("Don't use the fast sort index method to created index if the temporary file would get bigger than this."),
1554
NULL, NULL, INT32_MAX, 0, UINT64_MAX, 0);
1556
static DRIZZLE_SYSVAR_ULONGLONG(sort_buffer_size, sort_buffer_size,
1557
PLUGIN_VAR_RQCMDARG,
1558
N_("The buffer that is allocated when sorting the index when doing a REPAIR or when creating indexes with CREATE INDEX or ALTER TABLE."),
1559
NULL, NULL, 8192*1024, 1024, SIZE_MAX, 0);
1561
extern uint32_t data_pointer_size;
1562
static DRIZZLE_SYSVAR_UINT(data_pointer_size, data_pointer_size,
1563
PLUGIN_VAR_RQCMDARG,
1564
N_("Default pointer size to be used for MyISAM tables."),
1565
NULL, NULL, 6, 2, 7, 0);
1567
static struct st_mysql_sys_var* system_variables[]= {
1568
DRIZZLE_SYSVAR(block_size),
1569
DRIZZLE_SYSVAR(repair_threads),
1570
DRIZZLE_SYSVAR(max_sort_file_size),
1571
DRIZZLE_SYSVAR(sort_buffer_size),
1572
DRIZZLE_SYSVAR(data_pointer_size),
1577
drizzle_declare_plugin(myisam)
1529
1582
"Default engine as of MySQL 3.23 with great performance",
1530
1583
PLUGIN_LICENSE_GPL,
1531
1584
myisam_init, /* Plugin Init */
1533
init_options /* config options */
1585
myisam_deinit, /* Plugin Deinit */
1586
NULL, /* status variables */
1587
system_variables, /* system variables */
1588
NULL /* config options */
1535
DRIZZLE_DECLARE_PLUGIN_END;
1590
drizzle_declare_plugin_end;