1
/*****************************************************************************
3
Copyright (c) 1997, 2009, Innobase Oy. All Rights Reserved.
5
This program is free software; you can redistribute it and/or modify it under
6
the terms of the GNU General Public License as published by the Free Software
7
Foundation; version 2 of the License.
9
This program is distributed in the hope that it will be useful, but WITHOUT
10
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
You should have received a copy of the GNU General Public License along with
14
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15
Place, Suite 330, Boston, MA 02111-1307 USA
17
*****************************************************************************/
19
/**************************************************//**
21
SQL parser symbol table
23
Created 12/15/1997 Heikki Tuuri
24
*******************************************************/
29
#include "pars0sym.ic"
33
#include "data0type.h"
34
#include "data0data.h"
37
# include "pars0grm.h"
39
#include "pars0pars.h"
41
#include "eval0eval.h"
44
/******************************************************************//**
45
Creates a symbol table for a single stored procedure or query.
46
@return own: symbol table */
51
mem_heap_t* heap) /*!< in: memory heap where to create */
55
sym_tab = mem_heap_alloc(heap, sizeof(sym_tab_t));
57
UT_LIST_INIT(sym_tab->sym_list);
58
UT_LIST_INIT(sym_tab->func_node_list);
65
/******************************************************************//**
66
Frees the memory allocated dynamically AFTER parsing phase for variables
67
etc. in the symbol table. Does not free the mem heap where the table was
68
originally created. Frees also SQL explicit cursor definitions. */
73
sym_tab_t* sym_tab) /*!< in, own: symbol table */
78
sym = UT_LIST_GET_FIRST(sym_tab->sym_list);
81
eval_node_free_val_buf(sym);
83
if (sym->prefetch_buf) {
84
sel_col_prefetch_buf_free(sym->prefetch_buf);
87
if (sym->cursor_def) {
88
que_graph_free_recursive(sym->cursor_def);
91
sym = UT_LIST_GET_NEXT(sym_list, sym);
94
func = UT_LIST_GET_FIRST(sym_tab->func_node_list);
97
eval_node_free_val_buf(func);
99
func = UT_LIST_GET_NEXT(func_node_list, func);
103
/******************************************************************//**
104
Adds an integer literal to a symbol table.
105
@return symbol table node */
110
sym_tab_t* sym_tab, /*!< in: symbol table */
111
ulint val) /*!< in: integer value */
116
node = mem_heap_alloc(sym_tab->heap, sizeof(sym_node_t));
118
node->common.type = QUE_NODE_SYMBOL;
120
node->resolved = TRUE;
121
node->token_type = SYM_LIT;
123
node->indirection = NULL;
125
dtype_set(dfield_get_type(&node->common.val), DATA_INT, 0, 4);
127
data = mem_heap_alloc(sym_tab->heap, 4);
128
mach_write_to_4(data, val);
130
dfield_set_data(&(node->common.val), data, 4);
132
node->common.val_buf_size = 0;
133
node->prefetch_buf = NULL;
134
node->cursor_def = NULL;
136
UT_LIST_ADD_LAST(sym_list, sym_tab->sym_list, node);
138
node->sym_table = sym_tab;
143
/******************************************************************//**
144
Adds a string literal to a symbol table.
145
@return symbol table node */
150
sym_tab_t* sym_tab, /*!< in: symbol table */
151
byte* str, /*!< in: string with no quotes around
153
ulint len) /*!< in: string length */
158
node = mem_heap_alloc(sym_tab->heap, sizeof(sym_node_t));
160
node->common.type = QUE_NODE_SYMBOL;
162
node->resolved = TRUE;
163
node->token_type = SYM_LIT;
165
node->indirection = NULL;
167
dtype_set(dfield_get_type(&node->common.val),
168
DATA_VARCHAR, DATA_ENGLISH, 0);
171
data = mem_heap_alloc(sym_tab->heap, len);
172
ut_memcpy(data, str, len);
177
dfield_set_data(&(node->common.val), data, len);
179
node->common.val_buf_size = 0;
180
node->prefetch_buf = NULL;
181
node->cursor_def = NULL;
183
UT_LIST_ADD_LAST(sym_list, sym_tab->sym_list, node);
185
node->sym_table = sym_tab;
190
/******************************************************************//**
191
Add a bound literal to a symbol table.
192
@return symbol table node */
195
sym_tab_add_bound_lit(
196
/*==================*/
197
sym_tab_t* sym_tab, /*!< in: symbol table */
198
const char* name, /*!< in: name of bound literal */
199
ulint* lit_type) /*!< out: type of literal (PARS_*_LIT) */
202
pars_bound_lit_t* blit;
205
blit = pars_info_get_bound_lit(sym_tab->info, name);
208
node = mem_heap_alloc(sym_tab->heap, sizeof(sym_node_t));
210
node->common.type = QUE_NODE_SYMBOL;
212
node->resolved = TRUE;
213
node->token_type = SYM_LIT;
215
node->indirection = NULL;
217
switch (blit->type) {
220
*lit_type = PARS_FIXBINARY_LIT;
224
*lit_type = PARS_BLOB_LIT;
228
*lit_type = PARS_STR_LIT;
232
ut_a(blit->length > 0);
235
*lit_type = PARS_STR_LIT;
239
ut_a(blit->length > 0);
240
ut_a(blit->length <= 8);
243
*lit_type = PARS_INT_LIT;
250
dtype_set(dfield_get_type(&node->common.val),
251
blit->type, blit->prtype, len);
253
dfield_set_data(&(node->common.val), blit->address, blit->length);
255
node->common.val_buf_size = 0;
256
node->prefetch_buf = NULL;
257
node->cursor_def = NULL;
259
UT_LIST_ADD_LAST(sym_list, sym_tab->sym_list, node);
261
node->sym_table = sym_tab;
266
/******************************************************************//**
267
Adds an SQL null literal to a symbol table.
268
@return symbol table node */
271
sym_tab_add_null_lit(
272
/*=================*/
273
sym_tab_t* sym_tab) /*!< in: symbol table */
277
node = mem_heap_alloc(sym_tab->heap, sizeof(sym_node_t));
279
node->common.type = QUE_NODE_SYMBOL;
281
node->resolved = TRUE;
282
node->token_type = SYM_LIT;
284
node->indirection = NULL;
286
dfield_get_type(&node->common.val)->mtype = DATA_ERROR;
288
dfield_set_null(&node->common.val);
290
node->common.val_buf_size = 0;
291
node->prefetch_buf = NULL;
292
node->cursor_def = NULL;
294
UT_LIST_ADD_LAST(sym_list, sym_tab->sym_list, node);
296
node->sym_table = sym_tab;
301
/******************************************************************//**
302
Adds an identifier to a symbol table.
303
@return symbol table node */
308
sym_tab_t* sym_tab, /*!< in: symbol table */
309
byte* name, /*!< in: identifier name */
310
ulint len) /*!< in: identifier length */
314
node = mem_heap_alloc(sym_tab->heap, sizeof(sym_node_t));
316
node->common.type = QUE_NODE_SYMBOL;
318
node->resolved = FALSE;
319
node->indirection = NULL;
321
node->name = mem_heap_strdupl(sym_tab->heap, (char*) name, len);
322
node->name_len = len;
324
UT_LIST_ADD_LAST(sym_list, sym_tab->sym_list, node);
326
dfield_set_null(&node->common.val);
328
node->common.val_buf_size = 0;
329
node->prefetch_buf = NULL;
330
node->cursor_def = NULL;
332
node->sym_table = sym_tab;
337
/******************************************************************//**
338
Add a bound identifier to a symbol table.
339
@return symbol table node */
342
sym_tab_add_bound_id(
344
sym_tab_t* sym_tab, /*!< in: symbol table */
345
const char* name) /*!< in: name of bound id */
348
pars_bound_id_t* bid;
350
bid = pars_info_get_bound_id(sym_tab->info, name);
353
node = mem_heap_alloc(sym_tab->heap, sizeof(sym_node_t));
355
node->common.type = QUE_NODE_SYMBOL;
357
node->resolved = FALSE;
358
node->indirection = NULL;
360
node->name = mem_heap_strdup(sym_tab->heap, bid->id);
361
node->name_len = strlen(node->name);
363
UT_LIST_ADD_LAST(sym_list, sym_tab->sym_list, node);
365
dfield_set_null(&node->common.val);
367
node->common.val_buf_size = 0;
368
node->prefetch_buf = NULL;
369
node->cursor_def = NULL;
371
node->sym_table = sym_tab;