~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/istring.cc

move functions from item.cc/item.h to item directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2008 Sun Microsystems
 
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
 
 
20
#include <drizzled/server_includes.h>
 
21
#include CSTDINT_H
 
22
#include <drizzled/session.h>
 
23
#include <drizzled/error.h>
 
24
#include <drizzled/item/istring.h>
 
25
 
 
26
Item *Item_string::safe_charset_converter(const CHARSET_INFO * const tocs)
 
27
{
 
28
  Item_string *conv;
 
29
  uint32_t conv_errors;
 
30
  char *ptr;
 
31
  String tmp, cstr, *ostr= val_str(&tmp);
 
32
  cstr.copy(ostr->ptr(), ostr->length(), ostr->charset(), tocs, &conv_errors);
 
33
  if (conv_errors || !(conv= new Item_string(cstr.ptr(), cstr.length(),
 
34
                                             cstr.charset(),
 
35
                                             collation.derivation)))
 
36
  {
 
37
    /*
 
38
      Safe conversion is not possible (or EOM).
 
39
      We could not convert a string into the requested character set
 
40
      without data loss. The target charset does not cover all the
 
41
      characters from the string. Operation cannot be done correctly.
 
42
    */
 
43
    return NULL;
 
44
  }
 
45
  if (!(ptr= current_session->strmake(cstr.ptr(), cstr.length())))
 
46
    return NULL;
 
47
  conv->str_value.set(ptr, cstr.length(), cstr.charset());
 
48
  /* Ensure that no one is going to change the result string */
 
49
  conv->str_value.mark_as_const();
 
50
  return conv;
 
51
}
 
52
 
 
53
 
 
54
Item *Item_static_string_func::safe_charset_converter(const CHARSET_INFO * const tocs)
 
55
{
 
56
  Item_string *conv;
 
57
  uint32_t conv_errors;
 
58
  String tmp, cstr, *ostr= val_str(&tmp);
 
59
  cstr.copy(ostr->ptr(), ostr->length(), ostr->charset(), tocs, &conv_errors);
 
60
  if (conv_errors ||
 
61
      !(conv= new Item_static_string_func(func_name,
 
62
                                          cstr.ptr(), cstr.length(),
 
63
                                          cstr.charset(),
 
64
                                          collation.derivation)))
 
65
  {
 
66
    /*
 
67
      Safe conversion is not possible (or EOM).
 
68
      We could not convert a string into the requested character set
 
69
      without data loss. The target charset does not cover all the
 
70
      characters from the string. Operation cannot be done correctly.
 
71
    */
 
72
    return NULL;
 
73
  }
 
74
  conv->str_value.copy();
 
75
  /* Ensure that no one is going to change the result string */
 
76
  conv->str_value.mark_as_const();
 
77
  return conv;
 
78
}
 
79
 
 
80
 
 
81
bool Item_string::eq(const Item *item, bool binary_cmp) const
 
82
{
 
83
  if (type() == item->type() && item->basic_const_item())
 
84
  {
 
85
    if (binary_cmp)
 
86
      return !stringcmp(&str_value, &item->str_value);
 
87
    return (collation.collation == item->collation.collation &&
 
88
            !sortcmp(&str_value, &item->str_value, collation.collation));
 
89
  }
 
90
  return 0;
 
91
}
 
92
 
 
93
void Item_string::print(String *str, enum_query_type query_type)
 
94
{
 
95
  if (query_type == QT_ORDINARY && is_cs_specified())
 
96
  {
 
97
    str->append('_');
 
98
    str->append(collation.collation->csname);
 
99
  }
 
100
 
 
101
  str->append('\'');
 
102
 
 
103
  if (query_type == QT_ORDINARY ||
 
104
      my_charset_same(str_value.charset(), system_charset_info))
 
105
  {
 
106
    str_value.print(str);
 
107
  }
 
108
  else
 
109
  {
 
110
    Session *session= current_session;
 
111
    LEX_STRING utf8_lex_str;
 
112
 
 
113
    session->convert_string(&utf8_lex_str,
 
114
                        system_charset_info,
 
115
                        str_value.c_ptr_safe(),
 
116
                        str_value.length(),
 
117
                        str_value.charset());
 
118
 
 
119
    String utf8_str(utf8_lex_str.str,
 
120
                    utf8_lex_str.length,
 
121
                    system_charset_info);
 
122
 
 
123
    utf8_str.print(str);
 
124
  }
 
125
 
 
126
  str->append('\'');
 
127
}
 
128
 
 
129
double Item_string::val_real()
 
130
{
 
131
  assert(fixed == 1);
 
132
  int error;
 
133
  char *end, *org_end;
 
134
  double tmp;
 
135
  const CHARSET_INFO * const cs= str_value.charset();
 
136
 
 
137
  org_end= (char*) str_value.ptr() + str_value.length();
 
138
  tmp= my_strntod(cs, (char*) str_value.ptr(), str_value.length(), &end,
 
139
                  &error);
 
140
  if (error || (end != org_end && !check_if_only_end_space(cs, end, org_end)))
 
141
  {
 
142
    /*
 
143
      We can use str_value.ptr() here as Item_string is gurantee to put an
 
144
      end \0 here.
 
145
    */
 
146
    push_warning_printf(current_session, DRIZZLE_ERROR::WARN_LEVEL_WARN,
 
147
                        ER_TRUNCATED_WRONG_VALUE,
 
148
                        ER(ER_TRUNCATED_WRONG_VALUE), "DOUBLE",
 
149
                        str_value.ptr());
 
150
  }
 
151
  return tmp;
 
152
}
 
153
 
 
154
/**
 
155
  @todo
 
156
  Give error if we wanted a signed integer and we got an unsigned one
 
157
*/
 
158
int64_t Item_string::val_int()
 
159
{
 
160
  assert(fixed == 1);
 
161
  int err;
 
162
  int64_t tmp;
 
163
  char *end= (char*) str_value.ptr()+ str_value.length();
 
164
  char *org_end= end;
 
165
  const CHARSET_INFO * const cs= str_value.charset();
 
166
 
 
167
  tmp= (*(cs->cset->strtoll10))(cs, str_value.ptr(), &end, &err);
 
168
  /*
 
169
    TODO: Give error if we wanted a signed integer and we got an unsigned
 
170
    one
 
171
  */
 
172
  if (err > 0 ||
 
173
      (end != org_end && !check_if_only_end_space(cs, end, org_end)))
 
174
  {
 
175
    push_warning_printf(current_session, DRIZZLE_ERROR::WARN_LEVEL_WARN,
 
176
                        ER_TRUNCATED_WRONG_VALUE,
 
177
                        ER(ER_TRUNCATED_WRONG_VALUE), "INTEGER",
 
178
                        str_value.ptr());
 
179
  }
 
180
  return tmp;
 
181
}
 
182
 
 
183
my_decimal *Item_string::val_decimal(my_decimal *decimal_value)
 
184
{
 
185
  return val_decimal_from_string(decimal_value);
 
186
}
 
187
 
 
188
int Item_string::save_in_field(Field *field, bool)
 
189
{
 
190
  String *result;
 
191
  result=val_str(&str_value);
 
192
  return save_str_value_in_field(field, result);
 
193
}
 
194
 
 
195
 
 
196