~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2009-01-24 09:43:35 UTC
  • Revision ID: brian@gir-3.local-20090124094335-6qdtvc35gl5fvivz
Adding in an example singe thread scheduler

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#include "config.h"
21
 
 
 
20
#include <drizzled/server_includes.h>
 
21
#include CSTDINT_H
22
22
#include <drizzled/function/time/now.h>
 
23
#include <drizzled/tztime.h>
23
24
#include <drizzled/session.h>
24
25
 
25
 
#include "drizzled/temporal.h"
26
 
 
27
 
namespace drizzled
28
 
{
29
 
 
30
26
String *Item_func_now::val_str(String *)
31
27
{
32
28
  assert(fixed == 1);
39
35
{
40
36
  decimals= DATETIME_DEC;
41
37
  collation.set(&my_charset_bin);
42
 
  
43
 
  memset(&ltime, 0, sizeof(DRIZZLE_TIME));
44
 
 
45
 
  ltime.time_type= DRIZZLE_TIMESTAMP_DATETIME;
46
38
 
47
39
  store_now_in_TIME(&ltime);
48
40
  value= (int64_t) TIME_to_uint64_t_datetime(&ltime);
58
50
void Item_func_now_local::store_now_in_TIME(DRIZZLE_TIME *now_time)
59
51
{
60
52
  Session *session= current_session;
61
 
  time_t tmp= session->query_start();
62
 
 
63
 
  (void) cached_temporal.from_time_t(tmp);
64
 
 
65
 
  now_time->year= cached_temporal.years();
66
 
  now_time->month= cached_temporal.months();
67
 
  now_time->day= cached_temporal.days();
68
 
  now_time->hour= cached_temporal.hours();
69
 
  now_time->minute= cached_temporal.minutes();
70
 
  now_time->second= cached_temporal.seconds();
 
53
  session->variables.time_zone->gmt_sec_to_TIME(now_time,
 
54
                                                (time_t)session->query_start());
71
55
}
72
56
 
73
57
 
77
61
*/
78
62
void Item_func_now_utc::store_now_in_TIME(DRIZZLE_TIME *now_time)
79
63
{
80
 
  Session *session= current_session;
81
 
  time_t tmp= session->query_start();
82
 
 
83
 
  (void) cached_temporal.from_time_t(tmp);
84
 
 
85
 
  now_time->year= cached_temporal.years();
86
 
  now_time->month= cached_temporal.months();
87
 
  now_time->day= cached_temporal.days();
88
 
  now_time->hour= cached_temporal.hours();
89
 
  now_time->minute= cached_temporal.minutes();
90
 
  now_time->second= cached_temporal.seconds();
91
 
}
92
 
 
93
 
bool Item_func_now::get_temporal(DateTime &to)
94
 
{
95
 
  to= cached_temporal;
96
 
  return true;
 
64
  my_tz_UTC->gmt_sec_to_TIME(now_time,
 
65
                             (time_t)(current_session->query_start()));
 
66
  /*
 
67
    We are not flagging this query as using time zone, since it uses fixed
 
68
    UTC-SYSTEM time-zone.
 
69
  */
97
70
}
98
71
 
99
72
bool Item_func_now::get_date(DRIZZLE_TIME *res,
100
 
                             uint32_t )
 
73
                             uint32_t fuzzy_date __attribute__((unused)))
101
74
{
102
75
  *res= ltime;
103
76
  return 0;
104
77
}
105
78
 
106
79
 
107
 
int Item_func_now::save_in_field(Field *to, bool )
 
80
int Item_func_now::save_in_field(Field *to, bool no_conversions __attribute__((unused)))
108
81
{
109
82
  to->set_notnull();
110
83
  return to->store_time(&ltime, DRIZZLE_TIMESTAMP_DATETIME);
111
84
}
112
85
 
113
 
} /* namespace drizzled */