1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2006, 2007, 2008, 2010, 2011 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 #include "data/calendar.h"
24 #include "data/settings.h"
25 #include "data/val-type.h"
28 #define _(msgid) gettext (msgid)
31 #define EPOCH (-577734)
33 /* Calculates and returns floor(a/b) for integer b > 0. */
35 floor_div (int a, int b)
38 return (a >= 0 ? a : a - b + 1) / b;
41 /* Calculates floor(a/b) and the corresponding remainder and
42 stores them into *Q and *R. */
44 floor_divmod (int a, int b, int *q, int *r)
46 *q = floor_div (a, b);
50 /* Returns true if Y is a leap year, false otherwise. */
54 return y % 4 == 0 && (y % 100 != 0 || y % 400 == 0);
58 raw_gregorian_to_offset (int y, int m, int d)
62 + floor_div (y - 1, 4)
63 - floor_div (y - 1, 100)
64 + floor_div (y - 1, 400)
65 + floor_div (367 * m - 362, 12)
66 + (m <= 2 ? 0 : (m >= 2 && is_leap_year (y) ? -1 : -2))
70 /* Returns the number of days from 14 Oct 1582 to (Y,M,D) in the
71 Gregorian calendar. Returns SYSMIS for dates before 14 Oct
74 calendar_gregorian_to_offset (int y, int m, int d, char **errorp)
77 if (y >= 0 && y < 100)
79 int epoch = settings_get_epoch ();
80 int century = epoch / 100 + (y < epoch % 100);
84 /* Normalize month. */
100 *errorp = xasprintf (_("Month %d is not in acceptable range of "
110 *errorp = xasprintf (_("Day %d is not in acceptable range of "
116 if (y < 1582 || (y == 1582 && (m < 10 || (m == 10 && d < 15))))
119 *errorp = xasprintf (_("Date %04d-%d-%d is before the earliest "
120 "acceptable date of 1582-10-15."), y, m, d);
124 /* Calculate offset. */
127 return raw_gregorian_to_offset (y, m, d);
130 /* Returns the number of days in the given YEAR from January 1 up
131 to (but not including) the first day of MONTH. */
133 cum_month_days (int year, int month)
135 static const int cum_month_days[12] =
140 31 + 28 + 31, /* Mar */
141 31 + 28 + 31 + 30, /* Apr */
142 31 + 28 + 31 + 30 + 31, /* May */
143 31 + 28 + 31 + 30 + 31 + 30, /* Jun */
144 31 + 28 + 31 + 30 + 31 + 30 + 31, /* Jul */
145 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31, /* Aug */
146 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30, /* Sep */
147 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31, /* Oct */
148 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30, /* Nov */
151 assert (month >= 1 && month <= 12);
152 return cum_month_days[month - 1] + (month >= 3 && is_leap_year (year));
155 /* Takes a count of days from 14 Oct 1582 and returns the
156 Gregorian calendar year it is in. Dates both before and after
157 the epoch are supported. */
159 calendar_offset_to_year (int ofs)
169 floor_divmod (d0, 365 * 400 + 100 - 3, &n400, &d1);
170 floor_divmod (d1, 365 * 100 + 25 - 1, &n100, &d2);
171 floor_divmod (d2, 365 * 4 + 1, &n4, &d3);
172 n1 = floor_div (d3, 365);
173 y = 400 * n400 + 100 * n100 + 4 * n4 + n1;
174 if (n100 != 4 && n1 != 4)
180 /* Takes a count of days from 14 Oct 1582 and translates it into
181 a Gregorian calendar date in (*Y,*M,*D). Also stores the
182 year-relative day number into *YD. Dates both before and
183 after the epoch are supported. */
185 calendar_offset_to_gregorian (int ofs, int *y, int *m, int *d, int *yd)
187 int year = *y = calendar_offset_to_year (ofs);
188 int january1 = raw_gregorian_to_offset (year, 1, 1);
189 int yday = *yd = ofs - january1 + 1;
190 int march1 = january1 + cum_month_days (year, 3);
191 int correction = ofs < march1 ? 0 : (is_leap_year (year) ? 1 : 2);
192 int month = *m = (12 * (yday - 1 + correction) + 373) / 367;
193 *d = yday - cum_month_days (year, month);
196 /* Takes a count of days from 14 Oct 1582 and returns the 1-based
197 year-relative day number, that is, the number of days from the
198 beginning of the year. */
200 calendar_offset_to_yday (int ofs)
202 int year = calendar_offset_to_year (ofs);
203 int january1 = raw_gregorian_to_offset (year, 1, 1);
204 int yday = ofs - january1 + 1;
208 /* Takes a count of days from 14 Oct 1582 and returns the
209 corresponding weekday 1...7, with 1=Sunday. */
211 calendar_offset_to_wday (int ofs)
213 int wday = (ofs - EPOCH + 1) % 7 + 1;
219 /* Takes a count of days from 14 Oct 1582 and returns the month
222 calendar_offset_to_month (int ofs)
225 calendar_offset_to_gregorian (ofs, &y, &m, &d, &yd);
229 /* Takes a count of days from 14 Oct 1582 and returns the
230 corresponding day of the month. */
232 calendar_offset_to_mday (int ofs)
235 calendar_offset_to_gregorian (ofs, &y, &m, &d, &yd);
239 /* Returns the number of days in the specified month. */
241 calendar_days_in_month (int y, int m)
243 static const int days_per_month[12]
244 = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
246 assert (m >= 1 && m <= 12);
247 return m == 2 && is_leap_year (y) ? 29 : days_per_month[m - 1];