~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/tztime.cc

  • Committer: Brian Aker
  • Date: 2011-01-19 18:03:32 UTC
  • mfrom: (2088.8.12 timestamp)
  • mto: This revision was merged to the branch mainline in revision 2098.
  • Revision ID: brian@tangent.org-20110119180332-acfk5i8oofp63s40
Merge in time code.

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
 
83
type::Time::epoch_t
84
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;
90
90
 
91
91
/**
92
92
 * @brief
93
 
 * Converts time from UTC seconds since Epoch (time_t) representation
 
93
 * Converts time from UTC seconds since Epoch (type::Time::epoch_t) representation
94
94
 * to system local time zone broken-down representation.
95
95
 *
96
96
 * @param    tmp   pointer to type::Time structure to fill-in
97
 
 * @param    t     time_t value to be converted
 
97
 * @param    t     type::Time::epoch_t value to be converted
98
98
 *
99
 
 * Note: We assume that value passed to this function will fit into time_t range
 
99
 * Note: We assume that value passed to this function will fit into type::Time::epoch_t range
100
100
 * supported by localtime_r. This conversion is putting restriction on
101
101
 * TIMESTAMP range in MySQL. If we can get rid of SYSTEM time zone at least
102
102
 * for interaction with client then we can extend TIMESTAMP range down to
103
103
 * the 1902 easily.
104
104
 */
105
105
void
106
 
Time_zone_system::gmt_sec_to_TIME(type::Time *tmp, time_t t) const
 
106
Time_zone_system::gmt_sec_to_TIME(type::Time *tmp, type::Time::epoch_t t) const
107
107
{
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;
 
108
  tmp->store(t);
114
109
}
115
110
 
116
111