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; version 2 of the License.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20
#include <drizzled/server_includes.h>
22
#include <drizzled/function/time/from_unixtime.h>
23
#include <drizzled/session.h>
25
#include "drizzled/temporal.h"
30
void Item_func_from_unixtime::fix_length_and_dec()
32
session= current_session;
33
collation.set(&my_charset_bin);
34
decimals= DATETIME_DEC;
35
max_length=MAX_DATETIME_WIDTH*MY_CHARSET_BIN_MB_MAXLEN;
39
String *Item_func_from_unixtime::val_str(String *str)
41
DRIZZLE_TIME time_tmp;
45
if (get_date(&time_tmp, 0))
48
if (str->alloc(MAX_DATE_STRING_REP_LENGTH))
54
make_datetime(&time_tmp, str);
59
int64_t Item_func_from_unixtime::val_int()
61
DRIZZLE_TIME time_tmp;
65
if (get_date(&time_tmp, 0))
68
return (int64_t) TIME_to_uint64_t_datetime(&time_tmp);
71
bool Item_func_from_unixtime::get_date(DRIZZLE_TIME *ltime, uint32_t)
73
uint64_t tmp= (uint64_t)(args[0]->val_int());
75
"tmp > TIMESTAMP_MAX_VALUE" check also covers case of negative
76
from_unixtime() argument since tmp is unsigned.
78
if ((null_value= (args[0]->null_value || tmp > TIMESTAMP_MAX_VALUE)))
81
drizzled::Timestamp temporal;
82
if (! temporal.from_time_t((time_t) tmp))
86
std::string tmp_string;
87
ss << tmp; ss >> tmp_string;
88
my_error(ER_INVALID_UNIX_TIMESTAMP_VALUE, MYF(0), tmp_string.c_str());
92
memset(ltime, 0, sizeof(*ltime));
94
ltime->year= temporal.years();
95
ltime->month= temporal.months();
96
ltime->day= temporal.days();
97
ltime->hour= temporal.hours();
98
ltime->minute= temporal.minutes();
99
ltime->second= temporal.seconds();
100
ltime->time_type= DRIZZLE_TIMESTAMP_DATETIME;