~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/tztime.cc

  • Committer: Monty Taylor
  • Date: 2011-01-26 19:15:55 UTC
  • mto: This revision was merged to the branch mainline in revision 2126.
  • Revision ID: mordred@inaugust.com-20110126191555-nq5nnzyscvngsip2
Turns on -fvisibility=hidden by default. Symbols intended to be used by
plugins need to be marked with DRIZZLED_API.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
{
50
50
public:
51
51
  Time_zone_system() {}                       /* Remove gcc warning */
52
 
  virtual time_t TIME_to_gmt_sec(const type::Time *t,
53
 
                                    bool *in_dst_time_gap) const;
54
 
  virtual void gmt_sec_to_TIME(type::Time *tmp, time_t t) const;
 
52
  virtual type::Time::epoch_t TIME_to_gmt_sec(const type::Time &t,
 
53
                                              bool *in_dst_time_gap) const;
 
54
  virtual void gmt_sec_to_TIME(type::Time &tmp, type::Time::epoch_t t) const;
55
55
  virtual const String * get_name() const;
56
56
};
57
57
 
59
59
/**
60
60
 * @brief
61
61
 * Converts local time in system time zone in type::Time representation
62
 
 * to its time_t representation.
 
62
 * to its type::Time::epoch_t representation.
63
63
 *
64
64
 * @details
65
65
 * This method uses system function (localtime_r()) for conversion
66
 
 * local time in system time zone in type::Time structure to its time_t
 
66
 * local time in system time zone in type::Time structure to its type::Time::epoch_t
67
67
 * representation. Unlike the same function for Time_zone_db class
68
68
 * it it won't handle unnormalized input properly. Still it will
69
 
 * return lowest possible time_t in case of ambiguity or if we
 
69
 * return lowest possible type::Time::epoch_t in case of ambiguity or if we
70
70
 * provide time corresponding to the time-gap.
71
71
 *
72
72
 * You should call init_time() function before using this function.
78
78
 *                          spring time-gap) and is not touched otherwise.
79
79
 *
80
80
 * @return
81
 
 * Corresponding time_t value or 0 in case of error
 
81
 * Corresponding type::Time::epoch_t value or 0 in case of error
82
82
 */
83
 
time_t
84
 
Time_zone_system::TIME_to_gmt_sec(const type::Time *t, bool *in_dst_time_gap) const
 
83
type::Time::epoch_t
 
84
Time_zone_system::TIME_to_gmt_sec(const type::Time &t, bool *in_dst_time_gap) const
85
85
{
86
86
  long not_used;
87
 
  return my_system_gmt_sec(t, &not_used, in_dst_time_gap);
 
87
  type::Time::epoch_t tmp;
 
88
  t.convert(tmp, &not_used, in_dst_time_gap);
 
89
  return tmp;
88
90
}
89
91
 
90
92
 
91
93
/**
92
94
 * @brief
93
 
 * Converts time from UTC seconds since Epoch (time_t) representation
 
95
 * Converts time from UTC seconds since Epoch (type::Time::epoch_t) representation
94
96
 * to system local time zone broken-down representation.
95
97
 *
96
98
 * @param    tmp   pointer to type::Time structure to fill-in
97
 
 * @param    t     time_t value to be converted
 
99
 * @param    t     type::Time::epoch_t value to be converted
98
100
 *
99
 
 * Note: We assume that value passed to this function will fit into time_t range
 
101
 * Note: We assume that value passed to this function will fit into type::Time::epoch_t range
100
102
 * supported by localtime_r. This conversion is putting restriction on
101
103
 * TIMESTAMP range in MySQL. If we can get rid of SYSTEM time zone at least
102
104
 * for interaction with client then we can extend TIMESTAMP range down to
103
105
 * the 1902 easily.
104
106
 */
105
107
void
106
 
Time_zone_system::gmt_sec_to_TIME(type::Time *tmp, time_t t) const
 
108
Time_zone_system::gmt_sec_to_TIME(type::Time &tmp, type::Time::epoch_t t) const
107
109
{
108
 
  struct tm tmp_tm;
109
 
  time_t tmp_t= (time_t)t;
110
 
 
111
 
  localtime_r(&tmp_t, &tmp_tm);
112
 
  localtime_to_TIME(tmp, &tmp_tm);
113
 
  tmp->time_type= DRIZZLE_TIMESTAMP_DATETIME;
 
110
  tmp.store(t);
114
111
}
115
112
 
116
113