~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/double.cc

Fixed sql_builtin.cc.in... stupid generated files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* - mode: c++ c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
4
 *  Copyright (C) 2008 MySQL
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
 
22
 
#include "config.h"
23
 
 
24
 
#include <float.h>
25
 
#include <math.h>
26
 
 
27
 
#include <algorithm>
 
21
#ifdef USE_PRAGMA_IMPLEMENTATION
 
22
#pragma implementation                          // gcc: Class implementation
 
23
#endif
28
24
 
29
25
#include <drizzled/field/double.h>
30
 
#include <drizzled/error.h>
31
 
#include <drizzled/table.h>
32
 
#include <drizzled/session.h>
33
 
#include "drizzled/internal/m_string.h"
34
 
 
35
 
using namespace std;
36
 
 
37
 
namespace drizzled
38
 
{
39
26
 
40
27
/****************************************************************************
41
28
  double precision floating point numbers
42
29
****************************************************************************/
43
30
 
44
 
int Field_double::store(const char *from,uint32_t len, const CHARSET_INFO * const cs)
 
31
int Field_double::store(const char *from,uint len,CHARSET_INFO *cs)
45
32
{
46
33
  int error;
47
34
  char *end;
48
35
  double nr= my_strntod(cs,(char*) from, len, &end, &error);
49
 
 
50
 
  ASSERT_COLUMN_MARKED_FOR_WRITE;
51
 
  if (error || (!len || (((uint32_t) (end-from) != len) && getTable()->in_use->count_cuted_fields)))
 
36
  if (error || (!len || (((uint) (end-from) != len) && table->in_use->count_cuted_fields)))
52
37
  {
53
 
    set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN,
54
 
                (error ? ER_WARN_DATA_OUT_OF_RANGE : ER_WARN_DATA_TRUNCATED), 1);
 
38
    set_warning(MYSQL_ERROR::WARN_LEVEL_WARN,
 
39
                (error ? ER_WARN_DATA_OUT_OF_RANGE : WARN_DATA_TRUNCATED), 1);
55
40
    error= error ? 1 : 2;
56
41
  }
57
42
  Field_double::store(nr);
63
48
{
64
49
  int error= truncate(&nr, DBL_MAX);
65
50
 
66
 
  ASSERT_COLUMN_MARKED_FOR_WRITE;
67
 
 
68
51
#ifdef WORDS_BIGENDIAN
69
 
  if (getTable()->getShare()->db_low_byte_first)
 
52
  if (table->s->db_low_byte_first)
70
53
  {
71
54
    float8store(ptr,nr);
72
55
  }
83
66
                             (double) nr);
84
67
}
85
68
 
 
69
/*
 
70
  If a field has fixed length, truncate the double argument pointed to by 'nr'
 
71
  appropriately.
 
72
  Also ensure that the argument is within [-max_value; max_value] range.
 
73
*/
 
74
 
 
75
int Field_real::truncate(double *nr, double max_value)
 
