~drizzle-trunk/drizzle/development

390.1.2 by Monty Taylor
Fixed copyright headers in drizzled/
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
 */
1 by brian
clean slate
20
21
22
/**
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
23
  This class represents abstract time zone and provides
722.1.8 by Monty Taylor
Merged from Toru - removal of my_time_t.
24
  basic interface for DRIZZLE_TIME <-> time_t conversion.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
25
  Actual time zones which are specified by DB, or via offset
1 by brian
clean slate
26
  or use system functions are its descendants.
27
*/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
28
class Time_zone: public Sql_alloc
1 by brian
clean slate
29
{
30
public:
31
  Time_zone() {}                              /* Remove gcc warning */
32
  /**
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
33
    Converts local time in broken down DRIZZLE_TIME representation to
722.1.8 by Monty Taylor
Merged from Toru - removal of my_time_t.
34
    time_t (UTC seconds since Epoch) represenation.
1 by brian
clean slate
35
    Returns 0 in case of error. Sets in_dst_time_gap to true if date provided
36
    falls into spring time-gap (or lefts it untouched otherwise).
37
  */
722.1.8 by Monty Taylor
Merged from Toru - removal of my_time_t.
38
  virtual time_t TIME_to_gmt_sec(const DRIZZLE_TIME *t,
93 by Brian Aker
Convert tztime.cc to bool from my_bool.
39
                                    bool *in_dst_time_gap) const = 0;
1 by brian
clean slate
40
  /**
722.1.8 by Monty Taylor
Merged from Toru - removal of my_time_t.
41
    Converts time in time_t representation to local time in
236.1.24 by Monty Taylor
Renamed MYSQL_TIME to DRIZZLE_TIME.
42
    broken down DRIZZLE_TIME representation.
1 by brian
clean slate
43
  */
685.3.4 by Toru Maesaka
Fixed the issues pointed out by Jay's code review
44
  virtual void   gmt_sec_to_TIME(DRIZZLE_TIME *tmp, time_t t) const = 0;
1 by brian
clean slate
45
  /**
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
46
    Because of constness of String returned by get_name() time zone name
1 by brian
clean slate
47
    have to be already zeroended to be able to use String::ptr() instead
48
    of c_ptr().
49
  */
50
  virtual const String * get_name() const = 0;
51
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
52
  /**
1 by brian
clean slate
53
    We need this only for surpressing warnings, objects of this type are
54
    allocated on MEM_ROOT and should not require destruction.
55
  */
56
  virtual ~Time_zone() {};
57
};
58
59
extern Time_zone * my_tz_UTC;
60
extern Time_zone * my_tz_SYSTEM;
61
extern Time_zone * my_tz_OFFSET0;
520.1.22 by Brian Aker
Second pass of thd cleanup
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);
1 by brian
clean slate
64
extern void        my_tz_free();
722.1.8 by Monty Taylor
Merged from Toru - removal of my_time_t.
65
extern time_t   sec_since_epoch_TIME(DRIZZLE_TIME *t);