17
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
21
#include <boost/lexical_cast.hpp>
22
#include "drizzled/function/time/from_unixtime.h"
23
#include "drizzled/session.h"
24
#include "drizzled/temporal.h"
25
#include "drizzled/time_functions.h"
22
#include <drizzled/function/time/from_unixtime.h>
23
#include <drizzled/current_session.h>
24
#include <drizzled/session.h>
25
#include <drizzled/temporal.h>
26
#include <drizzled/time_functions.h>
27
#include <drizzled/field.h>
35
37
session= current_session;
36
38
collation.set(&my_charset_bin);
37
39
decimals= DATETIME_DEC;
38
max_length=DateTime::MAX_STRING_LENGTH*MY_CHARSET_BIN_MB_MAXLEN;
40
max_length=type::Time::MAX_STRING_LENGTH*MY_CHARSET_BIN_MB_MAXLEN;
42
44
String *Item_func_from_unixtime::val_str(String *str)
44
DRIZZLE_TIME time_tmp;
46
48
assert(fixed == 1);
48
if (get_date(&time_tmp, 0))
50
if (get_date(time_tmp, 0))
51
if (str->alloc(MAX_DATE_STRING_REP_LENGTH))
53
if (str->alloc(type::Time::MAX_STRING_LENGTH))
57
make_datetime(&time_tmp, str);
59
time_tmp.convert(*str);
62
64
int64_t Item_func_from_unixtime::val_int()
64
DRIZZLE_TIME time_tmp;
66
68
assert(fixed == 1);
68
if (get_date(&time_tmp, 0))
70
if (get_date(time_tmp, 0))
71
return (int64_t) TIME_to_uint64_t_datetime(&time_tmp);
74
time_tmp.convert(ret);
74
bool Item_func_from_unixtime::get_date(DRIZZLE_TIME *ltime, uint32_t)
79
bool Item_func_from_unixtime::get_date(type::Time <ime, uint32_t)
76
uint64_t tmp= (uint64_t)(args[0]->val_int());
82
type::Time::usec_t fractional_tmp= 0;
84
switch (args[0]->result_type()) {
90
double double_tmp= args[0]->val_real();
92
tmp= (uint64_t)(double_tmp);
93
fractional_tmp= (type::Time::usec_t)((uint64_t)((double_tmp - tmp) * type::Time::FRACTIONAL_DIGITS) % type::Time::FRACTIONAL_DIGITS);
99
tmp= (uint64_t)(args[0]->val_int());
78
104
"tmp > TIMESTAMP_MAX_VALUE" check also covers case of negative
79
105
from_unixtime() argument since tmp is unsigned.
81
107
if ((null_value= (args[0]->null_value || tmp > TIMESTAMP_MAX_VALUE)))
85
if (! temporal.from_time_t((time_t) tmp))
88
std::string tmp_string(boost::lexical_cast<std::string>(tmp));
89
my_error(ER_INVALID_UNIX_TIMESTAMP_VALUE, MYF(0), tmp_string.c_str());
93
memset(ltime, 0, sizeof(*ltime));
95
ltime->year= temporal.years();
96
ltime->month= temporal.months();
97
ltime->day= temporal.days();
98
ltime->hour= temporal.hours();
99
ltime->minute= temporal.minutes();
100
ltime->second= temporal.seconds();
101
ltime->time_type= DRIZZLE_TIMESTAMP_DATETIME;
111
ltime.store(tmp, fractional_tmp);