cal.c 9.0 KB

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