~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin.h

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifdef __cplusplus
22
22
class THD;
23
23
class Item;
24
 
#define MYSQL_THD THD*
 
24
#define DRIZZLE_THD THD*
25
25
#else
26
 
#define MYSQL_THD void*
 
26
#define DRIZZLE_THD void*
27
27
#endif
28
28
 
29
29
 
35
35
  unsigned int length;
36
36
};
37
37
#endif /* _m_string_h */
38
 
typedef struct st_mysql_lex_string MYSQL_LEX_STRING;
 
38
typedef struct st_mysql_lex_string DRIZZLE_LEX_STRING;
39
39
 
40
 
#define MYSQL_XIDDATASIZE 128
 
40
#define DRIZZLE_XIDDATASIZE 128
41
41
/**
42
42
  struct st_mysql_xid is binary compatible with the XID structure as
43
43
  in the X/Open CAE Specification, Distributed Transaction Processing:
50
50
  long formatID;
51
51
  long gtrid_length;
52
52
  long bqual_length;
53
 
  char data[MYSQL_XIDDATASIZE];  /* Not \0-terminated */
 
53
  char data[DRIZZLE_XIDDATASIZE];  /* Not \0-terminated */
54
54
};
55
 
typedef struct st_mysql_xid MYSQL_XID;
 
55
typedef struct st_mysql_xid DRIZZLE_XID;
56
56
 
57
57
/*************************************************************************
58
58
  Plugin API. Common for all plugin types.
61
61
/*
62
62
  The allowable types of plugins
63
63
*/
64
 
#define MYSQL_DAEMON_PLUGIN          0  /* Daemon / Raw */
65
 
#define MYSQL_STORAGE_ENGINE_PLUGIN  1  /* Storage Engine */
66
 
#define MYSQL_INFORMATION_SCHEMA_PLUGIN  2  /* Information Schema */
67
 
#define MYSQL_UDF_PLUGIN             3  /* User-Defined Function */
68
 
#define MYSQL_UDA_PLUGIN             4  /* User-Defined Aggregate function */
69
 
#define MYSQL_AUDIT_PLUGIN           5  /* Audit */
70
 
#define MYSQL_LOGGER_PLUGIN          6  /* Logging */
71
 
#define MYSQL_AUTH_PLUGIN            7  /* Authorization */
 
64
#define DRIZZLE_DAEMON_PLUGIN          0  /* Daemon / Raw */
 
65
#define DRIZZLE_STORAGE_ENGINE_PLUGIN  1  /* Storage Engine */
 
66
#define DRIZZLE_INFORMATION_SCHEMA_PLUGIN  2  /* Information Schema */
 
67
#define DRIZZLE_UDF_PLUGIN             3  /* User-Defined Function */
 
68
#define DRIZZLE_UDA_PLUGIN             4  /* User-Defined Aggregate function */
 
69
#define DRIZZLE_AUDIT_PLUGIN           5  /* Audit */
 
70
#define DRIZZLE_LOGGER_PLUGIN          6  /* Logging */
 
71
#define DRIZZLE_AUTH_PLUGIN            7  /* Authorization */
72
72
 
73
 
#define MYSQL_MAX_PLUGIN_TYPE_NUM    8  /* The number of plugin types */
 
73
#define DRIZZLE_MAX_PLUGIN_TYPE_NUM    8  /* The number of plugin types */
74
74
 
75
75
/* We use the following strings to define licenses for plugins */
76
76
#define PLUGIN_LICENSE_PROPRIETARY 0
88
88
*/
89
89
 
90
90
 
91
 
#ifndef MYSQL_DYNAMIC_PLUGIN
92
 
#define __MYSQL_DECLARE_PLUGIN(NAME, DECLS) \
 
91
#ifndef DRIZZLE_DYNAMIC_PLUGIN
 