76
{
 
77
  int error= 1;
 
78
  double res= *nr;
 
79
  
 
80
  if (isnan(res))
 
81
  {
 
82
    res= 0;
 
83
    set_null();
 
84
    set_warning(MYSQL_ERROR::WARN_LEVEL_WARN, ER_WARN_DATA_OUT_OF_RANGE, 1);
 
85
    goto end;
 
86
  }
 
87
  else if (unsigned_flag && res < 0)
 
88
  {
 
89
    res= 0;
 
90
    set_warning(MYSQL_ERROR::WARN_LEVEL_WARN, ER_WARN_DATA_OUT_OF_RANGE, 1);
 
91
    goto end;
 
92
  }
 
93
 
 
94
  if (!not_fixed)
 
95
  {
 
96
    uint order= field_length - dec;
 
97
    uint step= array_elements(log_10) - 1;
 
98
    max_value= 1.0;
 
99
    for (; order > step; order-= step)
 
100
      max_value*= log_10[step];
 
101
    max_value*= log_10[order];
 
102
    max_value-= 1.0 / log_10[dec];
 
103
 
 
104
    /* Check for infinity so we don't get NaN in calculations */
 
105
    if (!my_isinf(res))
 
106
    {
 
107
      double tmp= rint((res - floor(res)) * log_10[dec]) / log_10[dec];
 
108
      res= floor(res) + tmp;
 
109
    }
 
110
  }
 
111
  
 
112
  if (res < -max_value)
 
113
  {
 
114
   res= -max_value;
 
115
   set_warning(MYSQL_ERROR::WARN_LEVEL_WARN, ER_WARN_DATA_OUT_OF_RANGE, 1);
 
116
  }
 
117
  else if (res > max_value)
 
118
  {
 
119
    res= max_value;
 
120
    set_warning(MYSQL_ERROR::WARN_LEVEL_WARN, ER_WARN_DATA_OUT_OF_RANGE, 1);
 
121
  }
 
122
  else
 
123
    error= 0;
 
124
 
 
125
end:
 
126
  *nr= res;
 
127
  return error;
 
128
}
 
129
 
 
130
 
 
131
int Field_real::store_decimal(const my_decimal *dm)
 
132
{
 
133
  double dbl;
 
134
  my_decimal2double(E_DEC_FATAL_ERROR, dm, &dbl);
 
135
  return store(dbl);
 
136
}
 
137
 
