~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/tztime.h

Removed my_vsnprintf and my_snprintf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
 
 
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
21
20
 
22
21
/**
23
22
  This class represents abstract time zone and provides 
24
 
  basic interface for DRIZZLE_TIME <-> my_time_t conversion.
 
23
  basic interface for MYSQL_TIME <-> my_time_t conversion.
25
24
  Actual time zones which are specified by DB, or via offset 
26
25
  or use system functions are its descendants.
27
26
*/
30
29
public:
31
30
  Time_zone() {}                              /* Remove gcc warning */
32
31
  /**
33
 
    Converts local time in broken down DRIZZLE_TIME representation to 
 
32
    Converts local time in broken down MYSQL_TIME representation to 
34
33
    my_time_t (UTC seconds since Epoch) represenation.
35
34
    Returns 0 in case of error. Sets in_dst_time_gap to true if date provided
36
35
    falls into spring time-gap (or lefts it untouched otherwise).
37
36
  */
38
 
  virtual my_time_t TIME_to_gmt_sec(const DRIZZLE_TIME *t, 
39
 
                                    bool *in_dst_time_gap) const = 0;
 
37
  virtual my_time_t TIME_to_gmt_sec(const MYSQL_TIME *t, 
 
38
                                    my_bool *in_dst_time_gap) const = 0;
40
39
  /**
41
40
    Converts time in my_time_t representation to local time in
42
 
    broken down DRIZZLE_TIME representation.
 
41
    broken down MYSQL_TIME representation.
43
42
  */
44
 
  virtual void   gmt_sec_to_TIME(DRIZZLE_TIME *tmp, my_time_t t) const = 0;
 
43
  virtual void   gmt_sec_to_TIME(MYSQL_TIME *tmp, my_time_t t) const = 0;
45
44
  /**
46
45
    Because of constness of String returned by get_name() time zone name 
47
46
    have to be already zeroended to be able to use String::ptr() instead
60
59
extern Time_zone * my_tz_SYSTEM;
61
60
extern Time_zone * my_tz_OFFSET0;
62
61
extern Time_zone * my_tz_find(THD *thd, const String *name);
63
 
extern bool     my_tz_init(THD *org_thd, const char *default_tzname);
 
62
extern bool     my_tz_init(THD *org_thd, const char *default_tzname, my_bool bootstrap);
64
63
extern void        my_tz_free();
65
 
extern my_time_t   sec_since_epoch_TIME(DRIZZLE_TIME *t);
 
64
extern my_time_t   sec_since_epoch_TIME(MYSQL_TIME *t);