92
#define __DRIZZLE_DECLARE_PLUGIN(NAME, DECLS) \
93
93
struct st_mysql_plugin DECLS[]= {
94
94
#else
95
 
#define __MYSQL_DECLARE_PLUGIN(NAME, DECLS) \
 
95
#define __DRIZZLE_DECLARE_PLUGIN(NAME, DECLS) \
96
96
struct st_mysql_plugin _mysql_plugin_declarations_[]= {
97
97
#endif
98
98
 
99
99
#define mysql_declare_plugin(NAME) \
100
 
__MYSQL_DECLARE_PLUGIN(NAME, \
 
100
__DRIZZLE_DECLARE_PLUGIN(NAME, \
101
101
                 builtin_ ## NAME ## _plugin)
102
102
 
103
103
#define mysql_declare_plugin_end ,{0,0,0,0,0,0,0,0,0,0,0}}
120
120
 
121
121
 
122
122
#define SHOW_VAR_FUNC_BUFF_SIZE 1024
123
 
typedef int (*mysql_show_var_func)(MYSQL_THD, struct st_mysql_show_var*, char *);
 
123
typedef int (*mysql_show_var_func)(DRIZZLE_THD, struct st_mysql_show_var*, char *);
124
124
 
125
125
struct st_show_var_func_container {
126
126
  mysql_show_var_func func;
169
169
  automatically at the end of the statement.
170
170
*/
171
171
 
172
 
typedef int (*mysql_var_check_func)(MYSQL_THD thd,
 
172
typedef int (*mysql_var_check_func)(DRIZZLE_THD thd,
173
173
                                    struct st_mysql_sys_var *var,
174
174
                                    void *save, struct st_mysql_value *value);
175
175
 
187
187
   and persist it in the provided pointer to the dynamic variable.
188
188
   For example, strings may require memory to be allocated.
189
189
*/
190
 
typedef void (*mysql_var_update_func)(MYSQL_THD thd,
 
190
typedef void (*mysql_var_update_func)(DRIZZLE_THD thd,
191
191
                                      struct st_mysql_sys_var *var,
192
192
                                      void *var_ptr, const void *save);
193
193
 
200
200
         PLUGIN_VAR_NOCMDOPT | PLUGIN_VAR_NOCMDARG | \
201
201
         PLUGIN_VAR_OPCMDARG | PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_MEMALLOC)
202
202
 
203
 
#define MYSQL_PLUGIN_VAR_HEADER \
 
203
#define DRIZZLE_PLUGIN_VAR_HEADER \
204
204
  int flags;                    \
205
205
  const char *name;             \
206
206
  const char *comment;          \
207
207
  mysql_var_check_func check;   \
208
208
  mysql_var_update_func update
209
209
 
210
 
#define MYSQL_SYSVAR_NAME(name) mysql_sysvar_ ## name
211
 
#define MYSQL_SYSVAR(name) \
212
 
  ((struct st_mysql_sys_var *)&(MYSQL_SYSVAR_NAME(name)))
 
210
#define DRIZZLE_SYSVAR_NAME(name) mysql_sysvar_ ## name
 
211
#define DRIZZLE_SYSVAR(name) \
 
212
  ((struct st_mysql_sys_var *)&(DRIZZLE_SYSVAR_NAME(name)))
213
213
 
214
214
/*
215
215
  for global variables, the value pointer is the first
219
219
*/
220
220
   
221
221
 
222
 
#define DECLARE_MYSQL_SYSVAR_BASIC(name, type) struct { \
223
 
  MYSQL_PLUGIN_VAR_HEADER;      \
 
222
#define DECLARE_DRIZZLE_SYSVAR_BASIC(name, type) struct { \
 
223
  DRIZZLE_PLUGIN_VAR_HEADER;      \
224
224
  type *value;                  \
225
225
  const type def_val;           \
226
 
} MYSQL_SYSVAR_NAME(name)
 
226
} DRIZZLE_SYSVAR_NAME(name)
227
227
 
228
 
#define DECLARE_MYSQL_SYSVAR_SIMPLE(name, type) struct { \
229
 
  MYSQL_PLUGIN_VAR_HEADER;      \
 
228
#define DECLARE_DRIZZLE_SYSVAR_SIMPLE(name, type) struct { \
 
229
  DRIZZLE_PLUGIN_VAR_HEADER;      \
230
230
  type *value; type def_val;    \
231
231
  type min_val; type max_val;   \
232
232
  type blk_sz;                  \
233
 
} MYSQL_SYSVAR_NAME(name)
 
233
} DRIZZLE_SYSVAR_NAME(name)
234
234
 
235
 
#define DECLARE_MYSQL_SYSVAR_TYPELIB(name, type) struct { \
236
 