86
138
double Field_double::val_real(void)
87
139
{
88
140
  double j;
89
 
 
90
 
  ASSERT_COLUMN_MARKED_FOR_READ;
91
 
 
92
141
#ifdef WORDS_BIGENDIAN
93
 
  if (getTable()->getShare()->db_low_byte_first)
 
142
  if (table->s->db_low_byte_first)
94
143
  {
95
144
    float8get(j,ptr);
96
145
  }
104
153
{
105
154
  double j;
106
155
  int64_t res;
107
 
 
108
 
  ASSERT_COLUMN_MARKED_FOR_READ;
109
 
 
110
156
#ifdef WORDS_BIGENDIAN
111
 
  if (getTable()->getShare()->db_low_byte_first)
 
157
  if (table->s->db_low_byte_first)
112
158
  {
113
159
    float8get(j,ptr);
114
160
  }
131
177
warn:
132
178
  {
133
179
    char buf[DOUBLE_TO_STRING_CONVERSION_BUFFER_SIZE];
134
 
    String tmp(buf, sizeof(buf), &my_charset_utf8_general_ci), *str;
135
 
    str= val_str(&tmp, &tmp);
136
 
    Session *session= getTable() ? getTable()->in_use : current_session;
137
 
    push_warning_printf(session, DRIZZLE_ERROR::WARN_LEVEL_WARN,
 
180
    String tmp(buf, sizeof(buf), &my_charset_latin1), *str;
 
181
    str= val_str(&tmp, 0);
 
182
    push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
138
183
                        ER_TRUNCATED_WRONG_VALUE,
139
184
                        ER(ER_TRUNCATED_WRONG_VALUE), "INTEGER",
140
185
                        str->c_ptr());
143
188
}
144
189
 
145
190
 
 
191
my_decimal *Field_real::val_decimal(my_decimal *decimal_value)
 
192
{
 
193
  double2my_decimal(E_DEC_FATAL_ERROR, val_real(), decimal_value);
 
194
  return decimal_value;
 
195
}
 
196
 
 
197
 
146
198
String *Field_double::val_str(String *val_buffer,
147
 
                              String *)
 
199
                              String *val_ptr __attribute__((unused)))
148
200
{
149
201
  double nr;
150
 
 
151
 
  ASSERT_COLUMN_MARKED_FOR_READ;
152
 
 
153
202
#ifdef WORDS_BIGENDIAN
154
 
  if (getTable()->getShare()->db_low_byte_first)
 
203
  if (table->s->db_low_byte_first)
155
204
  {
156
205
    float8get(nr,ptr);
157
206
  }
159
208
#endif
160
209
    doubleget(nr,ptr);
161
210
 
162
 
  uint32_t to_length= max(field_length, (uint32_t)DOUBLE_TO_STRING_CONVERSION_BUFFER_SIZE);
 
211
  uint to_length=max(field_length, DOUBLE_TO_STRING_CONVERSION_BUFFER_SIZE);
163
212
  val_buffer->alloc(to_length);
164
213
  char *to=(char*) val_buffer->ptr();
165
214
  size_t len;
166
215
 
167
216
  if (dec >= NOT_FIXED_DEC)
168
 
    len= internal::my_gcvt(nr, internal::MY_GCVT_ARG_DOUBLE, to_length - 1, to, NULL);
 
217
    len= my_gcvt(nr, MY_GCVT_ARG_DOUBLE, to_length - 1, to, NULL);
169
218
  else
170
 
    len= internal::my_fcvt(nr, dec, to, NULL);
 
219
    len= my_fcvt(nr, dec, to, NULL);
171
220
 
172
 
  val_buffer->length((uint32_t) len);
 
221
  val_buffer->length((uint) len);
173
222
 
174
223
  return val_buffer;
175
224
}
176
225
 
177
 
int Field_double::cmp(const unsigned char *a_ptr, const unsigned char *b_ptr)
 
226
bool Field_double::send_binary(Protocol *protocol)
 
227
{
 
228
  return protocol->store((double) Field_double::val_real(), dec, (String*) 0);
 
229
}
 
230
 
 
231
 
 
232
int Field_double::cmp(const uchar *a_ptr, const uchar *b_ptr)
178
233
{
179
234
  double a,b;
180
235
#ifdef WORDS_BIGENDIAN
181
 
  if (getTable()->getShare()->db_low_byte_first)
 
236
  if (table->s->db_low_byte_first)
182
237
  {
183
238
    float8get(a,a_ptr);
184
239
    float8get(b,b_ptr);
193
248
}
194
249
 
195
250
 
 
251
#define DBL_EXP_DIG (sizeof(double)*8-DBL_MANT_DIG)
 
252
 
196
253
/* The following should work for IEEE */
197
254
 
198
 
void Field_double::sort_string(unsigned char *to,uint32_t )
 
255
void Field_double::sort_string(uchar *to,uint length __attribute__((unused)))
199
256
{
200
257
  double nr;
201
258
#ifdef WORDS_BIGENDIAN
202
 
  if (getTable()->getShare()->db_low_byte_first)
 
259
  if (table->s->db_low_byte_first)
203
260
  {
204
261
    float8get(nr,ptr);
205
262
  }
210
267
}
211
268
 
212
269
 
 
270
/**
 
271
   Save the field metadata for double fields.
 
272
 
 
273
   Saves the pack length in the first byte of the field metadata array
 
274
   at index of *metadata_ptr.
 
275
 
 
276
   @param   metadata_ptr   First byte of field metadata
 
277
 
 
278
   @returns number of bytes written to metadata_ptr
 
279
*/
 
280
int Field_double::do_save_field_metadata(uchar *metadata_ptr)
 
281
{
 
282
  *metadata_ptr= pack_length();
 
283
  return 1;
 
284
}
 
285
 
 
286
 
213
287
void Field_double::sql_type(String &res) const
214
288
{
215
 
  const CHARSET_INFO * const cs=res.charset();
 
289
  CHARSET_INFO *cs=res.charset();
216
290
  if (dec == NOT_FIXED_DEC)
217
291
  {
218
292
    res.set_ascii(STRING_WITH_LEN("double"));
222
296
    res.length(cs->cset->snprintf(cs,(char*) res.ptr(),res.alloced_length(),
223
297
                            "double(%d,%d)",(int) field_length,dec));
224
298
  }
 
299
  add_unsigned(res);
225
300
}
226
301
 
227
 
} /* namespace drizzled */