56
57
#include <drizzled/item/uint.h>
57
58
#include <drizzled/item/null.h>
58
59
#include <drizzled/item/float.h>
59
#include <drizzled/plugin.h>
60
#include "drizzled/version.h"
61
#include "drizzled/strfunc.h"
62
#include "drizzled/internal/m_string.h"
63
#include "drizzled/pthread_globals.h"
64
#include "drizzled/charset.h"
65
#include "drizzled/transaction_services.h"
60
#include <drizzled/sql_plugin.h>
62
#include "drizzled/registry.h"
68
64
#include <algorithm>
70
66
using namespace std;
77
extern bool timed_mutexes;
80
extern plugin::StorageEngine *myisam_engine;
81
extern bool timed_mutexes;
83
extern struct option my_long_options[];
84
68
extern const CHARSET_INFO *character_set_filesystem;
85
69
extern size_t my_thread_stack_size;
87
71
class sys_var_pluginvar;
88
72
static DYNAMIC_ARRAY fixed_show_vars;
89
typedef map<string, sys_var *> SystemVariableMap;
90
static SystemVariableMap system_variable_map;
73
static drizzled::Registry<sys_var *> system_variable_hash;
91
74
extern char *opt_drizzle_tmpdir;
93
extern TYPELIB tx_isolation_typelib;
95
76
const char *bool_type_names[]= { "OFF", "ON", NULL };
96
77
TYPELIB bool_typelib=
102
83
static bool set_option_autocommit(Session *session, set_var *var);
103
84
static int check_pseudo_thread_id(Session *session, set_var *var);
104
85
static int check_tx_isolation(Session *session, set_var *var);
105
static void fix_tx_isolation(Session *session, sql_var_t type);
86
static void fix_tx_isolation(Session *session, enum_var_type type);
106
87
static int check_completion_type(Session *session, set_var *var);
107
static void fix_completion_type(Session *session, sql_var_t type);
108
static void fix_max_join_size(Session *session, sql_var_t type);
109
static void fix_session_mem_root(Session *session, sql_var_t type);
110
static void fix_server_id(Session *session, sql_var_t type);
88
static void fix_completion_type(Session *session, enum_var_type type);
89
static void fix_max_join_size(Session *session, enum_var_type type);
90
static void fix_session_mem_root(Session *session, enum_var_type type);
91
static void fix_trans_mem_root(Session *session, enum_var_type type);
92
static void fix_server_id(Session *session, enum_var_type type);
93
static uint64_t fix_unsigned(Session *, uint64_t, const struct my_option *);
111
94
static bool get_unsigned32(Session *session, set_var *var);
112
95
static bool get_unsigned64(Session *session, set_var *var);
113
96
bool throw_bounds_warning(Session *session, bool fixed, bool unsignd,
130
113
static sys_var_session_uint64_t
131
114
sys_auto_increment_increment(&vars, "auto_increment_increment",
132
&system_variables::auto_increment_increment);
115
&SV::auto_increment_increment);
133
116
static sys_var_session_uint64_t
134
117
sys_auto_increment_offset(&vars, "auto_increment_offset",
135
&system_variables::auto_increment_offset);
118
&SV::auto_increment_offset);
137
120
static sys_var_const_str sys_basedir(&vars, "basedir", drizzle_home);
138
121
static sys_var_session_uint64_t sys_bulk_insert_buff_size(&vars, "bulk_insert_buffer_size",
139
&system_variables::bulk_insert_buff_size);
122
&SV::bulk_insert_buff_size);
140
123
static sys_var_session_uint32_t sys_completion_type(&vars, "completion_type",
141
&system_variables::completion_type,
124
&SV::completion_type,
142
125
check_completion_type,
143
126
fix_completion_type);
144
127
static sys_var_collation_sv
145
sys_collation_server(&vars, "collation_server", &system_variables::collation_server, &default_charset_info);
128
sys_collation_server(&vars, "collation_server", &SV::collation_server, &default_charset_info);
146
129
static sys_var_const_str sys_datadir(&vars, "datadir", drizzle_real_data_home);
148
131
static sys_var_session_uint64_t sys_join_buffer_size(&vars, "join_buffer_size",
149
&system_variables::join_buff_size);
132
&SV::join_buff_size);
133
static sys_var_key_buffer_size sys_key_buffer_size(&vars, "key_buffer_size");
134
static sys_var_key_cache_uint32_t sys_key_cache_block_size(&vars, "key_cache_block_size",
137
static sys_var_key_cache_uint32_t sys_key_cache_division_limit(&vars, "key_cache_division_limit",
139
param_division_limit));
140
static sys_var_key_cache_uint32_t sys_key_cache_age_threshold(&vars, "key_cache_age_threshold",
142
param_age_threshold));
150
143
static sys_var_session_uint32_t sys_max_allowed_packet(&vars, "max_allowed_packet",
151
&system_variables::max_allowed_packet);
144
&SV::max_allowed_packet);
152
145
static sys_var_uint64_t_ptr sys_max_connect_errors(&vars, "max_connect_errors",
153
146
&max_connect_errors);
154
147
static sys_var_session_uint64_t sys_max_error_count(&vars, "max_error_count",
155
&system_variables::max_error_count);
148
&SV::max_error_count);
156
149
static sys_var_session_uint64_t sys_max_heap_table_size(&vars, "max_heap_table_size",
157
&system_variables::max_heap_table_size);
150
&SV::max_heap_table_size);
158
151
static sys_var_session_uint64_t sys_pseudo_thread_id(&vars, "pseudo_thread_id",
159
&system_variables::pseudo_thread_id,
152
&SV::pseudo_thread_id,
160
153
0, check_pseudo_thread_id);
161
154
static sys_var_session_ha_rows sys_max_join_size(&vars, "max_join_size",
162
&system_variables::max_join_size,
163
156
fix_max_join_size);
164
157
static sys_var_session_uint64_t sys_max_seeks_for_key(&vars, "max_seeks_for_key",
165
&system_variables::max_seeks_for_key);
158
&SV::max_seeks_for_key);
166
159
static sys_var_session_uint64_t sys_max_length_for_sort_data(&vars, "max_length_for_sort_data",
167
&system_variables::max_length_for_sort_data);
160
&SV::max_length_for_sort_data);
168
161
static sys_var_session_size_t sys_max_sort_length(&vars, "max_sort_length",
169
&system_variables::max_sort_length);
162
&SV::max_sort_length);
170
163
static sys_var_uint64_t_ptr sys_max_write_lock_count(&vars, "max_write_lock_count",
171
164
&max_write_lock_count);
172
165
static sys_var_session_uint64_t sys_min_examined_row_limit(&vars, "min_examined_row_limit",
173
&system_variables::min_examined_row_limit);
166
&SV::min_examined_row_limit);
168
static sys_var_session_uint32_t sys_net_buffer_length(&vars, "net_buffer_length",
169
&SV::net_buffer_length);
175
170
/* these two cannot be static */
176
171
static sys_var_session_bool sys_optimizer_prune_level(&vars, "optimizer_prune_level",
177
&system_variables::optimizer_prune_level);
172
&SV::optimizer_prune_level);
178
173
static sys_var_session_uint32_t sys_optimizer_search_depth(&vars, "optimizer_search_depth",
179
&system_variables::optimizer_search_depth);
174
&SV::optimizer_search_depth);
181
176
static sys_var_session_uint64_t sys_preload_buff_size(&vars, "preload_buffer_size",
182
&system_variables::preload_buff_size);
177
&SV::preload_buff_size);
183
178
static sys_var_session_uint32_t sys_read_buff_size(&vars, "read_buffer_size",
184
&system_variables::read_buff_size);
179
&SV::read_buff_size);
185
180
static sys_var_session_uint32_t sys_read_rnd_buff_size(&vars, "read_rnd_buffer_size",
186
&system_variables::read_rnd_buff_size);
181
&SV::read_rnd_buff_size);
187
182
static sys_var_session_uint32_t sys_div_precincrement(&vars, "div_precision_increment",
188
&system_variables::div_precincrement);
183
&SV::div_precincrement);
190
185
static sys_var_session_size_t sys_range_alloc_block_size(&vars, "range_alloc_block_size",
191
&system_variables::range_alloc_block_size);
186
&SV::range_alloc_block_size);
192
187
static sys_var_session_uint32_t sys_query_alloc_block_size(&vars, "query_alloc_block_size",
193
&system_variables::query_alloc_block_size,
188
&SV::query_alloc_block_size,
194
189
false, fix_session_mem_root);
195
190
static sys_var_session_uint32_t sys_query_prealloc_size(&vars, "query_prealloc_size",
196
&system_variables::query_prealloc_size,
191
&SV::query_prealloc_size,
197
192
false, fix_session_mem_root);
198
193
static sys_var_readonly sys_tmpdir(&vars, "tmpdir", OPT_GLOBAL, SHOW_CHAR, get_tmpdir);
194
static sys_var_session_uint32_t sys_trans_alloc_block_size(&vars, "transaction_alloc_block_size",
195
&SV::trans_alloc_block_size,
196
false, fix_trans_mem_root);
197
static sys_var_session_uint32_t sys_trans_prealloc_size(&vars, "transaction_prealloc_size",
198
&SV::trans_prealloc_size,
199
false, fix_trans_mem_root);
200
201
static sys_var_const_str_ptr sys_secure_file_priv(&vars, "secure_file_priv",
201
202
&opt_secure_file_priv);
205
206
static sys_var_session_size_t sys_sort_buffer(&vars, "sort_buffer_size",
206
&system_variables::sortbuff_size);
208
static sys_var_session_optimizer_switch sys_optimizer_switch(&vars, "optimizer_switch",
209
&SV::optimizer_switch);
208
211
static sys_var_session_storage_engine sys_storage_engine(&vars, "storage_engine",
209
&system_variables::storage_engine);
212
&SV::storage_engine);
210
213
static sys_var_const_str sys_system_time_zone(&vars, "system_time_zone",
211
214
system_time_zone);
212
static sys_var_size_t_ptr sys_table_def_size(&vars, "table_definition_cache",
215
static sys_var_uint64_t_ptr sys_table_def_size(&vars, "table_definition_cache",
214
217
static sys_var_uint64_t_ptr sys_table_cache_size(&vars, "table_open_cache",
215
218
&table_cache_size);
216
219
static sys_var_uint64_t_ptr sys_table_lock_wait_timeout(&vars, "table_lock_wait_timeout",
217
220
&table_lock_wait_timeout);
218
221
static sys_var_session_enum sys_tx_isolation(&vars, "tx_isolation",
219
&system_variables::tx_isolation,
220
223
&tx_isolation_typelib,
221
224
fix_tx_isolation,
222
225
check_tx_isolation);
223
226
static sys_var_session_uint64_t sys_tmp_table_size(&vars, "tmp_table_size",
224
&system_variables::tmp_table_size);
225
static sys_var_bool_ptr sys_timed_mutexes(&vars, "timed_mutexes", &internal::timed_mutexes);
226
static sys_var_const_str sys_version(&vars, "version", version().c_str());
227
&SV::tmp_table_size);
228
static sys_var_bool_ptr sys_timed_mutexes(&vars, "timed_mutexes", &timed_mutexes);
229
static sys_var_const_str sys_version(&vars, "version", VERSION);
228
230
static sys_var_const_str sys_version_comment(&vars, "version_comment",
229
231
COMPILATION_COMMENT);
230
232
static sys_var_const_str sys_version_compile_machine(&vars, "version_compile_machine",
309
317
TODO: remove this list completely
312
#define FIXED_VARS_SIZE (sizeof(fixed_vars) / sizeof(drizzle_show_var))
313
static drizzle_show_var fixed_vars[]= {
314
{"back_log", (char*) &back_log, SHOW_INT},
315
{"language", language, SHOW_CHAR},
316
{"pid_file", (char*) pidfile_name, SHOW_CHAR},
317
{"plugin_dir", (char*) opt_plugin_dir, SHOW_CHAR},
318
{"thread_stack", (char*) &my_thread_stack_size, SHOW_INT},
320
#define FIXED_VARS_SIZE (sizeof(fixed_vars) / sizeof(SHOW_VAR))
321
static SHOW_VAR fixed_vars[]= {
322
{"back_log", (char*) &back_log, SHOW_INT},
323
{"language", language, SHOW_CHAR},
325
{"locked_in_memory", (char*) &locked_in_memory, SHOW_MY_BOOL},
327
{"pid_file", (char*) pidfile_name, SHOW_CHAR},
328
{"plugin_dir", (char*) opt_plugin_dir, SHOW_CHAR},
329
{"port", (char*) &drizzled_tcp_port, SHOW_INT},
330
{"thread_stack", (char*) &my_thread_stack_size, SHOW_INT},
321
333
bool sys_var::check(Session *, set_var *var)
909
bool sys_var::check_set(Session *, set_var *var, TYPELIB *enum_names)
912
char buff[STRING_BUFFER_USUAL_SIZE], *error= 0;
913
uint32_t error_len= 0;
914
String str(buff, sizeof(buff), system_charset_info), *res;
916
if (var->value->result_type() == STRING_RESULT)
918
if (!(res= var->value->val_str(&str)))
920
strcpy(buff, "NULL");
924
if (! m_allow_empty_value && res->length() == 0)
930
var->save_result.uint32_t_value= ((uint32_t)
931
find_set(enum_names, res->c_ptr(),
938
size_t len = min((uint32_t)(sizeof(buff) - 1), error_len);
939
strncpy(buff, error, len);
946
uint64_t tmp= var->value->val_int();
948
if (! m_allow_empty_value && tmp == 0)
956
For when the enum is made to contain 64 elements, as 1ULL<<64 is
957
undefined, we guard with a "count<64" test.
959
if (unlikely((tmp >= ((1UL) << enum_names->count)) &&
960
(enum_names->count < 64)))
965
var->save_result.uint32_t_value= (uint32_t) tmp; // Save for update
970
my_error(ER_WRONG_VALUE_FOR_VAR, MYF(0), name.c_str(), buff);
878
976
Return an Item for a variable.
1116
1214
return cs ? (unsigned char*) cs->name : (unsigned char*) "NULL";
1218
unsigned char *sys_var_key_cache_param::value_ptr(Session *, enum_var_type,
1221
return (unsigned char*) dflt_key_cache + offset ;
1227
static int resize_key_cache_with_lock(KEY_CACHE *key_cache)
1229
assert(key_cache->key_cache_inited);
1231
pthread_mutex_lock(&LOCK_global_system_variables);
1232
long tmp_buff_size= (long) key_cache->param_buff_size;
1233
long tmp_block_size= (long) key_cache->param_block_size;
1234
uint32_t division_limit= key_cache->param_division_limit;
1235
uint32_t age_threshold= key_cache->param_age_threshold;
1236
pthread_mutex_unlock(&LOCK_global_system_variables);
1238
return(!resize_key_cache(key_cache, tmp_block_size,
1240
division_limit, age_threshold));
1245
bool sys_var_key_buffer_size::update(Session *session, set_var *var)
1247
uint64_t tmp= var->save_result.uint64_t_value;
1248
KEY_CACHE *key_cache;
1251
pthread_mutex_lock(&LOCK_global_system_variables);
1252
key_cache= dflt_key_cache;
1255
Abort if some other thread is changing the key cache
1256
TODO: This should be changed so that we wait until the previous
1257
assignment is done and then do the new assign
1259
if (key_cache->in_init)
1262
if (tmp == 0) // Zero size means delete
1264
push_warning_printf(session, DRIZZLE_ERROR::WARN_LEVEL_WARN,
1265
ER_WARN_CANT_DROP_DEFAULT_KEYCACHE,
1266
ER(ER_WARN_CANT_DROP_DEFAULT_KEYCACHE));
1267
goto end; // Ignore default key cache
1270
key_cache->param_buff_size=
1271
(uint64_t) fix_unsigned(session, tmp, option_limits);
1273
/* If key cache didn't existed initialize it, else resize it */
1274
key_cache->in_init= 1;
1275
pthread_mutex_unlock(&LOCK_global_system_variables);
1277
error= (bool)(resize_key_cache_with_lock(key_cache));
1279
pthread_mutex_lock(&LOCK_global_system_variables);
1280
key_cache->in_init= 0;
1283
pthread_mutex_unlock(&LOCK_global_system_variables);
1290
Abort if some other thread is changing the key cache.
1291
This should be changed so that we wait until the previous
1292
assignment is done and then do the new assign
1294
bool sys_var_key_cache_uint32_t::update(Session *session, set_var *var)
1296
uint64_t tmp= (uint64_t) var->value->val_int();
1299
pthread_mutex_lock(&LOCK_global_system_variables);
1302
Abort if some other thread is changing the key cache
1303
TODO: This should be changed so that we wait until the previous
1304
assignment is done and then do the new assign
1306
if (dflt_key_cache->in_init)
1309
*((uint32_t*) (((char*) dflt_key_cache) + offset))=
1310
(uint32_t) fix_unsigned(session, tmp, option_limits);
1313
Don't create a new key cache if it didn't exist
1314
(key_caches are created only when the user sets block_size)
1316
dflt_key_cache->in_init= 1;
1318
pthread_mutex_unlock(&LOCK_global_system_variables);
1320
error= (bool) (resize_key_cache_with_lock(dflt_key_cache));
1322
pthread_mutex_lock(&LOCK_global_system_variables);
1323
dflt_key_cache->in_init= 0;
1326
pthread_mutex_unlock(&LOCK_global_system_variables);
1119
1331
/****************************************************************************/
1121
1333
bool sys_var_timestamp::update(Session *session, set_var *var)
1562
1757
sorted If TRUE, the system variables should be sorted
1565
pointer Array of drizzle_show_var elements for display
1760
pointer Array of SHOW_VAR elements for display
1569
drizzle_show_var* enumerate_sys_vars(Session *session, bool)
1764
SHOW_VAR* enumerate_sys_vars(Session *session, bool)
1571
1766
int fixed_count= fixed_show_vars.elements;
1572
int size= sizeof(drizzle_show_var) * (system_variable_map.size() + fixed_count + 1);
1573
drizzle_show_var *result= (drizzle_show_var*) session->alloc(size);
1767
int size= sizeof(SHOW_VAR) * (system_variable_hash.size() + fixed_count + 1);
1768
SHOW_VAR *result= (SHOW_VAR*) session->alloc(size);
1577
drizzle_show_var *show= result + fixed_count;
1578
memcpy(result, fixed_show_vars.buffer, fixed_count * sizeof(drizzle_show_var));
1772
SHOW_VAR *show= result + fixed_count;
1773
memcpy(result, fixed_show_vars.buffer, fixed_count * sizeof(SHOW_VAR));
1580
SystemVariableMap::const_iterator iter= system_variable_map.begin();
1581
while (iter != system_variable_map.end())
1775
drizzled::Registry<sys_var *>::const_iterator iter;
1776
for(iter= system_variable_hash.begin();
1777
iter != system_variable_hash.end();
1583
sys_var *var= (*iter).second;
1780
sys_var *var= *iter;
1584
1781
show->name= var->getName().c_str();
1585
1782
show->value= (char*) var;
1586
1783
show->type= SHOW_SYS;
1591
1787
/* make last element empty */
1592
memset(show, 0, sizeof(drizzle_show_var));
1788
memset(show, 0, sizeof(SHOW_VAR));
1912
} /* namespace drizzled */
2119
sys_var_session_optimizer_switch::
2120
symbolic_mode_representation(Session *session, uint32_t val, LEX_STRING *rep)
2122
char buff[STRING_BUFFER_USUAL_SIZE*8];
2123
String tmp(buff, sizeof(buff), &my_charset_utf8_general_ci);
2127
for (uint32_t i= 0; val; val>>= 1, i++)
2131
tmp.append(optimizer_switch_typelib.type_names[i],
2132
optimizer_switch_typelib.type_lengths[i]);
2138
tmp.length(tmp.length() - 1); /* trim the trailing comma */
2140
rep->str= session->strmake(tmp.ptr(), tmp.length());
2142
rep->length= rep->str ? tmp.length() : 0;
2144
return rep->length != tmp.length();
2148
unsigned char *sys_var_session_optimizer_switch::value_ptr(Session *session,
2153
uint32_t val= ((type == OPT_GLOBAL) ? global_system_variables.*offset :
2154
session->variables.*offset);
2155
(void) symbolic_mode_representation(session, val, &opts);
2156
return (unsigned char *) opts.str;
2160
void sys_var_session_optimizer_switch::set_default(Session *session, enum_var_type type)
2162
if (type == OPT_GLOBAL)
2163
global_system_variables.*offset= 0;
2165
session->variables.*offset= global_system_variables.*offset;
2169
/****************************************************************************
2171
****************************************************************************/
2173
#ifdef HAVE_EXPLICIT_TEMPLATE_INSTANTIATION
2174
template class List<set_var_base>;
2175
template class List_iterator_fast<set_var_base>;
2176
template class I_List_iterator<NAMED_LIST>;