blob: 3d617916e8107965bc6ef87ef7d6896ff104ba11 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Eric Andersenc98c0622001-12-06 15:16:43 +00002/*
3 * Calendar implementation for busybox
4 *
Eric Andersenc98c0622001-12-06 15:16:43 +00005 * See original copyright at the end of this file
6 *
"Robert P. J. Day"801ab142006-07-12 07:56:04 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8 */
Manuel Novoa III cad53642003-03-19 09:13:01 +00009
10/* BB_AUDIT SUSv3 compliant with -j and -y extensions (from util-linux). */
11/* BB_AUDIT BUG: The output of 'cal -j 1752' is incorrect. The upstream
12 * BB_AUDIT BUG: version in util-linux seems to be broken as well. */
13/* http://www.opengroup.org/onlinepubs/007904975/utilities/cal.html */
14
15/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
16 *
17 * Major size reduction... over 50% (>1.5k) on i386.
18 */
Eric Andersenc98c0622001-12-06 15:16:43 +000019
Manuel Novoa III b99cb642002-05-29 19:08:41 +000020#include "busybox.h"
21
Eric Andersenc98c0622001-12-06 15:16:43 +000022#define THURSDAY 4 /* for reformation */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000023#define SATURDAY 6 /* 1 Jan 1 was a Saturday */
Eric Andersenc98c0622001-12-06 15:16:43 +000024
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000025#define FIRST_MISSING_DAY 639787 /* 3 Sep 1752 */
26#define NUMBER_MISSING_DAYS 11 /* 11 day correction */
Eric Andersenc98c0622001-12-06 15:16:43 +000027
28#define MAXDAYS 42 /* max slots in a month array */
29#define SPACE -1 /* used in day array */
30
Manuel Novoa III cad53642003-03-19 09:13:01 +000031static const char days_in_month[] = {
32 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
Eric Andersenc98c0622001-12-06 15:16:43 +000033};
34
Manuel Novoa III cad53642003-03-19 09:13:01 +000035static const char sep1752[] = {
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000036 1, 2, 14, 15, 16,
Eric Andersenc98c0622001-12-06 15:16:43 +000037 17, 18, 19, 20, 21, 22, 23,
Manuel Novoa III cad53642003-03-19 09:13:01 +000038 24, 25, 26, 27, 28, 29, 30
Eric Andersenc98c0622001-12-06 15:16:43 +000039};
40
Manuel Novoa III cad53642003-03-19 09:13:01 +000041static int julian;
Eric Andersenc98c0622001-12-06 15:16:43 +000042
Eric Andersenaff114c2004-04-14 17:51:38 +000043/* leap year -- account for Gregorian reformation in 1752 */
Eric Andersenc98c0622001-12-06 15:16:43 +000044#define leap_year(yr) \
45 ((yr) <= 1752 ? !((yr) % 4) : \
46 (!((yr) % 4) && ((yr) % 100)) || !((yr) % 400))
47
Manuel Novoa III cad53642003-03-19 09:13:01 +000048static int is_leap_year(int year)
49{
50 return leap_year(year);
51}
52#undef leap_year
53#define leap_year(yr) is_leap_year(yr)
54
Eric Andersenc98c0622001-12-06 15:16:43 +000055/* number of centuries since 1700, not inclusive */
56#define centuries_since_1700(yr) \
57 ((yr) > 1700 ? (yr) / 100 - 17 : 0)
58
59/* number of centuries since 1700 whose modulo of 400 is 0 */
60#define quad_centuries_since_1700(yr) \
61 ((yr) > 1600 ? ((yr) - 1600) / 400 : 0)
62
63/* number of leap years between year 1 and this year, not inclusive */
64#define leap_years_since_year_1(yr) \
65 ((yr) / 4 - centuries_since_1700(yr) + quad_centuries_since_1700(yr))
66
"Vladimir N. Oleynik"5c2b2382006-02-28 10:15:42 +000067static void center (char *, int, int);
68static void day_array (int, int, int *);
69static void trim_trailing_spaces_and_print (char *);
Manuel Novoa III cad53642003-03-19 09:13:01 +000070
71static void blank_string(char *buf, size_t buflen);
72static char *build_row(char *p, int *dp);
73
74#define DAY_LEN 3 /* 3 spaces per day */
75#define J_DAY_LEN (DAY_LEN + 1)
76#define WEEK_LEN 20 /* 7 * 3 - one space at the end */
77#define J_WEEK_LEN (WEEK_LEN + 7)
78#define HEAD_SEP 2 /* spaces between day headings */
Eric Andersenc98c0622001-12-06 15:16:43 +000079
Denis Vlasenko06af2162007-02-03 17:28:39 +000080int cal_main(int argc, char **argv);
Eric Andersenc98c0622001-12-06 15:16:43 +000081int cal_main(int argc, char **argv)
82{
83 struct tm *local_time;
Manuel Novoa III cad53642003-03-19 09:13:01 +000084 struct tm zero_tm;
Eric Andersenc98c0622001-12-06 15:16:43 +000085 time_t now;
Manuel Novoa III cad53642003-03-19 09:13:01 +000086 int month, year, flags, i;
87 char *month_names[12];
88 char day_headings[28]; /* 28 for julian, 21 for nonjulian */
Eric Andersenc98c0622001-12-06 15:16:43 +000089 char buf[40];
90
Denis Vlasenko67b23e62006-10-03 21:00:06 +000091 flags = getopt32(argc, argv, "jy");
Manuel Novoa III cad53642003-03-19 09:13:01 +000092
93 julian = flags & 1;
94
Eric Andersenc98c0622001-12-06 15:16:43 +000095 argv += optind;
96
97 month = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +000098
99 if ((argc -= optind) > 2) {
100 bb_show_usage();
101 }
102
103 if (!argc) {
Eric Andersenc98c0622001-12-06 15:16:43 +0000104 time(&now);
105 local_time = localtime(&now);
106 year = local_time->tm_year + 1900;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000107 if (!(flags & 2)) {
Eric Andersenc98c0622001-12-06 15:16:43 +0000108 month = local_time->tm_mon + 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000109 }
110 } else {
111 if (argc == 2) {
Denis Vlasenko13858992006-10-08 12:49:22 +0000112 month = xatoul_range(*argv++, 1, 12);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000113 }
Denis Vlasenko13858992006-10-08 12:49:22 +0000114 year = xatoul_range(*argv, 1, 9999);
Eric Andersenc98c0622001-12-06 15:16:43 +0000115 }
116
Manuel Novoa III cad53642003-03-19 09:13:01 +0000117 blank_string(day_headings, sizeof(day_headings) - 7 + 7*julian);
118
119 i = 0;
120 do {
Eric Andersenc98c0622001-12-06 15:16:43 +0000121 zero_tm.tm_mon = i;
122 strftime(buf, sizeof(buf), "%B", &zero_tm);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000123 month_names[i] = xstrdup(buf);
Eric Andersenc98c0622001-12-06 15:16:43 +0000124
Manuel Novoa III cad53642003-03-19 09:13:01 +0000125 if (i < 7) {
126 zero_tm.tm_wday = i;
127 strftime(buf, sizeof(buf), "%a", &zero_tm);
128 strncpy(day_headings + i * (3+julian) + julian, buf, 2);
129 }
130 } while (++i < 12);
Eric Andersenc98c0622001-12-06 15:16:43 +0000131
Manuel Novoa III cad53642003-03-19 09:13:01 +0000132 if (month) {
133 int row, len, days[MAXDAYS];
134 int *dp = days;
135 char lineout[30];
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000136
Manuel Novoa III cad53642003-03-19 09:13:01 +0000137 day_array(month, year, dp);
138 len = sprintf(lineout, "%s %d", month_names[month - 1], year);
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000139 printf("%*s%s\n%s\n",
Manuel Novoa III cad53642003-03-19 09:13:01 +0000140 ((7*julian + WEEK_LEN) - len) / 2, "",
141 lineout, day_headings);
Eric Andersenc98c0622001-12-06 15:16:43 +0000142 for (row = 0; row < 6; row++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000143 build_row(lineout, dp)[0] = '\0';
144 dp += 7;
145 trim_trailing_spaces_and_print(lineout);
146 }
147 } else {
148 int row, which_cal, week_len, days[12][MAXDAYS];
149 int *dp;
150 char lineout[80];
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000151
Manuel Novoa III cad53642003-03-19 09:13:01 +0000152 sprintf(lineout, "%d", year);
153 center(lineout,
154 (WEEK_LEN * 3 + HEAD_SEP * 2)
155 + julian * (J_WEEK_LEN * 2 + HEAD_SEP
156 - (WEEK_LEN * 3 + HEAD_SEP * 2)),
157 0);
158 puts("\n"); /* two \n's */
159 for (i = 0; i < 12; i++) {
160 day_array(i + 1, year, days[i]);
161 }
162 blank_string(lineout, sizeof(lineout));
163 week_len = WEEK_LEN + julian * (J_WEEK_LEN - WEEK_LEN);
164 for (month = 0; month < 12; month += 3-julian) {
165 center(month_names[month], week_len, HEAD_SEP);
166 if (!julian) {
167 center(month_names[month + 1], week_len, HEAD_SEP);
Eric Andersenc98c0622001-12-06 15:16:43 +0000168 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000169 center(month_names[month + 2 - julian], week_len, 0);
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000170 printf("\n%s%*s%s", day_headings, HEAD_SEP, "", day_headings);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000171 if (!julian) {
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000172 printf("%*s%s", HEAD_SEP, "", day_headings);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000173 }
174 putchar('\n');
175 for (row = 0; row < (6*7); row += 7) {
176 for (which_cal = 0; which_cal < 3-julian; which_cal++) {
177 dp = days[month + which_cal] + row;
178 build_row(lineout + which_cal * (week_len + 2), dp);
179 }
180 /* blank_string took care of nul termination. */
181 trim_trailing_spaces_and_print(lineout);
182 }
Eric Andersenc98c0622001-12-06 15:16:43 +0000183 }
184 }
Eric Andersenc98c0622001-12-06 15:16:43 +0000185
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000186 fflush_stdout_and_exit(0);
Eric Andersenc98c0622001-12-06 15:16:43 +0000187}
188
189/*
190 * day_array --
191 * Fill in an array of 42 integers with a calendar. Assume for a moment
192 * that you took the (maximum) 6 rows in a calendar and stretched them
193 * out end to end. You would have 42 numbers or spaces. This routine
194 * builds that array for any month from Jan. 1 through Dec. 9999.
195 */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000196static void day_array(int month, int year, int *days)
Eric Andersenc98c0622001-12-06 15:16:43 +0000197{
198 long temp;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000199 int i;
200 int j_offset;
201 int day, dw, dm;
Eric Andersenc98c0622001-12-06 15:16:43 +0000202
Manuel Novoa III cad53642003-03-19 09:13:01 +0000203 memset(days, SPACE, MAXDAYS * sizeof(int));
Eric Andersenc98c0622001-12-06 15:16:43 +0000204
Manuel Novoa III cad53642003-03-19 09:13:01 +0000205 if ((month == 9) && (year == 1752)) {
"Vladimir N. Oleynik"676b15e2006-01-30 13:47:19 +0000206 size_t oday = 0;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000207
Manuel Novoa III cad53642003-03-19 09:13:01 +0000208 j_offset = julian * 244;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000209 do {
"Vladimir N. Oleynik"676b15e2006-01-30 13:47:19 +0000210 days[oday+2] = sep1752[oday] + j_offset;
211 } while (++oday < sizeof(sep1752));
Eric Andersenc98c0622001-12-06 15:16:43 +0000212
Eric Andersenc98c0622001-12-06 15:16:43 +0000213 return;
214 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000215
216 /* day_in_year
217 * return the 1 based day number within the year
218 */
219 day = 1;
220 if ((month > 2) && leap_year(year)) {
221 ++day;
Eric Andersenc98c0622001-12-06 15:16:43 +0000222 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000223
224 i = month;
225 while (i) {
226 day += days_in_month[--i];
227 }
228
229 /* day_in_week
230 * return the 0 based day number for any date from 1 Jan. 1 to
231 * 31 Dec. 9999. Assumes the Gregorian reformation eliminates
232 * 3 Sep. 1752 through 13 Sep. 1752. Returns Thursday for all
233 * missing days.
234 */
235 dw = THURSDAY;
236 temp = (long)(year - 1) * 365 + leap_years_since_year_1(year - 1)
237 + day;
238 if (temp < FIRST_MISSING_DAY) {
239 dw = ((temp - 1 + SATURDAY) % 7);
240 } else if (temp >= (FIRST_MISSING_DAY + NUMBER_MISSING_DAYS)) {
241 dw = (((temp - 1 + SATURDAY) - NUMBER_MISSING_DAYS) % 7);
242 }
243
244 if (!julian) {
245 day = 1;
246 }
247
248 dm = days_in_month[month];
249 if ((month == 2) && leap_year(year)) {
250 ++dm;
251 }
252
253 while (dm) {
254 days[dw++] = day++;
255 --dm;
256 }
Eric Andersenc98c0622001-12-06 15:16:43 +0000257}
258
Manuel Novoa III cad53642003-03-19 09:13:01 +0000259static void trim_trailing_spaces_and_print(char *s)
Eric Andersenc98c0622001-12-06 15:16:43 +0000260{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000261 char *p = s;
Eric Andersenc98c0622001-12-06 15:16:43 +0000262
Manuel Novoa III cad53642003-03-19 09:13:01 +0000263 while (*p) {
Eric Andersenc98c0622001-12-06 15:16:43 +0000264 ++p;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000265 }
266 while (p > s) {
267 --p;
268 if (!(isspace)(*p)) { /* We want the function... not the inline. */
269 p[1] = '\0';
270 break;
271 }
272 }
273
274 puts(s);
Eric Andersenc98c0622001-12-06 15:16:43 +0000275}
276
Manuel Novoa III cad53642003-03-19 09:13:01 +0000277static void center(char *str, int len, int separate)
Eric Andersenc98c0622001-12-06 15:16:43 +0000278{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000279 int n = strlen(str);
280 len -= n;
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000281 printf("%*s%*s", (len/2) + n, str, (len/2) + (len % 2) + separate, "");
Eric Andersenc98c0622001-12-06 15:16:43 +0000282}
283
Manuel Novoa III cad53642003-03-19 09:13:01 +0000284static void blank_string(char *buf, size_t buflen)
285{
286 memset(buf, ' ', buflen);
287 buf[buflen-1] = '\0';
288}
289
290static char *build_row(char *p, int *dp)
291{
292 int col, val, day;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000293
Manuel Novoa III cad53642003-03-19 09:13:01 +0000294 memset(p, ' ', (julian + DAY_LEN) * 7);
295
296 col = 0;
297 do {
298 if ((day = *dp++) != SPACE) {
299 if (julian) {
Manuel Novoa III 5b3c0562003-08-13 12:11:33 +0000300 ++p;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000301 if (day >= 100) {
302 *p = '0';
303 p[-1] = (day / 100) + '0';
304 day %= 100;
305 }
306 }
307 if ((val = day / 10) > 0) {
308 *p = val + '0';
309 }
310 *++p = day % 10 + '0';
311 p += 2;
312 } else {
313 p += DAY_LEN + julian;
314 }
315 } while (++col < 7);
316
317 return p;
318}
Eric Andersenc98c0622001-12-06 15:16:43 +0000319
320/*
321 * Copyright (c) 1989, 1993, 1994
322 * The Regents of the University of California. All rights reserved.
323 *
324 * This code is derived from software contributed to Berkeley by
325 * Kim Letkeman.
326 *
327 * Redistribution and use in source and binary forms, with or without
328 * modification, are permitted provided that the following conditions
329 * are met:
330 * 1. Redistributions of source code must retain the above copyright
331 * notice, this list of conditions and the following disclaimer.
332 * 2. Redistributions in binary form must reproduce the above copyright
333 * notice, this list of conditions and the following disclaimer in the
334 * documentation and/or other materials provided with the distribution.
Aaron Lehmann69d41782002-06-23 22:25:24 +0000335 * 3. Neither the name of the University nor the names of its contributors
Eric Andersenc98c0622001-12-06 15:16:43 +0000336 * may be used to endorse or promote products derived from this software
337 * without specific prior written permission.
338 *
339 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
340 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
341 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
342 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
343 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
344 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
345 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
346 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
347 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
348 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
349 * SUCH DAMAGE.
350 */
351
352