cal.c 9.8 KB

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