/usr/include/glibmm-2.4/glibmm/timezone.h is in libglibmm-2.4-dev 2.32.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 | // -*- c++ -*-
// Generated by gtkmmproc -- DO NOT MODIFY!
#ifndef _GLIBMM_TIMEZONE_H
#define _GLIBMM_TIMEZONE_H
/* Copyright (C) 2011 The glibmm Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <glibmmconfig.h>
#include <glibmm/refptr.h>
#include <glibmm/ustring.h>
#include <glib.h>
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef struct _GTimeZone GTimeZone;
#endif
namespace Glib
{
/** @addtogroup glibmmEnums glibmm Enums and Flags */
/**
* @ingroup glibmmEnums
*/
enum TimeType
{
TIME_TYPE_STANDARD,
TIME_TYPE_DAYLIGHT,
TIME_TYPE_UNIVERSAL
};
/** TimeZone - A structure representing a time zone.
* TimeZone is a structure that represents a time zone, at no particular point
* in time. It is refcounted and immutable.
*
* A time zone contains a number of intervals. Each interval has an
* abbreviation to describe it, an offet to UTC and a flag indicating if the
* daylight savings time is in effect during that interval. A time zone always
* has at least one interval -- interval 0.
*
* Every UTC time is contained within exactly one interval, but a given local
* time may be contained within zero, one or two intervals (due to
* incontinuities associated with daylight savings time).
*
* An interval may refer to a specific period of time (eg: the duration of
* daylight savings time during 2010) or it may refer to many periods of time
* that share the same properties (eg: all periods of daylight savings time).
* It is also possible (usually for political reasons) that some properties
* (like the abbreviation) change between intervals without other properties
* changing.
* @newin{2,30}
*/
class TimeZone
{
public:
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef TimeZone CppObjectType;
typedef GTimeZone BaseObjectType;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
TimeZone();
// Use make_a_copy=true when getting it directly from a struct.
explicit TimeZone(GTimeZone* castitem, bool make_a_copy = false);
TimeZone(const TimeZone& src);
TimeZone& operator=(const TimeZone& src);
~TimeZone();
GTimeZone* gobj() { return gobject_; }
const GTimeZone* gobj() const { return gobject_; }
///Provides access to the underlying C instance. The caller is responsible for freeing it. Use when directly setting fields in structs.
GTimeZone* gobj_copy() const;
protected:
GTimeZone* gobject_;
private:
public:
/** Creates a TimeZone corresponding to @a identifier.
*
* @a identifier can either be an RFC3339/ISO 8601 time offset or
* something that would pass as a valid value for the
* <varname>TZ</varname> environment variable (including <tt>0</tt>).
*
* Valid RFC3339 time offsets are <tt>"Z"</tt> (for UTC) or
* <tt>"±hh:mm"</tt>. ISO 8601 additionally specifies
* <tt>"±hhmm"</tt> and <tt>"±hh"</tt>.
*
* The <varname>TZ</varname> environment variable typically corresponds
* to the name of a file in the zoneinfo database, but there are many
* other possibilities. Note that those other possibilities are not
* currently implemented, but are planned.
*
* g_time_zone_new_local() calls this function with the value of the
* <varname>TZ</varname> environment variable. This function itself is
* independent of the value of <varname>TZ</varname>, but if @a identifier
* is <tt>0</tt> then <filename>/etc/localtime</filename> will be consulted
* to discover the correct timezone.
*
* See RFC3339
* §5.6 for a precise definition of valid RFC3339 time offsets
* (the <varname>time-offset</varname> expansion) and ISO 8601 for the
* full list of valid time offsets. See The
* GNU C Library manual for an explanation of the possible
* values of the <varname>TZ</varname> environment variable.
*
* You should release the return value by calling g_time_zone_unref()
* when you are done with it.
*
* @newin{2,26}
* @param identifier A timezone identifier.
* @return The requested timezone.
*/
static TimeZone create(const Glib::ustring& identifier);
/** Creates a TimeZone corresponding to local time. The local time
* zone may change between invocations to this function; for example,
* if the system administrator changes it.
*
* This is equivalent to calling g_time_zone_new() with the value of the
* <varname>TZ</varname> environment variable (including the possibility
* of <tt>0</tt>).
*
* You should release the return value by calling g_time_zone_unref()
* when you are done with it.
*
* @newin{2,26}
* @return The local timezone.
*/
static TimeZone create_local();
/** Creates a TimeZone corresponding to UTC.
*
* This is equivalent to calling g_time_zone_new() with a value like
* "Z", "UTC", "+00", etc.
*
* You should release the return value by calling g_time_zone_unref()
* when you are done with it.
*
* @newin{2,26}
* @return The universal timezone.
*/
static TimeZone create_utc();
/** Finds an the interval within @a tz that corresponds to the given @a time.
* The meaning of @a time depends on @a type.
*
* If @a type is TIME_TYPE_UNIVERSAL then this function will always
* succeed (since universal time is monotonic and continuous).
*
* Otherwise @a time is treated is local time. The distinction between
* TIME_TYPE_STANDARD and TIME_TYPE_DAYLIGHT is ignored except in
* the case that the given @a time is ambiguous. In Toronto, for example,
* 01:30 on November 7th 2010 occurred twice (once inside of daylight
* savings time and the next, an hour later, outside of daylight savings
* time). In this case, the different value of @a type would result in a
* different interval being returned.
*
* It is still possible for this function to fail. In Toronto, for
* example, 02:00 on March 14th 2010 does not exist (due to the leap
* forward to begin daylight savings time). -1 is returned in that
* case.
*
* @newin{2,26}
* @param type The TimeType of @a time.
* @param time A number of seconds since January 1, 1970.
* @return The interval containing @a time, or -1 in case of failure.
*/
int find_interval(TimeType type, gint64 time) const;
/** Finds an interval within @a tz that corresponds to the given @a time,
* possibly adjusting @a time if required to fit into an interval.
* The meaning of @a time depends on @a type.
*
* This function is similar to g_time_zone_find_interval(), with the
* difference that it always succeeds (by making the adjustments
* described below).
*
* In any of the cases where g_time_zone_find_interval() succeeds then
* this function returns the same value, without modifying @a time.
*
* This function may, however, modify @a time in order to deal with
* non-existent times. If the non-existent local @a time of 02:30 were
* requested on March 13th 2010 in Toronto then this function would
* adjust @a time to be 03:00 and return the interval containing the
* adjusted time.
*
* @newin{2,26}
* @param type The TimeType of @a time.
* @param time A pointer to a number of seconds since January 1, 1970.
* @return The interval containing @a time, never -1.
*/
int adjust_time(TimeType type, gint64& time) const;
/** Determines the time zone abbreviation to be used during a particular
* @a interval of time in the time zone @a tz.
*
* For example, in Toronto this is currently "EST" during the winter
* months and "EDT" during the summer months when daylight savings time
* is in effect.
*
* @newin{2,26}
* @param interval An interval within the timezone.
* @return The time zone abbreviation, which belongs to @a tz.
*/
Glib::ustring get_abbreviation(int interval) const;
/** Determines the offset to UTC in effect during a particular @a interval
* of time in the time zone @a tz.
*
* The offset is the number of seconds that you add to UTC time to
* arrive at local time for @a tz (ie: negative numbers for time zones
* west of GMT, positive numbers for east).
*
* @newin{2,26}
* @param interval An interval within the timezone.
* @return The number of seconds that should be added to UTC to get the
* local time in @a tz.
*/
gint32 get_offset(int interval) const;
/** Determines if daylight savings time is in effect during a particular
* @a interval of time in the time zone @a tz.
*
* @newin{2,26}
* @param interval An interval within the timezone.
* @return <tt>true</tt> if daylight savings time is in effect.
*/
bool is_dst(int interval) const;
};
} // namespace Glib
namespace Glib
{
/** A Glib::wrap() method for this object.
*
* @param object The C instance.
* @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref.
* @result A C++ instance that wraps this C instance.
*
* @relates Glib::TimeZone
*/
Glib::TimeZone wrap(GTimeZone* object, bool take_copy = false);
} // namespace Glib
#endif /* _GLIBMM_TIMEZONE_H */
|