  MYSQL_PLUGIN_VAR_HEADER;      \
 
235
#define DECLARE_DRIZZLE_SYSVAR_TYPELIB(name, type) struct { \
 
236
  DRIZZLE_PLUGIN_VAR_HEADER;      \
237
237
  type *value; type def_val;    \
238
238
  TYPELIB *typelib;             \
239
 
} MYSQL_SYSVAR_NAME(name)
 
239
} DRIZZLE_SYSVAR_NAME(name)
240
240
 
241
241
#define DECLARE_THDVAR_FUNC(type) \
242
 
  type *(*resolve)(MYSQL_THD thd, int offset)
 
242
  type *(*resolve)(DRIZZLE_THD thd, int offset)
243
243
 
244
 
#define DECLARE_MYSQL_THDVAR_BASIC(name, type) struct { \
245
 
  MYSQL_PLUGIN_VAR_HEADER;      \
 
244
#define DECLARE_DRIZZLE_THDVAR_BASIC(name, type) struct { \
 
245
  DRIZZLE_PLUGIN_VAR_HEADER;      \
246
246
  int offset;                   \
247
247
  const type def_val;           \
248
248
  DECLARE_THDVAR_FUNC(type);    \
249
 
} MYSQL_SYSVAR_NAME(name)
 
249
} DRIZZLE_SYSVAR_NAME(name)
250
250
 
251
 
#define DECLARE_MYSQL_THDVAR_SIMPLE(name, type) struct { \
252
 
  MYSQL_PLUGIN_VAR_HEADER;      \
 
251
#define DECLARE_DRIZZLE_THDVAR_SIMPLE(name, type) struct { \
 
252
  DRIZZLE_PLUGIN_VAR_HEADER;      \
253
253
  int offset;                   \
254
254
  type def_val; type min_val;   \
255
255
  type max_val; type blk_sz;    \
256
256
  DECLARE_THDVAR_FUNC(type);    \
257
 
} MYSQL_SYSVAR_NAME(name)
 
257
} DRIZZLE_SYSVAR_NAME(name)
258
258
 
259
 
#define DECLARE_MYSQL_THDVAR_TYPELIB(name, type) struct { \
260
 
  MYSQL_PLUGIN_VAR_HEADER;      \
 
259
#define DECLARE_DRIZZLE_THDVAR_TYPELIB(name, type) struct { \
 
260
  DRIZZLE_PLUGIN_VAR_HEADER;      \
261
261
  int offset;                   \
262
262
  type def_val;                 \
263
263
  DECLARE_THDVAR_FUNC(type);    \
264
264
  TYPELIB *typelib;             \
265
 
} MYSQL_SYSVAR_NAME(name)
 
265
} DRIZZLE_SYSVAR_NAME(name)
266
266
 
267
267
 
268
268
/*
269
269
  the following declarations are for use by plugin implementors
270
270
*/
271
271
 
272
 
#define MYSQL_SYSVAR_BOOL(name, varname, opt, comment, check, update, def) \
273
 
