1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; version 2 of the License.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24
Mostly this file is used in the server. But a little part of it is used in
25
definition of SELECT_DISTINCT and others.
27
@TODO Name this file better. "priv" could mean private, privileged, privileges.
30
#ifndef DRIZZLED_SERVER_INCLUDES_H
31
#define DRIZZLED_SERVER_INCLUDES_H
33
/* Cross-platform portability code and standard includes */
34
#include <drizzled/global.h>
35
/* Contains system-wide constants and #defines */
36
#include <drizzled/definitions.h>
38
/* Lots of system-wide struct definitions like IO_CACHE,
39
prototypes for all my_* functions */
40
#include <mysys/my_sys.h>
41
/* Custom C string functions */
42
#include <mystrings/m_string.h>
44
/* The <strong>INTERNAL</strong> plugin API - not the external, or public, server plugin API */
45
#include <drizzled/sql_plugin.h>
46
/* Range optimization API/library */
47
#include <drizzled/opt_range.h>
48
/* Simple error injection (crash) module */
49
#include <drizzled/error_injection.h>
50
/* Routines for dropping, repairing, checking schema tables */
51
#include <drizzled/sql_table.h>
53
/* Routines for printing error messages */
54
#include <drizzled/errmsg_print.h>
61
extern const CHARSET_INFO *system_charset_info, *files_charset_info ;
62
extern const CHARSET_INFO *national_charset_info, *table_alias_charset;
64
typedef struct drizzled_lock_st DRIZZLE_LOCK;
65
typedef struct st_ha_create_information HA_CREATE_INFO;
67
/* information schema */
68
static const std::string INFORMATION_SCHEMA_NAME("information_schema");
73
void refresh_status(Session *session);
74
bool drizzle_rm_tmp_tables(void);
75
void handle_connection_in_main_thread(Session *session);
76
void create_thread_to_handle_connection(Session *session);
77
void unlink_session(Session *session);
78
bool one_thread_per_connection_end(Session *session, bool put_in_cache);
79
void flush_thread_cache();
82
extern bool check_reserved_words(LEX_STRING *name);
83
extern enum_field_types agg_field_type(Item **items, uint32_t nitems);
86
uint64_t find_set(TYPELIB *lib, const char *x, uint32_t length, const CHARSET_INFO * const cs,
87
char **err_pos, uint32_t *err_len, bool *set_warning);
88
uint32_t find_type(const TYPELIB *lib, const char *find, uint32_t length,
90
uint32_t find_type2(const TYPELIB *lib, const char *find, uint32_t length,
91
const CHARSET_INFO *cs);
92
void unhex_type2(TYPELIB *lib);
93
uint32_t check_word(TYPELIB *lib, const char *val, const char *end,
94
const char **end_of_word);
95
int find_string_in_array(LEX_STRING * const haystack, LEX_STRING * const needle,
96
const CHARSET_INFO * const cs);
99
bool is_keyword(const char *name, uint32_t len);
105
extern char *drizzle_tmpdir;
106
extern const LEX_STRING command_name[];
107
extern const char *first_keyword, *my_localhost, *delayed_user, *binary_keyword;
108
extern const char *myisam_recover_options_str;
109
extern const char *in_left_expr_name, *in_additional_cond, *in_having_cond;
110
extern const char * const TRG_EXT;
111
extern const char * const TRN_EXT;
112
extern char language[FN_REFLEN];
113
extern char glob_hostname[FN_REFLEN], drizzle_home[FN_REFLEN];
114
extern char pidfile_name[FN_REFLEN], system_time_zone[30], *opt_init_file;
115
extern char *opt_tc_log_file;
116
extern const double log_10[309];
117
extern uint64_t log_10_int[20];
118
extern uint64_t keybuff_size;
119
extern uint64_t session_startup_options;
120
extern ulong thread_id;
121
extern uint64_t aborted_threads;
122
extern uint64_t aborted_connects;
123
extern uint64_t slow_launch_threads;
124
extern uint64_t slow_launch_time;
125
extern uint64_t table_cache_size;
126
extern uint64_t table_def_size;
127
extern uint64_t max_connect_errors;
128
extern uint64_t connect_timeout;
129
extern uint32_t max_user_connections;
130
extern ulong what_to_log;
131
extern uint64_t max_relay_log_size;
132
extern uint32_t back_log;
133
extern pid_t current_pid;
134
extern uint64_t expire_logs_days;
135
extern uint64_t tc_log_max_pages_used;
136
extern uint64_t tc_log_page_size;
137
extern uint64_t opt_tc_log_size;
138
extern uint64_t tc_log_page_waits;
139
extern bool relay_log_purge;
140
extern bool opt_innodb;
141
extern uint32_t test_flags,select_errors,ha_open_options;
142
extern uint32_t protocol_version, drizzled_port, dropping_tables;
143
extern uint32_t delay_key_write_options;
144
extern bool opt_endinfo, using_udf_functions;
145
extern bool locked_in_memory;
146
extern bool opt_using_transactions;
147
extern bool using_update_log, server_id_supplied;
148
extern bool opt_update_log, opt_bin_log;
150
extern bool opt_slow_log;
151
extern ulong log_output_options;
152
extern bool opt_character_set_client_handshake;
153
extern bool volatile abort_loop, shutdown_in_progress;
154
extern uint32_t volatile thread_count, thread_running, global_read_lock;
155
extern uint32_t connection_count;
156
extern bool opt_sql_bin_update;
157
extern bool opt_safe_user_create;
158
extern bool opt_no_mix_types;
159
extern bool opt_safe_show_db, opt_myisam_use_mmap;
160
extern bool opt_local_infile;
161
extern bool use_temp_pool;
162
extern bool opt_readonly;
163
extern char* opt_secure_file_priv;
164
extern bool opt_noacl;
165
extern bool opt_old_style_user_limits;
166
extern char *default_tz_name;
167
extern char *opt_logname, *opt_slow_logname;
168
extern const char *log_output_str;
170
extern TableList general_log, slow_log;
171
extern FILE *stderror_file;
172
extern pthread_mutex_t LOCK_drizzleclient_create_db,LOCK_open, LOCK_lock_db,
173
LOCK_thread_count,LOCK_user_locks, LOCK_status,
175
LOCK_global_read_lock,
176
LOCK_global_system_variables, LOCK_user_conn,
177
LOCK_bytes_sent, LOCK_bytes_received, LOCK_connection_count;
178
extern pthread_mutex_t LOCK_server_started;
179
extern pthread_rwlock_t LOCK_sys_init_connect;
180
extern pthread_rwlock_t LOCK_system_variables_hash;
181
extern pthread_cond_t COND_refresh, COND_thread_count, COND_manager;
182
extern pthread_cond_t COND_global_read_lock;
183
extern pthread_attr_t connection_attrib;
184
extern I_List<Session> threads;
185
extern MY_BITMAP temp_pool;
186
extern String my_empty_string;
187
extern const String my_null_string;
188
extern SHOW_VAR status_vars[];
189
extern struct system_variables max_system_variables;
190
extern struct system_status_var global_status_var;
191
extern struct rand_struct sql_rand;
193
extern const char *opt_date_time_formats[];
194
extern KNOWN_DATE_TIME_FORMAT known_date_time_formats[];
196
extern Table *unused_tables;
197
extern const char* any_db;
198
extern struct my_option my_long_options[];
199
extern const LEX_STRING view_type;
200
extern TYPELIB thread_handling_typelib;
201
extern uint8_t uc_update_queries[SQLCOM_END+1];
202
extern std::bitset<5> sql_command_flags[];
203
extern TYPELIB log_output_typelib;
205
/* optional things, have_* variables */
206
extern SHOW_COMP_OPTION have_community_features;
208
extern handlerton *myisam_hton;
209
extern handlerton *heap_hton;
211
extern SHOW_COMP_OPTION have_symlink;
213
extern pthread_t signal_thread;
217
TABLE_SHARE *alloc_table_share(TableList *table_list, char *key,
218
uint32_t key_length);
219
void init_tmp_table_share(Session *session, TABLE_SHARE *share, const char *key,
221
const char *table_name, const char *path);
222
void free_table_share(TABLE_SHARE *share);
223
int open_table_def(Session *session, TABLE_SHARE *share, uint32_t db_flags);
224
void open_table_error(TABLE_SHARE *share, int error, int db_errno, int errarg);
225
int open_table_from_share(Session *session, TABLE_SHARE *share, const char *alias,
226
uint32_t db_stat, uint32_t prgflag, uint32_t ha_open_flags,
227
Table *outparam, open_table_mode open_mode);
228
int readfrm(const char *name, unsigned char **data, size_t *length);
229
int writefrm(const char* name, const unsigned char* data, size_t len);
230
int read_string(File file, unsigned char* *to, size_t length);
231
void free_blobs(Table *table);
232
int set_zone(int nr,int min_zone,int max_zone);
233
uint32_t convert_period_to_month(uint32_t period);
234
uint32_t convert_month_to_period(uint32_t month);
235
void get_date_from_daynr(long daynr,uint32_t *year, uint32_t *month,
237
time_t TIME_to_timestamp(Session *session, const DRIZZLE_TIME *t, bool *not_exist);
238
bool str_to_time_with_warn(const char *str,uint32_t length,DRIZZLE_TIME *l_time);
239
enum enum_drizzle_timestamp_type str_to_datetime_with_warn(const char *str, uint32_t length,
240
DRIZZLE_TIME *l_time, uint32_t flags);
241
void localtime_to_TIME(DRIZZLE_TIME *to, struct tm *from);
242
void calc_time_from_sec(DRIZZLE_TIME *to, long seconds, long microseconds);
244
void make_truncated_value_warning(Session *session, DRIZZLE_ERROR::enum_warning_level level,
246
uint32_t str_length, enum enum_drizzle_timestamp_type time_type,
247
const char *field_name);
249
bool date_add_interval(DRIZZLE_TIME *ltime, interval_type int_type, INTERVAL interval);
250
bool calc_time_diff(DRIZZLE_TIME *l_time1, DRIZZLE_TIME *l_time2, int l_sign,
251
int64_t *seconds_out, long *microseconds_out);
253
extern LEX_STRING interval_type_to_name[];
255
extern DATE_TIME_FORMAT *date_time_format_make(enum enum_drizzle_timestamp_type format_type,
256
const char *format_str,
257
uint32_t format_length);
258
extern DATE_TIME_FORMAT *date_time_format_copy(Session *session,
259
DATE_TIME_FORMAT *format);
260
const char *get_date_time_format_str(KNOWN_DATE_TIME_FORMAT *format,
261
enum enum_drizzle_timestamp_type type);
262
void make_datetime(const DATE_TIME_FORMAT *format, const DRIZZLE_TIME *l_time,
264
void make_date(const DATE_TIME_FORMAT *format, const DRIZZLE_TIME *l_time,
266
void make_time(const DATE_TIME_FORMAT *format, const DRIZZLE_TIME *l_time,
268
int my_time_compare(DRIZZLE_TIME *a, DRIZZLE_TIME *b);
269
uint64_t get_datetime_value(Session *session, Item ***item_arg, Item **cache_arg,
270
Item *warn_item, bool *is_null);
272
int test_if_number(char *str,int *res,bool allow_wildcards);
273
void change_byte(unsigned char *,uint,char,char);
274
void init_read_record(READ_RECORD *info, Session *session, Table *reg_form,
276
int use_record_cache, bool print_errors);
277
void init_read_record_idx(READ_RECORD *info, Session *session, Table *table,
278
bool print_error, uint32_t idx);
279
void end_read_record(READ_RECORD *info);
280
ha_rows filesort(Session *session, Table *form,struct st_sort_field *sortorder,
281
uint32_t s_length, SQL_SELECT *select,
282
ha_rows max_rows, bool sort_positions,
283
ha_rows *examined_rows);
284
void filesort_free_buffers(Table *table, bool full);
285
void change_double_for_sort(double nr,unsigned char *to);
286
double my_double_round(double value, int64_t dec, bool dec_unsigned,
288
int get_quick_record(SQL_SELECT *select);
290
int calc_weekday(long daynr,bool sunday_first_day_of_week);
291
uint32_t calc_week(DRIZZLE_TIME *l_time, uint32_t week_behaviour, uint32_t *year);
292
void find_date(char *pos,uint32_t *vek,uint32_t flag);
293
TYPELIB *convert_strings_to_array_type(char * *typelibs, char * *end);
294
TYPELIB *typelib(MEM_ROOT *mem_root, List<String> &strings);
295
ulong get_form_pos(File file, unsigned char *head, TYPELIB *save_names);
296
ulong make_new_entry(File file,unsigned char *fileinfo,TYPELIB *formnames,
297
const char *newname);
298
ulong next_io_size(ulong pos);
299
void append_unescaped(String *res, const char *pos, uint32_t length);
300
int create_frm(Session *session, const char *name, const char *db, const char *table,
301
uint32_t reclength, unsigned char *fileinfo,
302
HA_CREATE_INFO *create_info, uint32_t keys, KEY *key_info);
303
int rename_table_proto_file(const char *from, const char* to);
304
int delete_table_proto_file(const char *file_name);
305
int rename_file_ext(const char * from,const char * to,const char * ext);
306
bool check_db_name(LEX_STRING *db);
307
bool check_column_name(const char *name);
308
bool check_table_name(const char *name, uint32_t length);
309
char *get_field(MEM_ROOT *mem, Field *field);
310
bool get_field(MEM_ROOT *mem, Field *field, class String *res);
311
char *fn_rext(char *name);
313
/* Conversion functions */
314
uint32_t build_table_filename(char *buff, size_t bufflen, const char *db,
315
const char *table, const char *ext, uint32_t flags);
317
#define MYSQL50_TABLE_NAME_PREFIX "#mysql50#"
318
#define MYSQL50_TABLE_NAME_PREFIX_LENGTH sizeof(MYSQL50_TABLE_NAME_PREFIX)
320
/* Flags for conversion functions. */
321
#define FN_FROM_IS_TMP (1 << 0)
322
#define FN_TO_IS_TMP (1 << 1)
323
#define FN_IS_TMP (FN_FROM_IS_TMP | FN_TO_IS_TMP)
324
#define NO_FRM_RENAME (1 << 2)
327
inline ulong sql_rnd()
329
ulong tmp= (ulong) (rand() * 0xffffffff); /* make all bits random */
337
convert a hex digit into number.
340
inline int hexchar_to_int(char c)
342
if (c <= '9' && c >= '0')
345
if (c <= 'f' && c >= 'a')
351
#endif /* DRIZZLE_SERVER_SERVER_INCLUDES_H */