cal.c 9.1 KB

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