1
/* -*- mode: c++ c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems
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.
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.
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
22
#include <boost/lexical_cast.hpp>
23
#include <drizzled/field/time.h>
24
#include <drizzled/error.h>
25
#include <drizzled/tztime.h>
26
#include <drizzled/table.h>
27
#include <drizzled/session.h>
33
#include <drizzled/temporal.h>
44
** In string context: HH:MM:SS
45
** In number context: HHMMSS
48
Time::Time(unsigned char *ptr_arg,
50
unsigned char *null_ptr_arg,
51
unsigned char null_bit_arg,
52
const char *field_name_arg) :
54
DateTime::MAX_STRING_LENGTH - 1 /* no \0 */,
62
Time::Time(bool maybe_null_arg,
63
const char *field_name_arg) :
64
Field_str((unsigned char*) NULL,
65
DateTime::MAX_STRING_LENGTH - 1 /* no \0 */,
66
maybe_null_arg ? (unsigned char*) "": 0,
73
int Time::store(const char *from,
75
const CHARSET_INFO * const )
77
drizzled::Time temporal;
79
ASSERT_COLUMN_MARKED_FOR_WRITE;
81
if (not temporal.from_string(from, (size_t) len))
83
std::string tmp(boost::lexical_cast<std::string>(from));
84
my_error(ER_INVALID_TIME_VALUE, MYF(0), tmp.c_str());
93
int Time::store(double from)
95
ASSERT_COLUMN_MARKED_FOR_WRITE;
101
if (from > (double)TIME_MAX_VALUE)
106
else if (from < (double) - TIME_MAX_VALUE)
108
tmp= -TIME_MAX_VALUE;
113
tmp=(long) floor(fabs(from)); // Remove fractions
118
if (tmp % 100 > 59 || tmp/100 % 100 > 59)
124
return store(tmp, false);
128
std::string tmp(boost::lexical_cast<std::string>(from));
129
my_error(ER_INVALID_TIME_VALUE, MYF(0), tmp.c_str());
134
int Time::store(int64_t from, bool)
136
ASSERT_COLUMN_MARKED_FOR_WRITE;
139
* Try to create a DateTime from the supplied integer. Throw an error
140
* if unable to create a valid DateTime.
142
drizzled::Time temporal;
143
if (not temporal.from_time_t(from))
145
/* Convert the integer to a string using boost::lexical_cast */
146
std::string tmp(boost::lexical_cast<std::string>(from));
147
my_error(ER_INVALID_TIME_VALUE, MYF(0), tmp.c_str());
156
void Time::pack_time(drizzled::Time &temporal)
159
temporal.to_int32_t(&tmp);
161
memcpy(ptr, &tmp, sizeof(int32_t));
164
void Time::unpack_time(drizzled::Time &temporal) const
168
memcpy(&tmp, ptr, sizeof(int32_t));
171
temporal.from_int32_t(tmp);
174
void Time::unpack_time(int32_t &destination, const unsigned char *source) const
176
memcpy(&destination, source, sizeof(int32_t));
177
destination= htonl(destination);
180
double Time::val_real(void) const
182
return (double) Time::val_int();
185
int64_t Time::val_int(void) const
187
ASSERT_COLUMN_MARKED_FOR_READ;
189
drizzled::Time temporal;
190
unpack_time(temporal);
192
/* We must convert into a "timestamp-formatted integer" ... */
194
temporal.to_uint64_t(result);
198
String *Time::val_str(String *val_buffer, String *) const
201
int to_len= field_length + 1;
203
val_buffer->alloc(to_len);
204
to= (char *) val_buffer->ptr();
206
val_buffer->set_charset(&my_charset_bin); /* Safety */
208
drizzled::Time temporal;
209
unpack_time(temporal);
212
rlen= temporal.to_string(to, to_len);
213
assert(rlen < to_len);
215
val_buffer->length(rlen);
219
bool Time::get_date(type::Time <ime, uint32_t) const
223
drizzled::Time temporal;
224
unpack_time(temporal);
226
ltime.time_type= type::DRIZZLE_TIMESTAMP_DATETIME;
227
ltime.year= temporal.years();
228
ltime.month= temporal.months();
229
ltime.day= temporal.days();
230
ltime.hour= temporal.hours();
231
ltime.minute= temporal.minutes();
232
ltime.second= temporal.seconds();
237
bool Time::get_time(type::Time <ime) const
239
return Time::get_date(ltime, 0);
242
int Time::cmp(const unsigned char *a_ptr, const unsigned char *b_ptr)
246
unpack_time(a, a_ptr);
247
unpack_time(b, b_ptr);
249
return (a < b) ? -1 : (a > b) ? 1 : 0;
253
void Time::sort_string(unsigned char *to,uint32_t )
255
#ifdef WORDS_BIGENDIAN
256
if (!getTable() || !getTable()->getShare()->db_low_byte_first)
273
void Time::sql_type(String &res) const
275
res.set_ascii(STRING_WITH_LEN("timestamp"));
278
long Time::get_timestamp(bool *null_value) const
280
if ((*null_value= is_null()))
284
return unpack_num(tmp);
287
size_t Time::max_string_length()
289
return sizeof(int64_t);
292
} /* namespace field */
293
} /* namespace drizzled */