~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/num.cc

pandora-build v0.100 - Fixes several bugs found by cb1kenobi. Add several thoughts from folks at LCA.

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/num.h>
 
24
#include <drizzled/error.h>
 
25
#include <drizzled/table.h>
 
26
#include <drizzled/session.h>
 
27
#include "drizzled/internal/my_sys.h"
 
28
 
 
29
/**
 
30
  Numeric fields base class constructor.
 
31
*/
 
32
Field_num::Field_num(unsigned char *ptr_arg,uint32_t len_arg, unsigned char *null_ptr_arg,
 
33
                     unsigned char null_bit_arg, utype unireg_check_arg,
 
34
                     const char *field_name_arg,
 
35
                     uint8_t dec_arg, bool zero_arg, bool unsigned_arg)
 
36
  :Field(ptr_arg, len_arg, null_ptr_arg, null_bit_arg,
 
37
         unireg_check_arg, field_name_arg),
 
38
  dec(dec_arg),decimal_precision(zero_arg), unsigned_flag(unsigned_arg)
 
39
{
 
40
}
 
41
 
 
42
 
 
43
/**
 
44
  Test if given number is a int.
 
45
 
 
46
  @todo
 
47
    Make this multi-byte-character safe
 
48
 
 
49
  @param str            String to test
 
50
  @param length        Length of 'str'
 
51
  @param int_end        Pointer to char after last used digit
 
52
  @param cs             Character set
 
53
 
 
54
  @note
 
55
    This is called after one has called strntoull10rnd() function.
 
56
 
 
57
  @retval
 
58
    0   OK
 
59
  @retval
 
60
    1   error: empty string or wrong integer.
 
61
  @retval
 
62
    2   error: garbage at the end of string.
 
63
*/
 
64
 
 
65
int Field_num::check_int(const CHARSET_INFO * const cs, const char *str, int length,
 
66
                         const char *int_end, int error)
 
67
{
 
68
  /* Test if we get an empty string or wrong integer */
 
69
  if (str == int_end || error == MY_ERRNO_EDOM)
 
70
  {
 
71
    char buff[128];
 
72
    String tmp(buff, (uint32_t) sizeof(buff), system_charset_info);
 
73
    tmp.copy(str, length, system_charset_info);
 
74
    push_warning_printf(table->in_use, DRIZZLE_ERROR::WARN_LEVEL_WARN,
 
75
                        ER_TRUNCATED_WRONG_VALUE_FOR_FIELD,
 
76
                        ER(ER_TRUNCATED_WRONG_VALUE_FOR_FIELD),
 
77
                        "integer", tmp.c_ptr(), field_name,
 
78
                        (uint32_t) table->in_use->row_count);
 
79
    return 1;
 
80
  }
 
81
  /* Test if we have garbage at the end of the given string. */
 
82
  if (test_if_important_data(cs, int_end, str + length))
 
83
  {
 
84
    set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN, ER_WARN_DATA_TRUNCATED, 1);
 
85
    return 2;
 
86
  }
 
87
  return 0;
 
88
}
 
89
 
 
90
/*
 
91
  Conver a string to an integer then check bounds.
 
92
 
 
93
  SYNOPSIS
 
94
    Field_num::get_int
 
95
    cs            Character set
 
96
    from          String to convert
 
97
    len           Length of the string
 
98
    rnd           OUT int64_t value
 
99
    unsigned_max  max unsigned value
 
100
    signed_min    min signed value
 
101
    signed_max    max signed value
 
102
 
 
103
  DESCRIPTION
 
104
    The function calls strntoull10rnd() to get an integer value then
 
105
    check bounds and errors returned. In case of any error a warning
 
106
    is raised.
 
107
 
 
108
  RETURN
 
109
    0   ok
 
110
    1   error
 
111
*/
 
112
 
 
113
bool Field_num::get_int(const CHARSET_INFO * const cs, const char *from, uint32_t len,
 
114
                        int64_t *rnd, uint64_t ,
 
115
                        int64_t signed_min, int64_t signed_max)
 
116
{
 
117
  char *end;
 
118
  int error;
 
119
 
 
120
  *rnd= (int64_t) cs->cset->strntoull10rnd(cs, from, len, false, &end, &error);
 
121
  if (*rnd < signed_min)
 
122
  {
 
123
    *rnd= signed_min;
 
124
    goto out_of_range;
 
125
  }
 
126
  else if (*rnd > signed_max)
 
127
  {
 
128
    *rnd= signed_max;
 
129
    goto out_of_range;
 
130
  }
 
131
 
 
132
  if (table->in_use->count_cuted_fields &&
 
133
      check_int(cs, from, len, end, error))
 
134
    return 1;
 
135
  return 0;
 
136
 
 
137
out_of_range:
 
138
  set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN, ER_WARN_DATA_OUT_OF_RANGE, 1);
 
139
  return 1;
 
140
}
 
141
 
 
142
/**
 
143
  Storing decimal in integer fields.
 
144
 
 
145
  @param val       value for storing
 
146
 
 
147
  @note
 
148
    This method is used by all integer fields, real/decimal redefine it
 
149
 
 
150
  @retval
 
151
    0     OK
 
152
  @retval
 
153
    !=0  error
 
154
*/
 
155
 
 
156
int Field_num::store_decimal(const my_decimal *val)
 
157
{
 
158
  int err= 0;
 
159
  int64_t i= convert_decimal2int64_t(val, false, &err);
 
160
  return test(err | store(i, false));
 
161
}
 
162
 
 
163
/**
 
164
  Return decimal value of integer field.
 
165
 
 
166
  @param decimal_value     buffer for storing decimal value
 
167
 
 
168
  @note
 
169
    This method is used by all integer fields, real/decimal redefine it.
 
170
    All int64_t values fit in our decimal buffer which cal store 8*9=72
 
171
    digits of integer number
 
172
 
 
173
  @return
 
174
    pointer to decimal buffer with value of field
 
175
*/
 
176
 
 
177
my_decimal* Field_num::val_decimal(my_decimal *decimal_value)
 
178
{
 
179
  assert(result_type() == INT_RESULT);
 
180
 
 
181
  int64_t nr= val_int();
 
182
  int2my_decimal(E_DEC_FATAL_ERROR, nr, false, decimal_value);
 
183
  return decimal_value;
 
184
}
 
185
 
 
186
 
 
187
void Field_num::make_field(SendField *field)
 
188
{
 
189
  Field::make_field(field);
 
190
  field->decimals= dec;
 
191
}
 
192
 
 
193
/**
 
194
  @return
 
195
  returns 1 if the fields are equally defined
 
196
*/
 
197
bool Field_num::eq_def(Field *field)
 
198
{
 
199
  if (!Field::eq_def(field))
 
200
    return 0;
 
201
  Field_num *from_num= (Field_num*) field;
 
202
 
 
203
  if (dec != from_num->dec)
 
204
    return 0;
 
205
  return 1;
 
206
}
 
207
 
 
208
uint32_t Field_num::is_equal(CreateField *new_field_ptr)
 
209
{
 
210
  return ((new_field_ptr->sql_type == real_type()) &&
 
211
          ((new_field_ptr->flags & UNSIGNED_FLAG) ==
 
212
           (uint32_t) (flags & UNSIGNED_FLAG)) &&
 
213
          ((new_field_ptr->flags & AUTO_INCREMENT_FLAG) ==
 
214
           (uint32_t) (flags & AUTO_INCREMENT_FLAG)) &&
 
215
          (new_field_ptr->length <= max_display_length()));
 
216
}
 
217
 
 
218