]> git.ipfire.org Git - thirdparty/util-linux.git/blob - misc-utils/cal.c
libblkid: make example more robust
[thirdparty/util-linux.git] / misc-utils / cal.c
1 /*
2 * Copyright (c) 1989, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Kim Letkeman.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37 /* 1999-02-01 Jean-Francois Bignolles: added option '-m' to display
38 * monday as the first day of the week.
39 * 1999-02-22 Arkadiusz Miƛkiewicz <misiek@pld.ORG.PL>
40 * - added Native Language Support
41 *
42 * 2000-09-01 Michael Charles Pruznick <dummy@netwiz.net>
43 * Added "-3" option to print prev/next month with current.
44 * Added overridable default MONTHS_IN_ROW and "-1" option to
45 * get traditional output when -3 is the default. I hope that
46 * enough people will like -3 as the default that one day the
47 * product can be shipped that way.
48 *
49 * 2001-05-07 Pablo Saratxaga <pablo@mandrakesoft.com>
50 * Fixed the bugs with multi-byte charset (zg: cjk, utf-8)
51 * displaying. made the 'month year' ("%s %d") header translatable
52 * so it can be adapted to conventions used by different languages
53 * added support to read "first_weekday" locale information
54 * still to do: support for 'cal_direction' (will require a major
55 * rewrite of the displaying) and proper handling of RTL scripts
56 */
57
58 #include <sys/types.h>
59
60 #include <ctype.h>
61 #include <getopt.h>
62 #include <stdint.h>
63 #include <stdio.h>
64 #include <stdlib.h>
65 #include <string.h>
66 #include <time.h>
67 #include <unistd.h>
68 #include <errno.h>
69
70 #include "c.h"
71 #include "closestream.h"
72 #include "colors.h"
73 #include "nls.h"
74 #include "mbsalign.h"
75 #include "strutils.h"
76 #include "optutils.h"
77 #include "timeutils.h"
78 #include "ttyutils.h"
79
80 #define DOY_MONTH_WIDTH 27 /* -j month width */
81 #define DOM_MONTH_WIDTH 20 /* month width */
82
83 static int has_term = 0;
84 static const char *Senter = "", *Sexit = ""; /* enter and exit standout mode */
85
86 #if defined(HAVE_LIBNCURSES) || defined(HAVE_LIBNCURSESW)
87 # if defined(HAVE_NCURSESW_TERM_H)
88 # include <ncursesw/term.h>
89 # elif defined(HAVE_NCURSES_TERM_H)
90 # include <ncurses/term.h>
91 # elif defined(HAVE_TERM_H)
92 # include <term.h>
93 # endif
94 #endif
95
96 static int setup_terminal(char *term
97 #if !defined(HAVE_LIBNCURSES) && !defined(HAVE_LIBNCURSESW)
98 __attribute__((__unused__))
99 #endif
100 )
101 {
102 #if defined(HAVE_LIBNCURSES) || defined(HAVE_LIBNCURSESW)
103 int ret;
104
105 if (setupterm(term, STDOUT_FILENO, &ret) != 0 || ret != 1)
106 return -1;
107 #endif
108 return 0;
109 }
110
111 static void my_putstring(char *s)
112 {
113 #if defined(HAVE_LIBNCURSES) || defined(HAVE_LIBNCURSESW)
114 if (has_term)
115 putp(s);
116 else
117 #endif
118 fputs(s, stdout);
119 }
120
121 static const char *my_tgetstr(char *ss
122 #if !defined(HAVE_LIBNCURSES) && !defined(HAVE_LIBNCURSESW)
123 __attribute__((__unused__))
124 #endif
125 )
126 {
127 const char *ret = NULL;
128
129 #if defined(HAVE_LIBNCURSES) || defined(HAVE_LIBNCURSESW)
130 if (has_term)
131 ret = tigetstr(ss);
132 #endif
133 if (!ret || ret == (char *)-1)
134 return "";
135 return ret;
136 }
137
138 #include "widechar.h"
139
140 enum {
141 GREGORIAN = INT32_MIN,
142 ISO = INT32_MIN,
143 GB1752 = 1752,
144 DEFAULT_REFORM_YEAR = 1752,
145 JULIAN = INT32_MAX
146 };
147
148 enum {
149 SUNDAY = 0,
150 MONDAY,
151 TUESDAY,
152 WEDNESDAY,
153 THURSDAY,
154 FRIDAY,
155 SATURDAY,
156 DAYS_IN_WEEK,
157 NONEDAY
158 };
159
160 enum {
161 JANUARY = 1,
162 FEBRUARY,
163 MARCH,
164 APRIL,
165 MAY,
166 JUNE,
167 JULY,
168 AUGUST,
169 SEPTEMBER,
170 OCTOBER,
171 NOVEMBER,
172 DECEMBER
173 };
174
175 #define REFORMATION_MONTH SEPTEMBER
176 #define NUMBER_MISSING_DAYS 11 /* 11 day correction */
177 #define YDAY_AFTER_MISSING 258 /* 14th in Sep 1752 */
178
179 #define MONTHS_IN_YEAR DECEMBER
180 #define DAYS_IN_MONTH 31
181 #define MAXDAYS 42 /* slots in a month array */
182 #define SPACE -1 /* used in day array */
183
184 #define SMALLEST_YEAR 1
185
186 #define DAY_LEN 3 /* 3 spaces per day */
187 #define WEEK_LEN (DAYS_IN_WEEK * DAY_LEN)
188 #define MONTHS_IN_YEAR_ROW 3 /* month columns in year view */
189 #define WNUM_LEN 3
190
191 #define FMT_ST_CHARS 300 /* 90 suffices in most locales */
192
193 static const int days_in_month[2][13] = {
194 {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
195 {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
196 };
197
198 enum {
199 WEEK_NUM_DISABLED = 0,
200 WEEK_NUM_MASK=0xff,
201 WEEK_NUM_ISO=0x100,
202 WEEK_NUM_US=0x200,
203 };
204
205 /* utf-8 can have up to 6 bytes per char; and an extra byte for ending \0 */
206 static char day_headings[(WEEK_LEN + 1) * 6 + 1];
207
208 struct cal_request {
209 int day;
210 int month;
211 int32_t year;
212 int week;
213 int start_month;
214 };
215
216 struct cal_control {
217 const char *full_month[MONTHS_IN_YEAR]; /* month names */
218 const char *abbr_month[MONTHS_IN_YEAR]; /* abbreviated month names */
219
220 int reform_year; /* Gregorian reform year */
221 int colormode; /* day and week number highlight */
222 int num_months; /* number of requested months */
223 int span_months; /* span the date */
224 int months_in_row; /* number of months horizontally in print out */
225 int weekstart; /* day the week starts, often Sun or Mon */
226 int weektype; /* WEEK_TYPE_{NONE,ISO,US} */
227 size_t day_width; /* day width in characters in printout */
228 size_t week_width; /* 7 * day_width + possible week num */
229 int gutter_width; /* spaces in between horizontal month outputs */
230 struct cal_request req; /* the times user is interested */
231 unsigned int julian:1, /* julian output */
232 header_year:1, /* print year number */
233 header_hint:1; /* does month name + year need two lines to fit */
234 };
235
236 struct cal_month {
237 int days[MAXDAYS]; /* the day numbers, or SPACE */
238 int weeks[MAXDAYS / DAYS_IN_WEEK];
239 int month;
240 int32_t year;
241 struct cal_month *next;
242 };
243
244 /* function prototypes */
245 static int leap_year(const struct cal_control *ctl, int32_t year);
246 static int monthname_to_number(struct cal_control *ctl, const char *name);
247 static void headers_init(struct cal_control *ctl);
248 static void cal_fill_month(struct cal_month *month, const struct cal_control *ctl);
249 static void cal_output_header(struct cal_month *month, const struct cal_control *ctl);
250 static void cal_output_months(struct cal_month *month, const struct cal_control *ctl);
251 static void monthly(const struct cal_control *ctl);
252 static void yearly(const struct cal_control *ctl);
253 static int day_in_year(const struct cal_control *ctl, int day,
254 int month, int32_t year);
255 static int day_in_week(const struct cal_control *ctl, int day,
256 int month, int32_t year);
257 static int week_number(int day, int month, int32_t year, const struct cal_control *ctl);
258 static int week_to_day(const struct cal_control *ctl);
259 static int center_str(const char *src, char *dest, size_t dest_size, size_t width);
260 static void center(const char *str, size_t len, int separate);
261 static int parse_reform_year(const char *reform_year);
262 static void __attribute__((__noreturn__)) usage(void);
263
264 #ifdef TEST_CAL
265 static time_t cal_time(time_t *t)
266 {
267 char *str = getenv("CAL_TEST_TIME");
268
269 if (str) {
270 uint64_t x = strtou64_or_err(str, "failed to parse CAL_TEST_TIME");
271
272 *t = x;
273 return *t;
274 }
275
276 return time(t);
277 }
278 #else
279 # define cal_time(t) time(t)
280 #endif
281
282 int main(int argc, char **argv)
283 {
284 struct tm *local_time;
285 char *term;
286 time_t now;
287 int ch = 0, yflag = 0, Yflag = 0;
288
289 static struct cal_control ctl = {
290 .reform_year = DEFAULT_REFORM_YEAR,
291 .weekstart = SUNDAY,
292 .span_months = 0,
293 .colormode = UL_COLORMODE_UNDEF,
294 .weektype = WEEK_NUM_DISABLED,
295 .day_width = DAY_LEN,
296 .gutter_width = 2,
297 .req.day = 0,
298 .req.month = 0
299 };
300
301 enum {
302 OPT_COLOR = CHAR_MAX + 1,
303 OPT_ISO,
304 OPT_REFORM
305 };
306
307 static const struct option longopts[] = {
308 {"one", no_argument, NULL, '1'},
309 {"three", no_argument, NULL, '3'},
310 {"sunday", no_argument, NULL, 's'},
311 {"monday", no_argument, NULL, 'm'},
312 {"julian", no_argument, NULL, 'j'},
313 {"months", required_argument, NULL, 'n'},
314 {"span", no_argument, NULL, 'S'},
315 {"year", no_argument, NULL, 'y'},
316 {"week", optional_argument, NULL, 'w'},
317 {"color", optional_argument, NULL, OPT_COLOR},
318 {"reform", required_argument, NULL, OPT_REFORM},
319 {"iso", no_argument, NULL, OPT_ISO},
320 {"version", no_argument, NULL, 'V'},
321 {"twelve", no_argument, NULL, 'Y'},
322 {"help", no_argument, NULL, 'h'},
323 {NULL, 0, NULL, 0}
324 };
325
326 static const ul_excl_t excl[] = { /* rows and cols in ASCII order */
327 { 'Y','n','y' },
328 { 0 }
329 };
330 int excl_st[ARRAY_SIZE(excl)] = UL_EXCL_STATUS_INIT;
331
332 setlocale(LC_ALL, "");
333 bindtextdomain(PACKAGE, LOCALEDIR);
334 textdomain(PACKAGE);
335 close_stdout_atexit();
336
337 term = getenv("TERM");
338 if (term) {
339 has_term = setup_terminal(term) == 0;
340 if (has_term) {
341 Senter = my_tgetstr("smso");
342 Sexit = my_tgetstr("rmso");
343 }
344 }
345
346 /*
347 * The traditional Unix cal utility starts the week at Sunday,
348 * while ISO 8601 starts at Monday. We read the start day from
349 * the locale database, which can be overridden with the
350 * -s (Sunday) or -m (Monday) options.
351 */
352 #if HAVE_DECL__NL_TIME_WEEK_1STDAY
353 /*
354 * You need to use 2 locale variables to get the first day of the week.
355 * This is needed to support first_weekday=2 and first_workday=1 for
356 * the rare case where working days span across 2 weeks.
357 * This shell script shows the combinations and calculations involved:
358 *
359 * for LANG in en_US ru_RU fr_FR csb_PL POSIX; do
360 * printf "%s:\t%s + %s -1 = " $LANG $(locale week-1stday first_weekday)
361 * date -d"$(locale week-1stday) +$(($(locale first_weekday)-1))day" +%w
362 * done
363 *
364 * en_US: 19971130 + 1 -1 = 0 #0 = sunday
365 * ru_RU: 19971130 + 2 -1 = 1
366 * fr_FR: 19971201 + 1 -1 = 1
367 * csb_PL: 19971201 + 2 -1 = 2
368 * POSIX: 19971201 + 7 -1 = 0
369 */
370 {
371 int wfd;
372 union { unsigned int word; char *string; } val;
373 val.string = nl_langinfo(_NL_TIME_WEEK_1STDAY);
374
375 wfd = val.word;
376 wfd = day_in_week(&ctl, wfd % 100, (wfd / 100) % 100,
377 wfd / (100 * 100));
378 ctl.weekstart = (wfd + *nl_langinfo(_NL_TIME_FIRST_WEEKDAY) - 1) % DAYS_IN_WEEK;
379 }
380 #endif
381 while ((ch = getopt_long(argc, argv, "13mjn:sSywYVh", longopts, NULL)) != -1) {
382
383 err_exclusive_options(ch, longopts, excl, excl_st);
384
385 switch(ch) {
386 case '1':
387 ctl.num_months = 1;
388 break;
389 case '3':
390 ctl.num_months = 3;
391 ctl.span_months = 1;
392 break;
393 case 's':
394 ctl.weekstart = SUNDAY; /* default */
395 break;
396 case 'm':
397 ctl.weekstart = MONDAY;
398 break;
399 case 'j':
400 ctl.julian = 1;
401 ctl.day_width = DAY_LEN + 1;
402 break;
403 case 'y':
404 yflag = 1;
405 break;
406 case 'Y':
407 Yflag = 1;
408 break;
409 case 'n':
410 ctl.num_months = strtou32_or_err(optarg,
411 _("invalid month argument"));
412 break;
413 case 'S':
414 ctl.span_months = 1;
415 break;
416 case 'w':
417 if (optarg) {
418 ctl.req.week = strtos32_or_err(optarg,
419 _("invalid week argument"));
420 if (ctl.req.week < 1 || 54 < ctl.req.week)
421 errx(EXIT_FAILURE,_("illegal week value: use 1-54"));
422 }
423 ctl.weektype = WEEK_NUM_US; /* default per weekstart */
424 break;
425 case OPT_COLOR:
426 ctl.colormode = UL_COLORMODE_AUTO;
427 if (optarg)
428 ctl.colormode = colormode_or_err(optarg,
429 _("unsupported color mode"));
430 break;
431 case OPT_REFORM:
432 ctl.reform_year = parse_reform_year(optarg);
433 break;
434 case OPT_ISO:
435 ctl.reform_year = ISO;
436 break;
437 case 'V':
438 print_version(EXIT_SUCCESS);
439 case 'h':
440 usage();
441 default:
442 errtryhelp(EXIT_FAILURE);
443 }
444 }
445
446 argc -= optind;
447 argv += optind;
448
449 if (ctl.weektype) {
450 ctl.weektype = ctl.req.week & WEEK_NUM_MASK;
451 ctl.weektype |= (ctl.weekstart == MONDAY ? WEEK_NUM_ISO : WEEK_NUM_US);
452 ctl.week_width = (ctl.day_width * DAYS_IN_WEEK) + WNUM_LEN;
453 } else
454 ctl.week_width = ctl.day_width * DAYS_IN_WEEK;
455
456 if (argc == 1 && !isdigit_string(*argv)) {
457 usec_t x;
458 /* cal <timestamp> */
459 if (parse_timestamp(*argv, &x) == 0)
460 now = (time_t) (x / 1000000);
461 /* cal <monthname> */
462 else if ((ctl.req.month = monthname_to_number(&ctl, *argv)) > 0)
463 cal_time(&now); /* this year */
464 else
465 errx(EXIT_FAILURE, _("failed to parse timestamp or unknown month name: %s"), *argv);
466 argc = 0;
467 } else
468 cal_time(&now);
469
470 local_time = localtime(&now);
471
472 switch(argc) {
473 case 3:
474 ctl.req.day = strtos32_or_err(*argv++, _("illegal day value"));
475 if (ctl.req.day < 1 || DAYS_IN_MONTH < ctl.req.day)
476 errx(EXIT_FAILURE, _("illegal day value: use 1-%d"), DAYS_IN_MONTH);
477 /* fallthrough */
478 case 2:
479 if (isdigit(**argv))
480 ctl.req.month = strtos32_or_err(*argv++, _("illegal month value: use 1-12"));
481 else {
482 ctl.req.month = monthname_to_number(&ctl, *argv);
483 if (ctl.req.month < 0)
484 errx(EXIT_FAILURE, _("unknown month name: %s"), *argv);
485 argv++;
486 }
487 if (ctl.req.month < 1 || MONTHS_IN_YEAR < ctl.req.month)
488 errx(EXIT_FAILURE, _("illegal month value: use 1-12"));
489 /* fallthrough */
490 case 1:
491 ctl.req.year = strtos32_or_err(*argv++, _("illegal year value"));
492 if (ctl.req.year < SMALLEST_YEAR)
493 errx(EXIT_FAILURE, _("illegal year value: use positive integer"));
494 if (ctl.req.year == JULIAN)
495 errx(EXIT_FAILURE, _("illegal year value"));
496 if (ctl.req.day) {
497 int dm = days_in_month[leap_year(&ctl, ctl.req.year)]
498 [ctl.req.month];
499 if (ctl.req.day > dm)
500 errx(EXIT_FAILURE, _("illegal day value: use 1-%d"), dm);
501 ctl.req.day = day_in_year(&ctl, ctl.req.day,
502 ctl.req.month, ctl.req.year);
503 } else if ((int32_t) (local_time->tm_year + 1900) == ctl.req.year) {
504 ctl.req.day = local_time->tm_yday + 1;
505 }
506 if (!ctl.req.month && !ctl.req.week) {
507 ctl.req.month = local_time->tm_mon + 1;
508 if (!ctl.num_months)
509 yflag = 1;
510 }
511 break;
512 case 0:
513 ctl.req.day = local_time->tm_yday + 1;
514 ctl.req.year = local_time->tm_year + 1900;
515 if (!ctl.req.month)
516 ctl.req.month = local_time->tm_mon + 1;
517 break;
518 default:
519 warnx(_("bad usage"));
520 errtryhelp(EXIT_FAILURE);
521 }
522
523 if (0 < ctl.req.week) {
524 int yday = week_to_day(&ctl);
525 int leap = leap_year(&ctl, ctl.req.year);
526 int m = 1;
527
528 if (yday < 1)
529 errx(EXIT_FAILURE, _("illegal week value: year %d "
530 "doesn't have week %d"),
531 ctl.req.year, ctl.req.week);
532 while (m <= DECEMBER && yday > days_in_month[leap][m])
533 yday -= days_in_month[leap][m++];
534 if (DECEMBER < m && ctl.weektype & WEEK_NUM_ISO) {
535 /* In some years (e.g. 2010 in ISO mode) it's possible
536 * to have a remnant of week 53 starting the year yet
537 * the year in question ends during 52, in this case
538 * we're assuming that early remnant is being referred
539 * to if 53 is given as argument. */
540 if (ctl.req.week != week_number(31, DECEMBER, ctl.req.year - 1, &ctl))
541 errx(EXIT_FAILURE,
542 _("illegal week value: year %d "
543 "doesn't have week %d"),
544 ctl.req.year, ctl.req.week);
545 }
546 if (!ctl.req.month)
547 ctl.req.month = MONTHS_IN_YEAR < m ? 1 : m;
548 }
549
550 headers_init(&ctl);
551
552 if (colors_init(ctl.colormode, "cal") == 0) {
553 /*
554 * If standout mode available (Senter and Sexit are set) and
555 * user or terminal-colors.d do not disable colors than
556 * ignore colors_init().
557 */
558 if (*Senter && *Sexit && colors_mode() != UL_COLORMODE_NEVER) {
559 /* let use standout mode */
560 ;
561 } else {
562 /* disable */
563 Senter = ""; Sexit = "";
564 ctl.req.day = 0;
565 ctl.weektype &= ~WEEK_NUM_MASK;
566 }
567 }
568
569 if (yflag || Yflag) {
570 ctl.gutter_width = 3;
571 if (!ctl.num_months)
572 ctl.num_months = MONTHS_IN_YEAR;
573 if (yflag) {
574 ctl.req.start_month = 1; /* start from Jan */
575 ctl.header_year = 1; /* print year number */
576 }
577 }
578
579 if (ctl.num_months > 1 && ctl.months_in_row == 0) {
580 ctl.months_in_row = MONTHS_IN_YEAR_ROW; /* default */
581
582 if (isatty(STDOUT_FILENO)) {
583 int w, mw, extra, new_n;
584
585 w = get_terminal_width(80);
586 mw = ctl.julian ? DOY_MONTH_WIDTH : DOM_MONTH_WIDTH;
587
588 if (w < mw)
589 w = mw;
590
591 extra = ((w / mw) - 1) * ctl.gutter_width;
592 new_n = (w - extra) / mw;
593
594 if (new_n < MONTHS_IN_YEAR_ROW)
595 ctl.months_in_row = new_n > 0 ? new_n : 1;
596 }
597 } else if (!ctl.months_in_row)
598 ctl.months_in_row = 1;
599
600 if (!ctl.num_months)
601 ctl.num_months = 1; /* display at least one month */
602
603 if (yflag || Yflag)
604 yearly(&ctl);
605 else
606 monthly(&ctl);
607
608 return EXIT_SUCCESS;
609 }
610
611 /* leap year -- account for gregorian reformation in 1752 */
612 static int leap_year(const struct cal_control *ctl, int32_t year)
613 {
614 if (year <= ctl->reform_year)
615 return !(year % 4);
616 else
617 return ( !(year % 4) && (year % 100) ) || !(year % 400);
618 }
619
620 static void init_monthnames(struct cal_control *ctl)
621 {
622 size_t i;
623
624 if (ctl->full_month[0] != NULL)
625 return; /* already initialized */
626
627 for (i = 0; i < MONTHS_IN_YEAR; i++)
628 ctl->full_month[i] = nl_langinfo(ALTMON_1 + i);
629 }
630
631 static void init_abbr_monthnames(struct cal_control *ctl)
632 {
633 size_t i;
634
635 if (ctl->abbr_month[0] != NULL)
636 return; /* already initialized */
637
638 for (i = 0; i < MONTHS_IN_YEAR; i++)
639 ctl->abbr_month[i] = nl_langinfo(_NL_ABALTMON_1 + i);
640 }
641
642 static int monthname_to_number(struct cal_control *ctl, const char *name)
643 {
644 size_t i;
645
646 init_monthnames(ctl);
647 for (i = 0; i < MONTHS_IN_YEAR; i++)
648 if (strcasecmp(ctl->full_month[i], name) == 0)
649 return i + 1;
650
651 init_abbr_monthnames(ctl);
652 for (i = 0; i < MONTHS_IN_YEAR; i++)
653 if (strcasecmp(ctl->abbr_month[i], name) == 0)
654 return i + 1;
655
656 return -EINVAL;
657 }
658
659 static void headers_init(struct cal_control *ctl)
660 {
661 size_t i, wd;
662 char *cur_dh = day_headings;
663 char tmp[FMT_ST_CHARS];
664 int year_len;
665
666 year_len = snprintf(tmp, sizeof(tmp), "%04d", ctl->req.year);
667
668 if (year_len < 0 || (size_t)year_len >= sizeof(tmp)) {
669 /* XXX impossible error */
670 return;
671 }
672
673 for (i = 0; i < DAYS_IN_WEEK; i++) {
674 size_t space_left;
675 wd = (i + ctl->weekstart) % DAYS_IN_WEEK;
676
677 if (i)
678 strcat(cur_dh++, " ");
679 space_left = sizeof(day_headings) - (cur_dh - day_headings);
680
681 if (space_left <= (ctl->day_width - 1))
682 break;
683 cur_dh += center_str(nl_langinfo(ABDAY_1 + wd), cur_dh,
684 space_left, ctl->day_width - 1);
685 }
686
687 init_monthnames(ctl);
688
689 for (i = 0; i < MONTHS_IN_YEAR; i++) {
690 /* The +1 after year_len is space in between month and year. */
691 if (ctl->week_width < strlen(ctl->full_month[i]) + year_len + 1)
692 ctl->header_hint = 1;
693 }
694 }
695
696 static void cal_fill_month(struct cal_month *month, const struct cal_control *ctl)
697 {
698 int first_week_day = day_in_week(ctl, 1, month->month, month->year);
699 int month_days;
700 int i, j, weeklines = 0;
701
702 if (ctl->julian)
703 j = day_in_year(ctl, 1, month->month, month->year);
704 else
705 j = 1;
706 month_days = j + days_in_month[leap_year(ctl, month->year)][month->month];
707
708 /* True when Sunday is not first day in the output week. */
709 if (ctl->weekstart) {
710 first_week_day -= ctl->weekstart;
711 if (first_week_day < 0)
712 first_week_day = DAYS_IN_WEEK - ctl->weekstart;
713 month_days += ctl->weekstart - 1;
714 }
715
716 /* Fill day array. */
717 for (i = 0; i < MAXDAYS; i++) {
718 if (0 < first_week_day) {
719 month->days[i] = SPACE;
720 first_week_day--;
721 continue;
722 }
723 if (j < month_days) {
724 if (month->year == ctl->reform_year &&
725 month->month == REFORMATION_MONTH &&
726 (j == 3 || j == 247))
727 j += NUMBER_MISSING_DAYS;
728 month->days[i] = j;
729 j++;
730 continue;
731 }
732 month->days[i] = SPACE;
733 weeklines++;
734 }
735
736 /* Add week numbers */
737 if (ctl->weektype) {
738 int weeknum = week_number(1, month->month, month->year, ctl);
739 weeklines = MAXDAYS / DAYS_IN_WEEK - weeklines / DAYS_IN_WEEK;
740 for (i = 0; i < MAXDAYS / DAYS_IN_WEEK; i++) {
741 if (0 < weeklines) {
742 if (52 < weeknum)
743 weeknum = week_number(month->days[i * DAYS_IN_WEEK], month->month, month->year, ctl);
744 month->weeks[i] = weeknum++;
745 } else
746 month->weeks[i] = SPACE;
747 weeklines--;
748 }
749 }
750 }
751
752 static void cal_output_header(struct cal_month *month, const struct cal_control *ctl)
753 {
754 char out[FMT_ST_CHARS];
755 struct cal_month *i;
756
757 if (ctl->header_hint || ctl->header_year) {
758 for (i = month; i; i = i->next) {
759 snprintf(out, sizeof(out), "%s", ctl->full_month[i->month - 1]);
760 center(out, ctl->week_width - 1, i->next == NULL ? 0 : ctl->gutter_width);
761 }
762 if (!ctl->header_year) {
763 my_putstring("\n");
764 for (i = month; i; i = i->next) {
765 snprintf(out, sizeof(out), "%04d", i->year);
766 center(out, ctl->week_width - 1, i->next == NULL ? 0 : ctl->gutter_width);
767 }
768 }
769 } else {
770 for (i = month; i; i = i->next) {
771 snprintf(out, sizeof(out), "%s %04d", ctl->full_month[i->month - 1], i->year);
772 center(out, ctl->week_width - 1, i->next == NULL ? 0 : ctl->gutter_width);
773 }
774 }
775 my_putstring("\n");
776 for (i = month; i; i = i->next) {
777 if (ctl->weektype) {
778 if (ctl->julian)
779 snprintf(out, sizeof(out), "%*s%s", (int)ctl->day_width - 1, "", day_headings);
780 else
781 snprintf(out, sizeof(out), "%*s%s", (int)ctl->day_width, "", day_headings);
782 my_putstring(out);
783 } else
784 my_putstring(day_headings);
785 if (i->next != NULL) {
786 snprintf(out, sizeof(out), "%*s", ctl->gutter_width, "");
787 my_putstring(out);
788 }
789 }
790 my_putstring("\n");
791 }
792
793 static void cal_output_months(struct cal_month *month, const struct cal_control *ctl)
794 {
795 char out[FMT_ST_CHARS];
796 int reqday, week_line, d;
797 int skip;
798 struct cal_month *i;
799
800 for (week_line = 0; week_line < MAXDAYS / DAYS_IN_WEEK; week_line++) {
801 for (i = month; i; i = i->next) {
802 /* Determine the day that should be highlighted. */
803 reqday = 0;
804 if (i->month == ctl->req.month && i->year == ctl->req.year) {
805 if (ctl->julian)
806 reqday = ctl->req.day;
807 else
808 reqday = ctl->req.day + 1 -
809 day_in_year(ctl, 1, i->month,
810 i->year);
811 }
812
813 if (ctl->weektype) {
814 if (0 < i->weeks[week_line]) {
815 if ((ctl->weektype & WEEK_NUM_MASK) ==
816 i->weeks[week_line])
817 snprintf(out, sizeof(out), "%s%2d%s",
818 Senter, i->weeks[week_line],
819 Sexit);
820 else
821 snprintf(out, sizeof(out), "%2d", i->weeks[week_line]);
822 } else
823 snprintf(out, sizeof(out), "%2s", "");
824 my_putstring(out);
825 skip = ctl->day_width;
826 } else
827 /* First day of the week is one char narrower than the other days,
828 * unless week number is printed. */
829 skip = ctl->day_width - 1;
830
831 for (d = DAYS_IN_WEEK * week_line;
832 d < DAYS_IN_WEEK * week_line + DAYS_IN_WEEK; d++) {
833 if (0 < i->days[d]) {
834 if (reqday == i->days[d])
835 snprintf(out, sizeof(out), "%*s%s%*d%s",
836 skip - (ctl->julian ? 3 : 2),
837 "", Senter, (ctl->julian ? 3 : 2),
838 i->days[d], Sexit);
839 else
840 snprintf(out, sizeof(out), "%*d", skip, i->days[d]);
841 } else
842 snprintf(out, sizeof(out), "%*s", skip, "");
843 my_putstring(out);
844 if (skip < (int)ctl->day_width)
845 skip++;
846 }
847 if (i->next != NULL) {
848 snprintf(out, sizeof(out), "%*s", ctl->gutter_width, "");
849 my_putstring(out);
850 }
851 }
852 if (i == NULL)
853 my_putstring("\n");
854 }
855 }
856
857 static void monthly(const struct cal_control *ctl)
858 {
859 struct cal_month m1,m2,m3, *m;
860 int i, rows, month = ctl->req.start_month ? ctl->req.start_month : ctl->req.month;
861 int32_t year = ctl->req.year;
862
863 /* cal -3, cal -Y --span, etc. */
864 if (ctl->span_months) {
865 int new_month = month - ctl->num_months / 2;
866 if (new_month < 1) {
867 new_month *= -1;
868 year -= (new_month / MONTHS_IN_YEAR) + 1;
869
870 if (new_month > MONTHS_IN_YEAR)
871 new_month %= MONTHS_IN_YEAR;
872 month = MONTHS_IN_YEAR - new_month;
873 } else
874 month = new_month;
875 }
876
877 m1.next = (ctl->months_in_row > 1) ? &m2 : NULL;
878 m2.next = (ctl->months_in_row > 2) ? &m3 : NULL;
879 m3.next = NULL;
880
881 rows = (ctl->num_months - 1) / ctl->months_in_row;
882 for (i = 0; i < rows + 1 ; i++){
883 if (i == rows){
884 switch (ctl->num_months % ctl->months_in_row){
885 case 1:
886 m1.next = NULL;
887 /* fallthrough */
888 case 2:
889 m2.next = NULL;
890 /* fallthrough */
891 }
892 }
893 for (m = &m1; m; m = m->next){
894 m->month = month++;
895 m->year = year;
896 if (MONTHS_IN_YEAR < month) {
897 year++;
898 month = 1;
899 }
900 cal_fill_month(m, ctl);
901 }
902 cal_output_header(&m1, ctl);
903 cal_output_months(&m1, ctl);
904 }
905 }
906
907 static void yearly(const struct cal_control *ctl)
908 {
909 char out[FMT_ST_CHARS];
910 int year_width = 0;
911
912 year_width += (ctl->week_width + 1) * (ctl->julian ? 2 : 3);
913 if (ctl->julian)
914 year_width--;
915
916 if (ctl->header_year) {
917 snprintf(out, sizeof(out), "%04d", ctl->req.year);
918 center(out, year_width, 0);
919 my_putstring("\n\n");
920 }
921 monthly(ctl);
922 }
923
924 /*
925 * day_in_year --
926 * return the 1 based day number within the year
927 */
928 static int day_in_year(const struct cal_control *ctl,
929 int day, int month, int32_t year)
930 {
931 int i, leap;
932
933 leap = leap_year(ctl, year);
934 for (i = 1; i < month; i++)
935 day += days_in_month[leap][i];
936 return day;
937 }
938
939 /*
940 * day_in_week
941 * return the 0 based day number for any date from 1 Jan. 1 to
942 * 31 Dec. 9999. Assumes the Gregorian reformation eliminates
943 * 3 Sep. 1752 through 13 Sep. 1752, and returns invalid weekday
944 * during the period of 11 days.
945 */
946 static int day_in_week(const struct cal_control *ctl, int day,
947 int month, int32_t year)
948 {
949 /*
950 * The magic constants in the reform[] array are, in a simplified
951 * sense, the remaining days after slicing into one week periods the total
952 * days from the beginning of the year to the target month. That is,
953 * weeks + reform[] days gets us to the target month. The exception is,
954 * that for the months past February 'DOY - 1' must be used.
955 *
956 * DoY (Day of Year): total days to the target month
957 *
958 * Month 1 2 3 4 5 6 7 8 9 10 11 12
959 * DoY 0 31 59 90 120 151 181 212 243 273 304 334
960 * DoY % 7 0 3
961 * DoY - 1 % 7 - -- 2 5 0 3 5 1 4 6 2 4
962 * reform[] = { 0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4 };
963 *
964 * Note: these calculations are for non leap years.
965 */
966 static const int reform[] = { 0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4 };
967 static const int old[] = { 5, 1, 0, 3, 5, 1, 3, 6, 2, 4, 0, 2 };
968
969 if (year != ctl->reform_year + 1)
970 year -= month < MARCH;
971 else
972 year -= (month < MARCH) + 14;
973 if (ctl->reform_year < year
974 || (year == ctl->reform_year && REFORMATION_MONTH < month)
975 || (year == ctl->reform_year
976 && month == REFORMATION_MONTH && 13 < day)) {
977 return ((int64_t) year + (year / 4)
978 - (year / 100) + (year / 400)
979 + reform[month - 1] + day) % DAYS_IN_WEEK;
980 }
981 if (year < ctl->reform_year
982 || (year == ctl->reform_year && month < REFORMATION_MONTH)
983 || (year == ctl->reform_year && month == REFORMATION_MONTH && day < 3))
984 return ((int64_t) year + year / 4 + old[month - 1] + day)
985 % DAYS_IN_WEEK;
986 return NONEDAY;
987 }
988
989 /*
990 * week_number
991 * return the week number of a given date, 1..54.
992 * Supports ISO-8601 and North American modes.
993 * Day may be given as Julian day of the year mode, in which
994 * case the month is disregarded entirely.
995 */
996 static int week_number(int day, int month, int32_t year, const struct cal_control *ctl)
997 {
998 int fday = 0, yday;
999 const int wday = day_in_week(ctl, 1, JANUARY, year);
1000
1001 if (ctl->weektype & WEEK_NUM_ISO)
1002 fday = wday + (wday >= FRIDAY ? -2 : 5);
1003 else {
1004 /* WEEK_NUM_US: Jan 1 is always First week, that may
1005 * begin previous year. That means there is very seldom
1006 * more than 52 weeks, */
1007 fday = wday + 6;
1008 }
1009 /* For julian dates the month can be set to 1, the global julian
1010 * variable cannot be relied upon here, because we may recurse
1011 * internally for 31.12. which would not work. */
1012 if (day > DAYS_IN_MONTH)
1013 month = JANUARY;
1014
1015 yday = day_in_year(ctl, day, month, year);
1016 if (year == ctl->reform_year && yday >= YDAY_AFTER_MISSING)
1017 fday -= NUMBER_MISSING_DAYS;
1018
1019 /* Last year is last year */
1020 if (yday + fday < DAYS_IN_WEEK)
1021 return week_number(31, DECEMBER, year - 1, ctl);
1022
1023 /* Or it could be part of the next year. The reformation year had less
1024 * days than 365 making this check invalid, but reformation year ended
1025 * on Sunday and in week 51, so it's ok here. */
1026 if (ctl->weektype == WEEK_NUM_ISO && yday >= 363
1027 && day_in_week(ctl, day, month, year) >= MONDAY
1028 && day_in_week(ctl, day, month, year) <= WEDNESDAY
1029 && day_in_week(ctl, 31, DECEMBER, year) >= MONDAY
1030 && day_in_week(ctl, 31, DECEMBER, year) <= WEDNESDAY)
1031 return week_number(1, JANUARY, year + 1, ctl);
1032
1033 return (yday + fday) / DAYS_IN_WEEK;
1034 }
1035
1036 /*
1037 * week_to_day
1038 * return the yday of the first day in a given week inside
1039 * the given year. This may be something other than Monday
1040 * for ISO-8601 modes. For North American numbering this
1041 * always returns a Sunday.
1042 */
1043 static int week_to_day(const struct cal_control *ctl)
1044 {
1045 int yday, wday;
1046
1047 wday = day_in_week(ctl, 1, JANUARY, ctl->req.year);
1048 yday = ctl->req.week * DAYS_IN_WEEK - wday;
1049
1050 if (ctl->req.year == ctl->reform_year && yday >= YDAY_AFTER_MISSING)
1051 yday += NUMBER_MISSING_DAYS;
1052
1053 if (ctl->weektype & WEEK_NUM_ISO)
1054 yday -= (wday >= FRIDAY ? -2 : 5);
1055 else
1056 yday -= 6; /* WEEK_NUM_US */
1057 if (yday <= 0)
1058 return 1;
1059
1060 return yday;
1061 }
1062
1063 /*
1064 * Center string, handling multibyte characters appropriately.
1065 * In addition if the string is too large for the width it's truncated.
1066 * The number of trailing spaces may be 1 less than the number of leading spaces.
1067 */
1068 static int center_str(const char* src, char* dest,
1069 size_t dest_size, size_t width)
1070 {
1071 return mbsalign(src, dest, dest_size, &width,
1072 MBS_ALIGN_CENTER, MBA_UNIBYTE_FALLBACK);
1073 }
1074
1075 static void center(const char *str, size_t len, int separate)
1076 {
1077 char lineout[FMT_ST_CHARS];
1078
1079 center_str(str, lineout, ARRAY_SIZE(lineout), len);
1080 my_putstring(lineout);
1081
1082 if (separate) {
1083 snprintf(lineout, sizeof(lineout), "%*s", separate, "");
1084 my_putstring(lineout);
1085 }
1086 }
1087
1088 static int parse_reform_year(const char *reform_year)
1089 {
1090 size_t i;
1091
1092 struct reform {
1093 char *name;
1094 int val;
1095 };
1096
1097 struct reform years[] = {
1098 {"gregorian", GREGORIAN},
1099 {"iso", ISO},
1100 {"1752", GB1752},
1101 {"julian", JULIAN},
1102 };
1103
1104 for (i = 0; i < ARRAY_SIZE(years); i++) {
1105 if (strcasecmp(reform_year, years[i].name) == 0) {
1106 return years[i].val;
1107 }
1108 }
1109 errx(EXIT_FAILURE, "invalid --reform value: '%s'", reform_year);
1110 }
1111
1112 static void __attribute__((__noreturn__)) usage(void)
1113 {
1114 FILE *out = stdout;
1115 fputs(USAGE_HEADER, out);
1116 fprintf(out, _(" %s [options] [[[day] month] year]\n"), program_invocation_short_name);
1117 fprintf(out, _(" %s [options] <timestamp|monthname>\n"), program_invocation_short_name);
1118
1119 fputs(USAGE_SEPARATOR, out);
1120 fputs(_("Display a calendar, or some part of it.\n"), out);
1121 fputs(_("Without any arguments, display the current month.\n"), out);
1122
1123 fputs(USAGE_OPTIONS, out);
1124 fputs(_(" -1, --one show only a single month (default)\n"), out);
1125 fputs(_(" -3, --three show three months spanning the date\n"), out);
1126 fputs(_(" -n, --months <num> show num months starting with date's month\n"), out);
1127 fputs(_(" -S, --span span the date when displaying multiple months\n"), out);
1128 fputs(_(" -s, --sunday Sunday as first day of week\n"), out);
1129 fputs(_(" -m, --monday Monday as first day of week\n"), out);
1130 fputs(_(" -j, --julian use day-of-year for all calendars\n"), out);
1131 fputs(_(" --reform <val> Gregorian reform date (1752|gregorian|iso|julian)\n"), out);
1132 fputs(_(" --iso alias for --reform=iso\n"), out);
1133 fputs(_(" -y, --year show the whole year\n"), out);
1134 fputs(_(" -Y, --twelve show the next twelve months\n"), out);
1135 fputs(_(" -w, --week[=<num>] show US or ISO-8601 week numbers\n"), out);
1136 fputs(_(" --color[=<when>] colorize messages (auto, always or never)\n"), out);
1137 fprintf(out,
1138 " %s\n", USAGE_COLORS_DEFAULT);
1139
1140 fputs(USAGE_SEPARATOR, out);
1141 printf(USAGE_HELP_OPTIONS(23));
1142 printf(USAGE_MAN_TAIL("cal(1)"));
1143
1144 exit(EXIT_SUCCESS);
1145 }