1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems
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.
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.
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
24
* Structures and functions for:
26
* Calculating day number in Gregorian and Julian proleptic calendars.
27
* Converting between day numbers and dates in the calendars.
28
* Converting between different calendars.
29
* Calculating differences between dates.
31
* Works used in research:
33
* @cite "Calendrical Calculations", Dershowitz and Reingold
34
* @cite ISO 8601 http://en.wikipedia.org/wiki/ISO_8601
35
* @cite http://www.ddj.com/hpc-high-performance-computing/197006254
36
* @cite http://en.wikipedia.org/wiki/Julian_day#Calculation
39
#ifndef DRIZZLED_CALENDAR_H
40
#define DRIZZLED_CALENDAR_H
42
#define JULIAN_DAY_NUMBER_AT_ABSOLUTE_DAY_ONE INT64_C(1721425)
44
#define DAYS_IN_NORMAL_YEAR INT32_C(365)
45
#define DAYS_IN_LEAP_YEAR INT32_C(366)
47
#define GREGORIAN_START_YEAR 1582
48
#define GREGORIAN_START_MONTH 10
49
#define GREGORIAN_START_DAY 15
51
#define UNIX_EPOCH_MAX_YEARS 2038
52
#define UNIX_EPOCH_MIN_YEARS 1970
54
#define CALENDAR_YY_PART_YEAR 70
57
* The following constants define the system of calculating the number
58
* of days in various periods of time in the Gregorian calendar.
60
* Leap years (years containing 366 days) occur:
62
* - When the year is evenly divisible by 4
63
* - If the year is evenly divisible by 100, it must also
64
* be evenly divisible by 400.
66
#define GREGORIAN_DAYS_IN_400_YEARS UINT32_C(146097)
67
#define GREGORIAN_DAYS_IN_100_YEARS UINT32_C(36524)
68
#define GREGORIAN_DAYS_IN_4_YEARS UINT32_C(1461)
71
* Simple macro returning whether the supplied year
72
* is a leap year in the supplied calendar.
74
* @param Year to evaluate
75
* @param Calendar to use
77
#define IS_LEAP_YEAR(y, c) (days_in_year((y),(c)) == 366)
80
* Simple macro returning whether the supplied year
81
* is a leap year in the Gregorian proleptic calendar.
83
#define IS_GREGORIAN_LEAP_YEAR(y) (days_in_year_gregorian((y)) == 366)
86
* Simple macro returning whether the supplied year
87
* is a leap year in the Julian proleptic calendar.
89
#define IS_JULIAN_LEAP_YEAR(y) (days_in_year_julian((y)) == 366)
96
* Different calendars supported by the temporal library
107
* Calculates the Julian Day Number from the year, month
108
* and day supplied for a Gregorian Proleptic calendar date.
112
* Year month and day values are assumed to be valid. This
113
* method does no bounds checking or validation.
115
* @param Year of date
116
* @param Month of date
119
int64_t julian_day_number_from_gregorian_date(uint32_t year, uint32_t month, uint32_t day);
122
* Translates an absolute day number to a
125
* @param The absolute day number
127
int64_t absolute_day_number_to_julian_day_number(int64_t absolute_day);
130
* Translates a Julian day number to an
131
* absolute day number.
133
* @param The Julian day number
135
int64_t julian_day_number_to_absolute_day_number(int64_t julian_day);
138
* Given a supplied Julian Day Number, populates a year, month, and day
139
* with the date in the Gregorian Proleptic calendar which corresponds to
140
* the given Julian Day Number.
142
* @param Julian Day Number
143
* @param Pointer to year to populate
144
* @param Pointer to month to populate
145
* @param Pointer to the day to populate
147
void gregorian_date_from_julian_day_number(int64_t julian_day
149
, uint32_t *month_out
150
, uint32_t *day_out);
153
* Given a supplied Absolute Day Number, populates a year, month, and day
154
* with the date in the Gregorian Proleptic calendar which corresponds to
155
* the given Absolute Day Number.
157
* @param Absolute Day Number
158
* @param Pointer to year to populate
159
* @param Pointer to month to populate
160
* @param Pointer to the day to populate
162
void gregorian_date_from_absolute_day_number(int64_t absolute_day
164
, uint32_t *month_out
165
, uint32_t *day_out);
168
* Returns the number of days in a particular year.
170
* @param year to evaluate
171
* @param calendar to use
173
uint32_t days_in_year(uint32_t year, enum calendar calendar);
176
* Returns the number of days in a particular Gregorian Proleptic calendar year.
178
* @param year to evaluate
180
uint32_t days_in_year_gregorian(uint32_t year);
183
* Returns the number of days in a particular Julian Proleptic calendar year.
185
* @param year to evaluate
187
uint32_t days_in_year_julian(uint32_t year);
189
#define NUM_LEAP_YEARS(y, c) ((c) == GREGORIAN \
190
? number_of_leap_years_gregorian((y)) \
191
: number_of_leap_years_julian((y)))
194
* Returns the number of leap years that have
195
* occurred in the Julian Proleptic calendar
196
* up to the supplied year.
198
* @param year to evaluate (1 - 9999)
200
int32_t number_of_leap_years_julian(uint32_t year);
203
* Returns the number of leap years that have
204
* occurred in the Gregorian Proleptic calendar
205
* up to the supplied year.
207
* @param year to evaluate (1 - 9999)
209
int32_t number_of_leap_years_gregorian(uint32_t year);
212
* Returns the number of days in a month, given
213
* a year and a month in the Gregorian calendar.
215
* @param Year in Gregorian Proleptic calendar
216
* @param Month in date
218
uint32_t days_in_gregorian_year_month(uint32_t year, uint32_t month);
221
* Returns the number of the day in a week.
223
* @see temporal_to_number_days()
227
* Day Day Number Sunday first day?
228
* -------------- ----------- -----------------
244
* @param Number of days since start of Gregorian calendar.
245
* @param Consider Sunday the first day of the week?
247
uint32_t day_of_week(int64_t day_number, bool sunday_is_first_day_of_week);
250
* Given a year, month, and day, returns whether the date is
251
* valid for the Gregorian proleptic calendar.
257
bool is_valid_gregorian_date(uint32_t year, uint32_t month, uint32_t day);
260
* Returns whether the supplied date components are within the
261
* range of the UNIX epoch.
263
* Times in the range of 1970-01-01T00:00:00 to 2038-01-19T03:14:07
272
bool in_unix_epoch_range(uint32_t year
280
* Returns the number of the week from a supplied year, month, and
281
* date in the Gregorian proleptic calendar. We use strftime() and
282
* the %U, %W, and %V format specifiers depending on the value
283
* of the sunday_is_first_day_of_week parameter.
285
* @param Subject year
286
* @param Subject month
288
* @param Is sunday the first day of the week?
289
* @param Pointer to a uint32_t to hold the resulting year, which
290
* may be incremented or decremented depending on flags
292
uint32_t week_number_from_gregorian_date(uint32_t year
295
, bool sunday_is_first_day_of_week);
298
* Returns the ISO week number of a supplied year, month, and
299
* date in the Gregorian proleptic calendar. We use strftime() and
300
* the %V format specifier to do the calculation, which yields a
301
* correct ISO 8601:1988 week number.
303
* The final year_out parameter is a pointer to an integer which will
304
* be set to the year in which the week belongs, according to ISO8601:1988,
305
* which may be different from the Gregorian calendar year.
307
* @see http://en.wikipedia.org/wiki/ISO_8601
309
* @param Subject year
310
* @param Subject month
312
* @param Pointer to a uint32_t to hold the resulting year, which
313
* may be incremented or decremented depending on flags
315
uint32_t iso_week_number_from_gregorian_date(uint32_t year
318
, uint32_t *year_out);
320
* Takes a number in the form [YY]YYMM and converts it into
321
* a number of months.
323
* @param Period in the form [YY]YYMM
325
uint32_t year_month_to_months(uint32_t year_month);
328
* Takes a number of months and converts it to
329
* a period in the form YYYYMM.
331
* @param Number of months
333
uint32_t months_to_year_month(uint32_t months);
339
#endif /* DRIZZLED_CALENDAR_H */