~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/cast/time.cc

  • Committer: Brian Aker
  • Date: 2010-12-18 07:46:49 UTC
  • mto: (2015.1.1 clean)
  • mto: This revision was merged to the branch mainline in revision 2018.
  • Revision ID: brian@tangent.org-20101218074649-0zz1lf2tbhopfugm
Adding in time type.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* - mode: c++ c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2010 Brian Aker
 
5
 *
 
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.
 
10
 *
 
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.
 
15
 *
 
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
 
19
 */
 
20
 
 
21
#include "config.h"
 
22
 
 
23
#include "drizzled/function/cast/time.h"
 
24
#include "drizzled/time_functions.h"
 
25
 
 
26
namespace drizzled {
 
27
namespace function {
 
28
namespace cast {
 
29
 
 
30
bool Time::get_date(DRIZZLE_TIME *ltime, uint32_t )
 
31
{
 
32
  bool res= get_arg0_date(ltime, TIME_FUZZY_DATE);
 
33
  ltime->hour= ltime->minute= ltime->second= ltime->second_part= 0;
 
34
  ltime->time_type= DRIZZLE_TIMESTAMP_DATE;
 
35
  return res;
 
36
}
 
37
 
 
38
 
 
39
bool Time::get_time(DRIZZLE_TIME *ltime)
 
40
{
 
41
  memset(ltime, 0, sizeof(DRIZZLE_TIME));
 
42
  return args[0]->null_value;
 
43
}
 
44
 
 
45
String *Time::val_str(String *str)
 
46
{
 
47
  assert(fixed == 1);
 
48
  DRIZZLE_TIME ltime;
 
49
 
 
50
  if (not get_arg0_date(&ltime, TIME_FUZZY_DATE) && not str->alloc(MAX_DATE_STRING_REP_LENGTH))
 
51
  {
 
52
    make_time(&ltime, str);
 
53
    return str;
 
54
  }
 
55
 
 
56
  null_value= 1;
 
57
  return 0;
 
58
}
 
59
 
 
60
int64_t Time::val_int()
 
61
{
 
62
  assert(fixed == 1);
 
63
  DRIZZLE_TIME ltime;
 
64
 
 
65
  if ((null_value= args[0]->get_time(&ltime)))
 
66
    return 0;
 
67
 
 
68
  return TIME_to_uint64_t(&ltime);
 
69
}
 
70
 
 
71
} // namespace cast
 
72
} // namespace function
 
73
} // namespace drizzled