- applied patch from Niels de Vos fixing debian package build dependency
[barry.git] / src / time.h
blob9fc281bc28831a65942df75ed653a1dae6432271
1 ///
2 /// \file time.h
3 /// Conversion between time_t and cenmin_t and back.
4 /// time_t is the POSIX time.
5 /// min1900_t is the minutes from Jan 1, 1900
6 ///
8 /*
9 Copyright (C) 2005-2007, Net Direct Inc. (http://www.netdirect.ca/)
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20 See the GNU General Public License in the COPYING file at the
21 root directory of this project for more details.
24 #ifndef __BARRY_TIME_H__
25 #define __BARRY_TIME_H__
27 #include <time.h>
30 // Calculate the number of minutes between Jan 01, 1900 and Jan 01, 1970
32 // There are 17 leap years between 1900 and 1970
33 // (1969-1900) / 4 = 17.25
35 // 1900 itself is not a leap year (not divisible by 400)
37 #define DAY_MINUTES (24 * 60)
38 #define YEAR_MINUTES (365 * DAY_MINUTES)
39 #define LEAP_YEAR_COUNT ((1970-1901) / 4)
40 #define YEAR_COUNT (1970 - 1900)
42 // therefore, the difference between standard C's time and min1900_t's
43 // time in minutes:
44 #define STDC_MIN1900_DIFF (YEAR_COUNT * YEAR_MINUTES + LEAP_YEAR_COUNT * DAY_MINUTES)
46 namespace Barry {
48 typedef long min1900_t;
50 min1900_t time2min(time_t t);
51 time_t min2time(min1900_t m);
53 // FIXME - turn TimeZone into a C typedef and wrap this in extern "C"
54 // so the data can be used in both C and C++ libraries
55 struct TimeZone
57 unsigned short Code;
58 signed short HourOffset;
59 signed short MinOffset;
60 char *Name;
63 // FIXME - put this somewhere for both C and C++
64 #define TIME_ZONE_CODE_ERR 0xffff
66 const TimeZone* GetTimeZoneTable();
67 const TimeZone* GetTimeZone(unsigned short Code);
68 unsigned short GetTimeZoneCode(signed short HourOffset,
69 signed short MinOffset = 0);
71 } // namespace Barry
73 #endif