~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • 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
#ifndef DRIZZLED_FUNCTION_CAST_TIME_H
 
22
#define DRIZZLED_FUNCTION_CAST_TIME_H
 
23
 
 
24
#include <drizzled/function/str/strfunc.h>
 
25
#include "drizzled/function/time/typecast.h"
 
26
#include <drizzled/temporal.h>
 
27
 
 
28
namespace drizzled {
 
29
namespace function {
 
30
namespace cast {
 
31
 
 
32
class Time :public Item_typecast_maybe_null
 
33
{
 
34
public:
 
35
  using Item_func::tmp_table_field;
 
36
 
 
37
  Time(Item *a) :
 
38
    Item_typecast_maybe_null(a)
 
39
  {}
 
40
 
 
41
  const char *func_name() const { return "cast_as_time"; }
 
42
  String *val_str(String *str);
 
43
  bool get_date(DRIZZLE_TIME *ltime, uint32_t fuzzy_date);
 
44
  bool get_time(DRIZZLE_TIME *ltime);
 
45
  const char *cast_type() const { return "time"; }
 
46
  enum_field_types field_type() const { return DRIZZLE_TYPE_TIME; }
 
47
 
 
48
  Field *tmp_table_field(Table *table)
 
49
  {
 
50
    return tmp_table_field_from_field_type(table, 0);
 
51
  }
 
52
 
 
53
  void fix_length_and_dec()
 
54
  {
 
55
    collation.set(&my_charset_bin);
 
56
    max_length= 10;
 
57
    maybe_null= 1;
 
58
  }
 
59
 
 
60
  bool result_as_int64_t() { return true; }
 
61
  int64_t val_int();
 
62
  double val_real() { return (double) val_int(); }
 
63
 
 
64
  my_decimal *val_decimal(my_decimal *decimal_value)
 
65
  {
 
66
    assert(fixed == 1);
 
67
    return  val_decimal_from_date(decimal_value);
 
68
  }
 
69
 
 
70
  int save_in_field(Field *field, bool )
 
71
  {
 
72
    return save_date_in_field(field);
 
73
  }
 
74
};
 
75
 
 
76
} // namespace cast
 
77
} // namespace function
 
78
} // namespace drizzled
 
79
 
 
80
#endif /* DRIZZLED_FUNCTION_CAST_TIME_H */