DECLARE_MYSQL_SYSVAR_BASIC(name, bool) = { \
 
272
#define DRIZZLE_SYSVAR_BOOL(name, varname, opt, comment, check, update, def) \
 
273
DECLARE_DRIZZLE_SYSVAR_BASIC(name, bool) = { \
274
274
  PLUGIN_VAR_BOOL | ((opt) & PLUGIN_VAR_MASK), \
275
275
  #name, comment, check, update, &varname, def}
276
276
 
277
 
#define MYSQL_SYSVAR_STR(name, varname, opt, comment, check, update, def) \
278
 
DECLARE_MYSQL_SYSVAR_BASIC(name, char *) = { \
 
277
#define DRIZZLE_SYSVAR_STR(name, varname, opt, comment, check, update, def) \
 
278
DECLARE_DRIZZLE_SYSVAR_BASIC(name, char *) = { \
279
279
  PLUGIN_VAR_STR | ((opt) & PLUGIN_VAR_MASK), \
280
280
  #name, comment, check, update, &varname, def}
281
281
 
282
 
#define MYSQL_SYSVAR_INT(name, varname, opt, comment, check, update, def, min, max, blk) \
283
 
DECLARE_MYSQL_SYSVAR_SIMPLE(name, int) = { \
 
282
#define DRIZZLE_SYSVAR_INT(name, varname, opt, comment, check, update, def, min, max, blk) \
 
283
DECLARE_DRIZZLE_SYSVAR_SIMPLE(name, int) = { \
284
284
  PLUGIN_VAR_INT | ((opt) & PLUGIN_VAR_MASK), \
285
285
  #name, comment, check, update, &varname, def, min, max, blk }
286
286
 
287
 
#define MYSQL_SYSVAR_UINT(name, varname, opt, comment, check, update, def, min, max, blk) \
288
 
DECLARE_MYSQL_SYSVAR_SIMPLE(name, unsigned int) = { \
 
287
#define DRIZZLE_SYSVAR_UINT(name, varname, opt, comment, check, update, def, min, max, blk) \
 
288
DECLARE_DRIZZLE_SYSVAR_SIMPLE(name, unsigned int) = { \
289
289
  PLUGIN_VAR_INT | PLUGIN_VAR_UNSIGNED | ((opt) & PLUGIN_VAR_MASK), \
290
290
  #name, comment, check, update, &varname, def, min, max, blk }
291
291
 
292
 
#define MYSQL_SYSVAR_LONG(name, varname, opt, comment, check, update, def, min, max, blk) \
293
 
DECLARE_MYSQL_SYSVAR_SIMPLE(name, long) = { \
 
292
#define DRIZZLE_SYSVAR_LONG(name, varname, opt, comment, check, update, def, min, max, blk) \
 
293
DECLARE_DRIZZLE_SYSVAR_SIMPLE(name, long) = { \
294
294
  PLUGIN_VAR_LONG | ((opt) & PLUGIN_VAR_MASK), \
295
295
  #name, comment, check, update, &varname, def, min, max, blk }
296
296
 
297
 
#define MYSQL_SYSVAR_ULONG(name, varname, opt, comment, check, update, def, min, max, blk) \
298
 
DECLARE_MYSQL_SYSVAR_SIMPLE(name, unsigned long) = { \
 
297
#define DRIZZLE_SYSVAR_ULONG(name, varname, opt, comment, check, update, def, min, max, blk) \
 
298
DECLARE_DRIZZLE_SYSVAR_SIMPLE(name, unsigned long) = { \
299
299
  PLUGIN_VAR_LONG | PLUGIN_VAR_UNSIGNED | ((opt) & PLUGIN_VAR_MASK), \
300
300
  #name, comment, check, update, &varname, def, min, max, blk }
301
301
 
302
 
#define MYSQL_SYSVAR_LONGLONG(name, varname, opt, comment, check, update, def, min, max, blk) \
303
 
DECLARE_MYSQL_SYSVAR_SIMPLE(name, int64_t) = { \
 
302
#define DRIZZLE_SYSVAR_LONGLONG(name, varname, opt, comment, check, update, def, min, max, blk) \
 
303
DECLARE_DRIZZLE_SYSVAR_SIMPLE(name, int64_t) = { \
304
304
  PLUGIN_VAR_LONGLONG | ((opt) & PLUGIN_VAR_MASK), \
305
305
  #name, comment, check, update, &varname, def, min, max, blk }
306
306
 
307
 
#define MYSQL_SYSVAR_ULONGLONG(name, varname, opt, comment, check, update, def, min, max, blk) \
308
 
DECLARE_MYSQL_SYSVAR_SIMPLE(name, uint64_t) = { \
 
307
#define DRIZZLE_SYSVAR_ULONGLONG(name, varname, opt, comment, check, update, def, min, max, blk) \
 
308
DECLARE_DRIZZLE_SYSVAR_SIMPLE(name, uint64_t) = { \
309
309
  PLUGIN_VAR_LONGLONG | PLUGIN_VAR_UNSIGNED | ((opt) & PLUGIN_VAR_MASK), \
310
310
  #name, comment, check, update, &varname, def, min, max, blk }
311
311
 
312
 
#define MYSQL_SYSVAR_ENUM(name, varname, opt, comment, check, update, def, typelib) \
313
 
DECLARE_MYSQL_SYSVAR_TYPELIB(name, unsigned long) = { \
 
312
#define DRIZZLE_SYSVAR_ENUM(name, varname, opt, comment, check, update, def, typelib) \
 
313
DECLARE_DRIZZLE_SYSVAR_TYPELIB(name, unsigned long) = { \
314
314
  PLUGIN_VAR_ENUM | ((opt) & PLUGIN_VAR_MASK), \
315
315
  #name, comment, check, update, &varname, def, typelib }
316
316
 
317
 
#define MYSQL_SYSVAR_SET(name, varname, opt, comment, check, update, def, typelib) \
318
 
DECLARE_MYSQL_SYSVAR_TYPELIB(name, uint64_t) = { \
 
317
#define DRIZZLE_SYSVAR_SET(name, varname, opt, comment, check, update, def, typelib) \
 
318
DECLARE_DRIZZLE_SYSVAR_TYPELIB(name, uint64_t) = { \
319
319
  PLUGIN_VAR_SET | ((opt) & PLUGIN_VAR_MASK), \
320
320
  #name, comment, check, update, &varname, def, typelib }
321
321
 
322
 
#define MYSQL_THDVAR_BOOL(name, opt, comment, check, update, def) \
323
 
DECLARE_MYSQL_THDVAR_BASIC(name, char) = { \
 
322
#define DRIZZLE_THDVAR_BOOL(name, opt, comment, check, update, def) \
 
323
DECLARE_DRIZZLE_THDVAR_BASIC(name, char) = { \
324
324
  PLUGIN_VAR_BOOL | PLUGIN_VAR_THDLOCAL | ((opt) & PLUGIN_VAR_MASK), \
325
325
  #name, comment, check, update, -1, def, NULL}
326
326
 
327
 
#define MYSQL_THDVAR_STR(name, opt, comment, check, update, def) \
328
 
DECLARE_MYSQL_THDVAR_BASIC(name, char *) = { \
 
327
#define DRIZZLE_THDVAR_STR(name, opt, comment, check, update, def) \
 
328
DECLARE_DRIZZLE_THDVAR_BASIC(name, char *) = { \
329
329
  PLUGIN_VAR_STR | PLUGIN_VAR_THDLOCAL | ((opt) & PLUGIN_VAR_MASK), \
330
330
  #name, comment, check, update, -1, def, NULL}
331
331
 
332
 
#define MYSQL_THDVAR_INT(name, opt, comment, check, update, def, min, max, blk) \
333
 
DECLARE_MYSQL_THDVAR_SIMPLE(name, int) = { \
 
332
#define DRIZZLE_THDVAR_INT(name, opt, comment, check, update, def, min, max, blk) \
 
333
DECLARE_DRIZZLE_THDVAR_SIMPLE(name, int) = { \
334
334
  PLUGIN_VAR_INT | PLUGIN_VAR_THDLOCAL | ((opt) & PLUGIN_VAR_MASK), \
335
335
  #name, comment, check, update, -1, def, min, max, blk, NULL }
336
336
 
337
 
#define MYSQL_THDVAR_UINT(name, opt, comment, check, update, def, min, max, blk) \
338
 
DECLARE_MYSQL_THDVAR_SIMPLE(name, unsigned int) = { \
 
337
#define DRIZZLE_THDVAR_UINT(name, opt, comment, check, update, def, min, max, blk) \
 
338
DECLARE_DRIZZLE_THDVAR_SIMPLE(name, unsigned int) = { \
339
339
  PLUGIN_VAR_INT | PLUGIN_VAR_THDLOCAL | PLUGIN_VAR_UNSIGNED | ((opt) & PLUGIN_VAR_MASK), \
340
340
  #name, comment, check, update, -1, def, min, max, blk, NULL }
341
341
 
342
 
#define MYSQL_THDVAR_LONG(name, opt, comment, check, update, def, min, max, blk) \
343
 
DECLARE_MYSQL_THDVAR_SIMPLE(name, long) = { \
 
342
#define DRIZZLE_THDVAR_LONG(name, opt, comment, check, update, def, min, max, blk) \
 
343
DECLARE_DRIZZLE_THDVAR_SIMPLE(name, long) = { \
344
344
  PLUGIN_VAR_LONG | PLUGIN_VAR_THDLOCAL | ((opt) & PLUGIN_VAR_MASK), \
345
345
  #name, comment, check, update, -1, def, min, max, blk, NULL }
346
346
 
347
 
#define MYSQL_THDVAR_ULONG(name, opt, comment, check, update, def, min, max, blk) \
348
 
DECLARE_MYSQL_THDVAR_SIMPLE(name, unsigned long) = { \
 
347
#define DRIZZLE_THDVAR_ULONG(name, opt, comment, check, update, def, min, max, blk) \
 
348
DECLARE_DRIZZLE_THDVAR_SIMPLE(name, unsigned long) = { \
349
349
  PLUGIN_VAR_LONG | PLUGIN_VAR_THDLOCAL | PLUGIN_VAR_UNSIGNED | ((opt) & PLUGIN_VAR_MASK), \
350
350
  #name, comment, check, update, -1, def, min, max, blk, NULL }
351
351
 
352
 
#define MYSQL_THDVAR_LONGLONG(name, opt, comment, check, update, def, min, max, blk) \
353
 
DECLARE_MYSQL_THDVAR_SIMPLE(name, int64_t) = { \
 
352
#define DRIZZLE_THDVAR_LONGLONG(name, opt, comment, check, update, def, min, max, blk) \
 
353
DECLARE_DRIZZLE_THDVAR_SIMPLE(name, int64_t) = { \
354
354
  PLUGIN_VAR_LONGLONG | PLUGIN_VAR_THDLOCAL | ((opt) & PLUGIN_VAR_MASK), \
355
355
  #name, comment, check, update, -1, def, min, max, blk, NULL }
356
356
 
357
 
#define MYSQL_THDVAR_ULONGLONG(name, opt, comment, check, update, def, min, max, blk) \
358
 
DECLARE_MYSQL_THDVAR_SIMPLE(name, uint64_t) = { \
 
357
#define DRIZZLE_THDVAR_ULONGLONG(name, opt, comment, check, update, def, min, max, blk) \
 
358
DECLARE_DRIZZLE_THDVAR_SIMPLE(name, uint64_t) = { \
359
359
  PLUGIN_VAR_LONGLONG | PLUGIN_VAR_THDLOCAL | PLUGIN_VAR_UNSIGNED | ((opt) & PLUGIN_VAR_MASK), \
360
360
  #name, comment, check, update, -1, def, min, max, blk, NULL }
361
361
 
362
 
#define MYSQL_THDVAR_ENUM(name, opt, comment, check, update, def, typelib) \
363
 
DECLARE_MYSQL_THDVAR_TYPELIB(name, unsigned long) = { \
 
362
#define DRIZZLE_THDVAR_ENUM(name, opt, comment, check, update, def, typelib) \
 
363
DECLARE_DRIZZLE_THDVAR_TYPELIB(name, unsigned long) = { \
364
364
  PLUGIN_VAR_ENUM | PLUGIN_VAR_THDLOCAL | ((opt) & PLUGIN_VAR_MASK), \
365
365
  #name, comment, check, update, -1, def, NULL, typelib }
366
366
 
367
 
#define MYSQL_THDVAR_SET(name, opt, comment, check, update, def, typelib) \
368
 
DECLARE_MYSQL_THDVAR_TYPELIB(name, uint64_t) = { \
 
367
#define DRIZZLE_THDVAR_SET(name, opt, comment, check, update, def, typelib) \
 
368
DECLARE_DRIZZLE_THDVAR_TYPELIB(name, uint64_t) = { \
369
369
  PLUGIN_VAR_SET | PLUGIN_VAR_THDLOCAL | ((opt) & PLUGIN_VAR_MASK), \
370
370
  #name, comment, check, update, -1, def, NULL, typelib }
371
371
 
372
372
/* accessor macros */
373
373
 
374
374
#define SYSVAR(name) \
375
 
  (*(MYSQL_SYSVAR_NAME(name).value))
 
375
  (*(DRIZZLE_SYSVAR_NAME(name).value))
376
376
 
377
377
/* when thd == null, result points to global value */
378
378
#define THDVAR(thd, name) \
379
 
  (*(MYSQL_SYSVAR_NAME(name).resolve(thd, MYSQL_SYSVAR_NAME(name).offset)))
 
379
  (*(DRIZZLE_SYSVAR_NAME(name).resolve(thd, DRIZZLE_SYSVAR_NAME(name).offset)))
380
380
 
381
381
 
382
382
/*
385
385
 
386
386
struct st_mysql_plugin
387
387
{
388
 
  int type;             /* the plugin type (a MYSQL_XXX_PLUGIN value)   */
 
388
  int type;             /* the plugin type (a DRIZZLE_XXX_PLUGIN value)   */
389
389
  const char *name;     /* plugin name (for SHOW PLUGINS)               */
390
390
  const char *version;  /* plugin version (for SHOW PLUGINS)            */
391
391
  const char *author;   /* plugin author (for SHOW PLUGINS)             */
411
411
  if you need it to persist.
412
412
*/
413
413
 
414
 
#define MYSQL_VALUE_TYPE_STRING 0
415
 
#define MYSQL_VALUE_TYPE_REAL   1
416
 
#define MYSQL_VALUE_TYPE_INT    2
 
414
#define DRIZZLE_VALUE_TYPE_STRING 0
 
415
#define DRIZZLE_VALUE_TYPE_REAL   1
 
416
#define DRIZZLE_VALUE_TYPE_INT    2
417
417
 
418
418
struct st_mysql_value
419
419
{
432
432
extern "C" {
433
433
#endif
434
434
 
435
 
int thd_in_lock_tables(const MYSQL_THD thd);
436
 
int thd_tablespace_op(const MYSQL_THD thd);
437
 
int64_t thd_test_options(const MYSQL_THD thd, int64_t test_options);
438
 
int thd_sql_command(const MYSQL_THD thd);
439
 
const char *thd_proc_info(MYSQL_THD thd, const char *info);
440
 
void **thd_ha_data(const MYSQL_THD thd, const struct handlerton *hton);
441
 
int thd_tx_isolation(const MYSQL_THD thd);
 
435
int thd_in_lock_tables(const DRIZZLE_THD thd);
 
436
int thd_tablespace_op(const DRIZZLE_THD thd);
 
437
int64_t thd_test_options(const DRIZZLE_THD thd, int64_t test_options);
 
438
int thd_sql_command(const DRIZZLE_THD thd);
 
439
const char *thd_proc_info(DRIZZLE_THD thd, const char *info);
 
440
void **thd_ha_data(const DRIZZLE_THD thd, const struct handlerton *hton);
 
441
int thd_tx_isolation(const DRIZZLE_THD thd);
442
442
/* Increments the row counter, see THD::row_count */
443
 
void thd_inc_row_count(MYSQL_THD thd);
 
443
void thd_inc_row_count(DRIZZLE_THD thd);
444
444
 
445
445
/**
446
446
  Create a temporary file.
470
470
  @retval 0  the connection is active
471
471
  @retval 1  the connection has been killed
472
472
*/
473
 
int thd_killed(const MYSQL_THD thd);
 
473
int thd_killed(const DRIZZLE_THD thd);
474
474
 
475
475
 
476
476
/**
479
479
  @param thd  user thread connection handle
480
480
  @return  thread id
481
481
*/
482
 
unsigned long thd_get_thread_id(const MYSQL_THD thd);
 
482
unsigned long thd_get_thread_id(const DRIZZLE_THD thd);
483
483
 
484
484
 
485
485
/**
494
494
 
495
495
  @see alloc_root()
496
496
*/
497
 
void *thd_alloc(MYSQL_THD thd, unsigned int size);
498
 
/**
499
 
  @see thd_alloc()
500
 
*/
501
 
void *thd_calloc(MYSQL_THD thd, unsigned int size);
502
 
/**
503
 
  @see thd_alloc()
504
 
*/
505
 
char *thd_strdup(MYSQL_THD thd, const char *str);
506
 
/**
507
 
  @see thd_alloc()
508
 
*/
509
 
char *thd_strmake(MYSQL_THD thd, const char *str, unsigned int size);
510
 
/**
511
 
  @see thd_alloc()
512
 
*/
513
 
void *thd_memdup(MYSQL_THD thd, const void* str, unsigned int size);
 
497
void *thd_alloc(DRIZZLE_THD thd, unsigned int size);
 
498
/**
 
499
  @see thd_alloc()
 
500
*/
 
501
void *thd_calloc(DRIZZLE_THD thd, unsigned int size);
 
502
/**
 
503
  @see thd_alloc()
 
504
*/
 
505
char *thd_strdup(DRIZZLE_THD thd, const char *str);
 
506
/**
 
507
  @see thd_alloc()
 
508
*/
 
509
char *thd_strmake(DRIZZLE_THD thd, const char *str, unsigned int size);
 
510
/**
 
511
  @see thd_alloc()
 
512
*/
 
513
void *thd_memdup(DRIZZLE_THD thd, const void* str, unsigned int size);
514
514
 
515
515
/**
516
516
  Create a LEX_STRING in this connection's local memory pool
525
525
 
526
526
  @see thd_alloc()
527
527
*/
528
 
MYSQL_LEX_STRING *thd_make_lex_string(MYSQL_THD thd, MYSQL_LEX_STRING *lex_str,
 
528
DRIZZLE_LEX_STRING *thd_make_lex_string(DRIZZLE_THD thd, DRIZZLE_LEX_STRING *lex_str,
529
529
                                      const char *str, unsigned int size,
530
530
                                      int allocate_lex_string);
531
531
 
535
535
  @param thd  user thread connection handle
536
536
  @param xid  location where identifier is stored
537
537
*/
538
 
void thd_get_xid(const MYSQL_THD thd, MYSQL_XID *xid);
 
538
void thd_get_xid(const DRIZZLE_THD thd, DRIZZLE_XID *xid);
539
539
 
540
540
/**
541
541
  Invalidate the query cache for a given table.
545
545
  @param key_length  length of key in bytes, including the NUL bytes
546
546
  @param using_trx   flag: TRUE if using transactions, FALSE otherwise
547
547
*/
548
 
void mysql_query_cache_invalidate4(MYSQL_THD thd,
 
548
void mysql_query_cache_invalidate4(DRIZZLE_THD thd,
549
549
                                   const char *key, unsigned int key_length,
550
550
                                   int using_trx);
551
551
 
559
559
*/
560
560
inline
561
561
void *
562
 
thd_get_ha_data(const MYSQL_THD thd, const struct handlerton *hton)
 
562
thd_get_ha_data(const DRIZZLE_THD thd, const struct handlerton *hton)
563
563
{
564
564
  return *thd_ha_data(thd, hton);
565
565
}
569
569
*/
570
570
inline
571
571
void
572
 
thd_set_ha_data(const MYSQL_THD thd, const struct handlerton *hton,
 
572
thd_set_ha_data(const DRIZZLE_THD thd, const struct handlerton *hton,
573
573
                const void *ha_data)
574
574
{
575
575
  *thd_ha_data(thd, hton)= (void*) ha_data;