642.1.1
by Lee
move functions from item.cc/item.h to item directory |
1 |
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
2 |
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
|
|
3 |
*
|
|
1999.6.1
by kalebral at gmail
update Copyright strings to a more common format to help with creating the master debian copyright file |
4 |
* Copyright (C) 2008 Sun Microsystems, Inc.
|
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
5 |
*
|
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.
|
|
9 |
*
|
|
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.
|
|
14 |
*
|
|
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
|
|
18 |
*/
|
|
19 |
||
2173.2.1
by Monty Taylor
Fixes incorrect usage of include |
20 |
#include <config.h> |
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
21 |
#include <drizzled/show.h> |
22 |
#include <drizzled/table.h> |
|
23 |
#include <drizzled/item/ident.h> |
|
24 |
||
1502.3.1
by iwamatsu at nigauri
Add cstdio include to files needing it. Fixes the build on some debian |
25 |
#include <cstdio> |
26 |
||
820.3.25
by Padraig
Updated the fix for Bug#319796. |
27 |
using namespace std; |
28 |
||
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
29 |
namespace drizzled |
30 |
{
|
|
31 |
||
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
32 |
const uint32_t NO_CACHED_FIELD_INDEX= UINT32_MAX; |
33 |
||
34 |
Item_ident::Item_ident(Name_resolution_context *context_arg, |
|
35 |
const char *db_name_arg,const char *table_name_arg, |
|
36 |
const char *field_name_arg) |
|
37 |
:orig_db_name(db_name_arg), orig_table_name(table_name_arg), |
|
38 |
orig_field_name(field_name_arg), context(context_arg), |
|
39 |
db_name(db_name_arg), table_name(table_name_arg), |
|
40 |
field_name(field_name_arg), |
|
41 |
alias_name_used(false), cached_field_index(NO_CACHED_FIELD_INDEX), |
|
42 |
cached_table(0), depended_from(0) |
|
43 |
{
|
|
44 |
name = (char*) field_name_arg; |
|
45 |
}
|
|
46 |
||
47 |
/**
|
|
48 |
Constructor used by Item_field & Item_*_ref (see Item comment)
|
|
49 |
*/
|
|
50 |
||
51 |
Item_ident::Item_ident(Session *session, Item_ident *item) |
|
52 |
:Item(session, item), |
|
53 |
orig_db_name(item->orig_db_name), |
|
54 |
orig_table_name(item->orig_table_name), |
|
55 |
orig_field_name(item->orig_field_name), |
|
56 |
context(item->context), |
|
57 |
db_name(item->db_name), |
|
58 |
table_name(item->table_name), |
|
59 |
field_name(item->field_name), |
|
60 |
alias_name_used(item->alias_name_used), |
|
61 |
cached_field_index(item->cached_field_index), |
|
62 |
cached_table(item->cached_table), |
|
63 |
depended_from(item->depended_from) |
|
64 |
{}
|
|
65 |
||
66 |
void Item_ident::cleanup() |
|
67 |
{
|
|
68 |
Item::cleanup(); |
|
69 |
db_name= orig_db_name; |
|
70 |
table_name= orig_table_name; |
|
71 |
field_name= orig_field_name; |
|
72 |
depended_from= 0; |
|
73 |
return; |
|
74 |
}
|
|
75 |
||
76 |
bool Item_ident::remove_dependence_processor(unsigned char * arg) |
|
77 |
{
|
|
846
by Brian Aker
Removing on typedeffed class. |
78 |
if (depended_from == (Select_Lex *) arg) |
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
79 |
depended_from= 0; |
80 |
return(0); |
|
81 |
}
|
|
82 |
||
83 |
const char *Item_ident::full_name() const |
|
84 |
{
|
|
85 |
char *tmp; |
|
1366.1.1
by Siddharth Prakash Singh
sprintf --> snprintf: first commit |
86 |
size_t tmp_len; |
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
87 |
if (!table_name || !field_name) |
88 |
return field_name ? field_name : name ? name : "tmp_field"; |
|
89 |
if (db_name && db_name[0]) |
|
90 |
{
|
|
1366.1.4
by Siddharth Prakash Singh
code refactoring - exapanding tab and other code conventions |
91 |
tmp_len= strlen(db_name)+strlen(table_name)+strlen(field_name)+3; |
92 |
tmp= (char*) memory::sql_alloc(tmp_len); |
|
1366.1.1
by Siddharth Prakash Singh
sprintf --> snprintf: first commit |
93 |
snprintf(tmp, tmp_len, "%s.%s.%s",db_name,table_name,field_name); |
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
94 |
}
|
95 |
else
|
|
96 |
{
|
|
97 |
if (table_name[0]) |
|
98 |
{
|
|
1366.1.4
by Siddharth Prakash Singh
code refactoring - exapanding tab and other code conventions |
99 |
tmp_len=strlen(table_name)+strlen(field_name)+2; |
1366.1.1
by Siddharth Prakash Singh
sprintf --> snprintf: first commit |
100 |
tmp= (char*) memory::sql_alloc(tmp_len); |
101 |
snprintf(tmp, tmp_len, "%s.%s", table_name, field_name); |
|
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
102 |
}
|
103 |
else
|
|
104 |
tmp= (char*) field_name; |
|
105 |
}
|
|
106 |
return tmp; |
|
107 |
}
|
|
108 |
||
109 |
||
110 |
void Item_ident::print(String *str, |
|
111 |
enum_query_type) |
|
112 |
{
|
|
873.2.29
by Monty Taylor
Shortened a small chunk of code. |
113 |
string d_name, t_name; |
820.3.26
by Padraig
Added extra checks when creating strings. Need to make sure that the content |
114 |
|
873.2.29
by Monty Taylor
Shortened a small chunk of code. |
115 |
if (table_name && table_name[0]) |
116 |
{
|
|
117 |
t_name.assign(table_name); |
|
1039.1.5
by Brian Aker
Remove lower case filename bits (aka we just lock into the most compatible |
118 |
std::transform(t_name.begin(), t_name.end(), |
119 |
t_name.begin(), ::tolower); |
|
873.2.29
by Monty Taylor
Shortened a small chunk of code. |
120 |
}
|
121 |
||
122 |
if (db_name && db_name[0]) |
|
123 |
{
|
|
124 |
d_name.assign(db_name); |
|
1039.1.5
by Brian Aker
Remove lower case filename bits (aka we just lock into the most compatible |
125 |
// Keeping the std:: prefix here, since Item_ident has a transform
|
126 |
// method
|
|
873.2.29
by Monty Taylor
Shortened a small chunk of code. |
127 |
std::transform(d_name.begin(), d_name.end(), |
128 |
d_name.begin(), ::tolower); |
|
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
129 |
}
|
130 |
||
131 |
if (!table_name || !field_name || !field_name[0]) |
|
132 |
{
|
|
133 |
const char *nm= (field_name && field_name[0]) ? |
|
134 |
field_name : name ? name : "tmp_field"; |
|
895
by Brian Aker
Completion (?) of uint conversion. |
135 |
str->append_identifier(nm, (uint32_t) strlen(nm)); |
794
by Brian Aker
Refactor append_identifier and remove dead OPTION_QUOTE_SHOW_CREATE option |
136 |
|
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
137 |
return; |
138 |
}
|
|
139 |
if (db_name && db_name[0] && !alias_name_used) |
|
140 |
{
|
|
141 |
{
|
|
873.2.29
by Monty Taylor
Shortened a small chunk of code. |
142 |
str->append_identifier(d_name.c_str(), d_name.length()); |
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
143 |
str->append('.'); |
144 |
}
|
|
873.2.29
by Monty Taylor
Shortened a small chunk of code. |
145 |
str->append_identifier(t_name.c_str(), t_name.length()); |
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
146 |
str->append('.'); |
895
by Brian Aker
Completion (?) of uint conversion. |
147 |
str->append_identifier(field_name, (uint32_t)strlen(field_name)); |
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
148 |
}
|
149 |
else
|
|
150 |
{
|
|
151 |
if (table_name[0]) |
|
152 |
{
|
|
873.2.29
by Monty Taylor
Shortened a small chunk of code. |
153 |
str->append_identifier(t_name.c_str(), t_name.length()); |
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
154 |
str->append('.'); |
895
by Brian Aker
Completion (?) of uint conversion. |
155 |
str->append_identifier(field_name, (uint32_t) strlen(field_name)); |
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
156 |
}
|
157 |
else
|
|
895
by Brian Aker
Completion (?) of uint conversion. |
158 |
str->append_identifier(field_name, (uint32_t) strlen(field_name)); |
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
159 |
}
|
160 |
}
|
|
161 |
||
162 |
double Item_ident_for_show::val_real() |
|
163 |
{
|
|
164 |
return field->val_real(); |
|
165 |
}
|
|
166 |
||
167 |
||
168 |
int64_t Item_ident_for_show::val_int() |
|
169 |
{
|
|
170 |
return field->val_int(); |
|
171 |
}
|
|
172 |
||
173 |
||
174 |
String *Item_ident_for_show::val_str(String *str) |
|
175 |
{
|
|
1996.2.1
by Brian Aker
uuid type code. |
176 |
return field->val_str_internal(str); |
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
177 |
}
|
178 |
||
179 |
||
2030.1.4
by Brian Aker
Change my_decimal to Decimal |
180 |
type::Decimal *Item_ident_for_show::val_decimal(type::Decimal *dec) |
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
181 |
{
|
182 |
return field->val_decimal(dec); |
|
183 |
}
|
|
184 |
||
1052.2.4
by Nathan Williams
No actual code changes. Changed Send_field to SendField to be consistent with coding standards. |
185 |
void Item_ident_for_show::make_field(SendField *tmp_field) |
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
186 |
{
|
187 |
tmp_field->table_name= tmp_field->org_table_name= table_name; |
|
188 |
tmp_field->db_name= db_name; |
|
189 |
tmp_field->col_name= tmp_field->org_col_name= field->field_name; |
|
190 |
tmp_field->charsetnr= field->charset()->number; |
|
191 |
tmp_field->length=field->field_length; |
|
192 |
tmp_field->type=field->type(); |
|
1660.1.3
by Brian Aker
Encapsulate Table in field |
193 |
tmp_field->flags= field->getTable()->maybe_null ? |
642.1.1
by Lee
move functions from item.cc/item.h to item directory |
194 |
(field->flags & ~NOT_NULL_FLAG) : field->flags; |
195 |
tmp_field->decimals= field->decimals(); |
|
196 |
}
|
|
197 |
||
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
198 |
} /* namespace drizzled */ |