~xnox/ubuntu/saucy/drizzle/merge

« back to all changes in this revision

Viewing changes to .pc/debian-changes-2010.12.06-0ubuntu4/drizzled/field/str.cc

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2011-01-01 13:55:03 UTC
  • Revision ID: james.westby@ubuntu.com-20110101135503-x2ub1akxoisgwi6z
Tags: 2010.12.06-0ubuntu4
* Fixed missing build depends.
* Added Lee to uploaders.

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 MySQL
 
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; either version 2 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU General Public License
 
17
 *  along with this program; if not, write to the Free Software
 
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 */
 
20
 
 
21
 
 
22
#include "config.h"
 
23
#include <drizzled/field/str.h>
 
24
#include <drizzled/error.h>
 
25
#include <drizzled/table.h>
 
26
#include <drizzled/session.h>
 
27
#include "drizzled/internal/m_string.h"
 
28
 
 
29
namespace drizzled
 
30
{
 
31
 
 
32
namespace internal
 
33
{
 
34
extern char _dig_vec_upper[];
 
35
}
 
36
 
 
37
Field_str::Field_str(unsigned char *ptr_arg,
 
38
                     uint32_t len_arg,
 
39
                     unsigned char *null_ptr_arg,
 
40
                     unsigned char null_bit_arg,
 
41
                     const char *field_name_arg,
 
42
                     const CHARSET_INFO * const charset_arg)
 
43
  :Field(ptr_arg, len_arg,
 
44
         null_ptr_arg,
 
45
         null_bit_arg,
 
46
         Field::NONE,
 
47
         field_name_arg)
 
48
{
 
49
  field_charset= charset_arg;
 
50
  if (charset_arg->state & MY_CS_BINSORT)
 
51
    flags|= BINARY_FLAG;
 
52
  field_derivation= DERIVATION_IMPLICIT;
 
53
}
 
54
 
 
55
/*
 
56
  Check if we lost any important data and send a truncation error/warning
 
57
 
 
58
  SYNOPSIS
 
59
    Field_str::report_if_important_data()
 
60
    ptr                      - Truncated rest of string
 
61
    end                      - End of truncated string
 
62
 
 
63
  RETURN VALUES
 
64
    0   - None was truncated (or we don't count cut fields)
 
65
    2   - Some bytes was truncated
 
66
 
 
67
  NOTE
 
68
    Check if we lost any important data (anything in a binary string,
 
69
    or any non-space in others). If only trailing spaces was lost,
 
70
    send a truncation note, otherwise send a truncation error.
 
71
*/
 
72
 
 
73
int
 
74
Field_str::report_if_important_data(const char *field_ptr, const char *end)
 
75
{
 
76
  if ((field_ptr < end) && getTable()->in_use->count_cuted_fields)
 
77
  {
 
78
    set_warning(DRIZZLE_ERROR::WARN_LEVEL_ERROR, ER_DATA_TOO_LONG, 1);
 
79
 
 
80
    return 2;
 
81
  }
 
82
  return 0;
 
83
}
 
84
 
 
85
/**
 
86
  Decimal representation of Field_str.
 
87
 
 
88
  @param d         value for storing
 
89
 
 
90
  @note
 
91
    Field_str is the base class for fields like Field_enum,
 
92
    Field_date and some similar. Some dates use fraction and also
 
93
    string value should be converted to floating point value according
 
94
    our rules, so we use double to store value of decimal in string.
 
95
 
 
96
  @todo
 
97
    use decimal2string?
 
98
 
 
99
  @retval
 
100
    0     OK
 
101
  @retval
 
102
    !=0  error
 
103
*/
 
104
 
 
105
int Field_str::store_decimal(const my_decimal *d)
 
106
{
 
107
  char buff[DECIMAL_MAX_STR_LENGTH+1];
 
108
  String str(buff, sizeof(buff), &my_charset_bin);
 
109
  my_decimal2string(E_DEC_FATAL_ERROR, d, 0, 0, 0, &str);
 
110
  return store(str.ptr(), str.length(), str.charset());
 
111
}
 
112
 
 
113
my_decimal *Field_str::val_decimal(my_decimal *decimal_value)
 
114
{
 
115
  int64_t nr= val_int();
 
116
  int2my_decimal(E_DEC_FATAL_ERROR, nr, 0, decimal_value);
 
117
  return decimal_value;
 
118
}
 
119
 
 
120
/**
 
121
  Store double value in Field_varstring.
 
122
 
 
123
  Pretty prints double number into field_length characters buffer.
 
124
 
 
125
  @param nr            number
 
126
*/
 
127
 
 
128
int Field_str::store(double nr)
 
129
{
 
130
  char buff[DOUBLE_TO_STRING_CONVERSION_BUFFER_SIZE];
 
131
  uint32_t local_char_length= field_length / charset()->mbmaxlen;
 
132
  size_t length;
 
133
  bool error;
 
134
 
 
135
  ASSERT_COLUMN_MARKED_FOR_WRITE;
 
136
 
 
137
  length= internal::my_gcvt(nr, internal::MY_GCVT_ARG_DOUBLE, local_char_length, buff, &error);
 
138
  if (error)
 
139
  {
 
140
    if (getTable()->in_use->abort_on_warning)
 
141
      set_warning(DRIZZLE_ERROR::WARN_LEVEL_ERROR, ER_DATA_TOO_LONG, 1);
 
142
    else
 
143
      set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN, ER_WARN_DATA_TRUNCATED, 1);
 
144
  }
 
145
  return store(buff, length, charset());
 
146
}
 
