blob: ed480dd787d8e798aba1f7106299f19f317db33c [file] [log] [blame]
Manuel Novoa III cad53642003-03-19 09:13:01 +00001/* NOTE:
2 *
3 * Apparently, all "Steven J. Merrifield" did was grab the util-linux cal applet,
4 * spend maybe 5 minutes integrating it into busybox, slapped a copyright on it,
5 * and submitted it. I certainly saw no evidence of any attempt at size reduction.
6 * Not only do I consider his copyright below meaningless, I also consider his
7 * actions shameful.
8 *
9 * Manuel Novoa III (mjn3@codepoet.org)
10 */
11
Eric Andersenc98c0622001-12-06 15:16:43 +000012/*
13 * Calendar implementation for busybox
14 *
15 * Copyright (C) 2001 by Steven J. Merrifield <steve@labyrinth.net.au>
16 *
17 * See original copyright at the end of this file
18 *
19 * This program is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation; either version 2 of the License, or
22 * (at your option) any later version.
23 *
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27 * General Public License for more details.
28 *
29 * You should have received a copy of the GNU General Public License
30 * along with this program; if not, write to the Free Software
31 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32 *
33*/
Manuel Novoa III cad53642003-03-19 09:13:01 +000034
35/* BB_AUDIT SUSv3 compliant with -j and -y extensions (from util-linux). */
36/* BB_AUDIT BUG: The output of 'cal -j 1752' is incorrect. The upstream
37 * BB_AUDIT BUG: version in util-linux seems to be broken as well. */
38/* http://www.opengroup.org/onlinepubs/007904975/utilities/cal.html */
39
40/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
41 *
42 * Major size reduction... over 50% (>1.5k) on i386.
43 */
Eric Andersenc98c0622001-12-06 15:16:43 +000044
45#include <sys/types.h>
46#include <ctype.h>
47#include <err.h>
48#include <stdio.h>
49#include <stdlib.h>
50#include <string.h>
51#include <time.h>
52#include <unistd.h>
53
Manuel Novoa III b99cb642002-05-29 19:08:41 +000054#include "busybox.h"
55
Eric Andersenc98c0622001-12-06 15:16:43 +000056#ifdef CONFIG_LOCALE_SUPPORT
57#include <locale.h>
58#endif
59
Eric Andersenc98c0622001-12-06 15:16:43 +000060#define THURSDAY 4 /* for reformation */
61#define SATURDAY 6 /* 1 Jan 1 was a Saturday */
62
63#define FIRST_MISSING_DAY 639787 /* 3 Sep 1752 */
64#define NUMBER_MISSING_DAYS 11 /* 11 day correction */
65
66#define MAXDAYS 42 /* max slots in a month array */
67#define SPACE -1 /* used in day array */
68
Manuel Novoa III cad53642003-03-19 09:13:01 +000069static const char days_in_month[] = {
70 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
Eric Andersenc98c0622001-12-06 15:16:43 +000071};
72
Manuel Novoa III cad53642003-03-19 09:13:01 +000073static const char sep1752[] = {
74 1, 2, 14, 15, 16,
Eric Andersenc98c0622001-12-06 15:16:43 +000075 17, 18, 19, 20, 21, 22, 23,
Manuel Novoa III cad53642003-03-19 09:13:01 +000076 24, 25, 26, 27, 28, 29, 30
Eric Andersenc98c0622001-12-06 15:16:43 +000077};
78
Manuel Novoa III cad53642003-03-19 09:13:01 +000079static int julian;
Eric Andersenc98c0622001-12-06 15:16:43 +000080
81/* leap year -- account for gregorian reformation in 1752 */
82#define leap_year(yr) \
83 ((yr) <= 1752 ? !((yr) % 4) : \
84 (!((yr) % 4) && ((yr) % 100)) || !((yr) % 400))
85
Manuel Novoa III cad53642003-03-19 09:13:01 +000086static int is_leap_year(int year)
87{
88 return leap_year(year);
89}
90#undef leap_year
91#define leap_year(yr) is_leap_year(yr)
92
Eric Andersenc98c0622001-12-06 15:16:43 +000093/* number of centuries since 1700, not inclusive */
94#define centuries_since_1700(yr) \
95 ((yr) > 1700 ? (yr) / 100 - 17 : 0)
96
97/* number of centuries since 1700 whose modulo of 400 is 0 */
98#define quad_centuries_since_1700(yr) \
99 ((yr) > 1600 ? ((yr) - 1600) / 400 : 0)
100
101/* number of leap years between year 1 and this year, not inclusive */
102#define leap_years_since_year_1(yr) \
103 ((yr) / 4 - centuries_since_1700(yr) + quad_centuries_since_1700(yr))
104
Manuel Novoa III cad53642003-03-19 09:13:01 +0000105static void center __P((char *, int, int));
106static void day_array __P((int, int, int *));
107static void trim_trailing_spaces_and_print __P((char *));
108
109static void blank_string(char *buf, size_t buflen);
110static char *build_row(char *p, int *dp);
111
112#define DAY_LEN 3 /* 3 spaces per day */
113#define J_DAY_LEN (DAY_LEN + 1)
114#define WEEK_LEN 20 /* 7 * 3 - one space at the end */
115#define J_WEEK_LEN (WEEK_LEN + 7)
116#define HEAD_SEP 2 /* spaces between day headings */
Eric Andersenc98c0622001-12-06 15:16:43 +0000117
118int cal_main(int argc, char **argv)
119{
120 struct tm *local_time;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000121 struct tm zero_tm;
Eric Andersenc98c0622001-12-06 15:16:43 +0000122 time_t now;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000123 int month, year, flags, i;
124 char *month_names[12];
125 char day_headings[28]; /* 28 for julian, 21 for nonjulian */
Eric Andersenc98c0622001-12-06 15:16:43 +0000126 char buf[40];
127
128#ifdef CONFIG_LOCALE_SUPPORT
129 setlocale(LC_TIME, "");
130#endif
131
Manuel Novoa III cad53642003-03-19 09:13:01 +0000132 flags = bb_getopt_ulflags(argc, argv, "jy");
133
134 julian = flags & 1;
135
Eric Andersenc98c0622001-12-06 15:16:43 +0000136 argv += optind;
137
138 month = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000139
140 if ((argc -= optind) > 2) {
141 bb_show_usage();
142 }
143
144 if (!argc) {
Eric Andersenc98c0622001-12-06 15:16:43 +0000145 time(&now);
146 local_time = localtime(&now);
147 year = local_time->tm_year + 1900;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000148 if (!(flags & 2)) {
Eric Andersenc98c0622001-12-06 15:16:43 +0000149 month = local_time->tm_mon + 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000150 }
151 } else {
152 if (argc == 2) {
153 month = bb_xgetularg10_bnd(*argv++, 1, 12);
154 }
155 year = bb_xgetularg10_bnd(*argv, 1, 9999);
Eric Andersenc98c0622001-12-06 15:16:43 +0000156 }
157
Manuel Novoa III cad53642003-03-19 09:13:01 +0000158 blank_string(day_headings, sizeof(day_headings) - 7 + 7*julian);
159
160 i = 0;
161 do {
Eric Andersenc98c0622001-12-06 15:16:43 +0000162 zero_tm.tm_mon = i;
163 strftime(buf, sizeof(buf), "%B", &zero_tm);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000164 month_names[i] = bb_xstrdup(buf);
Eric Andersenc98c0622001-12-06 15:16:43 +0000165
Manuel Novoa III cad53642003-03-19 09:13:01 +0000166 if (i < 7) {
167 zero_tm.tm_wday = i;
168 strftime(buf, sizeof(buf), "%a", &zero_tm);
169 strncpy(day_headings + i * (3+julian) + julian, buf, 2);
170 }
171 } while (++i < 12);
Eric Andersenc98c0622001-12-06 15:16:43 +0000172
Manuel Novoa III cad53642003-03-19 09:13:01 +0000173 if (month) {
174 int row, len, days[MAXDAYS];
175 int *dp = days;
176 char lineout[30];
177
178 day_array(month, year, dp);
179 len = sprintf(lineout, "%s %d", month_names[month - 1], year);
180 bb_printf("%*s%s\n%s\n",
181 ((7*julian + WEEK_LEN) - len) / 2, "",
182 lineout, day_headings);
Eric Andersenc98c0622001-12-06 15:16:43 +0000183 for (row = 0; row < 6; row++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000184 build_row(lineout, dp)[0] = '\0';
185 dp += 7;
186 trim_trailing_spaces_and_print(lineout);
187 }
188 } else {
189 int row, which_cal, week_len, days[12][MAXDAYS];
190 int *dp;
191 char lineout[80];
192
193 sprintf(lineout, "%d", year);
194 center(lineout,
195 (WEEK_LEN * 3 + HEAD_SEP * 2)
196 + julian * (J_WEEK_LEN * 2 + HEAD_SEP
197 - (WEEK_LEN * 3 + HEAD_SEP * 2)),
198 0);
199 puts("\n"); /* two \n's */
200 for (i = 0; i < 12; i++) {
201 day_array(i + 1, year, days[i]);
202 }
203 blank_string(lineout, sizeof(lineout));
204 week_len = WEEK_LEN + julian * (J_WEEK_LEN - WEEK_LEN);
205 for (month = 0; month < 12; month += 3-julian) {
206 center(month_names[month], week_len, HEAD_SEP);
207 if (!julian) {
208 center(month_names[month + 1], week_len, HEAD_SEP);
Eric Andersenc98c0622001-12-06 15:16:43 +0000209 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000210 center(month_names[month + 2 - julian], week_len, 0);
211 bb_printf("\n%s%*s%s", day_headings, HEAD_SEP, "", day_headings);
212 if (!julian) {
213 bb_printf("%*s%s", HEAD_SEP, "", day_headings);
214 }
215 putchar('\n');
216 for (row = 0; row < (6*7); row += 7) {
217 for (which_cal = 0; which_cal < 3-julian; which_cal++) {
218 dp = days[month + which_cal] + row;
219 build_row(lineout + which_cal * (week_len + 2), dp);
220 }
221 /* blank_string took care of nul termination. */
222 trim_trailing_spaces_and_print(lineout);
223 }
Eric Andersenc98c0622001-12-06 15:16:43 +0000224 }
225 }
Eric Andersenc98c0622001-12-06 15:16:43 +0000226
Manuel Novoa III cad53642003-03-19 09:13:01 +0000227 bb_fflush_stdout_and_exit(0);
Eric Andersenc98c0622001-12-06 15:16:43 +0000228}
229
230/*
231 * day_array --
232 * Fill in an array of 42 integers with a calendar. Assume for a moment
233 * that you took the (maximum) 6 rows in a calendar and stretched them
234 * out end to end. You would have 42 numbers or spaces. This routine
235 * builds that array for any month from Jan. 1 through Dec. 9999.
236 */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000237static void day_array(int month, int year, int *days)
Eric Andersenc98c0622001-12-06 15:16:43 +0000238{
239 long temp;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000240 int i;
241 int j_offset;
242 int day, dw, dm;
Eric Andersenc98c0622001-12-06 15:16:43 +0000243
Manuel Novoa III cad53642003-03-19 09:13:01 +0000244 memset(days, SPACE, MAXDAYS * sizeof(int));
Eric Andersenc98c0622001-12-06 15:16:43 +0000245
Manuel Novoa III cad53642003-03-19 09:13:01 +0000246 if ((month == 9) && (year == 1752)) {
247 j_offset = julian * 244;
248 i = 0;
249 do {
250 days[i+2] = sep1752[i] + j_offset;
251 } while (++i < sizeof(sep1752));
Eric Andersenc98c0622001-12-06 15:16:43 +0000252
Eric Andersenc98c0622001-12-06 15:16:43 +0000253 return;
254 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000255
256 /* day_in_year
257 * return the 1 based day number within the year
258 */
259 day = 1;
260 if ((month > 2) && leap_year(year)) {
261 ++day;
Eric Andersenc98c0622001-12-06 15:16:43 +0000262 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000263
264 i = month;
265 while (i) {
266 day += days_in_month[--i];
267 }
268
269 /* day_in_week
270 * return the 0 based day number for any date from 1 Jan. 1 to
271 * 31 Dec. 9999. Assumes the Gregorian reformation eliminates
272 * 3 Sep. 1752 through 13 Sep. 1752. Returns Thursday for all
273 * missing days.
274 */
275 dw = THURSDAY;
276 temp = (long)(year - 1) * 365 + leap_years_since_year_1(year - 1)
277 + day;
278 if (temp < FIRST_MISSING_DAY) {
279 dw = ((temp - 1 + SATURDAY) % 7);
280 } else if (temp >= (FIRST_MISSING_DAY + NUMBER_MISSING_DAYS)) {
281 dw = (((temp - 1 + SATURDAY) - NUMBER_MISSING_DAYS) % 7);
282 }
283
284 if (!julian) {
285 day = 1;
286 }
287
288 dm = days_in_month[month];
289 if ((month == 2) && leap_year(year)) {
290 ++dm;
291 }
292
293 while (dm) {
294 days[dw++] = day++;
295 --dm;
296 }
Eric Andersenc98c0622001-12-06 15:16:43 +0000297}
298
Manuel Novoa III cad53642003-03-19 09:13:01 +0000299static void trim_trailing_spaces_and_print(char *s)
Eric Andersenc98c0622001-12-06 15:16:43 +0000300{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000301 char *p = s;
Eric Andersenc98c0622001-12-06 15:16:43 +0000302
Manuel Novoa III cad53642003-03-19 09:13:01 +0000303 while (*p) {
Eric Andersenc98c0622001-12-06 15:16:43 +0000304 ++p;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000305 }
306 while (p > s) {
307 --p;
308 if (!(isspace)(*p)) { /* We want the function... not the inline. */
309 p[1] = '\0';
310 break;
311 }
312 }
313
314 puts(s);
Eric Andersenc98c0622001-12-06 15:16:43 +0000315}
316
Manuel Novoa III cad53642003-03-19 09:13:01 +0000317static void center(char *str, int len, int separate)
Eric Andersenc98c0622001-12-06 15:16:43 +0000318{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000319 int n = strlen(str);
320 len -= n;
321 bb_printf("%*s%*s", (len/2) + n, str, (len/2) + (len % 2) + separate, "");
Eric Andersenc98c0622001-12-06 15:16:43 +0000322}
323
Manuel Novoa III cad53642003-03-19 09:13:01 +0000324static void blank_string(char *buf, size_t buflen)
325{
326 memset(buf, ' ', buflen);
327 buf[buflen-1] = '\0';
328}
329
330static char *build_row(char *p, int *dp)
331{
332 int col, val, day;
333
334 memset(p, ' ', (julian + DAY_LEN) * 7);
335
336 col = 0;
337 do {
338 if ((day = *dp++) != SPACE) {
339 if (julian) {
340 *++p;
341 if (day >= 100) {
342 *p = '0';
343 p[-1] = (day / 100) + '0';
344 day %= 100;
345 }
346 }
347 if ((val = day / 10) > 0) {
348 *p = val + '0';
349 }
350 *++p = day % 10 + '0';
351 p += 2;
352 } else {
353 p += DAY_LEN + julian;
354 }
355 } while (++col < 7);
356
357 return p;
358}
Eric Andersenc98c0622001-12-06 15:16:43 +0000359
360/*
361 * Copyright (c) 1989, 1993, 1994
362 * The Regents of the University of California. All rights reserved.
363 *
364 * This code is derived from software contributed to Berkeley by
365 * Kim Letkeman.
366 *
367 * Redistribution and use in source and binary forms, with or without
368 * modification, are permitted provided that the following conditions
369 * are met:
370 * 1. Redistributions of source code must retain the above copyright
371 * notice, this list of conditions and the following disclaimer.
372 * 2. Redistributions in binary form must reproduce the above copyright
373 * notice, this list of conditions and the following disclaimer in the
374 * documentation and/or other materials provided with the distribution.
Aaron Lehmann69d41782002-06-23 22:25:24 +0000375 * 3. Neither the name of the University nor the names of its contributors
Eric Andersenc98c0622001-12-06 15:16:43 +0000376 * may be used to endorse or promote products derived from this software
377 * without specific prior written permission.
378 *
379 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
380 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
381 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
382 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
383 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
384 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
385 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
386 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
387 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
388 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
389 * SUCH DAMAGE.
390 */
391
392