~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/timestamp.cc

  • Committer: Mark Atwood
  • Date: 2010-06-24 03:15:21 UTC
  • mto: (1637.2.4 build)
  • mto: This revision was merged to the branch mainline in revision 1639.
  • Revision ID: me@mark.atwood.name-20100624031521-gafmppfbf5afm68w
new syslog module, with plugins for query log, error message, and SYSLOG() function

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