51
50
Time_zone_system() {} /* Remove gcc warning */
52
virtual time_t TIME_to_gmt_sec(const DRIZZLE_TIME *t,
53
bool *in_dst_time_gap) const;
54
virtual void gmt_sec_to_TIME(DRIZZLE_TIME *tmp, time_t t) const;
51
virtual type::Time::epoch_t TIME_to_gmt_sec(const type::Time &t,
52
bool *in_dst_time_gap) const;
53
virtual void gmt_sec_to_TIME(type::Time &tmp, type::Time::epoch_t t) const;
55
54
virtual const String * get_name() const;
61
* Converts local time in system time zone in DRIZZLE_TIME representation
62
* to its time_t representation.
60
* Converts local time in system time zone in type::Time representation
61
* to its type::Time::epoch_t representation.
65
64
* This method uses system function (localtime_r()) for conversion
66
* local time in system time zone in DRIZZLE_TIME structure to its time_t
65
* local time in system time zone in type::Time structure to its type::Time::epoch_t
67
66
* representation. Unlike the same function for Time_zone_db class
68
67
* it it won't handle unnormalized input properly. Still it will
69
* return lowest possible time_t in case of ambiguity or if we
68
* return lowest possible type::Time::epoch_t in case of ambiguity or if we
70
69
* provide time corresponding to the time-gap.
72
71
* You should call init_time() function before using this function.
74
* @param t pointer to DRIZZLE_TIME structure with local time in
73
* @param t pointer to type::Time structure with local time in
75
74
* broken-down representation.
76
75
* @param in_dst_time_gap pointer to bool which is set to true if datetime
77
76
* value passed doesn't really exist (i.e. falls into
78
77
* spring time-gap) and is not touched otherwise.
81
* Corresponding time_t value or 0 in case of error
80
* Corresponding type::Time::epoch_t value or 0 in case of error
84
Time_zone_system::TIME_to_gmt_sec(const DRIZZLE_TIME *t, bool *in_dst_time_gap) const
83
Time_zone_system::TIME_to_gmt_sec(const type::Time &t, bool *in_dst_time_gap) const
87
return my_system_gmt_sec(t, ¬_used, in_dst_time_gap);
86
type::Time::epoch_t tmp;
87
t.convert(tmp, ¬_used, in_dst_time_gap);
93
* Converts time from UTC seconds since Epoch (time_t) representation
94
* Converts time from UTC seconds since Epoch (type::Time::epoch_t) representation
94
95
* to system local time zone broken-down representation.
96
* @param tmp pointer to DRIZZLE_TIME structure to fill-in
97
* @param t time_t value to be converted
97
* @param tmp pointer to type::Time structure to fill-in
98
* @param t type::Time::epoch_t value to be converted
99
* Note: We assume that value passed to this function will fit into time_t range
100
* Note: We assume that value passed to this function will fit into type::Time::epoch_t range
100
101
* supported by localtime_r. This conversion is putting restriction on
101
102
* TIMESTAMP range in MySQL. If we can get rid of SYSTEM time zone at least
102
103
* for interaction with client then we can extend TIMESTAMP range down to
103
104
* the 1902 easily.
106
Time_zone_system::gmt_sec_to_TIME(DRIZZLE_TIME *tmp, time_t t) const
107
Time_zone_system::gmt_sec_to_TIME(type::Time &tmp, type::Time::epoch_t t) const
109
time_t tmp_t= (time_t)t;
111
localtime_r(&tmp_t, &tmp_tm);
112
localtime_to_TIME(tmp, &tmp_tm);
113
tmp->time_type= DRIZZLE_TIMESTAMP_DATETIME;
132
128
Time_zone *my_tz_SYSTEM= &tz_SYSTEM;
137
* Initialize time zone support infrastructure.
140
* This function will init memory structures needed for time zone support,
141
* it will register mandatory SYSTEM time zone in them. It will try to open
142
* mysql.time_zone* tables and load information about default time zone and
143
* information which further will be shared among all time zones loaded.
144
* If system tables with time zone descriptions don't exist it won't fail
145
* (unless default_tzname is time zone from tables). If bootstrap parameter
146
* is true then this routine assumes that we are in bootstrap mode and won't
147
* load time zone descriptions unless someone specifies default time zone
148
* which is supposedly stored in those tables.
149
* It'll also set default time zone if it is specified.
151
* @param session current thread object
152
* @param default_tzname default time zone or 0 if none.
153
* @param bootstrap indicates whenever we are in bootstrap mode
160
my_tz_init(Session *session, const char *default_tzname)
164
String tmp_tzname2(default_tzname, &my_charset_utf8_general_ci);
166
Time zone tables may be open here, and my_tz_find() may open
167
most of them once more, but this is OK for system tables open
170
if (!(global_system_variables.time_zone= my_tz_find(session, &tmp_tzname2)))
172
errmsg_printf(ERRMSG_LVL_ERROR,
173
_("Fatal error: Illegal or unknown default time zone '%s'"),
184
* Get Time_zone object for specified time zone.
187
* Not implemented yet. This needs to hook into some sort of OS system call.
190
my_tz_find(Session *,
196
130
} /* namespace drizzled */