10cb2e609SWolfgang Helbig /*-
24d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
31de7b4b8SPedro F. Giffuni *
40cb2e609SWolfgang Helbig * Copyright (c) 1997 Wolfgang Helbig
50cb2e609SWolfgang Helbig * All rights reserved.
60cb2e609SWolfgang Helbig *
70cb2e609SWolfgang Helbig * Redistribution and use in source and binary forms, with or without
80cb2e609SWolfgang Helbig * modification, are permitted provided that the following conditions
90cb2e609SWolfgang Helbig * are met:
100cb2e609SWolfgang Helbig * 1. Redistributions of source code must retain the above copyright
110cb2e609SWolfgang Helbig * notice, this list of conditions and the following disclaimer.
120cb2e609SWolfgang Helbig * 2. Redistributions in binary form must reproduce the above copyright
130cb2e609SWolfgang Helbig * notice, this list of conditions and the following disclaimer in the
140cb2e609SWolfgang Helbig * documentation and/or other materials provided with the distribution.
150cb2e609SWolfgang Helbig *
160cb2e609SWolfgang Helbig * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
170cb2e609SWolfgang Helbig * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
180cb2e609SWolfgang Helbig * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
190cb2e609SWolfgang Helbig * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
200cb2e609SWolfgang Helbig * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
210cb2e609SWolfgang Helbig * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
220cb2e609SWolfgang Helbig * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
230cb2e609SWolfgang Helbig * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
240cb2e609SWolfgang Helbig * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
250cb2e609SWolfgang Helbig * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
260cb2e609SWolfgang Helbig * SUCH DAMAGE.
270cb2e609SWolfgang Helbig */
28a99e4564SPhilippe Charnier
29bf70beceSEd Schouten #include <sys/cdefs.h>
300cb2e609SWolfgang Helbig #include <calendar.h>
31821df508SXin LI #include <ctype.h>
320cb2e609SWolfgang Helbig #include <err.h>
33f5e40af2SAndrey A. Chernov #include <langinfo.h>
34746b67cdSEdwin Groothuis #include <libgen.h>
350cb2e609SWolfgang Helbig #include <locale.h>
360cb2e609SWolfgang Helbig #include <stdio.h>
370cb2e609SWolfgang Helbig #include <stdlib.h>
380cb2e609SWolfgang Helbig #include <string.h>
398c108b34SValentine Astakhov #include <stdbool.h>
400cb2e609SWolfgang Helbig #include <sysexits.h>
410cb2e609SWolfgang Helbig #include <time.h>
420cb2e609SWolfgang Helbig #include <unistd.h>
434646cea7SDavid Schultz #include <wchar.h>
444646cea7SDavid Schultz #include <wctype.h>
45e454a171SRoman Divacky #include <term.h>
46e454a171SRoman Divacky #undef lines /* term.h defines this */
470cb2e609SWolfgang Helbig
480851fbdfSEdwin Groothuis /* Width of one month with backward compatibility and in regular mode*/
490cb2e609SWolfgang Helbig #define MONTH_WIDTH_B_J 27
500cb2e609SWolfgang Helbig #define MONTH_WIDTH_B 20
510cb2e609SWolfgang Helbig
520851fbdfSEdwin Groothuis #define MONTH_WIDTH_R_J 24
530851fbdfSEdwin Groothuis #define MONTH_WIDTH_R 18
540cb2e609SWolfgang Helbig
55e454a171SRoman Divacky #define MAX_WIDTH 64
560cb2e609SWolfgang Helbig
570cb2e609SWolfgang Helbig typedef struct date date;
580cb2e609SWolfgang Helbig
590cb2e609SWolfgang Helbig struct monthlines {
604646cea7SDavid Schultz wchar_t name[MAX_WIDTH + 1];
610cb2e609SWolfgang Helbig char lines[7][MAX_WIDTH + 1];
620cb2e609SWolfgang Helbig char weeks[MAX_WIDTH + 1];
631d0e1dacSEdwin Groothuis unsigned int extralen[7];
640cb2e609SWolfgang Helbig };
650cb2e609SWolfgang Helbig
660cb2e609SWolfgang Helbig struct weekdays {
674646cea7SDavid Schultz wchar_t names[7][4];
680cb2e609SWolfgang Helbig };
690cb2e609SWolfgang Helbig
700cb2e609SWolfgang Helbig /* The switches from Julian to Gregorian in some countries */
710cb2e609SWolfgang Helbig static struct djswitch {
72f372d010SMark Murray const char *cc; /* Country code according to ISO 3166 */
73f372d010SMark Murray const char *nm; /* Name of country */
740cb2e609SWolfgang Helbig date dt; /* Last day of Julian calendar */
750cb2e609SWolfgang Helbig } switches[] = {
769d969a8bSAndrey A. Chernov {"AL", "Albania", {1912, 11, 30}},
779d969a8bSAndrey A. Chernov {"AT", "Austria", {1583, 10, 5}},
789d969a8bSAndrey A. Chernov {"AU", "Australia", {1752, 9, 2}},
799d969a8bSAndrey A. Chernov {"BE", "Belgium", {1582, 12, 14}},
801916d3b4SWarner Losh {"BG", "Bulgaria", {1916, 3, 31}},
819d969a8bSAndrey A. Chernov {"CA", "Canada", {1752, 9, 2}},
829d969a8bSAndrey A. Chernov {"CH", "Switzerland", {1655, 2, 28}},
839d969a8bSAndrey A. Chernov {"CN", "China", {1911, 12, 18}},
849d969a8bSAndrey A. Chernov {"CZ", "Czech Republic",{1584, 1, 6}},
859d969a8bSAndrey A. Chernov {"DE", "Germany", {1700, 2, 18}},
869d969a8bSAndrey A. Chernov {"DK", "Denmark", {1700, 2, 18}},
879d969a8bSAndrey A. Chernov {"ES", "Spain", {1582, 10, 4}},
889d969a8bSAndrey A. Chernov {"FI", "Finland", {1753, 2, 17}},
899d969a8bSAndrey A. Chernov {"FR", "France", {1582, 12, 9}},
909d969a8bSAndrey A. Chernov {"GB", "United Kingdom",{1752, 9, 2}},
919d969a8bSAndrey A. Chernov {"GR", "Greece", {1924, 3, 9}},
929d969a8bSAndrey A. Chernov {"HU", "Hungary", {1587, 10, 21}},
939d969a8bSAndrey A. Chernov {"IS", "Iceland", {1700, 11, 16}},
949d969a8bSAndrey A. Chernov {"IT", "Italy", {1582, 10, 4}},
959d969a8bSAndrey A. Chernov {"JP", "Japan", {1918, 12, 18}},
966feb6b4fSWarner Losh {"LT", "Lithuania", {1918, 2, 1}},
979d969a8bSAndrey A. Chernov {"LU", "Luxembourg", {1582, 12, 14}},
989d969a8bSAndrey A. Chernov {"LV", "Latvia", {1918, 2, 1}},
999d969a8bSAndrey A. Chernov {"NL", "Netherlands", {1582, 12, 14}},
1009d969a8bSAndrey A. Chernov {"NO", "Norway", {1700, 2, 18}},
1019d969a8bSAndrey A. Chernov {"PL", "Poland", {1582, 10, 4}},
1029d969a8bSAndrey A. Chernov {"PT", "Portugal", {1582, 10, 4}},
1039d969a8bSAndrey A. Chernov {"RO", "Romania", {1919, 3, 31}},
1049d969a8bSAndrey A. Chernov {"RU", "Russia", {1918, 1, 31}},
1059d969a8bSAndrey A. Chernov {"SI", "Slovenia", {1919, 3, 4}},
106fb53214dSMaxim Konovalov {"SE", "Sweden", {1753, 2, 17}},
1079d969a8bSAndrey A. Chernov {"TR", "Turkey", {1926, 12, 18}},
1089d969a8bSAndrey A. Chernov {"US", "United States", {1752, 9, 2}},
1099d969a8bSAndrey A. Chernov {"YU", "Yugoslavia", {1919, 3, 4}}
1100cb2e609SWolfgang Helbig };
1110cb2e609SWolfgang Helbig
112bf70beceSEd Schouten static struct djswitch *dftswitch =
113cde26ed2SWolfgang Helbig switches + sizeof(switches) / sizeof(struct djswitch) - 2;
114cde26ed2SWolfgang Helbig /* default switch (should be "US") */
115cde26ed2SWolfgang Helbig
1160cb2e609SWolfgang Helbig /* Table used to print day of month and week numbers */
117bf70beceSEd Schouten static char daystr[] = " 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15"
1180cb2e609SWolfgang Helbig " 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31"
1190cb2e609SWolfgang Helbig " 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47"
1200cb2e609SWolfgang Helbig " 48 49 50 51 52 53";
1210cb2e609SWolfgang Helbig
1220cb2e609SWolfgang Helbig /* Table used to print day of year and week numbers */
123bf70beceSEd Schouten static char jdaystr[] = " 1 2 3 4 5 6 7 8 9"
1240cb2e609SWolfgang Helbig " 10 11 12 13 14 15 16 17 18 19"
1250cb2e609SWolfgang Helbig " 20 21 22 23 24 25 26 27 28 29"
1260cb2e609SWolfgang Helbig " 30 31 32 33 34 35 36 37 38 39"
1270cb2e609SWolfgang Helbig " 40 41 42 43 44 45 46 47 48 49"
1280cb2e609SWolfgang Helbig " 50 51 52 53 54 55 56 57 58 59"
1290cb2e609SWolfgang Helbig " 60 61 62 63 64 65 66 67 68 69"
1300cb2e609SWolfgang Helbig " 70 71 72 73 74 75 76 77 78 79"
1310cb2e609SWolfgang Helbig " 80 81 82 83 84 85 86 87 88 89"
1320cb2e609SWolfgang Helbig " 90 91 92 93 94 95 96 97 98 99"
1330cb2e609SWolfgang Helbig " 100 101 102 103 104 105 106 107 108 109"
1340cb2e609SWolfgang Helbig " 110 111 112 113 114 115 116 117 118 119"
1350cb2e609SWolfgang Helbig " 120 121 122 123 124 125 126 127 128 129"
1360cb2e609SWolfgang Helbig " 130 131 132 133 134 135 136 137 138 139"
1370cb2e609SWolfgang Helbig " 140 141 142 143 144 145 146 147 148 149"
1380cb2e609SWolfgang Helbig " 150 151 152 153 154 155 156 157 158 159"
1390cb2e609SWolfgang Helbig " 160 161 162 163 164 165 166 167 168 169"
1400cb2e609SWolfgang Helbig " 170 171 172 173 174 175 176 177 178 179"
1410cb2e609SWolfgang Helbig " 180 181 182 183 184 185 186 187 188 189"
1420cb2e609SWolfgang Helbig " 190 191 192 193 194 195 196 197 198 199"
1430cb2e609SWolfgang Helbig " 200 201 202 203 204 205 206 207 208 209"
1440cb2e609SWolfgang Helbig " 210 211 212 213 214 215 216 217 218 219"
1450cb2e609SWolfgang Helbig " 220 221 222 223 224 225 226 227 228 229"
1460cb2e609SWolfgang Helbig " 230 231 232 233 234 235 236 237 238 239"
1470cb2e609SWolfgang Helbig " 240 241 242 243 244 245 246 247 248 249"
1480cb2e609SWolfgang Helbig " 250 251 252 253 254 255 256 257 258 259"
1490cb2e609SWolfgang Helbig " 260 261 262 263 264 265 266 267 268 269"
1500cb2e609SWolfgang Helbig " 270 271 272 273 274 275 276 277 278 279"
1510cb2e609SWolfgang Helbig " 280 281 282 283 284 285 286 287 288 289"
1520cb2e609SWolfgang Helbig " 290 291 292 293 294 295 296 297 298 299"
1530cb2e609SWolfgang Helbig " 300 301 302 303 304 305 306 307 308 309"
1540cb2e609SWolfgang Helbig " 310 311 312 313 314 315 316 317 318 319"
1550cb2e609SWolfgang Helbig " 320 321 322 323 324 325 326 327 328 329"
1560cb2e609SWolfgang Helbig " 330 331 332 333 334 335 336 337 338 339"
1570cb2e609SWolfgang Helbig " 340 341 342 343 344 345 346 347 348 349"
1580cb2e609SWolfgang Helbig " 350 351 352 353 354 355 356 357 358 359"
1590cb2e609SWolfgang Helbig " 360 361 362 363 364 365 366";
1600cb2e609SWolfgang Helbig
161*49224311SPoul-Henning Kamp static int flag_highlight; /* highlighted today */
162bf70beceSEd Schouten static int flag_weeks; /* user wants number of week */
163bf70beceSEd Schouten static int nswitch; /* user defined switch date */
164bf70beceSEd Schouten static int nswitchb; /* switch date for backward compatibility */
165bf70beceSEd Schouten static int highlightdate;
1668c108b34SValentine Astakhov static bool flag_monday; /* user wants week starts on Monday */
1670cb2e609SWolfgang Helbig
168bf70beceSEd Schouten static char *center(char *s, char *t, int w);
169bf70beceSEd Schouten static wchar_t *wcenter(wchar_t *s, wchar_t *t, int w);
170bf70beceSEd Schouten static int firstday(int y, int m);
171bf70beceSEd Schouten static void highlight(char *dst, char *src, int len, int *extraletters);
172bf70beceSEd Schouten static void mkmonthr(int year, int month, int jd_flag,
173bf70beceSEd Schouten struct monthlines * monthl);
174bf70beceSEd Schouten static void mkmonthb(int year, int month, int jd_flag,
175bf70beceSEd Schouten struct monthlines * monthl);
176bf70beceSEd Schouten static void mkweekdays(struct weekdays * wds);
177bf70beceSEd Schouten static void monthranger(int year, int m, int jd_flag,
178bf70beceSEd Schouten int before, int after);
179bf70beceSEd Schouten static void monthrangeb(int year, int m, int jd_flag,
180bf70beceSEd Schouten int before, int after);
181bf70beceSEd Schouten static int parsemonth(const char *s, int *m, int *y);
182bf70beceSEd Schouten static void printcc(void);
183bf70beceSEd Schouten static void printeaster(int year, int julian, int orthodox);
184bf70beceSEd Schouten static date *sdater(int ndays, struct date * d);
185bf70beceSEd Schouten static date *sdateb(int ndays, struct date * d);
186bf70beceSEd Schouten static int sndaysr(struct date * d);
187bf70beceSEd Schouten static int sndaysb(struct date * d);
188a99e4564SPhilippe Charnier static void usage(void);
1890cb2e609SWolfgang Helbig
1900cb2e609SWolfgang Helbig int
main(int argc,char * argv[])1910cb2e609SWolfgang Helbig main(int argc, char *argv[])
1920cb2e609SWolfgang Helbig {
1930cb2e609SWolfgang Helbig struct djswitch *p, *q; /* to search user defined switch date */
1940cb2e609SWolfgang Helbig date never = {10000, 1, 1}; /* outside valid range of dates */
1950cb2e609SWolfgang Helbig date ukswitch = {1752, 9, 2};/* switch date for Great Britain */
1960851fbdfSEdwin Groothuis date dt;
1970cb2e609SWolfgang Helbig int ch; /* holds the option character */
1980cb2e609SWolfgang Helbig int m = 0; /* month */
1990cb2e609SWolfgang Helbig int y = 0; /* year */
2000cb2e609SWolfgang Helbig int flag_backward = 0; /* user called cal--backward compat. */
2014af997a8SEdwin Groothuis int flag_wholeyear = 0; /* user wants the whole year */
2020cb2e609SWolfgang Helbig int flag_julian_cal = 0; /* user wants Julian Calendar */
2034af997a8SEdwin Groothuis int flag_julian_day = 0; /* user wants the Julian day numbers */
2044af997a8SEdwin Groothuis int flag_orthodox = 0; /* user wants Orthodox easter */
2054af997a8SEdwin Groothuis int flag_easter = 0; /* user wants easter date */
2064af997a8SEdwin Groothuis int flag_3months = 0; /* user wants 3 month display (-3) */
2074af997a8SEdwin Groothuis int flag_after = 0; /* user wants to see months after */
2084af997a8SEdwin Groothuis int flag_before = 0; /* user wants to see months before */
2094af997a8SEdwin Groothuis int flag_specifiedmonth = 0;/* user wants to see this month (-m) */
2104af997a8SEdwin Groothuis int flag_givenmonth = 0; /* user has specified month [n] */
2114af997a8SEdwin Groothuis int flag_givenyear = 0; /* user has specified year [n] */
2120cb2e609SWolfgang Helbig char *cp; /* character pointer */
2134af997a8SEdwin Groothuis char *flag_today = NULL; /* debug: use date as being today */
2140c4cafeaSGarrett Wollman char *flag_month = NULL; /* requested month as string */
2154af997a8SEdwin Groothuis char *flag_highlightdate = NULL; /* debug: date to highlight */
2160851fbdfSEdwin Groothuis int before, after;
217f372d010SMark Murray const char *locale; /* locale to get country code */
218e454a171SRoman Divacky
219*49224311SPoul-Henning Kamp flag_highlight = isatty(STDOUT_FILENO);
220cae11c25SEdwin Groothuis flag_weeks = 0;
2218c108b34SValentine Astakhov flag_monday = false;
2220cb2e609SWolfgang Helbig
223cde26ed2SWolfgang Helbig /*
224cde26ed2SWolfgang Helbig * Use locale to determine the country code,
225cde26ed2SWolfgang Helbig * and use the country code to determine the default
226cde26ed2SWolfgang Helbig * switchdate and date format from the switches table.
227cde26ed2SWolfgang Helbig */
228e036a70eSAndrey A. Chernov if (setlocale(LC_ALL, "") == NULL)
229cde26ed2SWolfgang Helbig warn("setlocale");
230e036a70eSAndrey A. Chernov locale = setlocale(LC_TIME, NULL);
231c052429fSAndrey A. Chernov if (locale == NULL ||
232c052429fSAndrey A. Chernov strcmp(locale, "C") == 0 ||
2331c593a0dSAndrey A. Chernov strcmp(locale, "POSIX") == 0 ||
2341c593a0dSAndrey A. Chernov strcmp(locale, "ASCII") == 0 ||
2351c593a0dSAndrey A. Chernov strcmp(locale, "US-ASCII") == 0)
236cde26ed2SWolfgang Helbig locale = "_US";
237cde26ed2SWolfgang Helbig q = switches + sizeof(switches) / sizeof(struct djswitch);
238cde26ed2SWolfgang Helbig for (p = switches; p != q; p++)
239cde26ed2SWolfgang Helbig if ((cp = strstr(locale, p->cc)) != NULL && *(cp - 1) == '_')
240cde26ed2SWolfgang Helbig break;
241cde26ed2SWolfgang Helbig if (p == q) {
242cde26ed2SWolfgang Helbig nswitch = ndaysj(&dftswitch->dt);
243cde26ed2SWolfgang Helbig } else {
244cde26ed2SWolfgang Helbig nswitch = ndaysj(&p->dt);
245cde26ed2SWolfgang Helbig dftswitch = p;
246cde26ed2SWolfgang Helbig }
247cde26ed2SWolfgang Helbig
2480cb2e609SWolfgang Helbig
2490cb2e609SWolfgang Helbig /*
2500cb2e609SWolfgang Helbig * Get the filename portion of argv[0] and set flag_backward if
2510cb2e609SWolfgang Helbig * this program is called "cal".
2520cb2e609SWolfgang Helbig */
253746b67cdSEdwin Groothuis if (strncmp(basename(argv[0]), "cal", strlen("cal")) == 0)
2540cb2e609SWolfgang Helbig flag_backward = 1;
2550cb2e609SWolfgang Helbig
2560cb2e609SWolfgang Helbig /* Set the switch date to United Kingdom if backwards compatible */
2570cb2e609SWolfgang Helbig if (flag_backward)
2580cb2e609SWolfgang Helbig nswitchb = ndaysj(&ukswitch);
2590cb2e609SWolfgang Helbig
2600851fbdfSEdwin Groothuis before = after = -1;
2610851fbdfSEdwin Groothuis
2628c108b34SValentine Astakhov while ((ch = getopt(argc, argv, "3A:B:Cd:eH:hjJm:Nops:wyM")) != -1)
2630cb2e609SWolfgang Helbig switch (ch) {
2640851fbdfSEdwin Groothuis case '3':
2654af997a8SEdwin Groothuis flag_3months = 1;
2660851fbdfSEdwin Groothuis break;
2670851fbdfSEdwin Groothuis case 'A':
2684af997a8SEdwin Groothuis if (flag_after > 0)
2694af997a8SEdwin Groothuis errx(EX_USAGE, "Double -A specified");
2704af997a8SEdwin Groothuis flag_after = strtol(optarg, NULL, 10);
2714af997a8SEdwin Groothuis if (flag_after <= 0)
2724af997a8SEdwin Groothuis errx(EX_USAGE,
2734af997a8SEdwin Groothuis "Argument to -A must be positive");
2740851fbdfSEdwin Groothuis break;
2750851fbdfSEdwin Groothuis case 'B':
2764af997a8SEdwin Groothuis if (flag_before > 0)
277b3ab6b50SDaniel Tameling errx(EX_USAGE, "Double -B specified");
2784af997a8SEdwin Groothuis flag_before = strtol(optarg, NULL, 10);
2794af997a8SEdwin Groothuis if (flag_before <= 0)
2804af997a8SEdwin Groothuis errx(EX_USAGE,
2814af997a8SEdwin Groothuis "Argument to -B must be positive");
2820851fbdfSEdwin Groothuis break;
2830cb2e609SWolfgang Helbig case 'J':
2840cb2e609SWolfgang Helbig if (flag_backward)
2850cb2e609SWolfgang Helbig usage();
2860cb2e609SWolfgang Helbig nswitch = ndaysj(&never);
2870cb2e609SWolfgang Helbig flag_julian_cal = 1;
2880cb2e609SWolfgang Helbig break;
289531a1a4bSEdwin Groothuis case 'C':
2900851fbdfSEdwin Groothuis flag_backward = 1;
2910851fbdfSEdwin Groothuis break;
292531a1a4bSEdwin Groothuis case 'N':
293531a1a4bSEdwin Groothuis flag_backward = 0;
294531a1a4bSEdwin Groothuis break;
2950851fbdfSEdwin Groothuis case 'd':
2964af997a8SEdwin Groothuis flag_today = optarg;
2974af997a8SEdwin Groothuis break;
2984af997a8SEdwin Groothuis case 'H':
2990851fbdfSEdwin Groothuis flag_highlightdate = optarg;
3000851fbdfSEdwin Groothuis break;
3010cd51de1SRoman Divacky case 'h':
302*49224311SPoul-Henning Kamp flag_highlight = !flag_highlight;
3030cd51de1SRoman Divacky break;
3040cb2e609SWolfgang Helbig case 'e':
3050cb2e609SWolfgang Helbig if (flag_backward)
3060cb2e609SWolfgang Helbig usage();
3070cb2e609SWolfgang Helbig flag_easter = 1;
3080cb2e609SWolfgang Helbig break;
3090cb2e609SWolfgang Helbig case 'j':
3100cb2e609SWolfgang Helbig flag_julian_day = 1;
3110cb2e609SWolfgang Helbig break;
3128c108b34SValentine Astakhov case 'M':
3138c108b34SValentine Astakhov flag_monday = true;
3148c108b34SValentine Astakhov break;
3150c4cafeaSGarrett Wollman case 'm':
3164af997a8SEdwin Groothuis if (flag_specifiedmonth)
3174af997a8SEdwin Groothuis errx(EX_USAGE, "Double -m specified");
3180c4cafeaSGarrett Wollman flag_month = optarg;
3194af997a8SEdwin Groothuis flag_specifiedmonth = 1;
3200c4cafeaSGarrett Wollman break;
3210cb2e609SWolfgang Helbig case 'o':
3220cb2e609SWolfgang Helbig if (flag_backward)
3230cb2e609SWolfgang Helbig usage();
3240cb2e609SWolfgang Helbig flag_orthodox = 1;
3250cb2e609SWolfgang Helbig flag_easter = 1;
3260cb2e609SWolfgang Helbig break;
3270cb2e609SWolfgang Helbig case 'p':
3280cb2e609SWolfgang Helbig if (flag_backward)
3290cb2e609SWolfgang Helbig usage();
3300cb2e609SWolfgang Helbig printcc();
3310cb2e609SWolfgang Helbig return (0);
3320cb2e609SWolfgang Helbig break;
3330cb2e609SWolfgang Helbig case 's':
3340cb2e609SWolfgang Helbig if (flag_backward)
3350cb2e609SWolfgang Helbig usage();
3360cb2e609SWolfgang Helbig q = switches +
3370cb2e609SWolfgang Helbig sizeof(switches) / sizeof(struct djswitch);
3380cb2e609SWolfgang Helbig for (p = switches;
3390cb2e609SWolfgang Helbig p != q && strcmp(p->cc, optarg) != 0; p++)
3400cb2e609SWolfgang Helbig ;
3410cb2e609SWolfgang Helbig if (p == q)
3420cb2e609SWolfgang Helbig errx(EX_USAGE,
3430cb2e609SWolfgang Helbig "%s: invalid country code", optarg);
3440cb2e609SWolfgang Helbig nswitch = ndaysj(&(p->dt));
3450cb2e609SWolfgang Helbig break;
3460cb2e609SWolfgang Helbig case 'w':
3470cb2e609SWolfgang Helbig if (flag_backward)
3480cb2e609SWolfgang Helbig usage();
3490cb2e609SWolfgang Helbig flag_weeks = 1;
3500cb2e609SWolfgang Helbig break;
3510cb2e609SWolfgang Helbig case 'y':
3524af997a8SEdwin Groothuis flag_wholeyear = 1;
3530cb2e609SWolfgang Helbig break;
3540cb2e609SWolfgang Helbig default:
3550cb2e609SWolfgang Helbig usage();
3560cb2e609SWolfgang Helbig }
3570cb2e609SWolfgang Helbig
3580cb2e609SWolfgang Helbig argc -= optind;
3590cb2e609SWolfgang Helbig argv += optind;
3600cb2e609SWolfgang Helbig
3610c4cafeaSGarrett Wollman switch (argc) {
3620c4cafeaSGarrett Wollman case 2:
3630c4cafeaSGarrett Wollman if (flag_easter)
3640c4cafeaSGarrett Wollman usage();
3650c4cafeaSGarrett Wollman flag_month = *argv++;
3664af997a8SEdwin Groothuis flag_givenmonth = 1;
3671d0e1dacSEdwin Groothuis m = strtol(flag_month, NULL, 10);
3680c4cafeaSGarrett Wollman /* FALLTHROUGH */
3690c4cafeaSGarrett Wollman case 1:
3704af997a8SEdwin Groothuis y = atoi(*argv);
3710c4cafeaSGarrett Wollman if (y < 1 || y > 9999)
3724af997a8SEdwin Groothuis errx(EX_USAGE, "year `%s' not in range 1..9999", *argv);
3734af997a8SEdwin Groothuis argv++;
3744af997a8SEdwin Groothuis flag_givenyear = 1;
3750c4cafeaSGarrett Wollman break;
3760c4cafeaSGarrett Wollman case 0:
3774af997a8SEdwin Groothuis if (flag_today != NULL) {
3784af997a8SEdwin Groothuis y = strtol(flag_today, NULL, 10);
3794af997a8SEdwin Groothuis m = strtol(flag_today + 5, NULL, 10);
3804af997a8SEdwin Groothuis } else {
3810cb2e609SWolfgang Helbig time_t t;
3820cb2e609SWolfgang Helbig struct tm *tm;
3830cb2e609SWolfgang Helbig
3840cb2e609SWolfgang Helbig t = time(NULL);
3850cb2e609SWolfgang Helbig tm = localtime(&t);
3860cb2e609SWolfgang Helbig y = tm->tm_year + 1900;
3870cb2e609SWolfgang Helbig m = tm->tm_mon + 1;
3880cb2e609SWolfgang Helbig }
3890cb2e609SWolfgang Helbig break;
3900cb2e609SWolfgang Helbig default:
3910cb2e609SWolfgang Helbig usage();
3920cb2e609SWolfgang Helbig }
3930cb2e609SWolfgang Helbig
3940c4cafeaSGarrett Wollman if (flag_month != NULL) {
395ba29aec0SGarrett Wollman if (parsemonth(flag_month, &m, &y)) {
3960c4cafeaSGarrett Wollman errx(EX_USAGE,
3970c4cafeaSGarrett Wollman "%s is neither a month number (1..12) nor a name",
3980c4cafeaSGarrett Wollman flag_month);
3990c4cafeaSGarrett Wollman }
400ba29aec0SGarrett Wollman }
4010c4cafeaSGarrett Wollman
4024af997a8SEdwin Groothuis /*
4034af997a8SEdwin Groothuis * What is not supported:
4044af997a8SEdwin Groothuis * -3 with -A or -B
4054af997a8SEdwin Groothuis * -3 displays 3 months, -A and -B change that behaviour.
4064af997a8SEdwin Groothuis * -3 with -y
4074af997a8SEdwin Groothuis * -3 displays 3 months, -y says display a whole year.
4084af997a8SEdwin Groothuis * -3 with a given year but no given month or without -m
4094af997a8SEdwin Groothuis * -3 displays 3 months, no month specified doesn't make clear
4104af997a8SEdwin Groothuis * which three months.
4114af997a8SEdwin Groothuis * -m with a given month
4124af997a8SEdwin Groothuis * conflicting arguments, both specify the same field.
4134af997a8SEdwin Groothuis * -y with -m
4144af997a8SEdwin Groothuis * -y displays the whole year, -m displays a single month.
4154af997a8SEdwin Groothuis * -y with a given month
4164af997a8SEdwin Groothuis * -y displays the whole year, the given month displays a single
4174af997a8SEdwin Groothuis * month.
4184af997a8SEdwin Groothuis * -y with -A or -B
4194af997a8SEdwin Groothuis * -y displays the whole year, -A and -B display extra months.
4204af997a8SEdwin Groothuis */
4214af997a8SEdwin Groothuis
4224af997a8SEdwin Groothuis /* -3 together with -A or -B. */
4234af997a8SEdwin Groothuis if (flag_3months && (flag_after || flag_before))
4244af997a8SEdwin Groothuis errx(EX_USAGE, "-3 together with -A and -B is not supported.");
4254af997a8SEdwin Groothuis /* -3 together with -y. */
4264af997a8SEdwin Groothuis if (flag_3months && flag_wholeyear)
4274af997a8SEdwin Groothuis errx(EX_USAGE, "-3 together with -y is not supported.");
4284af997a8SEdwin Groothuis /* -3 together with givenyear but no givenmonth. */
4294af997a8SEdwin Groothuis if (flag_3months && flag_givenyear &&
4304af997a8SEdwin Groothuis !(flag_givenmonth || flag_specifiedmonth))
4314af997a8SEdwin Groothuis errx(EX_USAGE,
4324af997a8SEdwin Groothuis "-3 together with a given year but no given month is "
4334af997a8SEdwin Groothuis "not supported.");
4344af997a8SEdwin Groothuis /* -m together with xx xxxx. */
4354af997a8SEdwin Groothuis if (flag_specifiedmonth && flag_givenmonth)
4364af997a8SEdwin Groothuis errx(EX_USAGE,
4374af997a8SEdwin Groothuis "-m together with a given month is not supported.");
4384af997a8SEdwin Groothuis /* -y together with -m. */
4394af997a8SEdwin Groothuis if (flag_wholeyear && flag_specifiedmonth)
4404af997a8SEdwin Groothuis errx(EX_USAGE, "-y together with -m is not supported.");
4414af997a8SEdwin Groothuis /* -y together with xx xxxx. */
4424af997a8SEdwin Groothuis if (flag_wholeyear && flag_givenmonth)
4434af997a8SEdwin Groothuis errx(EX_USAGE, "-y together a given month is not supported.");
4444af997a8SEdwin Groothuis /* -y together with -A or -B. */
4454af997a8SEdwin Groothuis if (flag_wholeyear && (flag_before > 0 || flag_after > 0))
4464af997a8SEdwin Groothuis errx(EX_USAGE, "-y together a -A or -B is not supported.");
4474af997a8SEdwin Groothuis /* The rest should be fine. */
4484af997a8SEdwin Groothuis
4494af997a8SEdwin Groothuis /* Select the period to display, in order of increasing priority .*/
4504af997a8SEdwin Groothuis if (flag_wholeyear ||
4514af997a8SEdwin Groothuis (flag_givenyear && !(flag_givenmonth || flag_specifiedmonth))) {
4524af997a8SEdwin Groothuis m = 1;
4534af997a8SEdwin Groothuis before = 0;
4544af997a8SEdwin Groothuis after = 11;
4554af997a8SEdwin Groothuis }
4564af997a8SEdwin Groothuis if (flag_givenyear && flag_givenmonth) {
4574af997a8SEdwin Groothuis before = 0;
4584af997a8SEdwin Groothuis after = 0;
4594af997a8SEdwin Groothuis }
4604af997a8SEdwin Groothuis if (flag_specifiedmonth) {
4614af997a8SEdwin Groothuis before = 0;
4624af997a8SEdwin Groothuis after = 0;
4634af997a8SEdwin Groothuis }
4644af997a8SEdwin Groothuis if (flag_before) {
4654af997a8SEdwin Groothuis before = flag_before;
4664af997a8SEdwin Groothuis }
4674af997a8SEdwin Groothuis if (flag_after) {
4684af997a8SEdwin Groothuis after = flag_after;
4694af997a8SEdwin Groothuis }
4704af997a8SEdwin Groothuis if (flag_3months) {
4714af997a8SEdwin Groothuis before = 1;
4724af997a8SEdwin Groothuis after = 1;
4734af997a8SEdwin Groothuis }
4744af997a8SEdwin Groothuis if (after == -1)
4754af997a8SEdwin Groothuis after = 0;
4764af997a8SEdwin Groothuis if (before == -1)
4774af997a8SEdwin Groothuis before = 0;
4784af997a8SEdwin Groothuis
4794af997a8SEdwin Groothuis /* Highlight a specified day or today .*/
4800851fbdfSEdwin Groothuis if (flag_highlightdate != NULL) {
4810851fbdfSEdwin Groothuis dt.y = strtol(flag_highlightdate, NULL, 10);
4820851fbdfSEdwin Groothuis dt.m = strtol(flag_highlightdate + 5, NULL, 10);
4830851fbdfSEdwin Groothuis dt.d = strtol(flag_highlightdate + 8, NULL, 10);
4840851fbdfSEdwin Groothuis } else {
4850851fbdfSEdwin Groothuis time_t t;
4860851fbdfSEdwin Groothuis struct tm *tm1;
4870851fbdfSEdwin Groothuis
4880851fbdfSEdwin Groothuis t = time(NULL);
4890851fbdfSEdwin Groothuis tm1 = localtime(&t);
4900851fbdfSEdwin Groothuis dt.y = tm1->tm_year + 1900;
4910851fbdfSEdwin Groothuis dt.m = tm1->tm_mon + 1;
4920851fbdfSEdwin Groothuis dt.d = tm1->tm_mday;
4930851fbdfSEdwin Groothuis }
4944af997a8SEdwin Groothuis highlightdate = sndaysb(&dt);
4950851fbdfSEdwin Groothuis
4964af997a8SEdwin Groothuis /* And now we finally start to calculate and output calendars. */
4970cb2e609SWolfgang Helbig if (flag_easter)
4980cb2e609SWolfgang Helbig printeaster(y, flag_julian_cal, flag_orthodox);
4990cb2e609SWolfgang Helbig else
5000cb2e609SWolfgang Helbig if (flag_backward)
5014af997a8SEdwin Groothuis monthrangeb(y, m, flag_julian_day, before, after);
5020cb2e609SWolfgang Helbig else
5034af997a8SEdwin Groothuis monthranger(y, m, flag_julian_day, before, after);
5045903d9c0SDag-Erling Smørgrav if (ferror(stdout) != 0 || fflush(stdout) != 0)
5055903d9c0SDag-Erling Smørgrav err(1, "stdout");
5060cb2e609SWolfgang Helbig return (0);
5070cb2e609SWolfgang Helbig }
5080cb2e609SWolfgang Helbig
509a99e4564SPhilippe Charnier static void
usage(void)5100cb2e609SWolfgang Helbig usage(void)
5110cb2e609SWolfgang Helbig {
5120cb2e609SWolfgang Helbig
5130c4cafeaSGarrett Wollman fputs(
514531a1a4bSEdwin Groothuis "Usage: cal [general options] [-hjy] [[month] year]\n"
515531a1a4bSEdwin Groothuis " cal [general options] [-hj] [-m month] [year]\n"
516531a1a4bSEdwin Groothuis " ncal [general options] [-hJjpwy] [-s country_code] [[month] year]\n"
517531a1a4bSEdwin Groothuis " ncal [general options] [-hJeo] [year]\n"
5188c108b34SValentine Astakhov "General options: [-NCM3] [-A months] [-B months]\n"
519531a1a4bSEdwin Groothuis "For debug the highlighting: [-H yyyy-mm-dd] [-d yyyy-mm]\n",
5200851fbdfSEdwin Groothuis stderr);
5210cb2e609SWolfgang Helbig exit(EX_USAGE);
5220cb2e609SWolfgang Helbig }
5230cb2e609SWolfgang Helbig
5244af997a8SEdwin Groothuis /* Print the assumed switches for all countries. */
525bf70beceSEd Schouten static void
printcc(void)5260cb2e609SWolfgang Helbig printcc(void)
5270cb2e609SWolfgang Helbig {
5280cb2e609SWolfgang Helbig struct djswitch *p;
5290cb2e609SWolfgang Helbig int n; /* number of lines to print */
5300cb2e609SWolfgang Helbig int m; /* offset from left to right table entry on the same line */
5310cb2e609SWolfgang Helbig
532cde26ed2SWolfgang Helbig #define FSTR "%c%s %-15s%4d-%02d-%02d"
533cde26ed2SWolfgang Helbig #define DFLT(p) ((p) == dftswitch ? '*' : ' ')
534cde26ed2SWolfgang Helbig #define FSTRARG(p) DFLT(p), (p)->cc, (p)->nm, (p)->dt.y, (p)->dt.m, (p)->dt.d
5350cb2e609SWolfgang Helbig
5360cb2e609SWolfgang Helbig n = sizeof(switches) / sizeof(struct djswitch);
5370cb2e609SWolfgang Helbig m = (n + 1) / 2;
5380cb2e609SWolfgang Helbig n /= 2;
539cde26ed2SWolfgang Helbig for (p = switches; p != switches + n; p++)
540cde26ed2SWolfgang Helbig printf(FSTR" "FSTR"\n", FSTRARG(p), FSTRARG(p+m));
5410cb2e609SWolfgang Helbig if (m != n)
542cde26ed2SWolfgang Helbig printf(FSTR"\n", FSTRARG(p));
5430cb2e609SWolfgang Helbig }
5440cb2e609SWolfgang Helbig
5454af997a8SEdwin Groothuis /* Print the date of easter sunday. */
546bf70beceSEd Schouten static void
printeaster(int y,int julian,int orthodox)5470cb2e609SWolfgang Helbig printeaster(int y, int julian, int orthodox)
5480cb2e609SWolfgang Helbig {
5490cb2e609SWolfgang Helbig date dt;
550cde26ed2SWolfgang Helbig struct tm tm;
5510851fbdfSEdwin Groothuis char buf[MAX_WIDTH];
552f5e40af2SAndrey A. Chernov static int d_first = -1;
5530cb2e609SWolfgang Helbig
554f5e40af2SAndrey A. Chernov if (d_first < 0)
555f5e40af2SAndrey A. Chernov d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
5560cb2e609SWolfgang Helbig /* force orthodox easter for years before 1583 */
5570cb2e609SWolfgang Helbig if (y < 1583)
5580cb2e609SWolfgang Helbig orthodox = 1;
5590cb2e609SWolfgang Helbig
5600cb2e609SWolfgang Helbig if (orthodox)
5610cb2e609SWolfgang Helbig if (julian)
5620cb2e609SWolfgang Helbig easteroj(y, &dt);
5630cb2e609SWolfgang Helbig else
5640cb2e609SWolfgang Helbig easterog(y, &dt);
5650cb2e609SWolfgang Helbig else
5660cb2e609SWolfgang Helbig easterg(y, &dt);
567cde26ed2SWolfgang Helbig
568cde26ed2SWolfgang Helbig memset(&tm, 0, sizeof(tm));
569cde26ed2SWolfgang Helbig tm.tm_year = dt.y - 1900;
570cde26ed2SWolfgang Helbig tm.tm_mon = dt.m - 1;
571cde26ed2SWolfgang Helbig tm.tm_mday = dt.d;
572f5e40af2SAndrey A. Chernov strftime(buf, sizeof(buf), d_first ? "%e %B %Y" : "%B %e %Y", &tm);
573cde26ed2SWolfgang Helbig printf("%s\n", buf);
5740cb2e609SWolfgang Helbig }
5750cb2e609SWolfgang Helbig
5761d0e1dacSEdwin Groothuis #define MW(mw, me) ((mw) + me)
5770851fbdfSEdwin Groothuis #define DECREASEMONTH(m, y) \
5780851fbdfSEdwin Groothuis if (--m == 0) { \
5790851fbdfSEdwin Groothuis m = 12; \
5800851fbdfSEdwin Groothuis y--; \
581bd97a998SHajimu UMEMOTO }
5820851fbdfSEdwin Groothuis #define INCREASEMONTH(m, y) \
5830851fbdfSEdwin Groothuis if (++(m) == 13) { \
5840851fbdfSEdwin Groothuis (m) = 1; \
5850851fbdfSEdwin Groothuis (y)++; \
5860cb2e609SWolfgang Helbig }
5870851fbdfSEdwin Groothuis #define M2Y(m) ((m) / 12)
5880851fbdfSEdwin Groothuis #define M2M(m) (1 + (m) % 12)
5890cb2e609SWolfgang Helbig
5904af997a8SEdwin Groothuis /* Print all months for the period in the range [ before .. y-m .. after ]. */
591bf70beceSEd Schouten static void
monthrangeb(int y,int m,int jd_flag,int before,int after)5924af997a8SEdwin Groothuis monthrangeb(int y, int m, int jd_flag, int before, int after)
5930cb2e609SWolfgang Helbig {
5940cb2e609SWolfgang Helbig struct monthlines year[12];
5950cb2e609SWolfgang Helbig struct weekdays wds;
5960851fbdfSEdwin Groothuis char s[MAX_WIDTH], t[MAX_WIDTH];
5970851fbdfSEdwin Groothuis wchar_t ws[MAX_WIDTH], ws1[MAX_WIDTH];
5980851fbdfSEdwin Groothuis const char *wdss;
5990cb2e609SWolfgang Helbig int i, j;
6000cb2e609SWolfgang Helbig int mpl;
6010cb2e609SWolfgang Helbig int mw;
6020851fbdfSEdwin Groothuis int m1, m2;
6030851fbdfSEdwin Groothuis int printyearheader;
6040851fbdfSEdwin Groothuis int prevyear = -1;
6050cb2e609SWolfgang Helbig
6060cb2e609SWolfgang Helbig mpl = jd_flag ? 2 : 3;
6070cb2e609SWolfgang Helbig mw = jd_flag ? MONTH_WIDTH_B_J : MONTH_WIDTH_B;
6080851fbdfSEdwin Groothuis wdss = (mpl == 2) ? " " : "";
6090cb2e609SWolfgang Helbig
6100851fbdfSEdwin Groothuis while (before != 0) {
6110851fbdfSEdwin Groothuis DECREASEMONTH(m, y);
6120851fbdfSEdwin Groothuis before--;
6130851fbdfSEdwin Groothuis after++;
6140cb2e609SWolfgang Helbig }
6150851fbdfSEdwin Groothuis m1 = y * 12 + m - 1;
6160851fbdfSEdwin Groothuis m2 = m1 + after;
6170851fbdfSEdwin Groothuis
6180851fbdfSEdwin Groothuis mkweekdays(&wds);
6190851fbdfSEdwin Groothuis
6200851fbdfSEdwin Groothuis /*
6210851fbdfSEdwin Groothuis * The year header is printed when there are more than 'mpl' months
6220851fbdfSEdwin Groothuis * and if the first month is a multitude of 'mpl'.
6230851fbdfSEdwin Groothuis * If not, it will print the year behind every month.
6240851fbdfSEdwin Groothuis */
6250851fbdfSEdwin Groothuis printyearheader = (after >= mpl - 1) && (M2M(m1) - 1) % mpl == 0;
6260851fbdfSEdwin Groothuis
6270851fbdfSEdwin Groothuis m = m1;
6280851fbdfSEdwin Groothuis while (m <= m2) {
6290851fbdfSEdwin Groothuis int count = 0;
6300851fbdfSEdwin Groothuis for (i = 0; i != mpl && m + i <= m2; i++) {
6310851fbdfSEdwin Groothuis mkmonthb(M2Y(m + i), M2M(m + i) - 1, jd_flag, year + i);
6320851fbdfSEdwin Groothuis count++;
6330851fbdfSEdwin Groothuis }
6340851fbdfSEdwin Groothuis
6350851fbdfSEdwin Groothuis /* Empty line between two rows of months */
6360851fbdfSEdwin Groothuis if (m != m1)
6370851fbdfSEdwin Groothuis printf("\n");
6380851fbdfSEdwin Groothuis
6394af997a8SEdwin Groothuis /* Year at the top. */
6400851fbdfSEdwin Groothuis if (printyearheader && M2Y(m) != prevyear) {
6410851fbdfSEdwin Groothuis sprintf(s, "%d", M2Y(m));
6420851fbdfSEdwin Groothuis printf("%s\n", center(t, s, mpl * mw));
6430851fbdfSEdwin Groothuis prevyear = M2Y(m);
6440851fbdfSEdwin Groothuis }
6450851fbdfSEdwin Groothuis
6464af997a8SEdwin Groothuis /* Month names. */
6470851fbdfSEdwin Groothuis for (i = 0; i < count; i++)
6480851fbdfSEdwin Groothuis if (printyearheader)
6490851fbdfSEdwin Groothuis wprintf(L"%-*ls ",
6500851fbdfSEdwin Groothuis mw, wcenter(ws, year[i].name, mw));
6510851fbdfSEdwin Groothuis else {
652b74e3739SDon Lewis swprintf(ws, sizeof(ws)/sizeof(ws[0]),
653b74e3739SDon Lewis L"%-ls %d", year[i].name, M2Y(m + i));
6540851fbdfSEdwin Groothuis wprintf(L"%-*ls ", mw, wcenter(ws1, ws, mw));
6550851fbdfSEdwin Groothuis }
6560851fbdfSEdwin Groothuis printf("\n");
6570851fbdfSEdwin Groothuis
6584af997a8SEdwin Groothuis /* Day of the week names. */
6590851fbdfSEdwin Groothuis for (i = 0; i < count; i++) {
6600851fbdfSEdwin Groothuis wprintf(L"%s%ls%s%ls%s%ls%s%ls%s%ls%s%ls%s%ls ",
6618c108b34SValentine Astakhov wdss, wds.names[flag_monday ? 0 : 6],
6628c108b34SValentine Astakhov wdss, wds.names[flag_monday ? 1 : 0],
6638c108b34SValentine Astakhov wdss, wds.names[flag_monday ? 2 : 1],
6648c108b34SValentine Astakhov wdss, wds.names[flag_monday ? 3 : 2],
6658c108b34SValentine Astakhov wdss, wds.names[flag_monday ? 4 : 3],
6668c108b34SValentine Astakhov wdss, wds.names[flag_monday ? 5 : 4],
6678c108b34SValentine Astakhov wdss, wds.names[flag_monday ? 6 : 5]);
6680851fbdfSEdwin Groothuis }
6690851fbdfSEdwin Groothuis printf("\n");
6700851fbdfSEdwin Groothuis
6714af997a8SEdwin Groothuis /* And the days of the month. */
6720851fbdfSEdwin Groothuis for (i = 0; i != 6; i++) {
6730851fbdfSEdwin Groothuis for (j = 0; j < count; j++)
6741d0e1dacSEdwin Groothuis printf("%-*s ",
6751d0e1dacSEdwin Groothuis MW(mw, year[j].extralen[i]),
6761d0e1dacSEdwin Groothuis year[j].lines[i]+1);
6770851fbdfSEdwin Groothuis printf("\n");
6780851fbdfSEdwin Groothuis }
6790851fbdfSEdwin Groothuis
6800851fbdfSEdwin Groothuis m += mpl;
6810cb2e609SWolfgang Helbig }
6820cb2e609SWolfgang Helbig }
6830cb2e609SWolfgang Helbig
684bf70beceSEd Schouten static void
monthranger(int y,int m,int jd_flag,int before,int after)6854af997a8SEdwin Groothuis monthranger(int y, int m, int jd_flag, int before, int after)
6860851fbdfSEdwin Groothuis {
6870851fbdfSEdwin Groothuis struct monthlines year[12];
6880851fbdfSEdwin Groothuis struct weekdays wds;
6890851fbdfSEdwin Groothuis char s[MAX_WIDTH], t[MAX_WIDTH];
6900851fbdfSEdwin Groothuis int i, j;
6910851fbdfSEdwin Groothuis int mpl;
6920851fbdfSEdwin Groothuis int mw;
6930851fbdfSEdwin Groothuis int m1, m2;
6940851fbdfSEdwin Groothuis int prevyear = -1;
6950851fbdfSEdwin Groothuis int printyearheader;
6960851fbdfSEdwin Groothuis
6970851fbdfSEdwin Groothuis mpl = jd_flag ? 3 : 4;
6980851fbdfSEdwin Groothuis mw = jd_flag ? MONTH_WIDTH_R_J : MONTH_WIDTH_R;
6990851fbdfSEdwin Groothuis
7000851fbdfSEdwin Groothuis while (before != 0) {
7010851fbdfSEdwin Groothuis DECREASEMONTH(m, y);
7020851fbdfSEdwin Groothuis before--;
7030851fbdfSEdwin Groothuis after++;
7040851fbdfSEdwin Groothuis }
7050851fbdfSEdwin Groothuis m1 = y * 12 + m - 1;
7060851fbdfSEdwin Groothuis m2 = m1 + after;
7070851fbdfSEdwin Groothuis
7080851fbdfSEdwin Groothuis mkweekdays(&wds);
7090851fbdfSEdwin Groothuis
7100851fbdfSEdwin Groothuis /*
7110851fbdfSEdwin Groothuis * The year header is printed when there are more than 'mpl' months
7120851fbdfSEdwin Groothuis * and if the first month is a multitude of 'mpl'.
7130851fbdfSEdwin Groothuis * If not, it will print the year behind every month.
7140851fbdfSEdwin Groothuis */
7150851fbdfSEdwin Groothuis printyearheader = (after >= mpl - 1) && (M2M(m1) - 1) % mpl == 0;
7160851fbdfSEdwin Groothuis
7170851fbdfSEdwin Groothuis m = m1;
7180851fbdfSEdwin Groothuis while (m <= m2) {
7190851fbdfSEdwin Groothuis int count = 0;
7200851fbdfSEdwin Groothuis for (i = 0; i != mpl && m + i <= m2; i++) {
7210851fbdfSEdwin Groothuis mkmonthr(M2Y(m + i), M2M(m + i) - 1, jd_flag, year + i);
7220851fbdfSEdwin Groothuis count++;
7230851fbdfSEdwin Groothuis }
7240851fbdfSEdwin Groothuis
7254af997a8SEdwin Groothuis /* Empty line between two rows of months. */
7260851fbdfSEdwin Groothuis if (m != m1)
7270851fbdfSEdwin Groothuis printf("\n");
7280851fbdfSEdwin Groothuis
7294af997a8SEdwin Groothuis /* Year at the top. */
7300851fbdfSEdwin Groothuis if (printyearheader && M2Y(m) != prevyear) {
7310851fbdfSEdwin Groothuis sprintf(s, "%d", M2Y(m));
7320851fbdfSEdwin Groothuis printf("%s\n", center(t, s, mpl * mw));
7330851fbdfSEdwin Groothuis prevyear = M2Y(m);
7340851fbdfSEdwin Groothuis }
7350851fbdfSEdwin Groothuis
7364af997a8SEdwin Groothuis /* Month names. */
7370851fbdfSEdwin Groothuis wprintf(L" ");
7380851fbdfSEdwin Groothuis for (i = 0; i < count; i++)
7390851fbdfSEdwin Groothuis if (printyearheader)
7400851fbdfSEdwin Groothuis wprintf(L"%-*ls", mw, year[i].name);
7410851fbdfSEdwin Groothuis else
7420851fbdfSEdwin Groothuis wprintf(L"%-ls %-*d", year[i].name,
7430851fbdfSEdwin Groothuis mw - wcslen(year[i].name) - 1, M2Y(m + i));
7440851fbdfSEdwin Groothuis printf("\n");
7450851fbdfSEdwin Groothuis
7464af997a8SEdwin Groothuis /* And the days of the month. */
7470851fbdfSEdwin Groothuis for (i = 0; i != 7; i++) {
7480851fbdfSEdwin Groothuis /* Week day */
7490851fbdfSEdwin Groothuis wprintf(L"%.2ls", wds.names[i]);
7500851fbdfSEdwin Groothuis
7510851fbdfSEdwin Groothuis /* Full months */
7520851fbdfSEdwin Groothuis for (j = 0; j < count; j++)
7530851fbdfSEdwin Groothuis printf("%-*s",
7541d0e1dacSEdwin Groothuis MW(mw, year[j].extralen[i]),
7551d0e1dacSEdwin Groothuis year[j].lines[i]);
7560851fbdfSEdwin Groothuis printf("\n");
7570851fbdfSEdwin Groothuis }
7580851fbdfSEdwin Groothuis
7594af997a8SEdwin Groothuis /* Week numbers. */
7600851fbdfSEdwin Groothuis if (flag_weeks) {
7610851fbdfSEdwin Groothuis printf(" ");
7620851fbdfSEdwin Groothuis for (i = 0; i < count; i++)
7630851fbdfSEdwin Groothuis printf("%-*s", mw, year[i].weeks);
7640851fbdfSEdwin Groothuis printf("\n");
7650851fbdfSEdwin Groothuis }
7660851fbdfSEdwin Groothuis
7670851fbdfSEdwin Groothuis m += mpl;
7680851fbdfSEdwin Groothuis }
7690851fbdfSEdwin Groothuis return;
7700851fbdfSEdwin Groothuis }
7710851fbdfSEdwin Groothuis
772bf70beceSEd Schouten static void
mkmonthr(int y,int m,int jd_flag,struct monthlines * mlines)7730851fbdfSEdwin Groothuis mkmonthr(int y, int m, int jd_flag, struct monthlines *mlines)
7740cb2e609SWolfgang Helbig {
7750cb2e609SWolfgang Helbig
7760cb2e609SWolfgang Helbig struct tm tm; /* for strftime printing local names of
7770cb2e609SWolfgang Helbig * months */
7780cb2e609SWolfgang Helbig date dt; /* handy date */
7790cb2e609SWolfgang Helbig int dw; /* width of numbers */
7800cb2e609SWolfgang Helbig int first; /* first day of month */
7810cb2e609SWolfgang Helbig int firstm; /* first day of first week of month */
782e454a171SRoman Divacky int i, j, k, l; /* just indices */
7830cb2e609SWolfgang Helbig int last; /* the first day of next month */
7840cb2e609SWolfgang Helbig int jan1 = 0; /* the first day of this year */
7850cb2e609SWolfgang Helbig char *ds; /* pointer to day strings (daystr or
7860cb2e609SWolfgang Helbig * jdaystr) */
7870cb2e609SWolfgang Helbig
7880cb2e609SWolfgang Helbig /* Set name of month. */
7890cb2e609SWolfgang Helbig memset(&tm, 0, sizeof(tm));
7900cb2e609SWolfgang Helbig tm.tm_mon = m;
7914646cea7SDavid Schultz wcsftime(mlines->name, sizeof(mlines->name) / sizeof(mlines->name[0]),
7924646cea7SDavid Schultz L"%OB", &tm);
7934646cea7SDavid Schultz mlines->name[0] = towupper(mlines->name[0]);
7940cb2e609SWolfgang Helbig
7950cb2e609SWolfgang Helbig /*
7960cb2e609SWolfgang Helbig * Set first and last to the day number of the first day of this
7970cb2e609SWolfgang Helbig * month and the first day of next month respectively. Set jan1 to
798f8a0edbaSWolfgang Helbig * the day number of the first day of this year.
7990cb2e609SWolfgang Helbig */
800f8a0edbaSWolfgang Helbig first = firstday(y, m + 1);
801f8a0edbaSWolfgang Helbig if (m == 11)
802f8a0edbaSWolfgang Helbig last = firstday(y + 1, 1);
803f8a0edbaSWolfgang Helbig else
804f8a0edbaSWolfgang Helbig last = firstday(y, m + 2);
8050cb2e609SWolfgang Helbig
806f8a0edbaSWolfgang Helbig if (jd_flag)
807630d15bbSWolfgang Helbig jan1 = firstday(y, 1);
8080cb2e609SWolfgang Helbig
8090cb2e609SWolfgang Helbig /*
8100cb2e609SWolfgang Helbig * Set firstm to the day number of monday of the first week of
8110cb2e609SWolfgang Helbig * this month. (This might be in the last month)
8120cb2e609SWolfgang Helbig */
8130cb2e609SWolfgang Helbig firstm = first - weekday(first);
8140cb2e609SWolfgang Helbig
8154af997a8SEdwin Groothuis /* Set ds (daystring) and dw (daywidth) according to the jd_flag. */
8160cb2e609SWolfgang Helbig if (jd_flag) {
8170cb2e609SWolfgang Helbig ds = jdaystr;
8180cb2e609SWolfgang Helbig dw = 4;
8190cb2e609SWolfgang Helbig } else {
8200cb2e609SWolfgang Helbig ds = daystr;
8210cb2e609SWolfgang Helbig dw = 3;
8220cb2e609SWolfgang Helbig }
8230cb2e609SWolfgang Helbig
8240cb2e609SWolfgang Helbig /*
8250cb2e609SWolfgang Helbig * Fill the lines with day of month or day of year (julian day)
8260cb2e609SWolfgang Helbig * line index: i, each line is one weekday. column index: j, each
8270cb2e609SWolfgang Helbig * column is one day number. print column index: k.
8280cb2e609SWolfgang Helbig */
8290cb2e609SWolfgang Helbig for (i = 0; i != 7; i++) {
830e454a171SRoman Divacky l = 0;
831e454a171SRoman Divacky for (j = firstm + i, k = 0; j < last; j += 7, k += dw) {
8320cb2e609SWolfgang Helbig if (j >= first) {
8330cb2e609SWolfgang Helbig if (jd_flag)
8340cb2e609SWolfgang Helbig dt.d = j - jan1 + 1;
8350cb2e609SWolfgang Helbig else
8360851fbdfSEdwin Groothuis sdater(j, &dt);
837*49224311SPoul-Henning Kamp if (j == highlightdate && flag_highlight)
838cae11c25SEdwin Groothuis highlight(mlines->lines[i] + k,
839cae11c25SEdwin Groothuis ds + dt.d * dw, dw, &l);
840cae11c25SEdwin Groothuis else
841e454a171SRoman Divacky memcpy(mlines->lines[i] + k + l,
8420cb2e609SWolfgang Helbig ds + dt.d * dw, dw);
8430cb2e609SWolfgang Helbig } else
844e454a171SRoman Divacky memcpy(mlines->lines[i] + k + l, " ", dw);
845e454a171SRoman Divacky }
846e454a171SRoman Divacky mlines->lines[i][k + l] = '\0';
8471d0e1dacSEdwin Groothuis mlines->extralen[i] = l;
8480cb2e609SWolfgang Helbig }
8490cb2e609SWolfgang Helbig
8504af997a8SEdwin Groothuis /* fill the weeknumbers. */
8510cb2e609SWolfgang Helbig if (flag_weeks) {
8520cb2e609SWolfgang Helbig for (j = firstm, k = 0; j < last; k += dw, j += 7)
8530cb2e609SWolfgang Helbig if (j <= nswitch)
8540cb2e609SWolfgang Helbig memset(mlines->weeks + k, ' ', dw);
8550cb2e609SWolfgang Helbig else
8560cb2e609SWolfgang Helbig memcpy(mlines->weeks + k,
8570cb2e609SWolfgang Helbig ds + week(j, &i)*dw, dw);
8580cb2e609SWolfgang Helbig mlines->weeks[k] = '\0';
8590cb2e609SWolfgang Helbig }
8600cb2e609SWolfgang Helbig }
8610cb2e609SWolfgang Helbig
862bf70beceSEd Schouten static void
mkmonthb(int y,int m,int jd_flag,struct monthlines * mlines)8630cb2e609SWolfgang Helbig mkmonthb(int y, int m, int jd_flag, struct monthlines *mlines)
8640cb2e609SWolfgang Helbig {
8650cb2e609SWolfgang Helbig
8660cb2e609SWolfgang Helbig struct tm tm; /* for strftime printing local names of
8670cb2e609SWolfgang Helbig * months */
8680cb2e609SWolfgang Helbig date dt; /* handy date */
8690cb2e609SWolfgang Helbig int dw; /* width of numbers */
8700cb2e609SWolfgang Helbig int first; /* first day of month */
8718c108b34SValentine Astakhov int firstsm; /* sunday or monday of first week of month */
872e454a171SRoman Divacky int i, j, k, l; /* just indices */
8730cb2e609SWolfgang Helbig int jan1 = 0; /* the first day of this year */
8740cb2e609SWolfgang Helbig int last; /* the first day of next month */
8750cb2e609SWolfgang Helbig char *ds; /* pointer to day strings (daystr or
8760cb2e609SWolfgang Helbig * jdaystr) */
8770cb2e609SWolfgang Helbig
8780cb2e609SWolfgang Helbig /* Set ds (daystring) and dw (daywidth) according to the jd_flag */
8790cb2e609SWolfgang Helbig if (jd_flag) {
8800cb2e609SWolfgang Helbig ds = jdaystr;
8810cb2e609SWolfgang Helbig dw = 4;
8820cb2e609SWolfgang Helbig } else {
8830cb2e609SWolfgang Helbig ds = daystr;
8840cb2e609SWolfgang Helbig dw = 3;
8850cb2e609SWolfgang Helbig }
8860cb2e609SWolfgang Helbig
8874af997a8SEdwin Groothuis /* Set name of month centered. */
8880cb2e609SWolfgang Helbig memset(&tm, 0, sizeof(tm));
8890cb2e609SWolfgang Helbig tm.tm_mon = m;
8904646cea7SDavid Schultz wcsftime(mlines->name, sizeof(mlines->name) / sizeof(mlines->name[0]),
8914646cea7SDavid Schultz L"%OB", &tm);
8924646cea7SDavid Schultz mlines->name[0] = towupper(mlines->name[0]);
8930cb2e609SWolfgang Helbig
8940cb2e609SWolfgang Helbig /*
8950cb2e609SWolfgang Helbig * Set first and last to the day number of the first day of this
8960cb2e609SWolfgang Helbig * month and the first day of next month respectively. Set jan1 to
8970cb2e609SWolfgang Helbig * the day number of Jan 1st of this year.
8980cb2e609SWolfgang Helbig */
8990cb2e609SWolfgang Helbig dt.y = y;
9000cb2e609SWolfgang Helbig dt.m = m + 1;
9010cb2e609SWolfgang Helbig dt.d = 1;
9020cb2e609SWolfgang Helbig first = sndaysb(&dt);
9030cb2e609SWolfgang Helbig if (m == 11) {
9040cb2e609SWolfgang Helbig dt.y = y + 1;
9050cb2e609SWolfgang Helbig dt.m = 1;
9060cb2e609SWolfgang Helbig dt.d = 1;
9070cb2e609SWolfgang Helbig } else {
9080cb2e609SWolfgang Helbig dt.y = y;
9090cb2e609SWolfgang Helbig dt.m = m + 2;
9100cb2e609SWolfgang Helbig dt.d = 1;
9110cb2e609SWolfgang Helbig }
9120cb2e609SWolfgang Helbig last = sndaysb(&dt);
9130cb2e609SWolfgang Helbig
9140cb2e609SWolfgang Helbig if (jd_flag) {
9150cb2e609SWolfgang Helbig dt.y = y;
9160cb2e609SWolfgang Helbig dt.m = 1;
9170cb2e609SWolfgang Helbig dt.d = 1;
9180cb2e609SWolfgang Helbig jan1 = sndaysb(&dt);
9190cb2e609SWolfgang Helbig }
9200cb2e609SWolfgang Helbig
9210cb2e609SWolfgang Helbig /*
9228c108b34SValentine Astakhov * Set firstsm to the day number of sunday or monday of the first week
9238c108b34SValentine Astakhov * of this month. (This might be in the last month)
9240cb2e609SWolfgang Helbig */
9258c108b34SValentine Astakhov if (flag_monday)
9268c108b34SValentine Astakhov firstsm = first - weekday(first);
9278c108b34SValentine Astakhov else
9288c108b34SValentine Astakhov firstsm = first - (weekday(first) + 1) % 7;
9290cb2e609SWolfgang Helbig
9300cb2e609SWolfgang Helbig /*
9310cb2e609SWolfgang Helbig * Fill the lines with day of month or day of year (Julian day)
9320cb2e609SWolfgang Helbig * line index: i, each line is one week. column index: j, each
9330cb2e609SWolfgang Helbig * column is one day number. print column index: k.
9340cb2e609SWolfgang Helbig */
9350cb2e609SWolfgang Helbig for (i = 0; i != 6; i++) {
936e454a171SRoman Divacky l = 0;
9378c108b34SValentine Astakhov for (j = firstsm + 7 * i, k = 0; j < last && k != dw * 7;
938e454a171SRoman Divacky j++, k += dw) {
9390cb2e609SWolfgang Helbig if (j >= first) {
9400cb2e609SWolfgang Helbig if (jd_flag)
9410cb2e609SWolfgang Helbig dt.d = j - jan1 + 1;
9420cb2e609SWolfgang Helbig else
9430cb2e609SWolfgang Helbig sdateb(j, &dt);
944*49224311SPoul-Henning Kamp if (j == highlightdate && flag_highlight)
945cae11c25SEdwin Groothuis highlight(mlines->lines[i] + k,
946cae11c25SEdwin Groothuis ds + dt.d * dw, dw, &l);
947cae11c25SEdwin Groothuis else
948e454a171SRoman Divacky memcpy(mlines->lines[i] + k + l,
9490cb2e609SWolfgang Helbig ds + dt.d * dw, dw);
9500cb2e609SWolfgang Helbig } else
951e454a171SRoman Divacky memcpy(mlines->lines[i] + k + l, " ", dw);
952e454a171SRoman Divacky }
9530cb2e609SWolfgang Helbig if (k == 0)
9540cb2e609SWolfgang Helbig mlines->lines[i][1] = '\0';
9550cb2e609SWolfgang Helbig else
956e454a171SRoman Divacky mlines->lines[i][k + l] = '\0';
9571d0e1dacSEdwin Groothuis mlines->extralen[i] = l;
9580cb2e609SWolfgang Helbig }
9590cb2e609SWolfgang Helbig }
9600cb2e609SWolfgang Helbig
9614af997a8SEdwin Groothuis /* Put the local names of weekdays into the wds. */
962bf70beceSEd Schouten static void
mkweekdays(struct weekdays * wds)963a4264dceSWolfgang Helbig mkweekdays(struct weekdays *wds)
9640cb2e609SWolfgang Helbig {
965bd97a998SHajimu UMEMOTO int i, len, width = 0;
9660cb2e609SWolfgang Helbig struct tm tm;
9674646cea7SDavid Schultz wchar_t buf[20];
9680cb2e609SWolfgang Helbig
9690cb2e609SWolfgang Helbig memset(&tm, 0, sizeof(tm));
9700cb2e609SWolfgang Helbig
9710cb2e609SWolfgang Helbig for (i = 0; i != 7; i++) {
9720cb2e609SWolfgang Helbig tm.tm_wday = (i+1) % 7;
973b74e3739SDon Lewis wcsftime(buf, sizeof(buf)/sizeof(buf[0]), L"%a", &tm);
97446f39347SHajimu UMEMOTO for (len = 2; len > 0; --len) {
975bd97a998SHajimu UMEMOTO if ((width = wcswidth(buf, len)) <= 2)
976bd97a998SHajimu UMEMOTO break;
977bd97a998SHajimu UMEMOTO }
978bd97a998SHajimu UMEMOTO wmemset(wds->names[i], L'\0', 4);
979bd97a998SHajimu UMEMOTO if (width == 1)
980bd97a998SHajimu UMEMOTO wds->names[i][0] = L' ';
981bd97a998SHajimu UMEMOTO wcsncat(wds->names[i], buf, len);
98246f39347SHajimu UMEMOTO wcsncat(wds->names[i], L" ", 1);
9830cb2e609SWolfgang Helbig }
9840cb2e609SWolfgang Helbig }
9850cb2e609SWolfgang Helbig
9860cb2e609SWolfgang Helbig /*
9874af997a8SEdwin Groothuis * Compute the day number of the first existing date after the first day in
9884af997a8SEdwin Groothuis * month. (the first day in month and even the month might not exist!)
989f8a0edbaSWolfgang Helbig */
990bf70beceSEd Schouten static int
firstday(int y,int m)991f8a0edbaSWolfgang Helbig firstday(int y, int m)
992f8a0edbaSWolfgang Helbig {
993f8a0edbaSWolfgang Helbig date dt;
994f8a0edbaSWolfgang Helbig int nd;
995f8a0edbaSWolfgang Helbig
996f8a0edbaSWolfgang Helbig dt.y = y;
997f8a0edbaSWolfgang Helbig dt.m = m;
998f8a0edbaSWolfgang Helbig dt.d = 1;
9990851fbdfSEdwin Groothuis nd = sndaysr(&dt);
1000cf5f6adfSWolfgang Helbig for (;;) {
10010851fbdfSEdwin Groothuis sdater(nd, &dt);
1002cf5f6adfSWolfgang Helbig if ((dt.m >= m && dt.y == y) || dt.y > y)
1003f8a0edbaSWolfgang Helbig return (nd);
1004cf5f6adfSWolfgang Helbig else
1005cf5f6adfSWolfgang Helbig nd++;
1006cf5f6adfSWolfgang Helbig }
1007cf5f6adfSWolfgang Helbig /* NEVER REACHED */
1008f8a0edbaSWolfgang Helbig }
1009f8a0edbaSWolfgang Helbig
1010f8a0edbaSWolfgang Helbig /*
10110cb2e609SWolfgang Helbig * Compute the number of days from date, obey the local switch from
10120cb2e609SWolfgang Helbig * Julian to Gregorian if specified by the user.
10130cb2e609SWolfgang Helbig */
1014bf70beceSEd Schouten static int
sndaysr(struct date * d)10150851fbdfSEdwin Groothuis sndaysr(struct date *d)
10160cb2e609SWolfgang Helbig {
10170cb2e609SWolfgang Helbig
10180cb2e609SWolfgang Helbig if (nswitch != 0)
10190cb2e609SWolfgang Helbig if (nswitch < ndaysj(d))
10200cb2e609SWolfgang Helbig return (ndaysg(d));
10210cb2e609SWolfgang Helbig else
10220cb2e609SWolfgang Helbig return (ndaysj(d));
10230cb2e609SWolfgang Helbig else
10240cb2e609SWolfgang Helbig return ndaysg(d);
10250cb2e609SWolfgang Helbig }
10260cb2e609SWolfgang Helbig
10270cb2e609SWolfgang Helbig /*
10280cb2e609SWolfgang Helbig * Compute the number of days from date, obey the switch from
10290cb2e609SWolfgang Helbig * Julian to Gregorian as used by UK and her colonies.
10300cb2e609SWolfgang Helbig */
1031bf70beceSEd Schouten static int
sndaysb(struct date * d)10320cb2e609SWolfgang Helbig sndaysb(struct date *d)
10330cb2e609SWolfgang Helbig {
10340cb2e609SWolfgang Helbig
10350cb2e609SWolfgang Helbig if (nswitchb < ndaysj(d))
10360cb2e609SWolfgang Helbig return (ndaysg(d));
10370cb2e609SWolfgang Helbig else
10380cb2e609SWolfgang Helbig return (ndaysj(d));
10390cb2e609SWolfgang Helbig }
10400cb2e609SWolfgang Helbig
10414af997a8SEdwin Groothuis /* Inverse of sndays. */
1042bf70beceSEd Schouten static struct date *
sdater(int nd,struct date * d)10430851fbdfSEdwin Groothuis sdater(int nd, struct date *d)
10440cb2e609SWolfgang Helbig {
10450cb2e609SWolfgang Helbig
10460cb2e609SWolfgang Helbig if (nswitch < nd)
10470cb2e609SWolfgang Helbig return (gdate(nd, d));
10480cb2e609SWolfgang Helbig else
10490cb2e609SWolfgang Helbig return (jdate(nd, d));
10500cb2e609SWolfgang Helbig }
10510cb2e609SWolfgang Helbig
10524af997a8SEdwin Groothuis /* Inverse of sndaysb. */
1053bf70beceSEd Schouten static struct date *
sdateb(int nd,struct date * d)10540cb2e609SWolfgang Helbig sdateb(int nd, struct date *d)
10550cb2e609SWolfgang Helbig {
10560cb2e609SWolfgang Helbig
10570cb2e609SWolfgang Helbig if (nswitchb < nd)
10580cb2e609SWolfgang Helbig return (gdate(nd, d));
10590cb2e609SWolfgang Helbig else
10600cb2e609SWolfgang Helbig return (jdate(nd, d));
10610cb2e609SWolfgang Helbig }
10620cb2e609SWolfgang Helbig
10634af997a8SEdwin Groothuis /* Center string t in string s of length w by putting enough leading blanks. */
1064bf70beceSEd Schouten static char *
center(char * s,char * t,int w)10650cb2e609SWolfgang Helbig center(char *s, char *t, int w)
10660cb2e609SWolfgang Helbig {
10670851fbdfSEdwin Groothuis char blanks[MAX_WIDTH];
10680cb2e609SWolfgang Helbig
10690cb2e609SWolfgang Helbig memset(blanks, ' ', sizeof(blanks));
10700cb2e609SWolfgang Helbig sprintf(s, "%.*s%s", (int)(w - strlen(t)) / 2, blanks, t);
10710cb2e609SWolfgang Helbig return (s);
10720cb2e609SWolfgang Helbig }
1073ac6d1c22SPeter Pentchev
10744af997a8SEdwin Groothuis /* Center string t in string s of length w by putting enough leading blanks. */
1075bf70beceSEd Schouten static wchar_t *
wcenter(wchar_t * s,wchar_t * t,int w)10764646cea7SDavid Schultz wcenter(wchar_t *s, wchar_t *t, int w)
10774646cea7SDavid Schultz {
10780851fbdfSEdwin Groothuis char blanks[MAX_WIDTH];
10794646cea7SDavid Schultz
10804646cea7SDavid Schultz memset(blanks, ' ', sizeof(blanks));
10814646cea7SDavid Schultz swprintf(s, MAX_WIDTH, L"%.*s%ls", (int)(w - wcslen(t)) / 2, blanks, t);
10824646cea7SDavid Schultz return (s);
10834646cea7SDavid Schultz }
10844646cea7SDavid Schultz
1085bf70beceSEd Schouten static int
parsemonth(const char * s,int * m,int * y)1086ba29aec0SGarrett Wollman parsemonth(const char *s, int *m, int *y)
1087ac6d1c22SPeter Pentchev {
1088ba29aec0SGarrett Wollman int nm, ny;
1089ac6d1c22SPeter Pentchev char *cp;
1090ac6d1c22SPeter Pentchev struct tm tm;
1091ac6d1c22SPeter Pentchev
1092ba29aec0SGarrett Wollman nm = (int)strtol(s, &cp, 10);
1093ba29aec0SGarrett Wollman if (cp != s) {
1094ba29aec0SGarrett Wollman ny = *y;
1095ba29aec0SGarrett Wollman if (*cp == '\0') {
1096ba29aec0SGarrett Wollman ; /* no special action */
1097ba29aec0SGarrett Wollman } else if (*cp == 'f' || *cp == 'F') {
1098ba29aec0SGarrett Wollman if (nm <= *m)
1099ba29aec0SGarrett Wollman ny++;
1100ba29aec0SGarrett Wollman } else if (*cp == 'p' || *cp == 'P') {
1101ba29aec0SGarrett Wollman if (nm >= *m)
1102ba29aec0SGarrett Wollman ny--;
1103ba29aec0SGarrett Wollman } else
1104ba29aec0SGarrett Wollman return (1);
1105ba29aec0SGarrett Wollman if (nm < 1 || nm > 12)
1106ba29aec0SGarrett Wollman return 1;
1107ba29aec0SGarrett Wollman *m = nm;
1108ba29aec0SGarrett Wollman *y = ny;
1109ac6d1c22SPeter Pentchev return (0);
1110ac6d1c22SPeter Pentchev }
1111ba29aec0SGarrett Wollman if (strptime(s, "%B", &tm) != NULL || strptime(s, "%b", &tm) != NULL) {
1112ba29aec0SGarrett Wollman *m = tm.tm_mon + 1;
1113ba29aec0SGarrett Wollman return (0);
1114ba29aec0SGarrett Wollman }
1115ba29aec0SGarrett Wollman return (1);
1116ba29aec0SGarrett Wollman }
1117cae11c25SEdwin Groothuis
1118bf70beceSEd Schouten static void
highlight(char * dst,char * src,int len,int * extralen)1119cae11c25SEdwin Groothuis highlight(char *dst, char *src, int len, int *extralen)
1120cae11c25SEdwin Groothuis {
1121cae11c25SEdwin Groothuis static int first = 1;
1122cae11c25SEdwin Groothuis static const char *term_so, *term_se;
1123cae11c25SEdwin Groothuis
1124cae11c25SEdwin Groothuis if (first) {
1125bcad3423SEric van Gyzen static char cbuf[512];
1126bcad3423SEric van Gyzen char tbuf[1024], *b;
1127cae11c25SEdwin Groothuis
1128cae11c25SEdwin Groothuis term_se = term_so = NULL;
1129cae11c25SEdwin Groothuis
11304af997a8SEdwin Groothuis /* On how to highlight on this type of terminal (if any). */
1131cae11c25SEdwin Groothuis if (isatty(STDOUT_FILENO) && tgetent(tbuf, NULL) == 1) {
1132cae11c25SEdwin Groothuis b = cbuf;
1133cae11c25SEdwin Groothuis term_so = tgetstr("so", &b);
1134cae11c25SEdwin Groothuis term_se = tgetstr("se", &b);
1135cae11c25SEdwin Groothuis }
1136cae11c25SEdwin Groothuis
1137cae11c25SEdwin Groothuis first = 0;
1138cae11c25SEdwin Groothuis }
1139cae11c25SEdwin Groothuis
1140cae11c25SEdwin Groothuis /*
1141cae11c25SEdwin Groothuis * This check is not necessary, should have been handled before calling
1142cae11c25SEdwin Groothuis * this function.
1143cae11c25SEdwin Groothuis */
1144*49224311SPoul-Henning Kamp if (!flag_highlight) {
1145cae11c25SEdwin Groothuis memcpy(dst, src, len);
1146cae11c25SEdwin Groothuis return;
1147cae11c25SEdwin Groothuis }
1148cae11c25SEdwin Groothuis
11494af997a8SEdwin Groothuis /*
11504af997a8SEdwin Groothuis * If it is a real terminal, use the data from the termcap database.
11514af997a8SEdwin Groothuis */
1152cae11c25SEdwin Groothuis if (term_so != NULL && term_se != NULL) {
11534af997a8SEdwin Groothuis /* separator. */
1154cae11c25SEdwin Groothuis dst[0] = ' ';
1155cae11c25SEdwin Groothuis dst++;
11564af997a8SEdwin Groothuis /* highlight on. */
1157cae11c25SEdwin Groothuis memcpy(dst, term_so, strlen(term_so));
1158cae11c25SEdwin Groothuis dst += strlen(term_so);
11594af997a8SEdwin Groothuis /* the actual text. (minus leading space) */
1160cae11c25SEdwin Groothuis len--;
1161cae11c25SEdwin Groothuis src++;
1162cae11c25SEdwin Groothuis memcpy(dst, src, len);
1163cae11c25SEdwin Groothuis dst += len;
11644af997a8SEdwin Groothuis /* highlight off. */
1165cae11c25SEdwin Groothuis memcpy(dst, term_se, strlen(term_se));
1166cae11c25SEdwin Groothuis *extralen = strlen(term_so) + strlen(term_se);
1167cae11c25SEdwin Groothuis return;
1168cae11c25SEdwin Groothuis }
1169cae11c25SEdwin Groothuis
1170cae11c25SEdwin Groothuis /*
11714af997a8SEdwin Groothuis * Otherwise, print a _, backspace and the letter.
1172cae11c25SEdwin Groothuis */
1173cae11c25SEdwin Groothuis *extralen = 0;
11744af997a8SEdwin Groothuis /* skip leading space. */
1175cae11c25SEdwin Groothuis src++;
1176cae11c25SEdwin Groothuis len--;
11774af997a8SEdwin Groothuis /* separator. */
1178cae11c25SEdwin Groothuis dst[0] = ' ';
1179cae11c25SEdwin Groothuis dst++;
1180cae11c25SEdwin Groothuis while (len > 0) {
11814af997a8SEdwin Groothuis /* _ and backspace. */
1182cae11c25SEdwin Groothuis memcpy(dst, "_\010", 2);
1183cae11c25SEdwin Groothuis dst += 2;
1184cae11c25SEdwin Groothuis *extralen += 2;
11854af997a8SEdwin Groothuis /* the character. */
1186cae11c25SEdwin Groothuis *dst++ = *src++;
1187cae11c25SEdwin Groothuis len--;
1188cae11c25SEdwin Groothuis }
11894af997a8SEdwin Groothuis return;
1190cae11c25SEdwin Groothuis }
1191