blob: 7d39a77adb16773c41d48eb452aebf8f9a7df7f3 [file] [log] [blame]
Eric Andersenc98c0622001-12-06 15:16:43 +00001/*
2 * Calendar implementation for busybox
3 *
Eric Andersenc98c0622001-12-06 15:16:43 +00004 * See original copyright at the end of this file
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 GNU
14 * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20*/
Manuel Novoa III cad53642003-03-19 09:13:01 +000021
22/* BB_AUDIT SUSv3 compliant with -j and -y extensions (from util-linux). */
23/* BB_AUDIT BUG: The output of 'cal -j 1752' is incorrect. The upstream
24 * BB_AUDIT BUG: version in util-linux seems to be broken as well. */
25/* http://www.opengroup.org/onlinepubs/007904975/utilities/cal.html */
26
27/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
28 *
29 * Major size reduction... over 50% (>1.5k) on i386.
30 */
Eric Andersenc98c0622001-12-06 15:16:43 +000031
32#include <sys/types.h>
33#include <ctype.h>
34#include <err.h>
35#include <stdio.h>
36#include <stdlib.h>
37#include <string.h>
38#include <time.h>
39#include <unistd.h>
40
Manuel Novoa III b99cb642002-05-29 19:08:41 +000041#include "busybox.h"
42
Eric Andersenc98c0622001-12-06 15:16:43 +000043#ifdef CONFIG_LOCALE_SUPPORT
44#include <locale.h>
45#endif
46
Eric Andersenc98c0622001-12-06 15:16:43 +000047#define THURSDAY 4 /* for reformation */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000048#define SATURDAY 6 /* 1 Jan 1 was a Saturday */
Eric Andersenc98c0622001-12-06 15:16:43 +000049
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000050#define FIRST_MISSING_DAY 639787 /* 3 Sep 1752 */
51#define NUMBER_MISSING_DAYS 11 /* 11 day correction */
Eric Andersenc98c0622001-12-06 15:16:43 +000052
53#define MAXDAYS 42 /* max slots in a month array */
54#define SPACE -1 /* used in day array */
55
Manuel Novoa III cad53642003-03-19 09:13:01 +000056static const char days_in_month[] = {
57 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
Eric Andersenc98c0622001-12-06 15:16:43 +000058};
59
Manuel Novoa III cad53642003-03-19 09:13:01 +000060static const char sep1752[] = {
61 1, 2, 14, 15, 16,
Eric Andersenc98c0622001-12-06 15:16:43 +000062 17, 18, 19, 20, 21, 22, 23,
Manuel Novoa III cad53642003-03-19 09:13:01 +000063 24, 25, 26, 27, 28, 29, 30
Eric Andersenc98c0622001-12-06 15:16:43 +000064};
65
Manuel Novoa III cad53642003-03-19 09:13:01 +000066static int julian;
Eric Andersenc98c0622001-12-06 15:16:43 +000067
Eric Andersenaff114c2004-04-14 17:51:38 +000068/* leap year -- account for Gregorian reformation in 1752 */
Eric Andersenc98c0622001-12-06 15:16:43 +000069#define leap_year(yr) \
70 ((yr) <= 1752 ? !((yr) % 4) : \
71 (!((yr) % 4) && ((yr) % 100)) || !((yr) % 400))
72
Manuel Novoa III cad53642003-03-19 09:13:01 +000073static int is_leap_year(int year)
74{
75 return leap_year(year);
76}
77#undef leap_year
78#define leap_year(yr) is_leap_year(yr)
79
Eric Andersenc98c0622001-12-06 15:16:43 +000080/* number of centuries since 1700, not inclusive */
81#define centuries_since_1700(yr) \
82 ((yr) > 1700 ? (yr) / 100 - 17 : 0)
83
84/* number of centuries since 1700 whose modulo of 400 is 0 */
85#define quad_centuries_since_1700(yr) \
86 ((yr) > 1600 ? ((yr) - 1600) / 400 : 0)
87
88/* number of leap years between year 1 and this year, not inclusive */
89#define leap_years_since_year_1(yr) \
90 ((yr) / 4 - centuries_since_1700(yr) + quad_centuries_since_1700(yr))
91
Manuel Novoa III cad53642003-03-19 09:13:01 +000092static void center __P((char *, int, int));
93static void day_array __P((int, int, int *));
94static void trim_trailing_spaces_and_print __P((char *));
95
96static void blank_string(char *buf, size_t buflen);
97static char *build_row(char *p, int *dp);
98
99#define DAY_LEN 3 /* 3 spaces per day */
100#define J_DAY_LEN (DAY_LEN + 1)
101#define WEEK_LEN 20 /* 7 * 3 - one space at the end */
102#define J_WEEK_LEN (WEEK_LEN + 7)
103#define HEAD_SEP 2 /* spaces between day headings */
Eric Andersenc98c0622001-12-06 15:16:43 +0000104
105int cal_main(int argc, char **argv)
106{
107 struct tm *local_time;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000108 struct tm zero_tm;
Eric Andersenc98c0622001-12-06 15:16:43 +0000109 time_t now;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000110 int month, year, flags, i;
111 char *month_names[12];
112 char day_headings[28]; /* 28 for julian, 21 for nonjulian */
Eric Andersenc98c0622001-12-06 15:16:43 +0000113 char buf[40];
114
115#ifdef CONFIG_LOCALE_SUPPORT
116 setlocale(LC_TIME, "");
117#endif
118
Manuel Novoa III cad53642003-03-19 09:13:01 +0000119 flags = bb_getopt_ulflags(argc, argv, "jy");
120
121 julian = flags & 1;
122
Eric Andersenc98c0622001-12-06 15:16:43 +0000123 argv += optind;
124
125 month = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000126
127 if ((argc -= optind) > 2) {
128 bb_show_usage();
129 }
130
131 if (!argc) {
Eric Andersenc98c0622001-12-06 15:16:43 +0000132 time(&now);
133 local_time = localtime(&now);
134 year = local_time->tm_year + 1900;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000135 if (!(flags & 2)) {
Eric Andersenc98c0622001-12-06 15:16:43 +0000136 month = local_time->tm_mon + 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000137 }
138 } else {
139 if (argc == 2) {
140 month = bb_xgetularg10_bnd(*argv++, 1, 12);
141 }
142 year = bb_xgetularg10_bnd(*argv, 1, 9999);
Eric Andersenc98c0622001-12-06 15:16:43 +0000143 }
144
Manuel Novoa III cad53642003-03-19 09:13:01 +0000145 blank_string(day_headings, sizeof(day_headings) - 7 + 7*julian);
146
147 i = 0;
148 do {
Eric Andersenc98c0622001-12-06 15:16:43 +0000149 zero_tm.tm_mon = i;
150 strftime(buf, sizeof(buf), "%B", &zero_tm);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000151 month_names[i] = bb_xstrdup(buf);
Eric Andersenc98c0622001-12-06 15:16:43 +0000152
Manuel Novoa III cad53642003-03-19 09:13:01 +0000153 if (i < 7) {
154 zero_tm.tm_wday = i;
155 strftime(buf, sizeof(buf), "%a", &zero_tm);
156 strncpy(day_headings + i * (3+julian) + julian, buf, 2);
157 }
158 } while (++i < 12);
Eric Andersenc98c0622001-12-06 15:16:43 +0000159
Manuel Novoa III cad53642003-03-19 09:13:01 +0000160 if (month) {
161 int row, len, days[MAXDAYS];
162 int *dp = days;
163 char lineout[30];
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000164
Manuel Novoa III cad53642003-03-19 09:13:01 +0000165 day_array(month, year, dp);
166 len = sprintf(lineout, "%s %d", month_names[month - 1], year);
167 bb_printf("%*s%s\n%s\n",
168 ((7*julian + WEEK_LEN) - len) / 2, "",
169 lineout, day_headings);
Eric Andersenc98c0622001-12-06 15:16:43 +0000170 for (row = 0; row < 6; row++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000171 build_row(lineout, dp)[0] = '\0';
172 dp += 7;
173 trim_trailing_spaces_and_print(lineout);
174 }
175 } else {
176 int row, which_cal, week_len, days[12][MAXDAYS];
177 int *dp;
178 char lineout[80];
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000179
Manuel Novoa III cad53642003-03-19 09:13:01 +0000180 sprintf(lineout, "%d", year);
181 center(lineout,
182 (WEEK_LEN * 3 + HEAD_SEP * 2)
183 + julian * (J_WEEK_LEN * 2 + HEAD_SEP
184 - (WEEK_LEN * 3 + HEAD_SEP * 2)),
185 0);
186 puts("\n"); /* two \n's */
187 for (i = 0; i < 12; i++) {
188 day_array(i + 1, year, days[i]);
189 }
190 blank_string(lineout, sizeof(lineout));
191 week_len = WEEK_LEN + julian * (J_WEEK_LEN - WEEK_LEN);
192 for (month = 0; month < 12; month += 3-julian) {
193 center(month_names[month], week_len, HEAD_SEP);
194 if (!julian) {
195 center(month_names[month + 1], week_len, HEAD_SEP);
Eric Andersenc98c0622001-12-06 15:16:43 +0000196 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000197 center(month_names[month + 2 - julian], week_len, 0);
198 bb_printf("\n%s%*s%s", day_headings, HEAD_SEP, "", day_headings);
199 if (!julian) {
200 bb_printf("%*s%s", HEAD_SEP, "", day_headings);
201 }
202 putchar('\n');
203 for (row = 0; row < (6*7); row += 7) {
204 for (which_cal = 0; which_cal < 3-julian; which_cal++) {
205 dp = days[month + which_cal] + row;
206 build_row(lineout + which_cal * (week_len + 2), dp);
207 }
208 /* blank_string took care of nul termination. */
209 trim_trailing_spaces_and_print(lineout);
210 }
Eric Andersenc98c0622001-12-06 15:16:43 +0000211 }
212 }
Eric Andersenc98c0622001-12-06 15:16:43 +0000213
Manuel Novoa III cad53642003-03-19 09:13:01 +0000214 bb_fflush_stdout_and_exit(0);
Eric Andersenc98c0622001-12-06 15:16:43 +0000215}
216
217/*
218 * day_array --
219 * Fill in an array of 42 integers with a calendar. Assume for a moment
220 * that you took the (maximum) 6 rows in a calendar and stretched them
221 * out end to end. You would have 42 numbers or spaces. This routine
222 * builds that array for any month from Jan. 1 through Dec. 9999.
223 */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000224static void day_array(int month, int year, int *days)
Eric Andersenc98c0622001-12-06 15:16:43 +0000225{
226 long temp;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000227 int i;
228 int j_offset;
229 int day, dw, dm;
Eric Andersenc98c0622001-12-06 15:16:43 +0000230
Manuel Novoa III cad53642003-03-19 09:13:01 +0000231 memset(days, SPACE, MAXDAYS * sizeof(int));
Eric Andersenc98c0622001-12-06 15:16:43 +0000232
Manuel Novoa III cad53642003-03-19 09:13:01 +0000233 if ((month == 9) && (year == 1752)) {
"Vladimir N. Oleynik"676b15e2006-01-30 13:47:19 +0000234 size_t oday = 0;
235
Manuel Novoa III cad53642003-03-19 09:13:01 +0000236 j_offset = julian * 244;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000237 do {
"Vladimir N. Oleynik"676b15e2006-01-30 13:47:19 +0000238 days[oday+2] = sep1752[oday] + j_offset;
239 } while (++oday < sizeof(sep1752));
Eric Andersenc98c0622001-12-06 15:16:43 +0000240
Eric Andersenc98c0622001-12-06 15:16:43 +0000241 return;
242 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000243
244 /* day_in_year
245 * return the 1 based day number within the year
246 */
247 day = 1;
248 if ((month > 2) && leap_year(year)) {
249 ++day;
Eric Andersenc98c0622001-12-06 15:16:43 +0000250 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000251
252 i = month;
253 while (i) {
254 day += days_in_month[--i];
255 }
256
257 /* day_in_week
258 * return the 0 based day number for any date from 1 Jan. 1 to
259 * 31 Dec. 9999. Assumes the Gregorian reformation eliminates
260 * 3 Sep. 1752 through 13 Sep. 1752. Returns Thursday for all
261 * missing days.
262 */
263 dw = THURSDAY;
264 temp = (long)(year - 1) * 365 + leap_years_since_year_1(year - 1)
265 + day;
266 if (temp < FIRST_MISSING_DAY) {
267 dw = ((temp - 1 + SATURDAY) % 7);
268 } else if (temp >= (FIRST_MISSING_DAY + NUMBER_MISSING_DAYS)) {
269 dw = (((temp - 1 + SATURDAY) - NUMBER_MISSING_DAYS) % 7);
270 }
271
272 if (!julian) {
273 day = 1;
274 }
275
276 dm = days_in_month[month];
277 if ((month == 2) && leap_year(year)) {
278 ++dm;
279 }
280
281 while (dm) {
282 days[dw++] = day++;
283 --dm;
284 }
Eric Andersenc98c0622001-12-06 15:16:43 +0000285}
286
Manuel Novoa III cad53642003-03-19 09:13:01 +0000287static void trim_trailing_spaces_and_print(char *s)
Eric Andersenc98c0622001-12-06 15:16:43 +0000288{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000289 char *p = s;
Eric Andersenc98c0622001-12-06 15:16:43 +0000290
Manuel Novoa III cad53642003-03-19 09:13:01 +0000291 while (*p) {
Eric Andersenc98c0622001-12-06 15:16:43 +0000292 ++p;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000293 }
294 while (p > s) {
295 --p;
296 if (!(isspace)(*p)) { /* We want the function... not the inline. */
297 p[1] = '\0';
298 break;
299 }
300 }
301
302 puts(s);
Eric Andersenc98c0622001-12-06 15:16:43 +0000303}
304
Manuel Novoa III cad53642003-03-19 09:13:01 +0000305static void center(char *str, int len, int separate)
Eric Andersenc98c0622001-12-06 15:16:43 +0000306{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000307 int n = strlen(str);
308 len -= n;
309 bb_printf("%*s%*s", (len/2) + n, str, (len/2) + (len % 2) + separate, "");
Eric Andersenc98c0622001-12-06 15:16:43 +0000310}
311
Manuel Novoa III cad53642003-03-19 09:13:01 +0000312static void blank_string(char *buf, size_t buflen)
313{
314 memset(buf, ' ', buflen);
315 buf[buflen-1] = '\0';
316}
317
318static char *build_row(char *p, int *dp)
319{
320 int col, val, day;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000321
Manuel Novoa III cad53642003-03-19 09:13:01 +0000322 memset(p, ' ', (julian + DAY_LEN) * 7);
323
324 col = 0;
325 do {
326 if ((day = *dp++) != SPACE) {
327 if (julian) {
Manuel Novoa III 5b3c0562003-08-13 12:11:33 +0000328 ++p;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000329 if (day >= 100) {
330 *p = '0';
331 p[-1] = (day / 100) + '0';
332 day %= 100;
333 }
334 }
335 if ((val = day / 10) > 0) {
336 *p = val + '0';
337 }
338 *++p = day % 10 + '0';
339 p += 2;
340 } else {
341 p += DAY_LEN + julian;
342 }
343 } while (++col < 7);
344
345 return p;
346}
Eric Andersenc98c0622001-12-06 15:16:43 +0000347
348/*
349 * Copyright (c) 1989, 1993, 1994
350 * The Regents of the University of California. All rights reserved.
351 *
352 * This code is derived from software contributed to Berkeley by
353 * Kim Letkeman.
354 *
355 * Redistribution and use in source and binary forms, with or without
356 * modification, are permitted provided that the following conditions
357 * are met:
358 * 1. Redistributions of source code must retain the above copyright
359 * notice, this list of conditions and the following disclaimer.
360 * 2. Redistributions in binary form must reproduce the above copyright
361 * notice, this list of conditions and the following disclaimer in the
362 * documentation and/or other materials provided with the distribution.
Aaron Lehmann69d41782002-06-23 22:25:24 +0000363 * 3. Neither the name of the University nor the names of its contributors
Eric Andersenc98c0622001-12-06 15:16:43 +0000364 * may be used to endorse or promote products derived from this software
365 * without specific prior written permission.
366 *
367 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
368 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
369 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
370 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
371 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
372 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
373 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
374 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
375 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
376 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
377 * SUCH DAMAGE.
378 */
379
380