1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
*
* Copyright (C) 2008 Sun Microsystems, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <config.h>
#include <drizzled/error.h>
#include <drizzled/function/get_system_var.h>
#include <drizzled/session.h>
#include <drizzled/sys_var.h>
#include <drizzled/sql_lex.h>
namespace drizzled {
Item_func_get_system_var::Item_func_get_system_var(sys_var *var_arg, sql_var_t var_type_arg,
str_ref component_arg, const char *name_arg, size_t name_len_arg)
: var(var_arg), var_type(var_type_arg), component(component_arg)
{
/* set_name() will allocate the name */
set_name(name_arg, name_len_arg);
}
bool Item_func_get_system_var::fix_fields(Session *session, Item **ref)
{
/*
Evaluate the system variable and substitute the result (a basic constant)
instead of this item. If the variable can not be evaluated,
the error is reported in sys_var::item().
*/
Item *item= var->item(session, var_type);
if (not item)
return 1; // Impossible
item->set_name(name, 0); // don't allocate a new name
*ref= item;
return 0;
}
Item *get_system_var(Session *session, sql_var_t var_type, str_ref name, str_ref component)
{
str_ref *base_name, *component_name;
if (component.data())
{
base_name= &component;
component_name= &name;
}
else
{
base_name= &name;
component_name= &component; // Empty string
}
sys_var *var= find_sys_var(base_name->data());
if (not var)
return NULL;
if (component.data())
{
my_error(ER_VARIABLE_IS_NOT_STRUCT, MYF(0), base_name->data());
return NULL;
}
session->lex().setCacheable(false);
if (component_name->size() > MAX_SYS_VAR_LENGTH)
component_name->assign(component_name->data(), MAX_SYS_VAR_LENGTH);
return new Item_func_get_system_var(var, var_type, *component_name, NULL, 0);
}
} /* namespace drizzled */
|