"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Calendar implementation for busybox |
| 4 | * |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 5 | * See original copyright at the end of this file |
| 6 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 8 | */ |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 9 | /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) |
| 10 | * |
| 11 | * Major size reduction... over 50% (>1.5k) on i386. |
| 12 | */ |
| 13 | //config:config CAL |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 14 | //config: bool "cal (5.8 kb)" |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 15 | //config: default y |
| 16 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 17 | //config: cal is used to display a monthly calendar. |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 18 | |
Denys Vlasenko | cbdc37c | 2018-01-14 14:32:11 +0100 | [diff] [blame] | 19 | //applet:IF_CAL(APPLET_NOEXEC(cal, cal, BB_DIR_USR_BIN, BB_SUID_DROP, cal)) |
| 20 | /* NOEXEC despite rare cases when it can be a "runner" (e.g. cal -n12000 takes you into years 30xx) */ |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 21 | |
| 22 | //kbuild:lib-$(CONFIG_CAL) += cal.o |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 23 | |
| 24 | /* BB_AUDIT SUSv3 compliant with -j and -y extensions (from util-linux). */ |
| 25 | /* BB_AUDIT BUG: The output of 'cal -j 1752' is incorrect. The upstream |
| 26 | * BB_AUDIT BUG: version in util-linux seems to be broken as well. */ |
| 27 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/cal.html */ |
| 28 | |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 29 | //usage:#define cal_trivial_usage |
Ron Yorston | 56f0e88 | 2021-09-21 08:42:58 +0100 | [diff] [blame] | 30 | //usage: "[-jmy] [[MONTH] YEAR]" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 31 | //usage:#define cal_full_usage "\n\n" |
| 32 | //usage: "Display a calendar\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 33 | //usage: "\n -j Use julian dates" |
Ron Yorston | 56f0e88 | 2021-09-21 08:42:58 +0100 | [diff] [blame] | 34 | //usage: "\n -m Week starts on Monday" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 35 | //usage: "\n -y Display the entire year" |
| 36 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 37 | #include "libbb.h" |
Denys Vlasenko | 9f93d62 | 2010-01-24 07:44:03 +0100 | [diff] [blame] | 38 | #include "unicode.h" |
Manuel Novoa III | b99cb64 | 2002-05-29 19:08:41 +0000 | [diff] [blame] | 39 | |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 40 | /* We often use "unsigned" instead of "int", it's easier to div on most CPUs */ |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 41 | |
Ron Yorston | 56f0e88 | 2021-09-21 08:42:58 +0100 | [diff] [blame] | 42 | #define SUNDAY 0 |
| 43 | #define MONDAY 1 |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 44 | #define THURSDAY 4 /* for reformation */ |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 45 | #define SATURDAY 6 /* 1 Jan 1 was a Saturday */ |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 46 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 47 | #define FIRST_MISSING_DAY 639787 /* 3 Sep 1752 */ |
| 48 | #define NUMBER_MISSING_DAYS 11 /* 11 day correction */ |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 49 | |
| 50 | #define MAXDAYS 42 /* max slots in a month array */ |
| 51 | #define SPACE -1 /* used in day array */ |
| 52 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 53 | static const unsigned char days_in_month[] ALIGN1 = { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 54 | 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 55 | }; |
| 56 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 57 | static const unsigned char sep1752[] ALIGN1 = { |
Denys Vlasenko | 6830ade | 2013-01-15 13:58:01 +0100 | [diff] [blame] | 58 | 1, 2, 14, 15, 16, |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 59 | 17, 18, 19, 20, 21, 22, 23, |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 60 | 24, 25, 26, 27, 28, 29, 30 |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 61 | }; |
| 62 | |
Denis Vlasenko | a525403 | 2008-07-22 10:10:13 +0000 | [diff] [blame] | 63 | /* Set to 0 or 1 in main */ |
| 64 | #define julian ((unsigned)option_mask32) |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 65 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 66 | /* leap year -- account for Gregorian reformation in 1752 */ |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 67 | static int leap_year(unsigned yr) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 68 | { |
Denis Vlasenko | 319f8eb | 2007-08-13 11:09:30 +0000 | [diff] [blame] | 69 | if (yr <= 1752) |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 70 | return !(yr % 4); |
| 71 | return (!(yr % 4) && (yr % 100)) || !(yr % 400); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 72 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 73 | |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 74 | /* number of centuries since 1700, not inclusive */ |
| 75 | #define centuries_since_1700(yr) \ |
| 76 | ((yr) > 1700 ? (yr) / 100 - 17 : 0) |
| 77 | |
| 78 | /* number of centuries since 1700 whose modulo of 400 is 0 */ |
| 79 | #define quad_centuries_since_1700(yr) \ |
| 80 | ((yr) > 1600 ? ((yr) - 1600) / 400 : 0) |
| 81 | |
| 82 | /* number of leap years between year 1 and this year, not inclusive */ |
| 83 | #define leap_years_since_year_1(yr) \ |
| 84 | ((yr) / 4 - centuries_since_1700(yr) + quad_centuries_since_1700(yr)) |
| 85 | |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 86 | static void center(char *, unsigned, unsigned); |
Ron Yorston | 56f0e88 | 2021-09-21 08:42:58 +0100 | [diff] [blame] | 87 | static void day_array(unsigned, unsigned, unsigned, unsigned *); |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 88 | static void trim_trailing_spaces_and_print(char *); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 89 | |
| 90 | static void blank_string(char *buf, size_t buflen); |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 91 | static char *build_row(char *p, unsigned *dp); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 92 | |
| 93 | #define DAY_LEN 3 /* 3 spaces per day */ |
| 94 | #define J_DAY_LEN (DAY_LEN + 1) |
| 95 | #define WEEK_LEN 20 /* 7 * 3 - one space at the end */ |
| 96 | #define J_WEEK_LEN (WEEK_LEN + 7) |
| 97 | #define HEAD_SEP 2 /* spaces between day headings */ |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 98 | |
Ron Yorston | 56f0e88 | 2021-09-21 08:42:58 +0100 | [diff] [blame] | 99 | enum { |
| 100 | OPT_JULIAN = (1 << 0), |
| 101 | OPT_MONDAY = (1 << 1), |
| 102 | OPT_YEAR = (1 << 2), |
| 103 | }; |
| 104 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 105 | int cal_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denys Vlasenko | 2ec91ae | 2010-01-04 14:15:38 +0100 | [diff] [blame] | 106 | int cal_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 107 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 108 | struct tm zero_tm; |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 109 | time_t now; |
Ron Yorston | 56f0e88 | 2021-09-21 08:42:58 +0100 | [diff] [blame] | 110 | unsigned month, year, flags, i, weekstart; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 111 | char *month_names[12]; |
Denys Vlasenko | 9f93d62 | 2010-01-24 07:44:03 +0100 | [diff] [blame] | 112 | /* normal heading: */ |
| 113 | /* "Su Mo Tu We Th Fr Sa" */ |
| 114 | /* -j heading: */ |
| 115 | /* " Su Mo Tu We Th Fr Sa" */ |
Denys Vlasenko | 19158a8 | 2010-03-26 14:06:56 +0100 | [diff] [blame] | 116 | char day_headings[ENABLE_UNICODE_SUPPORT ? 28 * 6 : 28]; |
| 117 | IF_UNICODE_SUPPORT(char *hp = day_headings;) |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 118 | char buf[40]; |
| 119 | |
Denys Vlasenko | 9f93d62 | 2010-01-24 07:44:03 +0100 | [diff] [blame] | 120 | init_unicode(); |
| 121 | |
Ron Yorston | 56f0e88 | 2021-09-21 08:42:58 +0100 | [diff] [blame] | 122 | flags = getopt32(argv, "jmy"); |
| 123 | /* This sets julian = flags & OPT_JULIAN: */ |
| 124 | option_mask32 &= OPT_JULIAN; |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 125 | month = 0; |
Ron Yorston | 56f0e88 | 2021-09-21 08:42:58 +0100 | [diff] [blame] | 126 | weekstart = (flags & OPT_MONDAY) ? MONDAY : SUNDAY; |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 127 | argv += optind; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 128 | |
Denys Vlasenko | 2ec91ae | 2010-01-04 14:15:38 +0100 | [diff] [blame] | 129 | if (!argv[0]) { |
Denys Vlasenko | dc698bb | 2010-01-09 19:10:49 +0100 | [diff] [blame] | 130 | struct tm *ptm; |
| 131 | |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 132 | time(&now); |
Denys Vlasenko | dc698bb | 2010-01-09 19:10:49 +0100 | [diff] [blame] | 133 | ptm = localtime(&now); |
| 134 | year = ptm->tm_year + 1900; |
Ron Yorston | 56f0e88 | 2021-09-21 08:42:58 +0100 | [diff] [blame] | 135 | if (!(flags & OPT_YEAR)) { /* no -y */ |
Denys Vlasenko | dc698bb | 2010-01-09 19:10:49 +0100 | [diff] [blame] | 136 | month = ptm->tm_mon + 1; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 137 | } |
| 138 | } else { |
Denys Vlasenko | 2ec91ae | 2010-01-04 14:15:38 +0100 | [diff] [blame] | 139 | if (argv[1]) { |
| 140 | if (argv[2]) { |
| 141 | bb_show_usage(); |
| 142 | } |
Ron Yorston | 56f0e88 | 2021-09-21 08:42:58 +0100 | [diff] [blame] | 143 | if (!(flags & OPT_YEAR)) { /* no -y */ |
Denys Vlasenko | ed910c7 | 2010-01-31 00:10:18 +0100 | [diff] [blame] | 144 | month = xatou_range(*argv, 1, 12); |
| 145 | } |
| 146 | argv++; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 147 | } |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 148 | year = xatou_range(*argv, 1, 9999); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 149 | } |
| 150 | |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 151 | blank_string(day_headings, sizeof(day_headings) - 7 + 7*julian); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 152 | |
| 153 | i = 0; |
| 154 | do { |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 155 | zero_tm.tm_mon = i; |
Denys Vlasenko | 86350f8 | 2010-01-06 10:18:37 +0100 | [diff] [blame] | 156 | /* full month name according to locale */ |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 157 | strftime(buf, sizeof(buf), "%B", &zero_tm); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 158 | month_names[i] = xstrdup(buf); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 159 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 160 | if (i < 7) { |
Ron Yorston | 56f0e88 | 2021-09-21 08:42:58 +0100 | [diff] [blame] | 161 | zero_tm.tm_wday = (i + weekstart) % 7; |
Denys Vlasenko | 86350f8 | 2010-01-06 10:18:37 +0100 | [diff] [blame] | 162 | /* abbreviated weekday name according to locale */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 163 | strftime(buf, sizeof(buf), "%a", &zero_tm); |
Denys Vlasenko | 19158a8 | 2010-03-26 14:06:56 +0100 | [diff] [blame] | 164 | #if ENABLE_UNICODE_SUPPORT |
Denys Vlasenko | 9f93d62 | 2010-01-24 07:44:03 +0100 | [diff] [blame] | 165 | if (julian) |
| 166 | *hp++ = ' '; |
| 167 | { |
Denys Vlasenko | dc7e5c4 | 2011-01-11 13:08:28 +0100 | [diff] [blame] | 168 | char *two_wchars = unicode_conv_to_printable_fixedwidth(/*NULL,*/ buf, 2); |
Denys Vlasenko | 9f93d62 | 2010-01-24 07:44:03 +0100 | [diff] [blame] | 169 | strcpy(hp, two_wchars); |
| 170 | free(two_wchars); |
| 171 | } |
| 172 | hp += strlen(hp); |
| 173 | *hp++ = ' '; |
| 174 | #else |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 175 | strncpy(day_headings + i * (3+julian) + julian, buf, 2); |
Denys Vlasenko | 9f93d62 | 2010-01-24 07:44:03 +0100 | [diff] [blame] | 176 | #endif |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 177 | } |
| 178 | } while (++i < 12); |
Denys Vlasenko | 19158a8 | 2010-03-26 14:06:56 +0100 | [diff] [blame] | 179 | IF_UNICODE_SUPPORT(hp[-1] = '\0';) |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 180 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 181 | if (month) { |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 182 | unsigned row, len, days[MAXDAYS]; |
| 183 | unsigned *dp = days; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 184 | char lineout[30]; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 185 | |
Ron Yorston | 56f0e88 | 2021-09-21 08:42:58 +0100 | [diff] [blame] | 186 | day_array(month, year, weekstart, dp); |
Denys Vlasenko | 327f550 | 2013-11-29 16:45:45 +0100 | [diff] [blame] | 187 | len = sprintf(lineout, "%s %u", month_names[month - 1], year); |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 188 | printf("%*s%s\n%s\n", |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 189 | ((7*julian + WEEK_LEN) - len) / 2, "", |
| 190 | lineout, day_headings); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 191 | for (row = 0; row < 6; row++) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 192 | build_row(lineout, dp)[0] = '\0'; |
| 193 | dp += 7; |
| 194 | trim_trailing_spaces_and_print(lineout); |
| 195 | } |
| 196 | } else { |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 197 | unsigned row, which_cal, week_len, days[12][MAXDAYS]; |
| 198 | unsigned *dp; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 199 | char lineout[80]; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 200 | |
Denys Vlasenko | 7bb346f | 2009-10-06 22:09:50 +0200 | [diff] [blame] | 201 | sprintf(lineout, "%u", year); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 202 | center(lineout, |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 203 | (WEEK_LEN * 3 + HEAD_SEP * 2) |
| 204 | + julian * (J_WEEK_LEN * 2 + HEAD_SEP |
Denys Vlasenko | 6830ade | 2013-01-15 13:58:01 +0100 | [diff] [blame] | 205 | - (WEEK_LEN * 3 + HEAD_SEP * 2)), |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 206 | 0 |
| 207 | ); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 208 | puts("\n"); /* two \n's */ |
| 209 | for (i = 0; i < 12; i++) { |
Ron Yorston | 56f0e88 | 2021-09-21 08:42:58 +0100 | [diff] [blame] | 210 | day_array(i + 1, year, weekstart, days[i]); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 211 | } |
| 212 | blank_string(lineout, sizeof(lineout)); |
| 213 | week_len = WEEK_LEN + julian * (J_WEEK_LEN - WEEK_LEN); |
| 214 | for (month = 0; month < 12; month += 3-julian) { |
| 215 | center(month_names[month], week_len, HEAD_SEP); |
| 216 | if (!julian) { |
| 217 | center(month_names[month + 1], week_len, HEAD_SEP); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 218 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 219 | center(month_names[month + 2 - julian], week_len, 0); |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 220 | printf("\n%s%*s%s", day_headings, HEAD_SEP, "", day_headings); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 221 | if (!julian) { |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 222 | printf("%*s%s", HEAD_SEP, "", day_headings); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 223 | } |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 224 | bb_putchar('\n'); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 225 | for (row = 0; row < (6*7); row += 7) { |
| 226 | for (which_cal = 0; which_cal < 3-julian; which_cal++) { |
| 227 | dp = days[month + which_cal] + row; |
| 228 | build_row(lineout + which_cal * (week_len + 2), dp); |
| 229 | } |
| 230 | /* blank_string took care of nul termination. */ |
| 231 | trim_trailing_spaces_and_print(lineout); |
| 232 | } |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 233 | } |
| 234 | } |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 235 | |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 236 | fflush_stdout_and_exit(EXIT_SUCCESS); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | /* |
| 240 | * day_array -- |
| 241 | * Fill in an array of 42 integers with a calendar. Assume for a moment |
| 242 | * that you took the (maximum) 6 rows in a calendar and stretched them |
| 243 | * out end to end. You would have 42 numbers or spaces. This routine |
| 244 | * builds that array for any month from Jan. 1 through Dec. 9999. |
| 245 | */ |
Ron Yorston | 56f0e88 | 2021-09-21 08:42:58 +0100 | [diff] [blame] | 246 | static void day_array(unsigned month, unsigned year, unsigned weekstart, |
| 247 | unsigned *days) |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 248 | { |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 249 | unsigned long temp; |
| 250 | unsigned i; |
| 251 | unsigned day, dw, dm; |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 252 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 253 | memset(days, SPACE, MAXDAYS * sizeof(int)); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 254 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 255 | if ((month == 9) && (year == 1752)) { |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 256 | /* Assumes the Gregorian reformation eliminates |
| 257 | * 3 Sep. 1752 through 13 Sep. 1752. |
| 258 | */ |
| 259 | unsigned j_offset = julian * 244; |
"Vladimir N. Oleynik" | 676b15e | 2006-01-30 13:47:19 +0000 | [diff] [blame] | 260 | size_t oday = 0; |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 261 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 262 | do { |
Ron Yorston | 56f0e88 | 2021-09-21 08:42:58 +0100 | [diff] [blame] | 263 | days[oday+2-weekstart] = sep1752[oday] + j_offset; |
"Vladimir N. Oleynik" | 676b15e | 2006-01-30 13:47:19 +0000 | [diff] [blame] | 264 | } while (++oday < sizeof(sep1752)); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 265 | |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 266 | return; |
| 267 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 268 | |
| 269 | /* day_in_year |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 270 | * return the 1 based day number within the year |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 271 | */ |
| 272 | day = 1; |
| 273 | if ((month > 2) && leap_year(year)) { |
| 274 | ++day; |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 275 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 276 | |
| 277 | i = month; |
| 278 | while (i) { |
| 279 | day += days_in_month[--i]; |
| 280 | } |
| 281 | |
| 282 | /* day_in_week |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 283 | * return the 0 based day number for any date from 1 Jan. 1 to |
| 284 | * 31 Dec. 9999. Assumes the Gregorian reformation eliminates |
| 285 | * 3 Sep. 1752 through 13 Sep. 1752. Returns Thursday for all |
| 286 | * missing days. |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 287 | */ |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 288 | temp = (long)(year - 1) * 365 + leap_years_since_year_1(year - 1) + day; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 289 | if (temp < FIRST_MISSING_DAY) { |
| 290 | dw = ((temp - 1 + SATURDAY) % 7); |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 291 | } else { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 292 | dw = (((temp - 1 + SATURDAY) - NUMBER_MISSING_DAYS) % 7); |
| 293 | } |
Ron Yorston | 56f0e88 | 2021-09-21 08:42:58 +0100 | [diff] [blame] | 294 | dw = (dw - weekstart + 7) % 7; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 295 | |
| 296 | if (!julian) { |
| 297 | day = 1; |
| 298 | } |
| 299 | |
| 300 | dm = days_in_month[month]; |
| 301 | if ((month == 2) && leap_year(year)) { |
| 302 | ++dm; |
| 303 | } |
| 304 | |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 305 | do { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 306 | days[dw++] = day++; |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 307 | } while (--dm); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 308 | } |
| 309 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 310 | static void trim_trailing_spaces_and_print(char *s) |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 311 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 312 | char *p = s; |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 313 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 314 | while (*p) { |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 315 | ++p; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 316 | } |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 317 | while (p != s) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 318 | --p; |
Denys Vlasenko | c0dab37 | 2009-10-22 22:28:08 +0200 | [diff] [blame] | 319 | if (!isspace(*p)) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 320 | p[1] = '\0'; |
| 321 | break; |
| 322 | } |
| 323 | } |
| 324 | |
| 325 | puts(s); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 326 | } |
| 327 | |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 328 | static void center(char *str, unsigned len, unsigned separate) |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 329 | { |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 330 | unsigned n = strlen(str); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 331 | len -= n; |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 332 | printf("%*s%*s", (len/2) + n, str, (len/2) + (len % 2) + separate, ""); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 333 | } |
| 334 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 335 | static void blank_string(char *buf, size_t buflen) |
| 336 | { |
| 337 | memset(buf, ' ', buflen); |
| 338 | buf[buflen-1] = '\0'; |
| 339 | } |
| 340 | |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 341 | static char *build_row(char *p, unsigned *dp) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 342 | { |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 343 | unsigned col, val, day; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 344 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 345 | memset(p, ' ', (julian + DAY_LEN) * 7); |
| 346 | |
| 347 | col = 0; |
| 348 | do { |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 349 | day = *dp++; |
| 350 | if (day != SPACE) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 351 | if (julian) { |
Manuel Novoa III | 5b3c056 | 2003-08-13 12:11:33 +0000 | [diff] [blame] | 352 | ++p; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 353 | if (day >= 100) { |
| 354 | *p = '0'; |
| 355 | p[-1] = (day / 100) + '0'; |
| 356 | day %= 100; |
| 357 | } |
| 358 | } |
Denis Vlasenko | 661f6fa | 2007-07-26 11:12:51 +0000 | [diff] [blame] | 359 | val = day / 10; |
| 360 | if (val > 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 361 | *p = val + '0'; |
| 362 | } |
| 363 | *++p = day % 10 + '0'; |
| 364 | p += 2; |
| 365 | } else { |
| 366 | p += DAY_LEN + julian; |
| 367 | } |
| 368 | } while (++col < 7); |
| 369 | |
| 370 | return p; |
| 371 | } |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 372 | |
| 373 | /* |
| 374 | * Copyright (c) 1989, 1993, 1994 |
| 375 | * The Regents of the University of California. All rights reserved. |
| 376 | * |
| 377 | * This code is derived from software contributed to Berkeley by |
| 378 | * Kim Letkeman. |
| 379 | * |
| 380 | * Redistribution and use in source and binary forms, with or without |
| 381 | * modification, are permitted provided that the following conditions |
| 382 | * are met: |
| 383 | * 1. Redistributions of source code must retain the above copyright |
| 384 | * notice, this list of conditions and the following disclaimer. |
| 385 | * 2. Redistributions in binary form must reproduce the above copyright |
| 386 | * notice, this list of conditions and the following disclaimer in the |
| 387 | * documentation and/or other materials provided with the distribution. |
Aaron Lehmann | 69d4178 | 2002-06-23 22:25:24 +0000 | [diff] [blame] | 388 | * 3. Neither the name of the University nor the names of its contributors |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 389 | * may be used to endorse or promote products derived from this software |
| 390 | * without specific prior written permission. |
| 391 | * |
Denys Vlasenko | 95f7953 | 2017-08-02 14:26:33 +0200 | [diff] [blame] | 392 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 393 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 394 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 395 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 396 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 397 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 398 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 399 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 400 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 401 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 402 | * SUCH DAMAGE. |
| 403 | */ |