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