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