~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/tztime.h

pandora-build v0.72 - Moved remaining hard-coded tests into pandora-build
macros.
Add PANDORA_DRIZZLE_BUILD to run the extra checks that drizzle needs that 
plugins would also need to run so we can just use that macro in generated
external plugin builds.
Added support to register_plugins for external plugin building.
Renamed register_plugins.py to pandora-plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2004 MySQL AB
2
 
 
3
 
   This program is free software; you can redistribute it and/or modify
4
 
   it under the terms of the GNU General Public License as published by
5
 
   the Free Software Foundation; version 2 of the License.
6
 
 
7
 
   This program is distributed in the hope that it will be useful,
8
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
9
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
 
   GNU General Public License for more details.
11
 
 
12
 
   You should have received a copy of the GNU General Public License
13
 
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
 
 
16
 
 
17
 
#ifdef USE_PRAGMA_INTERFACE
18
 
#pragma interface                       /* gcc class interface */
19
 
#endif
 
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2008 Sun Microsystems
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; either version 2 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU General Public License
 
17
 *  along with this program; if not, write to the Free Software
 
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 */
 
20
 
 
21
#ifndef DRIZZLED_TZTIME_H
 
22
#define DRIZZLED_TZTIME_H
20
23
 
21
24
/**
22
 
  This class represents abstract time zone and provides 
23
 
  basic interface for DRIZZLE_TIME <-> my_time_t conversion.
24
 
  Actual time zones which are specified by DB, or via offset 
 
25
  This class represents abstract time zone and provides
 
26
  basic interface for DRIZZLE_TIME <-> time_t conversion.
 
27
  Actual time zones which are specified by DB, or via offset
25
28
  or use system functions are its descendants.
26
29
*/
27
 
class Time_zone: public Sql_alloc 
 
30
class Time_zone: public Sql_alloc
28
31
{
29
32
public:
30
33
  Time_zone() {}                              /* Remove gcc warning */
31
34
  /**
32
 
    Converts local time in broken down DRIZZLE_TIME representation to 
33
 
    my_time_t (UTC seconds since Epoch) represenation.
 
35
    Converts local time in broken down DRIZZLE_TIME representation to
 
36
    time_t (UTC seconds since Epoch) represenation.
34
37
    Returns 0 in case of error. Sets in_dst_time_gap to true if date provided
35
38
    falls into spring time-gap (or lefts it untouched otherwise).
36
39
  */
37
 
  virtual my_time_t TIME_to_gmt_sec(const DRIZZLE_TIME *t, 
 
40
  virtual time_t TIME_to_gmt_sec(const DRIZZLE_TIME *t,
38
41
                                    bool *in_dst_time_gap) const = 0;
39
42
  /**
40
 
    Converts time in my_time_t representation to local time in
 
43
    Converts time in time_t representation to local time in
41
44
    broken down DRIZZLE_TIME representation.
42
45
  */
43
 
  virtual void   gmt_sec_to_TIME(DRIZZLE_TIME *tmp, my_time_t t) const = 0;
 
46
  virtual void   gmt_sec_to_TIME(DRIZZLE_TIME *tmp, time_t t) const = 0;
44
47
  /**
45
 
    Because of constness of String returned by get_name() time zone name 
 
48
    Because of constness of String returned by get_name() time zone name
46
49
    have to be already zeroended to be able to use String::ptr() instead
47
50
    of c_ptr().
48
51
  */
49
52
  virtual const String * get_name() const = 0;
50
53
 
51
 
  /** 
 
54
  /**
52
55
    We need this only for surpressing warnings, objects of this type are
53
56
    allocated on MEM_ROOT and should not require destruction.
54
57
  */
55
58
  virtual ~Time_zone() {};
56
59
};
57
60
 
58
 
extern Time_zone * my_tz_UTC;
59
61
extern Time_zone * my_tz_SYSTEM;
60
 
extern Time_zone * my_tz_OFFSET0;
61
 
extern Time_zone * my_tz_find(THD *thd, const String *name);
62
 
extern bool     my_tz_init(THD *org_thd, const char *default_tzname, bool bootstrap);
63
 
extern void        my_tz_free();
64
 
extern my_time_t   sec_since_epoch_TIME(DRIZZLE_TIME *t);
 
62
extern Time_zone * my_tz_find(Session *session, const String *name);
 
63
extern bool     my_tz_init(Session *org_session, const char *default_tzname);
 
64
extern time_t   sec_since_epoch_TIME(DRIZZLE_TIME *t);
 
65
 
 
66
#endif /* DRIZZLED_TZTIME_H */