1 /* vi: set sw=4 ts=4: */
3 * Calendar implementation for busybox
5 * See original copyright at the end of this file
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
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 */
15 /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
17 * Major size reduction... over 50% (>1.5k) on i386.
22 /* We often use "unsigned" intead of "int", it's easier to div on most CPUs */
24 #define THURSDAY 4 /* for reformation */
25 #define SATURDAY 6 /* 1 Jan 1 was a Saturday */
27 #define FIRST_MISSING_DAY 639787 /* 3 Sep 1752 */
28 #define NUMBER_MISSING_DAYS 11 /* 11 day correction */
30 #define MAXDAYS 42 /* max slots in a month array */
31 #define SPACE -1 /* used in day array */
33 static const unsigned char days_in_month[] ALIGN1 = {
34 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
37 static const unsigned char sep1752[] ALIGN1 = {
39 17, 18, 19, 20, 21, 22, 23,
40 24, 25, 26, 27, 28, 29, 30
43 /* Set to 0 or 1 in main */
44 #define julian ((unsigned)option_mask32)
46 /* leap year -- account for Gregorian reformation in 1752 */
47 static int leap_year(unsigned yr)
51 return (!(yr % 4) && (yr % 100)) || !(yr % 400);
54 /* number of centuries since 1700, not inclusive */
55 #define centuries_since_1700(yr) \
56 ((yr) > 1700 ? (yr) / 100 - 17 : 0)
58 /* number of centuries since 1700 whose modulo of 400 is 0 */
59 #define quad_centuries_since_1700(yr) \
60 ((yr) > 1600 ? ((yr) - 1600) / 400 : 0)
62 /* number of leap years between year 1 and this year, not inclusive */
63 #define leap_years_since_year_1(yr) \
64 ((yr) / 4 - centuries_since_1700(yr) + quad_centuries_since_1700(yr))
66 static void center(char *, unsigned, unsigned);
67 static void day_array(unsigned, unsigned, unsigned *);
68 static void trim_trailing_spaces_and_print(char *);
70 static void blank_string(char *buf, size_t buflen);
71 static char *build_row(char *p, unsigned *dp);
73 #define DAY_LEN 3 /* 3 spaces per day */
74 #define J_DAY_LEN (DAY_LEN + 1)
75 #define WEEK_LEN 20 /* 7 * 3 - one space at the end */
76 #define J_WEEK_LEN (WEEK_LEN + 7)
77 #define HEAD_SEP 2 /* spaces between day headings */
79 int cal_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
80 int cal_main(int argc UNUSED_PARAM, char **argv)
84 unsigned month, year, flags, i;
85 char *month_names[12];
87 /* "Su Mo Tu We Th Fr Sa" */
89 /* " Su Mo Tu We Th Fr Sa" */
90 char day_headings[ENABLE_FEATURE_ASSUME_UNICODE ? 28 * 6 : 28];
91 IF_FEATURE_ASSUME_UNICODE(char *hp = day_headings;)
96 flags = getopt32(argv, "jy");
97 /* This sets julian = flags & 1: */
106 ptm = localtime(&now);
107 year = ptm->tm_year + 1900;
108 if (!(flags & 2)) { /* no -y */
109 month = ptm->tm_mon + 1;
116 month = xatou_range(*argv++, 1, 12);
118 year = xatou_range(*argv, 1, 9999);
121 blank_string(day_headings, sizeof(day_headings) - 7 + 7*julian);
126 /* full month name according to locale */
127 strftime(buf, sizeof(buf), "%B", &zero_tm);
128 month_names[i] = xstrdup(buf);
132 /* abbreviated weekday name according to locale */
133 strftime(buf, sizeof(buf), "%a", &zero_tm);
134 #if ENABLE_FEATURE_ASSUME_UNICODE
138 char *two_wchars = unicode_conv_to_printable_fixedwidth(NULL, buf, 2);
139 strcpy(hp, two_wchars);
145 strncpy(day_headings + i * (3+julian) + julian, buf, 2);
149 IF_FEATURE_ASSUME_UNICODE(hp[-1] = '\0';)
152 unsigned row, len, days[MAXDAYS];
156 day_array(month, year, dp);
157 len = sprintf(lineout, "%s %d", month_names[month - 1], year);
158 printf("%*s%s\n%s\n",
159 ((7*julian + WEEK_LEN) - len) / 2, "",
160 lineout, day_headings);
161 for (row = 0; row < 6; row++) {
162 build_row(lineout, dp)[0] = '\0';
164 trim_trailing_spaces_and_print(lineout);
167 unsigned row, which_cal, week_len, days[12][MAXDAYS];
171 sprintf(lineout, "%u", year);
173 (WEEK_LEN * 3 + HEAD_SEP * 2)
174 + julian * (J_WEEK_LEN * 2 + HEAD_SEP
175 - (WEEK_LEN * 3 + HEAD_SEP * 2)),
177 puts("\n"); /* two \n's */
178 for (i = 0; i < 12; i++) {
179 day_array(i + 1, year, days[i]);
181 blank_string(lineout, sizeof(lineout));
182 week_len = WEEK_LEN + julian * (J_WEEK_LEN - WEEK_LEN);
183 for (month = 0; month < 12; month += 3-julian) {
184 center(month_names[month], week_len, HEAD_SEP);
186 center(month_names[month + 1], week_len, HEAD_SEP);
188 center(month_names[month + 2 - julian], week_len, 0);
189 printf("\n%s%*s%s", day_headings, HEAD_SEP, "", day_headings);
191 printf("%*s%s", HEAD_SEP, "", day_headings);
194 for (row = 0; row < (6*7); row += 7) {
195 for (which_cal = 0; which_cal < 3-julian; which_cal++) {
196 dp = days[month + which_cal] + row;
197 build_row(lineout + which_cal * (week_len + 2), dp);
199 /* blank_string took care of nul termination. */
200 trim_trailing_spaces_and_print(lineout);
205 fflush_stdout_and_exit(EXIT_SUCCESS);
210 * Fill in an array of 42 integers with a calendar. Assume for a moment
211 * that you took the (maximum) 6 rows in a calendar and stretched them
212 * out end to end. You would have 42 numbers or spaces. This routine
213 * builds that array for any month from Jan. 1 through Dec. 9999.
215 static void day_array(unsigned month, unsigned year, unsigned *days)
219 unsigned day, dw, dm;
221 memset(days, SPACE, MAXDAYS * sizeof(int));
223 if ((month == 9) && (year == 1752)) {
224 /* Assumes the Gregorian reformation eliminates
225 * 3 Sep. 1752 through 13 Sep. 1752.
227 unsigned j_offset = julian * 244;
231 days[oday+2] = sep1752[oday] + j_offset;
232 } while (++oday < sizeof(sep1752));
238 * return the 1 based day number within the year
241 if ((month > 2) && leap_year(year)) {
247 day += days_in_month[--i];
251 * return the 0 based day number for any date from 1 Jan. 1 to
252 * 31 Dec. 9999. Assumes the Gregorian reformation eliminates
253 * 3 Sep. 1752 through 13 Sep. 1752. Returns Thursday for all
256 temp = (long)(year - 1) * 365 + leap_years_since_year_1(year - 1) + day;
257 if (temp < FIRST_MISSING_DAY) {
258 dw = ((temp - 1 + SATURDAY) % 7);
260 dw = (((temp - 1 + SATURDAY) - NUMBER_MISSING_DAYS) % 7);
267 dm = days_in_month[month];
268 if ((month == 2) && leap_year(year)) {
277 static void trim_trailing_spaces_and_print(char *s)
295 static void center(char *str, unsigned len, unsigned separate)
297 unsigned n = strlen(str);
299 printf("%*s%*s", (len/2) + n, str, (len/2) + (len % 2) + separate, "");
302 static void blank_string(char *buf, size_t buflen)
304 memset(buf, ' ', buflen);
305 buf[buflen-1] = '\0';
308 static char *build_row(char *p, unsigned *dp)
310 unsigned col, val, day;
312 memset(p, ' ', (julian + DAY_LEN) * 7);
322 p[-1] = (day / 100) + '0';
330 *++p = day % 10 + '0';
333 p += DAY_LEN + julian;
341 * Copyright (c) 1989, 1993, 1994
342 * The Regents of the University of California. All rights reserved.
344 * This code is derived from software contributed to Berkeley by
347 * Redistribution and use in source and binary forms, with or without
348 * modification, are permitted provided that the following conditions
350 * 1. Redistributions of source code must retain the above copyright
351 * notice, this list of conditions and the following disclaimer.
352 * 2. Redistributions in binary form must reproduce the above copyright
353 * notice, this list of conditions and the following disclaimer in the
354 * documentation and/or other materials provided with the distribution.
355 * 3. Neither the name of the University nor the names of its contributors
356 * may be used to endorse or promote products derived from this software
357 * without specific prior written permission.
359 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
360 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
361 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
362 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
363 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
364 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
365 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
366 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
367 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
368 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF