~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/tztime.h

  • Committer: Monty Taylor
  • Date: 2008-10-23 00:05:28 UTC
  • Revision ID: monty@inaugust.com-20081023000528-grdvrd8c4058nutm
Moved my_handler to myisam, which is where it actually belongs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#ifndef DRIZZLED_TZTIME_H
22
 
#define DRIZZLED_TZTIME_H
23
 
 
24
 
#if TIME_WITH_SYS_TIME
25
 
# include <sys/time.h>
26
 
# include <time.h>
27
 
#else
28
 
# if HAVE_SYS_TIME_H
29
 
#  include <sys/time.h>
30
 
# else
31
 
#  include <time.h>
32
 
# endif
33
 
#endif
34
 
 
35
 
#include "drizzled/memory/sql_alloc.h"
36
 
 
37
 
namespace drizzled
38
 
{
39
 
 
40
 
class String;
41
 
typedef struct st_drizzle_time DRIZZLE_TIME;
42
21
 
43
22
/**
44
 
  This class represents abstract time zone and provides
45
 
  basic interface for DRIZZLE_TIME <-> time_t conversion.
46
 
  Actual time zones which are specified by DB, or via offset
 
23
  This class represents abstract time zone and provides 
 
24
  basic interface for DRIZZLE_TIME <-> my_time_t conversion.
 
25
  Actual time zones which are specified by DB, or via offset 
47
26
  or use system functions are its descendants.
48
27
*/
49
 
class Time_zone: public memory::SqlAlloc
 
28
class Time_zone: public Sql_alloc 
50
29
{
51
30
public:
52
31
  Time_zone() {}                              /* Remove gcc warning */
53
32
  /**
54
 
    Converts local time in broken down DRIZZLE_TIME representation to
55
 
    time_t (UTC seconds since Epoch) represenation.
 
33
    Converts local time in broken down DRIZZLE_TIME representation to 
 
34
    my_time_t (UTC seconds since Epoch) represenation.
56
35
    Returns 0 in case of error. Sets in_dst_time_gap to true if date provided
57
36
    falls into spring time-gap (or lefts it untouched otherwise).
58
37
  */
59
 
  virtual time_t TIME_to_gmt_sec(const DRIZZLE_TIME *t,
60
 
                                 bool *in_dst_time_gap) const = 0;
 
38
  virtual my_time_t TIME_to_gmt_sec(const DRIZZLE_TIME *t, 
 
39
                                    bool *in_dst_time_gap) const = 0;
61
40
  /**
62
 
    Converts time in time_t representation to local time in
 
41
    Converts time in my_time_t representation to local time in
63
42
    broken down DRIZZLE_TIME representation.
64
43
  */
65
 
  virtual void   gmt_sec_to_TIME(DRIZZLE_TIME *tmp, time_t t) const = 0;
 
44
  virtual void   gmt_sec_to_TIME(DRIZZLE_TIME *tmp, my_time_t t) const = 0;
66
45
  /**
67
 
    Because of constness of String returned by get_name() time zone name
 
46
    Because of constness of String returned by get_name() time zone name 
68
47
    have to be already zeroended to be able to use String::ptr() instead
69
48
    of c_ptr().
70
49
  */
71
50
  virtual const String * get_name() const = 0;
72
51
 
73
 
  /**
 
52
  /** 
74
53
    We need this only for surpressing warnings, objects of this type are
75
 
    allocated on memory::Root and should not require destruction.
 
54
    allocated on MEM_ROOT and should not require destruction.
76
55
  */
77
56
  virtual ~Time_zone() {};
78
57
};
79
58
 
 
59
extern Time_zone * my_tz_UTC;
80
60
extern Time_zone * my_tz_SYSTEM;
 
61
extern Time_zone * my_tz_OFFSET0;
81
62
extern Time_zone * my_tz_find(Session *session, const String *name);
82
63
extern bool     my_tz_init(Session *org_session, const char *default_tzname);
83
 
 
84
 
} /* namespace drizzled */
85
 
 
86
 
#endif /* DRIZZLED_TZTIME_H */
 
64
extern void        my_tz_free();
 
65
extern my_time_t   sec_since_epoch_TIME(DRIZZLE_TIME *t);