Move start_stop_daemon to debianutils.
[oweals/busybox.git] / coreutils / cal.c
1 /* 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
12 /*
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 */
34
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  */
44
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
54 #include "busybox.h"
55
56 #ifdef CONFIG_LOCALE_SUPPORT
57 #include <locale.h>
58 #endif
59
60 #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
69 static const char days_in_month[] = {
70         0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
71 };
72
73 static const char sep1752[] = {
74                  1,     2,      14,     15,     16,
75         17,     18,     19,     20,     21,     22,     23,
76         24,     25,     26,     27,     28,     29,     30
77 };
78
79 static int julian;
80
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
86 static 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
93 /* 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
105 static void center __P((char *, int, int));
106 static void day_array __P((int, int, int *));
107 static void trim_trailing_spaces_and_print __P((char *));
108
109 static void blank_string(char *buf, size_t buflen);
110 static 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 */
117
118 int cal_main(int argc, char **argv)
119 {
120         struct tm *local_time;
121         struct tm zero_tm;
122         time_t now;
123         int month, year, flags, i;
124         char *month_names[12];
125         char day_headings[28];  /* 28 for julian, 21 for nonjulian */
126         char buf[40];
127
128 #ifdef CONFIG_LOCALE_SUPPORT
129         setlocale(LC_TIME, "");
130 #endif
131
132         flags = bb_getopt_ulflags(argc, argv, "jy");
133
134         julian = flags & 1;
135
136         argv += optind;
137
138         month = 0;
139
140         if ((argc -= optind) > 2) {
141                 bb_show_usage();
142         }
143
144         if (!argc) {
145                 time(&now);
146                 local_time = localtime(&now);
147                 year = local_time->tm_year + 1900;
148                 if (!(flags & 2)) {
149                         month = local_time->tm_mon + 1;
150                 }
151         } else {
152                 if (argc == 2) {
153                         month = bb_xgetularg10_bnd(*argv++, 1, 12);
154                 }
155                 year = bb_xgetularg10_bnd(*argv, 1, 9999);
156         }
157
158         blank_string(day_headings, sizeof(day_headings) - 7 +  7*julian);
159
160         i = 0;
161         do {
162                 zero_tm.tm_mon = i;
163                 strftime(buf, sizeof(buf), "%B", &zero_tm);
164                 month_names[i] = bb_xstrdup(buf);
165
166                 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);
172
173         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);
183                 for (row = 0; row < 6; row++) {
184                         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);
209                         }
210                         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                         }
224                 }
225         }
226
227         bb_fflush_stdout_and_exit(0);
228 }
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  */
237 static void day_array(int month, int year, int *days)
238 {
239         long temp;
240         int i;
241         int j_offset;
242         int day, dw, dm;
243
244         memset(days, SPACE, MAXDAYS * sizeof(int));
245
246         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));
252
253                 return;
254         }
255
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;
262         }
263
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         }
297 }
298
299 static void trim_trailing_spaces_and_print(char *s)
300 {
301         char *p = s;
302
303         while (*p) {
304                 ++p;
305         }
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);
315 }
316
317 static void center(char *str, int len, int separate)
318 {
319         int n = strlen(str);
320         len -= n;
321         bb_printf("%*s%*s", (len/2) + n, str, (len/2) + (len % 2) + separate, "");
322 }
323
324 static void blank_string(char *buf, size_t buflen)
325 {
326         memset(buf, ' ', buflen);
327         buf[buflen-1] = '\0';
328 }
329
330 static 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 }
359
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.
375  * 3. Neither the name of the University nor the names of its contributors
376  *    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