~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/time/curdate.h

  • Committer: Monty Taylor
  • Date: 2008-11-16 05:36:13 UTC
  • mto: (584.1.9 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081116053613-bld4rqxhlkb49c02
Split out cache_row and type_holder.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifndef DRIZZLED_FUNCTION_TIME_CURDATE_H
21
 
#define DRIZZLED_FUNCTION_TIME_CURDATE_H
22
 
 
23
 
#include "drizzled/function/time/date.h"
24
 
#include "drizzled/temporal.h"
25
 
 
26
 
namespace drizzled
27
 
{
 
20
#ifndef DRIZZLED_FUNCTIONS_TIME_CURDATE_H
 
21
#define DRIZZLED_FUNCTIONS_TIME_CURDATE_H
28
22
 
29
23
/* Abstract CURDATE function. See also Item_func_curtime. */
 
24
 
30
25
class Item_func_curdate :public Item_date
31
26
{
32
 
protected:
33
 
  type::Time ltime;
34
 
  Date cached_temporal;
 
27
  int64_t value;
 
28
  DRIZZLE_TIME ltime;
35
29
public:
36
30
  Item_func_curdate() :Item_date() {}
 
31
  int64_t val_int() { assert(fixed == 1); return (value) ; }
 
32
  String *val_str(String *str);
37
33
  void fix_length_and_dec();
38
 
  /**
39
 
   * All functions which inherit from Item_date must implement
40
 
   * their own get_temporal() method, which takes a supplied
41
 
   * Date reference and populates it with a correct
42
 
   * date based on the semantics of the function.
43
 
   *
44
 
   * For CURDATE() and sisters, there is no argument, and we 
45
 
   * return a cached Date value that we create during fix_length_and_dec.
46
 
   *
47
 
   * Always returns true, since a Date can always be constructed
48
 
   * from a time_t
49
 
   *
50
 
   * @param Reference to a Date to populate
51
 
   */
52
 
  bool get_temporal(Date &temporal);
53
 
  virtual void store_now_in_TIME(type::Time *now_time)=0;
 
34
  bool get_date(DRIZZLE_TIME *res, uint32_t fuzzy_date);
 
35
  virtual void store_now_in_TIME(DRIZZLE_TIME *now_time)=0;
 
36
  bool check_vcol_func_processor(unsigned char *int_arg __attribute__((unused)))
 
37
  { return true; }
54
38
};
55
39
 
56
40
class Item_func_curdate_local :public Item_func_curdate
58
42
public:
59
43
  Item_func_curdate_local() :Item_func_curdate() {}
60
44
  const char *func_name() const { return "curdate"; }
61
 
  void store_now_in_TIME(type::Time *now_time);
 
45
  void store_now_in_TIME(DRIZZLE_TIME *now_time);
62
46
};
63
47
 
64
48
class Item_func_curdate_utc :public Item_func_curdate
66
50
public:
67
51
  Item_func_curdate_utc() :Item_func_curdate() {}
68
52
  const char *func_name() const { return "utc_date"; }
69
 
  void store_now_in_TIME(type::Time *now_time);
 
53
  void store_now_in_TIME(DRIZZLE_TIME *now_time);
70
54
};
71
55
 
72
 
} /* namespace drizzled */
73
 
 
74
 
#endif /* DRIZZLED_FUNCTION_TIME_CURDATE_H */
 
56
#endif /* DRIZZLED_FUNCTIONS_TIME_CURDATE_H */