143
169
and persist it in the provided pointer to the dynamic variable.
144
170
For example, strings may require memory to be allocated.
146
typedef void (*var_update_func)(Session *session,
172
typedef void (*mysql_var_update_func)(Session *session,
147
173
drizzle_sys_var *var,
148
174
void *var_ptr, const void *save);
177
/* the following declarations are for internal use only */
180
#define PLUGIN_VAR_MASK \
181
(PLUGIN_VAR_READONLY | PLUGIN_VAR_NOSYSVAR | \
182
PLUGIN_VAR_NOCMDOPT | PLUGIN_VAR_NOCMDARG | \
183
PLUGIN_VAR_OPCMDARG | PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_MEMALLOC)
185
#define DRIZZLE_PLUGIN_VAR_HEADER \
188
const char *comment; \
189
mysql_var_check_func check; \
190
mysql_var_update_func update
192
#define DRIZZLE_SYSVAR_NAME(name) mysql_sysvar_ ## name
193
#define DRIZZLE_SYSVAR(name) \
194
((drizzle_sys_var *)(&(DRIZZLE_SYSVAR_NAME(name))))
197
for global variables, the value pointer is the first
198
element after the header, the default value is the second.
199
for thread variables, the value offset is the first
200
element after the header, the default value is the second.
204
#define DECLARE_DRIZZLE_SYSVAR_BASIC(name, type) struct { \
205
DRIZZLE_PLUGIN_VAR_HEADER; \
207
const type def_val; \
208
} DRIZZLE_SYSVAR_NAME(name)
210
#define DECLARE_DRIZZLE_SYSVAR_SIMPLE(name, type) struct { \
211
DRIZZLE_PLUGIN_VAR_HEADER; \
212
type *value; type def_val; \
213
type min_val; type max_val; \
215
} DRIZZLE_SYSVAR_NAME(name)
217
#define DECLARE_SessionVAR_FUNC(type) \
218
type *(*resolve)(Session *session, int offset)
220
#define DECLARE_DRIZZLE_SessionVAR_BASIC(name, type) struct { \
221
DRIZZLE_PLUGIN_VAR_HEADER; \
223
const type def_val; \
224
DECLARE_SessionVAR_FUNC(type); \
225
} DRIZZLE_SYSVAR_NAME(name)
227
#define DECLARE_DRIZZLE_SessionVAR_SIMPLE(name, type) struct { \
228
DRIZZLE_PLUGIN_VAR_HEADER; \
230
type def_val; type min_val; \
231
type max_val; type blk_sz; \
232
DECLARE_SessionVAR_FUNC(type); \
233
} DRIZZLE_SYSVAR_NAME(name)
235
#define DECLARE_DRIZZLE_SessionVAR_TYPELIB(name, type) struct { \
236
DRIZZLE_PLUGIN_VAR_HEADER; \
239
DECLARE_SessionVAR_FUNC(type); \
241
} DRIZZLE_SYSVAR_NAME(name)
245
the following declarations are for use by plugin implementors
248
#define DRIZZLE_SYSVAR_BOOL(name, varname, opt, comment, check, update, def) \
249
DECLARE_DRIZZLE_SYSVAR_BASIC(name, bool) = { \
250
PLUGIN_VAR_BOOL | ((opt) & PLUGIN_VAR_MASK), \
251
#name, comment, check, update, &varname, def}
253
#define DRIZZLE_SYSVAR_STR(name, varname, opt, comment, check, update, def) \
254
DECLARE_DRIZZLE_SYSVAR_BASIC(name, char *) = { \
255
PLUGIN_VAR_STR | ((opt) & PLUGIN_VAR_MASK), \
256
#name, comment, check, update, &varname, def}
258
#define DRIZZLE_SYSVAR_INT(name, varname, opt, comment, check, update, def, min, max, blk) \
259
DECLARE_DRIZZLE_SYSVAR_SIMPLE(name, int) = { \
260
PLUGIN_VAR_INT | ((opt) & PLUGIN_VAR_MASK), \
261
#name, comment, check, update, &varname, def, min, max, blk }
263
#define DRIZZLE_SYSVAR_UINT(name, varname, opt, comment, check, update, def, min, max, blk) \
264
DECLARE_DRIZZLE_SYSVAR_SIMPLE(name, unsigned int) = { \
265
PLUGIN_VAR_INT | PLUGIN_VAR_UNSIGNED | ((opt) & PLUGIN_VAR_MASK), \
266
#name, comment, check, update, &varname, def, min, max, blk }
268
#define DRIZZLE_SYSVAR_LONG(name, varname, opt, comment, check, update, def, min, max, blk) \
269
DECLARE_DRIZZLE_SYSVAR_SIMPLE(name, long) = { \
270
PLUGIN_VAR_LONG | ((opt) & PLUGIN_VAR_MASK), \
271
#name, comment, check, update, &varname, def, min, max, blk }
273
#define DRIZZLE_SYSVAR_ULONG(name, varname, opt, comment, check, update, def, min, max, blk) \
274
DECLARE_DRIZZLE_SYSVAR_SIMPLE(name, unsigned long) = { \
275
PLUGIN_VAR_LONG | PLUGIN_VAR_UNSIGNED | ((opt) & PLUGIN_VAR_MASK), \
276
#name, comment, check, update, &varname, def, min, max, blk }
278
#define DRIZZLE_SYSVAR_LONGLONG(name, varname, opt, comment, check, update, def, min, max, blk) \
279
DECLARE_DRIZZLE_SYSVAR_SIMPLE(name, int64_t) = { \
280
PLUGIN_VAR_LONGLONG | ((opt) & PLUGIN_VAR_MASK), \
281
#name, comment, check, update, &varname, def, min, max, blk }
283
#define DRIZZLE_SYSVAR_ULONGLONG(name, varname, opt, comment, check, update, def, min, max, blk) \
284
DECLARE_DRIZZLE_SYSVAR_SIMPLE(name, uint64_t) = { \
285
PLUGIN_VAR_LONGLONG | PLUGIN_VAR_UNSIGNED | ((opt) & PLUGIN_VAR_MASK), \
286
#name, comment, check, update, &varname, def, min, max, blk }
288
#define DRIZZLE_SessionVAR_BOOL(name, opt, comment, check, update, def) \
289
DECLARE_DRIZZLE_SessionVAR_BASIC(name, char) = { \
290
PLUGIN_VAR_BOOL | PLUGIN_VAR_SessionLOCAL | ((opt) & PLUGIN_VAR_MASK), \
291
#name, comment, check, update, -1, def, NULL}
293
#define DRIZZLE_SessionVAR_STR(name, opt, comment, check, update, def) \
294
DECLARE_DRIZZLE_SessionVAR_BASIC(name, char *) = { \
295
PLUGIN_VAR_STR | PLUGIN_VAR_SessionLOCAL | ((opt) & PLUGIN_VAR_MASK), \
296
#name, comment, check, update, -1, def, NULL}
298
#define DRIZZLE_SessionVAR_INT(name, opt, comment, check, update, def, min, max, blk) \
299
DECLARE_DRIZZLE_SessionVAR_SIMPLE(name, int) = { \
300
PLUGIN_VAR_INT | PLUGIN_VAR_SessionLOCAL | ((opt) & PLUGIN_VAR_MASK), \
301
#name, comment, check, update, -1, def, min, max, blk, NULL }
303
#define DRIZZLE_SessionVAR_UINT(name, opt, comment, check, update, def, min, max, blk) \
304
DECLARE_DRIZZLE_SessionVAR_SIMPLE(name, unsigned int) = { \
305
PLUGIN_VAR_INT | PLUGIN_VAR_SessionLOCAL | PLUGIN_VAR_UNSIGNED | ((opt) & PLUGIN_VAR_MASK), \
306
#name, comment, check, update, -1, def, min, max, blk, NULL }
308
#define DRIZZLE_SessionVAR_LONG(name, opt, comment, check, update, def, min, max, blk) \
309
DECLARE_DRIZZLE_SessionVAR_SIMPLE(name, long) = { \
310
PLUGIN_VAR_LONG | PLUGIN_VAR_SessionLOCAL | ((opt) & PLUGIN_VAR_MASK), \
311
#name, comment, check, update, -1, def, min, max, blk, NULL }
313
#define DRIZZLE_SessionVAR_ULONG(name, opt, comment, check, update, def, min, max, blk) \
314
DECLARE_DRIZZLE_SessionVAR_SIMPLE(name, unsigned long) = { \
315
PLUGIN_VAR_LONG | PLUGIN_VAR_SessionLOCAL | PLUGIN_VAR_UNSIGNED | ((opt) & PLUGIN_VAR_MASK), \
316
#name, comment, check, update, -1, def, min, max, blk, NULL }
318
#define DRIZZLE_SessionVAR_LONGLONG(name, opt, comment, check, update, def, min, max, blk) \
319
DECLARE_DRIZZLE_SessionVAR_SIMPLE(name, int64_t) = { \
320
PLUGIN_VAR_LONGLONG | PLUGIN_VAR_SessionLOCAL | ((opt) & PLUGIN_VAR_MASK), \
321
#name, comment, check, update, -1, def, min, max, blk, NULL }
323
#define DRIZZLE_SessionVAR_ULONGLONG(name, opt, comment, check, update, def, min, max, blk) \
324
DECLARE_DRIZZLE_SessionVAR_SIMPLE(name, uint64_t) = { \
325
PLUGIN_VAR_LONGLONG | PLUGIN_VAR_SessionLOCAL | PLUGIN_VAR_UNSIGNED | ((opt) & PLUGIN_VAR_MASK), \
326
#name, comment, check, update, -1, def, min, max, blk, NULL }
328
/* accessor macros */
330
#define SYSVAR(name) \
331
(*(DRIZZLE_SYSVAR_NAME(name).value))
333
/* when session == null, result points to global value */
334
#define SessionVAR(session, name) \
335
(*(DRIZZLE_SYSVAR_NAME(name).resolve(session, DRIZZLE_SYSVAR_NAME(name).offset)))
338
/*************************************************************************
339
drizzle_value struct for reading values from mysqld.
340
Used by server variables framework to parse user-provided values.
341
Will be used for arguments when implementing UDFs.
343
Note that val_str() returns a string in temporary memory
344
that will be freed at the end of statement. Copy the string
345
if you need it to persist.
348
#define DRIZZLE_VALUE_TYPE_STRING 0
349
#define DRIZZLE_VALUE_TYPE_REAL 1
350
#define DRIZZLE_VALUE_TYPE_INT 2
153
353
skeleton of a plugin variable - portion of structure common to all.
155
355
struct drizzle_sys_var
357
DRIZZLE_PLUGIN_VAR_HEADER;
159
360
void plugin_opt_set_limits(option *options, const drizzle_sys_var *opt);