~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/tztime.h

Merged from Toru - removal of my_time_t.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
/**
23
23
  This class represents abstract time zone and provides
24
 
  basic interface for DRIZZLE_TIME <-> my_time_t conversion.
 
24
  basic interface for DRIZZLE_TIME <-> time_t conversion.
25
25
  Actual time zones which are specified by DB, or via offset
26
26
  or use system functions are its descendants.
27
27
*/
31
31
  Time_zone() {}                              /* Remove gcc warning */
32
32
  /**
33
33
    Converts local time in broken down DRIZZLE_TIME representation to
34
 
    my_time_t (UTC seconds since Epoch) represenation.
 
34
    time_t (UTC seconds since Epoch) represenation.
35
35
    Returns 0 in case of error. Sets in_dst_time_gap to true if date provided
36
36
    falls into spring time-gap (or lefts it untouched otherwise).
37
37
  */
38
 
  virtual my_time_t TIME_to_gmt_sec(const DRIZZLE_TIME *t,
 
38
  virtual time_t TIME_to_gmt_sec(const DRIZZLE_TIME *t,
39
39
                                    bool *in_dst_time_gap) const = 0;
40
40
  /**
41
 
    Converts time in my_time_t representation to local time in
 
41
    Converts time in time_t representation to local time in
42
42
    broken down DRIZZLE_TIME representation.
43
43
  */
44
44
  virtual void   gmt_sec_to_TIME(DRIZZLE_TIME *tmp, time_t t) const = 0;
62
62
extern Time_zone * my_tz_find(Session *session, const String *name);
63
63
extern bool     my_tz_init(Session *org_session, const char *default_tzname);
64
64
extern void        my_tz_free();
65
 
extern my_time_t   sec_since_epoch_TIME(DRIZZLE_TIME *t);
 
65
extern time_t   sec_since_epoch_TIME(DRIZZLE_TIME *t);