cal.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  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 source tree.
  8. */
  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
  14. //config: bool "cal"
  15. //config: default y
  16. //config: help
  17. //config: cal is used to display a monthly calendar.
  18. //applet:IF_CAL(APPLET(cal, BB_DIR_USR_BIN, BB_SUID_DROP))
  19. //kbuild:lib-$(CONFIG_CAL) += cal.o
  20. /* BB_AUDIT SUSv3 compliant with -j and -y extensions (from util-linux). */
  21. /* BB_AUDIT BUG: The output of 'cal -j 1752' is incorrect. The upstream
  22. * BB_AUDIT BUG: version in util-linux seems to be broken as well. */
  23. /* http://www.opengroup.org/onlinepubs/007904975/utilities/cal.html */
  24. //usage:#define cal_trivial_usage
  25. //usage: "[-jy] [[MONTH] YEAR]"
  26. //usage:#define cal_full_usage "\n\n"
  27. //usage: "Display a calendar\n"
  28. //usage: "\n -j Use julian dates"
  29. //usage: "\n -y Display the entire year"
  30. #include "libbb.h"
  31. #include "unicode.h"
  32. /* We often use "unsigned" intead of "int", it's easier to div on most CPUs */
  33. #define THURSDAY 4 /* for reformation */
  34. #define SATURDAY 6 /* 1 Jan 1 was a Saturday */
  35. #define FIRST_MISSING_DAY 639787 /* 3 Sep 1752 */
  36. #define NUMBER_MISSING_DAYS 11 /* 11 day correction */
  37. #define MAXDAYS 42 /* max slots in a month array */
  38. #define SPACE -1 /* used in day array */
  39. static const unsigned char days_in_month[] ALIGN1 = {
  40. 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
  41. };
  42. static const unsigned char sep1752[] ALIGN1 = {
  43. 1, 2, 14, 15, 16,
  44. 17, 18, 19, 20, 21, 22, 23,
  45. 24, 25, 26, 27, 28, 29, 30
  46. };
  47. /* Set to 0 or 1 in main */
  48. #define julian ((unsigned)option_mask32)
  49. /* leap year -- account for Gregorian reformation in 1752 */
  50. static int leap_year(unsigned yr)
  51. {
  52. if (yr <= 1752)
  53. return !(yr % 4);
  54. return (!(yr % 4) && (yr % 100)) || !(yr % 400);
  55. }
  56. /* number of centuries since 1700, not inclusive */
  57. #define centuries_since_1700(yr) \
  58. ((yr) > 1700 ? (yr) / 100 - 17 : 0)
  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. /* number of leap years between year 1 and this year, not inclusive */
  63. #define leap_years_since_year_1(yr) \
  64. ((yr) / 4 - centuries_since_1700(yr) + quad_centuries_since_1700(yr))
  65. static void center(char *, unsigned, unsigned);
  66. static void day_array(unsigned, unsigned, unsigned *);
  67. static void trim_trailing_spaces_and_print(char *);
  68. static void blank_string(char *buf, size_t buflen);
  69. static char *build_row(char *p, unsigned *dp);
  70. #define DAY_LEN 3 /* 3 spaces per day */
  71. #define J_DAY_LEN (DAY_LEN + 1)
  72. #define WEEK_LEN 20 /* 7 * 3 - one space at the end */
  73. #define J_WEEK_LEN (WEEK_LEN + 7)
  74. #define HEAD_SEP 2 /* spaces between day headings */
  75. int cal_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  76. int cal_main(int argc UNUSED_PARAM, char **argv)
  77. {
  78. struct tm zero_tm;
  79. time_t now;
  80. unsigned month, year, flags, i;
  81. char *month_names[12];
  82. /* normal heading: */
  83. /* "Su Mo Tu We Th Fr Sa" */
  84. /* -j heading: */
  85. /* " Su Mo Tu We Th Fr Sa" */
  86. char day_headings[ENABLE_UNICODE_SUPPORT ? 28 * 6 : 28];
  87. IF_UNICODE_SUPPORT(char *hp = day_headings;)
  88. char buf[40];
  89. init_unicode();
  90. flags = getopt32(argv, "jy");
  91. /* This sets julian = flags & 1: */
  92. option_mask32 &= 1;
  93. month = 0;
  94. argv += optind;
  95. if (!argv[0]) {
  96. struct tm *ptm;
  97. time(&now);
  98. ptm = localtime(&now);
  99. year = ptm->tm_year + 1900;
  100. if (!(flags & 2)) { /* no -y */
  101. month = ptm->tm_mon + 1;
  102. }
  103. } else {
  104. if (argv[1]) {
  105. if (argv[2]) {
  106. bb_show_usage();
  107. }
  108. if (!(flags & 2)) { /* no -y */
  109. month = xatou_range(*argv, 1, 12);
  110. }
  111. argv++;
  112. }
  113. year = xatou_range(*argv, 1, 9999);
  114. }
  115. blank_string(day_headings, sizeof(day_headings) - 7 + 7*julian);
  116. i = 0;
  117. do {
  118. zero_tm.tm_mon = i;
  119. /* full month name according to locale */
  120. strftime(buf, sizeof(buf), "%B", &zero_tm);
  121. month_names[i] = xstrdup(buf);
  122. if (i < 7) {
  123. zero_tm.tm_wday = i;
  124. /* abbreviated weekday name according to locale */
  125. strftime(buf, sizeof(buf), "%a", &zero_tm);
  126. #if ENABLE_UNICODE_SUPPORT
  127. if (julian)
  128. *hp++ = ' ';
  129. {
  130. char *two_wchars = unicode_conv_to_printable_fixedwidth(/*NULL,*/ buf, 2);
  131. strcpy(hp, two_wchars);
  132. free(two_wchars);
  133. }
  134. hp += strlen(hp);
  135. *hp++ = ' ';
  136. #else
  137. strncpy(day_headings + i * (3+julian) + julian, buf, 2);
  138. #endif
  139. }
  140. } while (++i < 12);
  141. IF_UNICODE_SUPPORT(hp[-1] = '\0';)
  142. if (month) {
  143. unsigned row, len, days[MAXDAYS];
  144. unsigned *dp = days;
  145. char lineout[30];
  146. day_array(month, year, dp);
  147. len = sprintf(lineout, "%s %u", month_names[month - 1], year);
  148. printf("%*s%s\n%s\n",
  149. ((7*julian + WEEK_LEN) - len) / 2, "",
  150. lineout, day_headings);
  151. for (row = 0; row < 6; row++) {
  152. build_row(lineout, dp)[0] = '\0';
  153. dp += 7;
  154. trim_trailing_spaces_and_print(lineout);
  155. }
  156. } else {
  157. unsigned row, which_cal, week_len, days[12][MAXDAYS];
  158. unsigned *dp;
  159. char lineout[80];
  160. sprintf(lineout, "%u", year);
  161. center(lineout,
  162. (WEEK_LEN * 3 + HEAD_SEP * 2)
  163. + julian * (J_WEEK_LEN * 2 + HEAD_SEP
  164. - (WEEK_LEN * 3 + HEAD_SEP * 2)),
  165. 0
  166. );
  167. puts("\n"); /* two \n's */
  168. for (i = 0; i < 12; i++) {
  169. day_array(i + 1, year, days[i]);
  170. }
  171. blank_string(lineout, sizeof(lineout));
  172. week_len = WEEK_LEN + julian * (J_WEEK_LEN - WEEK_LEN);
  173. for (month = 0; month < 12; month += 3-julian) {
  174. center(month_names[month], week_len, HEAD_SEP);
  175. if (!julian) {
  176. center(month_names[month + 1], week_len, HEAD_SEP);
  177. }
  178. center(month_names[month + 2 - julian], week_len, 0);
  179. printf("\n%s%*s%s", day_headings, HEAD_SEP, "", day_headings);
  180. if (!julian) {
  181. printf("%*s%s", HEAD_SEP, "", day_headings);
  182. }
  183. bb_putchar('\n');
  184. for (row = 0; row < (6*7); row += 7) {
  185. for (which_cal = 0; which_cal < 3-julian; which_cal++) {
  186. dp = days[month + which_cal] + row;
  187. build_row(lineout + which_cal * (week_len + 2), dp);
  188. }
  189. /* blank_string took care of nul termination. */
  190. trim_trailing_spaces_and_print(lineout);
  191. }
  192. }
  193. }
  194. fflush_stdout_and_exit(EXIT_SUCCESS);
  195. }
  196. /*
  197. * day_array --
  198. * Fill in an array of 42 integers with a calendar. Assume for a moment
  199. * that you took the (maximum) 6 rows in a calendar and stretched them
  200. * out end to end. You would have 42 numbers or spaces. This routine
  201. * builds that array for any month from Jan. 1 through Dec. 9999.
  202. */
  203. static void day_array(unsigned month, unsigned year, unsigned *days)
  204. {
  205. unsigned long temp;
  206. unsigned i;
  207. unsigned day, dw, dm;
  208. memset(days, SPACE, MAXDAYS * sizeof(int));
  209. if ((month == 9) && (year == 1752)) {
  210. /* Assumes the Gregorian reformation eliminates
  211. * 3 Sep. 1752 through 13 Sep. 1752.
  212. */
  213. unsigned j_offset = julian * 244;
  214. size_t oday = 0;
  215. do {
  216. days[oday+2] = sep1752[oday] + j_offset;
  217. } while (++oday < sizeof(sep1752));
  218. return;
  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. i = month;
  228. while (i) {
  229. day += days_in_month[--i];
  230. }
  231. /* day_in_week
  232. * return the 0 based day number for any date from 1 Jan. 1 to
  233. * 31 Dec. 9999. Assumes the Gregorian reformation eliminates
  234. * 3 Sep. 1752 through 13 Sep. 1752. Returns Thursday for all
  235. * missing days.
  236. */
  237. temp = (long)(year - 1) * 365 + leap_years_since_year_1(year - 1) + day;
  238. if (temp < FIRST_MISSING_DAY) {
  239. dw = ((temp - 1 + SATURDAY) % 7);
  240. } else {
  241. dw = (((temp - 1 + SATURDAY) - NUMBER_MISSING_DAYS) % 7);
  242. }
  243. if (!julian) {
  244. day = 1;
  245. }
  246. dm = days_in_month[month];
  247. if ((month == 2) && leap_year(year)) {
  248. ++dm;
  249. }
  250. do {
  251. days[dw++] = day++;
  252. } while (--dm);
  253. }
  254. static void trim_trailing_spaces_and_print(char *s)
  255. {
  256. char *p = s;
  257. while (*p) {
  258. ++p;
  259. }
  260. while (p != s) {
  261. --p;
  262. if (!isspace(*p)) {
  263. p[1] = '\0';
  264. break;
  265. }
  266. }
  267. puts(s);
  268. }
  269. static void center(char *str, unsigned len, unsigned separate)
  270. {
  271. unsigned n = strlen(str);
  272. len -= n;
  273. printf("%*s%*s", (len/2) + n, str, (len/2) + (len % 2) + separate, "");
  274. }
  275. static void blank_string(char *buf, size_t buflen)
  276. {
  277. memset(buf, ' ', buflen);
  278. buf[buflen-1] = '\0';
  279. }
  280. static char *build_row(char *p, unsigned *dp)
  281. {
  282. unsigned col, val, day;
  283. memset(p, ' ', (julian + DAY_LEN) * 7);
  284. col = 0;
  285. do {
  286. day = *dp++;
  287. if (day != SPACE) {
  288. if (julian) {
  289. ++p;
  290. if (day >= 100) {
  291. *p = '0';
  292. p[-1] = (day / 100) + '0';
  293. day %= 100;
  294. }
  295. }
  296. val = day / 10;
  297. if (val > 0) {
  298. *p = val + '0';
  299. }
  300. *++p = day % 10 + '0';
  301. p += 2;
  302. } else {
  303. p += DAY_LEN + julian;
  304. }
  305. } while (++col < 7);
  306. return p;
  307. }
  308. /*
  309. * Copyright (c) 1989, 1993, 1994
  310. * The Regents of the University of California. All rights reserved.
  311. *
  312. * This code is derived from software contributed to Berkeley by
  313. * Kim Letkeman.
  314. *
  315. * Redistribution and use in source and binary forms, with or without
  316. * modification, are permitted provided that the following conditions
  317. * are met:
  318. * 1. Redistributions of source code must retain the above copyright
  319. * notice, this list of conditions and the following disclaimer.
  320. * 2. Redistributions in binary form must reproduce the above copyright
  321. * notice, this list of conditions and the following disclaimer in the
  322. * documentation and/or other materials provided with the distribution.
  323. * 3. Neither the name of the University nor the names of its contributors
  324. * may be used to endorse or promote products derived from this software
  325. * without specific prior written permission.
  326. *
  327. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  328. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  329. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  330. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  331. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  332. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  333. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  334. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  335. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  336. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  337. * SUCH DAMAGE.
  338. */