~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/timestamp.cc

  • Committer: Andrew Hutchings
  • Date: 2010-10-20 15:31:27 UTC
  • mto: This revision was merged to the branch mainline in revision 1907.
  • Revision ID: andrew@linuxjedi.co.uk-20101020153127-w9djuz9omzezg2kz
Add error message for global sort buffer constraint

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++ c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
20
20
 
21
21
#include "config.h"
22
22
#include <boost/lexical_cast.hpp>
23
 
#include <drizzled/field/epoch.h>
 
23
#include <drizzled/field/timestamp.h>
24
24
#include <drizzled/error.h>
25
25
#include <drizzled/tztime.h>
26
26
#include <drizzled/table.h>
35
35
namespace drizzled
36
36
{
37
37
 
38
 
namespace field
39
 
{
40
 
 
41
38
/**
42
39
  TIMESTAMP type holds datetime values in range from 1970-01-01 00:00:01 UTC to
43
40
  2038-01-01 00:00:00 UTC stored as number of seconds since Unix
81
78
  course is non-standard.) In most cases user won't notice any change, only
82
79
  exception is different behavior of old/new timestamps during ALTER TABLE.
83
80
 */
84
 
  Epoch::Epoch(unsigned char *ptr_arg,
85
 
               unsigned char *null_ptr_arg,
86
 
               unsigned char null_bit_arg,
87
 
               enum utype unireg_check_arg,
88
 
               const char *field_name_arg,
89
 
               drizzled::TableShare *share) :
90
 
  Field_str(ptr_arg,
91
 
            MicroTimestamp::MAX_STRING_LENGTH - 1, /* no \0 */
92
 
            null_ptr_arg,
93
 
            null_bit_arg,
94
 
            field_name_arg,
95
 
            &my_charset_bin)
 
81
Field_timestamp::Field_timestamp(unsigned char *ptr_arg,
 
82
                                 uint32_t,
 
83
                                 unsigned char *null_ptr_arg,
 
84
                                 unsigned char null_bit_arg,
 
85
                                 enum utype unireg_check_arg,
 
86
                                 const char *field_name_arg,
 
87
                                 TableShare *share,
 
88
                                 const CHARSET_INFO * const cs)
 
89
  :Field_str(ptr_arg,
 
90
             DateTime::MAX_STRING_LENGTH - 1 /* no \0 */,
 
91
             null_ptr_arg,
 
92
             null_bit_arg,
 
93
             field_name_arg,
 
94
             cs)
96
95
{
 
96
  /* For 4.0 MYD and 4.0 InnoDB compatibility */
 
97
  flags|= UNSIGNED_FLAG;
97
98
  unireg_check= unireg_check_arg;
98
99
  if (! share->getTimestampField() && unireg_check != NONE)
99
100
  {
100
101
    /* This timestamp has auto-update */
101
102
    share->setTimestampField(this);
102
 
    flags|= FUNCTION_DEFAULT_FLAG;
 
103
    flags|= TIMESTAMP_FLAG;
103
104
    if (unireg_check != TIMESTAMP_DN_FIELD)
104
105
      flags|= ON_UPDATE_NOW_FLAG;
105
106
  }
106
107
}
107
108
 
108
 
Epoch::Epoch(bool maybe_null_arg,
109
 
             const char *field_name_arg) :
110
 
  Field_str((unsigned char*) NULL,
111
 
            MicroTimestamp::MAX_STRING_LENGTH - 1, /* no \0 */
112
 
            maybe_null_arg ? (unsigned char*) "": 0,
113
 
            0,
114
 
            field_name_arg,
115
 
            &my_charset_bin)
 
109
Field_timestamp::Field_timestamp(bool maybe_null_arg,
 
110
                                 const char *field_name_arg,
 
111
                                 const CHARSET_INFO * const cs)
 
112
  :Field_str((unsigned char*) NULL,
 
113
             DateTime::MAX_STRING_LENGTH - 1 /* no \0 */,
 
114
             maybe_null_arg ? (unsigned char*) "": 0,
 
115
             0,
 
116
             field_name_arg,
 
117
             cs)
116
118
{
 
119
  /* For 4.0 MYD and 4.0 InnoDB compatibility */
 
120
  flags|= UNSIGNED_FLAG;
117
121
  if (unireg_check != TIMESTAMP_DN_FIELD)
118
122
    flags|= ON_UPDATE_NOW_FLAG;
119
123
}
124
128
  Returns value indicating during which operations this TIMESTAMP field
125
129
  should be auto-set to current timestamp.
126
130
*/
127
 
timestamp_auto_set_type Epoch::get_auto_set_type() const
 
131
timestamp_auto_set_type Field_timestamp::get_auto_set_type() const
128
132
{
129
133
  switch (unireg_check)
130
134
  {
152
156
  }
153
157
}
154
158
 
155
 
int Epoch::store(const char *from,
156
 
                 uint32_t len,
157
 
                 const CHARSET_INFO * const )
 
159
int Field_timestamp::store(const char *from,
 
160
                           uint32_t len,
 
161
                           const CHARSET_INFO * const )
158
162
{
159
163
  Timestamp temporal;
160
164
 
161
165
  ASSERT_COLUMN_MARKED_FOR_WRITE;
162
166
 
163
 
  if (not temporal.from_string(from, (size_t) len))
 
167
  if (! temporal.from_string(from, (size_t) len))
164
168
  {
165
 
    my_error(ER_INVALID_TIMESTAMP_VALUE, MYF(ME_FATALERROR), from);
 
169
    my_error(ER_INVALID_UNIX_TIMESTAMP_VALUE, MYF(ME_FATALERROR), from);
166
170
    return 1;
167
171
  }
168
172
 
169
173
  time_t tmp;
170
 
  temporal.to_time_t(tmp);
 
174
  temporal.to_time_t(&tmp);
171
175
 
172
 
  uint64_t time_tmp= tmp;
173
 
  pack_num(time_tmp);
 
176
  store_timestamp(tmp);
174
177
  return 0;
175
178
}
176
179
 
177
 
int Epoch::store(double from)
 
180
int Field_timestamp::store(double from)
178
181
{
179
182
  ASSERT_COLUMN_MARKED_FOR_WRITE;
180
183
 
181
 
  uint64_t from_tmp= (uint64_t)from;
182
 
 
183
 
  Timestamp temporal;
184
 
  if (not temporal.from_int64_t(from_tmp))
 
184
  if (from < 0 || from > 99991231235959.0)
185
185
  {
186
 
    /* Convert the integer to a string using boost::lexical_cast */
187
 
    std::string tmp(boost::lexical_cast<std::string>(from));
 
186
    /* Convert the double to a string using stringstream */
 
187
    std::stringstream ss;
 
188
    std::string tmp;
 
189
    ss.precision(18); /* 18 places should be fine for error display of double input. */
 
190
    ss << from; 
 
191
    ss >> tmp;
188
192
 
189
 
    my_error(ER_INVALID_TIMESTAMP_VALUE, MYF(ME_FATALERROR), tmp.c_str());
 
193
    my_error(ER_INVALID_UNIX_TIMESTAMP_VALUE, MYF(ME_FATALERROR), tmp.c_str());
190
194
    return 2;
191
195
  }
192
 
 
193
 
  time_t tmp;
194
 
  temporal.to_time_t(tmp);
195
 
 
196
 
  uint64_t tmp_micro= tmp;
197
 
  pack_num(tmp_micro);
198
 
 
199
 
  return 0;
200
 
}
201
 
 
202
 
int Epoch::store_decimal(const type::Decimal *value)
203
 
{
204
 
  double tmp;
205
 
  value->convert(tmp);
206
 
 
207
 
  return store(tmp);
208
 
}
209
 
 
210
 
int Epoch::store(int64_t from, bool)
 
196
  return Field_timestamp::store((int64_t) rint(from), false);
 
197
}
 
198
 
 
199
int Field_timestamp::store(int64_t from, bool)
211
200
{
212
201
  ASSERT_COLUMN_MARKED_FOR_WRITE;
213
202
 
216
205
   * if unable to create a valid DateTime.  
217
206
   */
218
207
  Timestamp temporal;
219
 
  if (not temporal.from_int64_t(from))
 
208
  if (! temporal.from_int64_t(from))
220
209
  {
221
210
    /* Convert the integer to a string using boost::lexical_cast */
222
211
    std::string tmp(boost::lexical_cast<std::string>(from));
223
212
 
224
 
    my_error(ER_INVALID_TIMESTAMP_VALUE, MYF(ME_FATALERROR), tmp.c_str());
 
213
    my_error(ER_INVALID_UNIX_TIMESTAMP_VALUE, MYF(ME_FATALERROR), tmp.c_str());
225
214
    return 2;
226
215
  }
227
216
 
228
217
  time_t tmp;
229
 
  temporal.to_time_t(tmp);
230
 
 
231
 
  uint64_t tmp64= tmp;
232
 
  pack_num(tmp64);
233
 
 
 
218
  temporal.to_time_t(&tmp);
 
219
 
 
220
  store_timestamp(tmp);
234
221
  return 0;
235
222
}
236
223
 
237
 
double Epoch::val_real(void)
 
224
double Field_timestamp::val_real(void)
238
225
{
239
 
  return (double) Epoch::val_int();
 
226
  return (double) Field_timestamp::val_int();
240
227
}
241
228
 
242
 
int64_t Epoch::val_int(void)
 
229
int64_t Field_timestamp::val_int(void)
243
230
{
244
231
  uint64_t temp;
245
232
 
246
233
  ASSERT_COLUMN_MARKED_FOR_READ;
247
234
 
248
 
  unpack_num(temp);
 
235
#ifdef WORDS_BIGENDIAN
 
236
  if (getTable() && getTable()->getShare()->db_low_byte_first)
 
237
    temp= uint8korr(ptr);
 
238
  else
 
239
#endif
 
240
    int64_tget(temp, ptr);
249
241
 
250
242
  Timestamp temporal;
251
243
  (void) temporal.from_time_t((time_t) temp);
256
248
  return result;
257
249
}
258
250
 
259
 
String *Epoch::val_str(String *val_buffer, String *)
 
251
String *Field_timestamp::val_str(String *val_buffer, String *)
260
252
{
261
 
  uint64_t temp= 0;
 
253
  uint64_t temp;
262
254
  char *to;
263
255
  int to_len= field_length + 1;
264
256
 
265
257
  val_buffer->alloc(to_len);
266
258
  to= (char *) val_buffer->ptr();
267
259
 
268
 
  unpack_num(temp);
 
260
#ifdef WORDS_BIGENDIAN
 
261
  if (getTable() && getTable()->getShare()->db_low_byte_first)
 
262
    temp= uint8korr(ptr);
 
263
  else
 
264
#endif
 
265
    int64_tget(temp, ptr);
269
266
 
270
267
  val_buffer->set_charset(&my_charset_bin);     /* Safety */
271
268
 
280
277
  return val_buffer;
281
278
}
282
279
 
283
 
bool Epoch::get_date(type::Time &ltime, uint32_t)
 
280
bool Field_timestamp::get_date(DRIZZLE_TIME *ltime, uint32_t)
284
281
{
285
282
  uint64_t temp;
286
 
  type::Time::epoch_t time_temp;
287
283
 
288
 
  unpack_num(temp);
289
 
  time_temp= temp;
 
284
#ifdef WORDS_BIGENDIAN
 
285
  if (getTable() && getTable()->getShare()->db_low_byte_first)
 
286
    temp= uint8korr(ptr);
 
287
  else
 
288
#endif
 
289
    int64_tget(temp, ptr);
290
290
  
291
 
  ltime.reset();
292
 
 
293
 
  ltime.store(time_temp);
 
291
  memset(ltime, 0, sizeof(*ltime));
 
292
 
 
293
  Timestamp temporal;
 
294
  (void) temporal.from_time_t((time_t) temp);
 
295
 
 
296
  /* @TODO Goodbye the below code when DRIZZLE_TIME is finally gone.. */
 
297
 
 
298
  ltime->time_type= DRIZZLE_TIMESTAMP_DATETIME;
 
299
  ltime->year= temporal.years();
 
300
  ltime->month= temporal.months();
 
301
  ltime->day= temporal.days();
 
302
  ltime->hour= temporal.hours();
 
303
  ltime->minute= temporal.minutes();
 
304
  ltime->second= temporal.seconds();
294
305
 
295
306
  return 0;
296
307
}
297
308
 
298
 
bool Epoch::get_time(type::Time &ltime)
299
 
{
300
 
  return Epoch::get_date(ltime, 0);
301
 
}
302
 
 
303
 
int Epoch::cmp(const unsigned char *a_ptr, const unsigned char *b_ptr)
304
 
{
305
 
  uint64_t a,b;
306
 
 
307
 
  unpack_num(a, a_ptr);
308
 
  unpack_num(b, b_ptr);
309
 
 
310
 
  return (a < b) ? -1 : (a > b) ? 1 : 0;
311
 
}
312
 
 
313
 
 
314
 
void Epoch::sort_string(unsigned char *to,uint32_t )
 
309
bool Field_timestamp::get_time(DRIZZLE_TIME *ltime)
 
310
{
 
311
  return Field_timestamp::get_date(ltime,0);
 
312
}
 
313
 
 
314
int Field_timestamp::cmp(const unsigned char *a_ptr, const unsigned char *b_ptr)
 
315
{
 
316
  int64_t a,b;
 
317
#ifdef WORDS_BIGENDIAN
 
318
  if (getTable() && getTable()->getShare()->db_low_byte_first)
 
319
  {
 
320
    a=sint8korr(a_ptr);
 
321
    b=sint8korr(b_ptr);
 
322
  }
 
323
  else
 
324
#endif
 
325
  {
 
326
    int64_tget(a, a_ptr);
 
327
    int64_tget(b, b_ptr);
 
328
  }
 
329
  return ((uint64_t) a < (uint64_t) b) ? -1 : ((uint64_t) a > (uint64_t) b) ? 1 : 0;
 
330
}
 
331
 
 
332
 
 
333
void Field_timestamp::sort_string(unsigned char *to,uint32_t )
315
334
{
316
335
#ifdef WORDS_BIGENDIAN
317
336
  if (!getTable() || !getTable()->getShare()->db_low_byte_first)
339
358
  }
340
359
}
341
360
 