147
 
 
148
 
 
149
bool check_string_copy_error(Field_str *field,
 
150
                             const char *well_formed_error_pos,
 
151
                             const char *cannot_convert_error_pos,
 
152
                             const char *end,
 
153
                             const CHARSET_INFO * const cs)
 
154
{
 
155
  const char *pos, *end_orig;
 
156
  char tmp[64], *t;
 
157
 
 
158
  if (!(pos= well_formed_error_pos) &&
 
159
      !(pos= cannot_convert_error_pos))
 
160
    return false;
 
161
 
 
162
  end_orig= end;
 
163
  set_if_smaller(end, pos + 6);
 
164
 
 
165
  for (t= tmp; pos < end; pos++)
 
166
  {
 
167
    /*
 
168
      If the source string is ASCII compatible (mbminlen==1)
 
169
      and the source character is in ASCII printable range (0x20..0x7F),
 
170
      then display the character as is.
 
171
 
 
172
      Otherwise, if the source string is not ASCII compatible (e.g. UCS2),
 
173
      or the source character is not in the printable range,
 
174
      then print the character using HEX notation.
 
175
    */
 
176
    if (((unsigned char) *pos) >= 0x20 &&
 
177
        ((unsigned char) *pos) <= 0x7F &&
 
178
        cs->mbminlen == 1)
 
179
    {
 
180
      *t++= *pos;
 
181
    }
 
182
    else
 
183
    {
 
184
      *t++= '\\';
 
185
      *t++= 'x';
 
186
      *t++= internal::_dig_vec_upper[((unsigned char) *pos) >> 4];
 
187
      *t++= internal::_dig_vec_upper[((unsigned char) *pos) & 15];
 
188
    }
 
189
  }
 
190
  if (end_orig > end)
 
191
  {
 
192
    *t++= '.';
 
193
    *t++= '.';
 
194
    *t++= '.';
 
195
  }
 
196
  *t= '\0';
 
197
  push_warning_printf(field->getTable()->in_use,
 
198
                      field->getTable()->in_use->abort_on_warning ?
 
199
                      DRIZZLE_ERROR::WARN_LEVEL_ERROR :
 
200
                      DRIZZLE_ERROR::WARN_LEVEL_WARN,
 
201
                      ER_TRUNCATED_WRONG_VALUE_FOR_FIELD,
 
202
                      ER(ER_TRUNCATED_WRONG_VALUE_FOR_FIELD),
 
203
                      "string", tmp, field->field_name,
 
204
                      (uint32_t) field->getTable()->in_use->row_count);
 
205
  return true;
 
206
}
 
207
 
 
208
uint32_t Field_str::max_data_length() const
 
209
{
 
210
  return field_length + (field_length > 255 ? 2 : 1);
 
211
}
 
212
 
 
213
} /* namespace drizzled */