5d61b6ccfe4da815f1d223bfdda4e15d50bf23bc
[oweals/busybox.git] / coreutils / cal.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Calendar implementation for busybox
4  *
5  * See original copyright at the end of this file
6  *
7  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8  */
9
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  */
19
20 #include <sys/types.h>
21 #include <ctype.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <time.h>
26 #include <unistd.h>
27
28 #include "busybox.h"
29
30 #ifdef CONFIG_LOCALE_SUPPORT
31 #include <locale.h>
32 #endif
33
34 #define THURSDAY                4               /* for reformation */
35 #define SATURDAY                6               /* 1 Jan 1 was a Saturday */
36
37 #define FIRST_MISSING_DAY       639787          /* 3 Sep 1752 */
38 #define NUMBER_MISSING_DAYS     11              /* 11 day correction */
39
40 #define MAXDAYS                 42              /* max slots in a month array */
41 #define SPACE                   -1              /* used in day array */
42
43 static const char days_in_month[] = {
44         0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
45 };
46
47 static const char sep1752[] = {
48                  1,     2,      14,     15,     16,
49         17,     18,     19,     20,     21,     22,     23,
50         24,     25,     26,     27,     28,     29,     30
51 };
52
53 static int julian;
54
55 /* leap year -- account for Gregorian reformation in 1752 */
56 #define leap_year(yr) \
57         ((yr) <= 1752 ? !((yr) % 4) : \
58         (!((yr) % 4) && ((yr) % 100)) || !((yr) % 400))
59
60 static int is_leap_year(int year)
61 {
62         return leap_year(year);
63 }
64 #undef leap_year
65 #define leap_year(yr) is_leap_year(yr)
66
67 /* number of centuries since 1700, not inclusive */
68 #define centuries_since_1700(yr) \
69         ((yr) > 1700 ? (yr) / 100 - 17 : 0)
70
71 /* number of centuries since 1700 whose modulo of 400 is 0 */
72 #define quad_centuries_since_1700(yr) \
73         ((yr) > 1600 ? ((yr) - 1600) / 400 : 0)
74
75 /* number of leap years between year 1 and this year, not inclusive */
76 #define leap_years_since_year_1(yr) \
77         ((yr) / 4 - centuries_since_1700(yr) + quad_centuries_since_1700(yr))
78
79 static void center (char *, int, int);
80 static void day_array (int, int, int *);
81 static void trim_trailing_spaces_and_print (char *);
82
83 static void blank_string(char *buf, size_t buflen);
84 static char *build_row(char *p, int *dp);
85
86 #define DAY_LEN         3               /* 3 spaces per day */
87 #define J_DAY_LEN       (DAY_LEN + 1)
88 #define WEEK_LEN        20              /* 7 * 3 - one space at the end */
89 #define J_WEEK_LEN      (WEEK_LEN + 7)
90 #define HEAD_SEP        2               /* spaces between day headings */
91
92 int cal_main(int argc, char **argv)
93 {
94         struct tm *local_time;
95         struct tm zero_tm;
96         time_t now;
97         int month, year, flags, i;
98         char *month_names[12];
99         char day_headings[28];  /* 28 for julian, 21 for nonjulian */
100         char buf[40];
101
102 #ifdef CONFIG_LOCALE_SUPPORT
103         setlocale(LC_TIME, "");
104 #endif
105
106         flags = bb_getopt_ulflags(argc, argv, "jy");
107
108         julian = flags & 1;
109
110         argv += optind;
111
112         month = 0;
113
114         if ((argc -= optind) > 2) {
115                 bb_show_usage();
116         }
117
118         if (!argc) {
119                 time(&now);
120                 local_time = localtime(&now);
121                 year = local_time->tm_year + 1900;
122                 if (!(flags & 2)) {
123                         month = local_time->tm_mon + 1;
124                 }
125         } else {
126                 if (argc == 2) {
127                         month = bb_xgetularg10_bnd(*argv++, 1, 12);
128                 }
129                 year = bb_xgetularg10_bnd(*argv, 1, 9999);
130         }
131
132         blank_string(day_headings, sizeof(day_headings) - 7 +  7*julian);
133
134         i = 0;
135         do {
136                 zero_tm.tm_mon = i;
137                 strftime(buf, sizeof(buf), "%B", &zero_tm);
138                 month_names[i] = bb_xstrdup(buf);
139
140                 if (i < 7) {
141                         zero_tm.tm_wday = i;
142                         strftime(buf, sizeof(buf), "%a", &zero_tm);
143                         strncpy(day_headings + i * (3+julian) + julian, buf, 2);
144                 }
145         } while (++i < 12);
146
147         if (month) {
148                 int row, len, days[MAXDAYS];
149                 int *dp = days;
150                 char lineout[30];
151
152                 day_array(month, year, dp);
153                 len = sprintf(lineout, "%s %d", month_names[month - 1], year);
154                 bb_printf("%*s%s\n%s\n",
155                            ((7*julian + WEEK_LEN) - len) / 2, "",
156                            lineout, day_headings);
157                 for (row = 0; row < 6; row++) {
158                         build_row(lineout, dp)[0] = '\0';
159                         dp += 7;
160                         trim_trailing_spaces_and_print(lineout);
161                 }
162         } else {
163                 int row, which_cal, week_len, days[12][MAXDAYS];
164                 int *dp;
165                 char lineout[80];
166
167                 sprintf(lineout, "%d", year);
168                 center(lineout,
169                            (WEEK_LEN * 3 + HEAD_SEP * 2)
170                            + julian * (J_WEEK_LEN * 2 + HEAD_SEP
171                                                    - (WEEK_LEN * 3 + HEAD_SEP * 2)),
172                            0);
173                 puts("\n");             /* two \n's */
174                 for (i = 0; i < 12; i++) {
175                         day_array(i + 1, year, days[i]);
176                 }
177                 blank_string(lineout, sizeof(lineout));
178                 week_len = WEEK_LEN + julian * (J_WEEK_LEN - WEEK_LEN);
179                 for (month = 0; month < 12; month += 3-julian) {
180                         center(month_names[month], week_len, HEAD_SEP);
181                         if (!julian) {
182                                 center(month_names[month + 1], week_len, HEAD_SEP);
183                         }
184                         center(month_names[month + 2 - julian], week_len, 0);
185                         bb_printf("\n%s%*s%s", day_headings, HEAD_SEP, "", day_headings);
186                         if (!julian) {
187                                 bb_printf("%*s%s", HEAD_SEP, "", day_headings);
188                         }
189                         putchar('\n');
190                         for (row = 0; row < (6*7); row += 7) {
191                                 for (which_cal = 0; which_cal < 3-julian; which_cal++) {
192                                         dp = days[month + which_cal] + row;
193                                         build_row(lineout + which_cal * (week_len + 2), dp);
194                                 }
195                                 /* blank_string took care of nul termination. */
196                                 trim_trailing_spaces_and_print(lineout);
197                         }
198                 }
199         }
200
201         bb_fflush_stdout_and_exit(0);
202 }
203
204 /*
205  * day_array --
206  *      Fill in an array of 42 integers with a calendar.  Assume for a moment
207  *      that you took the (maximum) 6 rows in a calendar and stretched them
208  *      out end to end.  You would have 42 numbers or spaces.  This routine
209  *      builds that array for any month from Jan. 1 through Dec. 9999.
210  */
211 static void day_array(int month, int year, int *days)
212 {
213         long temp;
214         int i;
215         int j_offset;
216         int day, dw, dm;
217
218         memset(days, SPACE, MAXDAYS * sizeof(int));
219
220         if ((month == 9) && (year == 1752)) {
221                 size_t oday = 0;
222                 
223                 j_offset = julian * 244;
224                 do {
225                         days[oday+2] = sep1752[oday] + j_offset;
226                 } while (++oday < sizeof(sep1752));
227
228                 return;
229         }
230
231         /* day_in_year
232          *      return the 1 based day number within the year
233          */
234         day = 1;
235         if ((month > 2) && leap_year(year)) {
236                 ++day;
237         }
238
239         i = month;
240         while (i) {
241                 day += days_in_month[--i];
242         }
243
244         /* day_in_week
245          *      return the 0 based day number for any date from 1 Jan. 1 to
246          *      31 Dec. 9999.  Assumes the Gregorian reformation eliminates
247          *      3 Sep. 1752 through 13 Sep. 1752.  Returns Thursday for all
248          *      missing days.
249          */
250         dw = THURSDAY;
251         temp = (long)(year - 1) * 365 + leap_years_since_year_1(year - 1)
252                 + day;
253         if (temp < FIRST_MISSING_DAY) {
254                 dw = ((temp - 1 + SATURDAY) % 7);
255         } else if (temp >= (FIRST_MISSING_DAY + NUMBER_MISSING_DAYS)) {
256                 dw = (((temp - 1 + SATURDAY) - NUMBER_MISSING_DAYS) % 7);
257         }
258
259         if (!julian) {
260                 day = 1;
261         }
262
263         dm = days_in_month[month];
264         if ((month == 2) && leap_year(year)) {
265                 ++dm;
266         }
267
268         while (dm) {
269                 days[dw++] = day++;
270                 --dm;
271         }
272 }
273
274 static void trim_trailing_spaces_and_print(char *s)
275 {
276         char *p = s;
277
278         while (*p) {
279                 ++p;
280         }
281         while (p > s) {
282                 --p;
283                 if (!(isspace)(*p)) {   /* We want the function... not the inline. */
284                         p[1] = '\0';
285                         break;
286                 }
287         }
288
289         puts(s);
290 }
291
292 static void center(char *str, int len, int separate)
293 {
294         int n = strlen(str);
295         len -= n;
296         bb_printf("%*s%*s", (len/2) + n, str, (len/2) + (len % 2) + separate, "");
297 }
298
299 static void blank_string(char *buf, size_t buflen)
300 {
301         memset(buf, ' ', buflen);
302         buf[buflen-1] = '\0';
303 }
304
305 static char *build_row(char *p, int *dp)
306 {
307         int col, val, day;
308
309         memset(p, ' ', (julian + DAY_LEN) * 7);
310
311         col = 0;
312         do {
313                 if ((day = *dp++) != SPACE) {
314                         if (julian) {
315                                 ++p;
316                                 if (day >= 100) {
317                                         *p = '0';
318                                         p[-1] = (day / 100) + '0';
319                                         day %= 100;
320                                 }
321                         }
322                         if ((val = day / 10) > 0) {
323                                 *p = val + '0';
324                         }
325                         *++p = day % 10 + '0';
326                         p += 2;
327                 } else {
328                         p += DAY_LEN + julian;
329                 }
330         } while (++col < 7);
331
332         return p;
333 }
334
335 /*
336  * Copyright (c) 1989, 1993, 1994
337  *      The Regents of the University of California.  All rights reserved.
338  *
339  * This code is derived from software contributed to Berkeley by
340  * Kim Letkeman.
341  *
342  * Redistribution and use in source and binary forms, with or without
343  * modification, are permitted provided that the following conditions
344  * are met:
345  * 1. Redistributions of source code must retain the above copyright
346  *    notice, this list of conditions and the following disclaimer.
347  * 2. Redistributions in binary form must reproduce the above copyright
348  *    notice, this list of conditions and the following disclaimer in the
349  *    documentation and/or other materials provided with the distribution.
350  * 3. Neither the name of the University nor the names of its contributors
351  *    may be used to endorse or promote products derived from this software
352  *    without specific prior written permission.
353  *
354  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
355  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
356  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
357  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
358  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
359  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
360  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
361  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
362  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
363  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
364  * SUCH DAMAGE.
365  */
366
367