342
 
void Epoch::sql_type(String &res) const
 
361
void Field_timestamp::sql_type(String &res) const
343
362
{
344
363
  res.set_ascii(STRING_WITH_LEN("timestamp"));
345
364
}
346
365
 
347
 
void Epoch::set_time()
 
366
void Field_timestamp::set_time()
348
367
{
349
368
  Session *session= getTable() ? getTable()->in_use : current_session;
350
 
  time_t tmp= session->getCurrentTimestampEpoch();
351
 
 
 
369
  time_t tmp= session->query_start();
352
370
  set_notnull();
353
 
  pack_num(static_cast<uint32_t>(tmp));
 
371
  store_timestamp(tmp);
354
372
}
355
373
 
356
 
void Epoch::set_default()
 
374
void Field_timestamp::set_default()
357
375
{
358
376
  if (getTable()->timestamp_field == this &&
359
377
      unireg_check != TIMESTAMP_UN_FIELD)
360
 
  {
361
378
    set_time();
362
 
  }
363
379
  else
364
 
  {
365
380
    Field::set_default();
366
 
  }
367
381
}
368
382
 
369
 
long Epoch::get_timestamp(bool *null_value)
 
383
long Field_timestamp::get_timestamp(bool *null_value)
370
384
{
371
385
  if ((*null_value= is_null()))
372
386
    return 0;
373
 
 
374
 
  uint64_t tmp;
375
 
  return unpack_num(tmp);
 
387
#ifdef WORDS_BIGENDIAN
 
388
  if (getTable() && getTable()->getShare()->db_low_byte_first)
 
389
    return sint8korr(ptr);
 
390
#endif
 
391
  int64_t tmp;
 
392
  int64_tget(tmp, ptr);
 
393
  return tmp;
376
394
}
377
395
 
378
 
size_t Epoch::max_string_length()
 
396
void Field_timestamp::store_timestamp(int64_t timestamp)
379
397
{
380
 
  return sizeof(uint64_t);
 
398
#ifdef WORDS_BIGENDIAN
 
399
  if (getTable() && getTable()->getShare()->db_low_byte_first)
 
400
  {
 
401
    int8store(ptr, timestamp);
 
402
  }
 
403
  else
 
404
#endif
 
405
    int64_tstore(ptr, timestamp);
381
406
}
382
407
 
383
 
} /* namespace field */
384
408
} /* namespace drizzled */