1 /*- 2 * Copyright (c) 1992-2009 Edwin Groothuis <edwin@FreeBSD.org>. 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 * 26 */ 27 28 #include <sys/cdefs.h> 29 __FBSDID("$FreeBSD$"); 30 31 #include <ctype.h> 32 #include <math.h> 33 #include <stdio.h> 34 #include <stdlib.h> 35 #include <string.h> 36 #include <err.h> 37 38 #include "calendar.h" 39 40 static char *showflags(int flags); 41 static int isonlydigits(char *s, int nostar); 42 static const char *getmonthname(int i); 43 static int checkmonth(char *s, size_t *len, size_t *offset, const char **month); 44 static const char *getdayofweekname(int i); 45 static int checkdayofweek(char *s, size_t *len, size_t *offset, const char **dow); 46 static int indextooffset(char *s); 47 static int parseoffset(char *s); 48 static char *floattoday(int year, double f); 49 static char *floattotime(double f); 50 51 /* 52 * Expected styles: 53 * 54 * Date ::= Month . ' ' . DayOfMonth | 55 * Month . ' ' . DayOfWeek . ModifierIndex | 56 * Month . '/' . DayOfMonth | 57 * Month . '/' . DayOfWeek . ModifierIndex | 58 * DayOfMonth . ' ' . Month | 59 * DayOfMonth . '/' . Month | 60 * DayOfWeek . ModifierIndex . ' ' .Month | 61 * DayOfWeek . ModifierIndex . '/' .Month | 62 * DayOfWeek . ModifierIndex | 63 * SpecialDay . ModifierOffset 64 * 65 * Month ::= MonthName | MonthNumber | '*' 66 * MonthNumber ::= '0' ... '9' | '00' ... '09' | '10' ... '12' 67 * MonthName ::= MonthNameShort | MonthNameLong 68 * MonthNameLong ::= 'January' ... 'December' 69 * MonthNameShort ::= 'Jan' ... 'Dec' | 'Jan.' ... 'Dec.' 70 * 71 * DayOfWeek ::= DayOfWeekShort | DayOfWeekLong 72 * DayOfWeekShort ::= 'Mon' .. 'Sun' 73 * DayOfWeekLong ::= 'Monday' .. 'Sunday' 74 * DayOfMonth ::= '0' ... '9' | '00' ... '09' | '10' ... '29' | 75 * '30' ... '31' | '*' 76 * 77 * ModifierOffset ::= '' | '+' . ModifierNumber | '-' . ModifierNumber 78 * ModifierNumber ::= '0' ... '9' | '00' ... '99' | '000' ... '299' | 79 * '300' ... '359' | '360' ... '365' 80 * ModifierIndex ::= 'Second' | 'Third' | 'Fourth' | 'Fifth' | 81 * 'First' | 'Last' 82 * 83 * SpecialDay ::= 'Easter' | 'Pashka' | 'ChineseNewYear' 84 * 85 */ 86 static int 87 determinestyle(char *date, int *flags, 88 char *month, int *imonth, char *dayofmonth, int *idayofmonth, 89 char *dayofweek, int *idayofweek, char *modifieroffset, 90 char *modifierindex, char *specialday, char *year, int *iyear) 91 { 92 char *p, *p1, *p2, *py; 93 const char *dow, *pmonth; 94 char pold; 95 size_t len, offset; 96 97 *flags = F_NONE; 98 *month = '\0'; 99 *imonth = 0; 100 *year = '\0'; 101 *iyear = 0; 102 *dayofmonth = '\0'; 103 *idayofmonth = 0; 104 *dayofweek = '\0'; 105 *idayofweek = 0; 106 *modifieroffset = '\0'; 107 *modifierindex = '\0'; 108 *specialday = '\0'; 109 110 #define CHECKSPECIAL(s1, s2, lens2, type) \ 111 if (s2 != NULL && strncmp(s1, s2, lens2) == 0) { \ 112 *flags |= F_SPECIALDAY; \ 113 *flags |= type; \ 114 *flags |= F_VARIABLE; \ 115 if (strlen(s1) == lens2) { \ 116 strcpy(specialday, s1); \ 117 return (1); \ 118 } \ 119 strncpy(specialday, s1, lens2); \ 120 specialday[lens2] = '\0'; \ 121 strcpy(modifieroffset, s1 + lens2); \ 122 *flags |= F_MODIFIEROFFSET; \ 123 return (1); \ 124 } 125 126 if ((p = strchr(date, ' ')) == NULL) { 127 if ((p = strchr(date, '/')) == NULL) { 128 CHECKSPECIAL(date, STRING_CNY, strlen(STRING_CNY), 129 F_CNY); 130 CHECKSPECIAL(date, ncny.name, ncny.len, F_CNY); 131 CHECKSPECIAL(date, STRING_NEWMOON, 132 strlen(STRING_NEWMOON), F_NEWMOON); 133 CHECKSPECIAL(date, nnewmoon.name, nnewmoon.len, 134 F_NEWMOON); 135 CHECKSPECIAL(date, STRING_FULLMOON, 136 strlen(STRING_FULLMOON), F_FULLMOON); 137 CHECKSPECIAL(date, nfullmoon.name, nfullmoon.len, 138 F_FULLMOON); 139 CHECKSPECIAL(date, STRING_PASKHA, 140 strlen(STRING_PASKHA), F_PASKHA); 141 CHECKSPECIAL(date, npaskha.name, npaskha.len, F_PASKHA); 142 CHECKSPECIAL(date, STRING_EASTER, 143 strlen(STRING_EASTER), F_EASTER); 144 CHECKSPECIAL(date, neaster.name, neaster.len, F_EASTER); 145 CHECKSPECIAL(date, STRING_MAREQUINOX, 146 strlen(STRING_MAREQUINOX), F_MAREQUINOX); 147 CHECKSPECIAL(date, nmarequinox.name, nmarequinox.len, 148 F_SEPEQUINOX); 149 CHECKSPECIAL(date, STRING_SEPEQUINOX, 150 strlen(STRING_SEPEQUINOX), F_SEPEQUINOX); 151 CHECKSPECIAL(date, nsepequinox.name, nsepequinox.len, 152 F_SEPEQUINOX); 153 CHECKSPECIAL(date, STRING_JUNSOLSTICE, 154 strlen(STRING_JUNSOLSTICE), F_JUNSOLSTICE); 155 CHECKSPECIAL(date, njunsolstice.name, njunsolstice.len, 156 F_JUNSOLSTICE); 157 CHECKSPECIAL(date, STRING_DECSOLSTICE, 158 strlen(STRING_DECSOLSTICE), F_DECSOLSTICE); 159 CHECKSPECIAL(date, ndecsolstice.name, ndecsolstice.len, 160 F_DECSOLSTICE); 161 if (checkdayofweek(date, &len, &offset, &dow) != 0) { 162 *flags |= F_DAYOFWEEK; 163 *flags |= F_VARIABLE; 164 *idayofweek = offset; 165 if (strlen(date) == len) { 166 strcpy(dayofweek, date); 167 return (1); 168 } 169 strncpy(dayofweek, date, len); 170 dayofweek[len] = '\0'; 171 strcpy(modifierindex, date + len); 172 *flags |= F_MODIFIERINDEX; 173 return (1); 174 } 175 if (isonlydigits(date, 1)) { 176 /* Assume month number only */ 177 *flags |= F_MONTH; 178 *imonth = (int)strtol(date, (char **)NULL, 10); 179 strcpy(month, getmonthname(*imonth)); 180 return(1); 181 } 182 return (0); 183 } 184 } 185 186 /* 187 * AFTER this, leave by goto-ing to "allfine" or "fail" to restore the 188 * original data in `date'. 189 */ 190 pold = *p; 191 *p = 0; 192 p1 = date; 193 p2 = p + 1; 194 /* Now p2 points to the next field and p1 to the first field */ 195 196 if ((py = strchr(p2, '/')) != NULL) { 197 /* We have a year in the string. Now this is getting tricky */ 198 strcpy(year, p1); 199 *iyear = (int)strtol(year, NULL, 10); 200 p1 = p2; 201 p2 = py + 1; 202 *py = 0; 203 *flags |= F_YEAR; 204 } 205 206 /* 207 printf("p1: %s\n", p1); 208 printf("p2: %s\n", p2); 209 printf("year: %s\n", year); 210 */ 211 212 /* Check if there is a month-string in the date */ 213 if ((checkmonth(p1, &len, &offset, &pmonth) != 0) 214 || (checkmonth(p2, &len, &offset, &pmonth) != 0 && (p2 = p1))) { 215 /* p2 is the non-month part */ 216 *flags |= F_MONTH; 217 *imonth = offset; 218 219 strcpy(month, getmonthname(offset)); 220 if (isonlydigits(p2, 1)) { 221 strcpy(dayofmonth, p2); 222 *idayofmonth = (int)strtol(p2, (char **)NULL, 10); 223 *flags |= F_DAYOFMONTH; 224 goto allfine; 225 } 226 if (strcmp(p2, "*") == 0) { 227 *flags |= F_ALLDAY; 228 goto allfine; 229 } 230 231 if (checkdayofweek(p2, &len, &offset, &dow) != 0) { 232 *flags |= F_DAYOFWEEK; 233 *flags |= F_VARIABLE; 234 *idayofweek = offset; 235 strcpy(dayofweek, getdayofweekname(offset)); 236 if (strlen(p2) == len) 237 goto allfine; 238 strcpy(modifierindex, p2 + len); 239 *flags |= F_MODIFIERINDEX; 240 goto allfine; 241 } 242 243 goto fail; 244 } 245 246 /* Check if there is an every-day or every-month in the string */ 247 if ((strcmp(p1, "*") == 0 && isonlydigits(p2, 1)) 248 || (strcmp(p2, "*") == 0 && isonlydigits(p1, 1) && (p2 = p1))) { 249 int d; 250 251 *flags |= F_ALLMONTH; 252 *flags |= F_DAYOFMONTH; 253 d = (int)strtol(p2, (char **)NULL, 10); 254 *idayofmonth = d; 255 sprintf(dayofmonth, "%d", d); 256 goto allfine; 257 } 258 259 /* Month as a number, then a weekday */ 260 if (isonlydigits(p1, 1) 261 && checkdayofweek(p2, &len, &offset, &dow) != 0) { 262 int d; 263 264 *flags |= F_MONTH; 265 *flags |= F_DAYOFWEEK; 266 *flags |= F_VARIABLE; 267 268 *idayofweek = offset; 269 d = (int)strtol(p1, (char **)NULL, 10); 270 *imonth = d; 271 strcpy(month, getmonthname(d)); 272 273 strcpy(dayofweek, getdayofweekname(offset)); 274 if (strlen(p2) == len) 275 goto allfine; 276 strcpy(modifierindex, p2 + len); 277 *flags |= F_MODIFIERINDEX; 278 goto allfine; 279 } 280 281 /* If both the month and date are specified as numbers */ 282 if (isonlydigits(p1, 1) && isonlydigits(p2, 0)) { 283 /* Now who wants to be this ambigious? :-( */ 284 int m, d; 285 286 if (strchr(p2, '*') != NULL) 287 *flags |= F_VARIABLE; 288 289 m = (int)strtol(p1, (char **)NULL, 10); 290 d = (int)strtol(p2, (char **)NULL, 10); 291 292 *flags |= F_MONTH; 293 *flags |= F_DAYOFMONTH; 294 295 if (m > 12) { 296 *imonth = d; 297 *idayofmonth = m; 298 strcpy(month, getmonthname(d)); 299 sprintf(dayofmonth, "%d", m); 300 } else { 301 *imonth = m; 302 *idayofmonth = d; 303 strcpy(month, getmonthname(m)); 304 sprintf(dayofmonth, "%d", d); 305 } 306 goto allfine; 307 } 308 309 /* FALLTHROUGH */ 310 fail: 311 *p = pold; 312 return (0); 313 allfine: 314 *p = pold; 315 return (1); 316 317 } 318 319 static void 320 remember(int *rememberindex, int *y, int *m, int *d, char **ed, int yy, int mm, 321 int dd, char *extra) 322 { 323 static int warned = 0; 324 325 if (*rememberindex >= MAXCOUNT - 1) { 326 if (warned == 0) 327 warnx("Index > %d, ignored", MAXCOUNT); 328 warned++; 329 return; 330 } 331 y[*rememberindex] = yy; 332 m[*rememberindex] = mm; 333 d[*rememberindex] = dd; 334 if (extra != NULL) 335 strcpy(ed[*rememberindex], extra); 336 else 337 ed[*rememberindex][0] = '\0'; 338 *rememberindex += 1; 339 } 340 341 static void 342 debug_determinestyle(int dateonly, char *date, int flags, char *month, 343 int imonth, char *dayofmonth, int idayofmonth, char *dayofweek, 344 int idayofweek, char *modifieroffset, char *modifierindex, char *specialday, 345 char *year, int iyear) 346 { 347 348 if (dateonly != 0) { 349 printf("-------\ndate: |%s|\n", date); 350 if (dateonly == 1) 351 return; 352 } 353 printf("flags: %x - %s\n", flags, showflags(flags)); 354 if (modifieroffset[0] != '\0') 355 printf("modifieroffset: |%s|\n", modifieroffset); 356 if (modifierindex[0] != '\0') 357 printf("modifierindex: |%s|\n", modifierindex); 358 if (year[0] != '\0') 359 printf("year: |%s| (%d)\n", year, iyear); 360 if (month[0] != '\0') 361 printf("month: |%s| (%d)\n", month, imonth); 362 if (dayofmonth[0] != '\0') 363 printf("dayofmonth: |%s| (%d)\n", dayofmonth, idayofmonth); 364 if (dayofweek[0] != '\0') 365 printf("dayofweek: |%s| (%d)\n", dayofweek, idayofweek); 366 if (specialday[0] != '\0') 367 printf("specialday: |%s|\n", specialday); 368 } 369 370 struct yearinfo { 371 int year; 372 int ieaster, ipaskha, firstcnyday; 373 double ffullmoon[MAXMOONS], fnewmoon[MAXMOONS]; 374 double ffullmooncny[MAXMOONS], fnewmooncny[MAXMOONS]; 375 int ichinesemonths[MAXMOONS]; 376 double equinoxdays[2], solsticedays[2]; 377 int *mondays; 378 struct yearinfo *next; 379 }; 380 /* 381 * Possible date formats include any combination of: 382 * 3-charmonth (January, Jan, Jan) 383 * 3-charweekday (Friday, Monday, mon.) 384 * numeric month or day (1, 2, 04) 385 * 386 * Any character may separate them, or they may not be separated. Any line, 387 * following a line that is matched, that starts with "whitespace", is shown 388 * along with the matched line. 389 */ 390 int 391 parsedaymonth(char *date, int *yearp, int *monthp, int *dayp, int *flags, 392 char **edp) 393 { 394 char month[100], dayofmonth[100], dayofweek[100], modifieroffset[100]; 395 char syear[100]; 396 char modifierindex[100], specialday[100]; 397 int idayofweek = -1, imonth = -1, idayofmonth = -1, iyear = -1; 398 int year, remindex; 399 int d, m, dow, rm, rd, offset; 400 char *ed; 401 int retvalsign = 1; 402 403 static struct yearinfo *years, *yearinfo; 404 405 /* 406 * CONVENTION 407 * 408 * Month: 1-12 409 * Monthname: Jan .. Dec 410 * Day: 1-31 411 * Weekday: Mon .. Sun 412 * 413 */ 414 415 *flags = 0; 416 417 if (debug) 418 debug_determinestyle(1, date, *flags, month, imonth, 419 dayofmonth, idayofmonth, dayofweek, idayofweek, 420 modifieroffset, modifierindex, specialday, syear, iyear); 421 if (determinestyle(date, flags, month, &imonth, dayofmonth, 422 &idayofmonth, dayofweek, &idayofweek, modifieroffset, 423 modifierindex, specialday, syear, &iyear) == 0) { 424 if (debug) 425 printf("Failed!\n"); 426 return (0); 427 } 428 429 if (debug) 430 debug_determinestyle(0, date, *flags, month, imonth, 431 dayofmonth, idayofmonth, dayofweek, idayofweek, 432 modifieroffset, modifierindex, specialday, syear, iyear); 433 434 remindex = 0; 435 for (year = year1; year <= year2; year++) { 436 437 int lflags = *flags; 438 /* If the year is specified, only do it if it is this year! */ 439 if ((lflags & F_YEAR) != 0) 440 if (iyear != year) 441 continue; 442 lflags &= ~F_YEAR; 443 444 /* Get important dates for this year */ 445 yearinfo = years; 446 while (yearinfo != NULL) { 447 if (yearinfo->year == year) 448 break; 449 yearinfo = yearinfo -> next; 450 } 451 if (yearinfo == NULL) { 452 yearinfo = (struct yearinfo *)calloc(1, 453 sizeof(struct yearinfo)); 454 if (yearinfo == NULL) 455 errx(1, "Unable to allocate more years"); 456 yearinfo->year = year; 457 yearinfo->next = years; 458 years = yearinfo; 459 460 yearinfo->mondays = mondaytab[isleap(year)]; 461 yearinfo->ieaster = easter(year); 462 fpom(year, UTCOffset, yearinfo->ffullmoon, 463 yearinfo->fnewmoon); 464 fpom(year, UTCOFFSET_CNY, yearinfo->ffullmooncny, 465 yearinfo->fnewmooncny); 466 fequinoxsolstice(year, UTCOffset, 467 yearinfo->equinoxdays, yearinfo->solsticedays); 468 469 /* 470 * CNY: Match day with sun longitude at 330` with new 471 * moon 472 */ 473 yearinfo->firstcnyday = calculatesunlongitude30(year, 474 UTCOFFSET_CNY, yearinfo->ichinesemonths); 475 for (m = 0; yearinfo->fnewmooncny[m] >= 0; m++) { 476 if (yearinfo->fnewmooncny[m] > 477 yearinfo->firstcnyday) { 478 yearinfo->firstcnyday = 479 floor(yearinfo->fnewmooncny[m - 1]); 480 break; 481 } 482 } 483 } 484 485 /* Same day every year */ 486 if (lflags == (F_MONTH | F_DAYOFMONTH)) { 487 if (!remember_ymd(year, imonth, idayofmonth)) 488 continue; 489 remember(&remindex, yearp, monthp, dayp, edp, 490 year, imonth, idayofmonth, NULL); 491 continue; 492 } 493 494 /* XXX Same day every year, but variable */ 495 if (lflags == (F_MONTH | F_DAYOFMONTH | F_VARIABLE)) { 496 if (!remember_ymd(year, imonth, idayofmonth)) 497 continue; 498 remember(&remindex, yearp, monthp, dayp, edp, 499 year, imonth, idayofmonth, NULL); 500 continue; 501 } 502 503 /* Same day every month */ 504 if (lflags == (F_ALLMONTH | F_DAYOFMONTH)) { 505 for (m = 1; m <= 12; m++) { 506 if (!remember_ymd(year, m, idayofmonth)) 507 continue; 508 remember(&remindex, yearp, monthp, dayp, edp, 509 year, m, idayofmonth, NULL); 510 } 511 continue; 512 } 513 514 /* Every day of a month */ 515 if (lflags == (F_ALLDAY | F_MONTH)) { 516 for (d = 1; d <= yearinfo->mondays[imonth]; d++) { 517 if (!remember_ymd(year, imonth, d)) 518 continue; 519 remember(&remindex, yearp, monthp, dayp, edp, 520 year, imonth, d, NULL); 521 } 522 continue; 523 } 524 525 /* One day of every month */ 526 if (lflags == (F_ALLMONTH | F_DAYOFWEEK)) { 527 for (m = 1; m <= 12; m++) { 528 if (!remember_ymd(year, m, idayofmonth)) 529 continue; 530 remember(&remindex, yearp, monthp, dayp, edp, 531 year, m, idayofmonth, NULL); 532 } 533 continue; 534 } 535 536 /* Every dayofweek of the year */ 537 if (lflags == (F_DAYOFWEEK | F_VARIABLE)) { 538 dow = first_dayofweek_of_year(year); 539 d = (idayofweek - dow + 8) % 7; 540 while (d <= 366) { 541 if (remember_yd(year, d, &rm, &rd)) 542 remember(&remindex, 543 yearp, monthp, dayp, edp, 544 year, rm, rd, NULL); 545 d += 7; 546 } 547 continue; 548 } 549 550 /* A certain dayofweek of a month */ 551 if (lflags == 552 (F_MONTH | F_DAYOFWEEK | F_MODIFIERINDEX | F_VARIABLE)) { 553 offset = indextooffset(modifierindex); 554 dow = first_dayofweek_of_month(year, imonth); 555 d = (idayofweek - dow + 8) % 7; 556 557 if (offset > 0) { 558 while (d <= yearinfo->mondays[imonth]) { 559 if (--offset == 0 560 && remember_ymd(year, imonth, d)) { 561 remember(&remindex, 562 yearp, monthp, dayp, edp, 563 year, imonth, d, NULL); 564 continue; 565 } 566 d += 7; 567 } 568 continue; 569 } 570 if (offset < 0) { 571 while (d <= yearinfo->mondays[imonth]) 572 d += 7; 573 while (offset != 0) { 574 offset++; 575 d -= 7; 576 } 577 if (remember_ymd(year, imonth, d)) 578 remember(&remindex, 579 yearp, monthp, dayp, edp, 580 year, imonth, d, NULL); 581 continue; 582 } 583 continue; 584 } 585 586 /* Every dayofweek of the month */ 587 if (lflags == (F_DAYOFWEEK | F_MONTH | F_VARIABLE)) { 588 dow = first_dayofweek_of_month(year, imonth); 589 d = (idayofweek - dow + 8) % 7; 590 while (d <= yearinfo->mondays[imonth]) { 591 if (remember_ymd(year, imonth, d)) 592 remember(&remindex, 593 yearp, monthp, dayp, edp, 594 year, imonth, d, NULL); 595 d += 7; 596 } 597 continue; 598 } 599 600 /* Easter */ 601 if ((lflags & ~F_MODIFIEROFFSET) == 602 (F_SPECIALDAY | F_VARIABLE | F_EASTER)) { 603 offset = 0; 604 if ((lflags & F_MODIFIEROFFSET) != 0) 605 offset = parseoffset(modifieroffset); 606 if (remember_yd(year, yearinfo->ieaster + offset, 607 &rm, &rd)) 608 remember(&remindex, yearp, monthp, dayp, edp, 609 year, rm, rd, NULL); 610 continue; 611 } 612 613 /* Paskha */ 614 if ((lflags & ~F_MODIFIEROFFSET) == 615 (F_SPECIALDAY | F_VARIABLE | F_PASKHA)) { 616 offset = 0; 617 if ((lflags & F_MODIFIEROFFSET) != 0) 618 offset = parseoffset(modifieroffset); 619 if (remember_yd(year, yearinfo->ipaskha + offset, 620 &rm, &rd)) 621 remember(&remindex, yearp, monthp, dayp, edp, 622 year, rm, rd, NULL); 623 continue; 624 } 625 626 /* Chinese New Year */ 627 if ((lflags & ~F_MODIFIEROFFSET) == 628 (F_SPECIALDAY | F_VARIABLE | F_CNY)) { 629 offset = 0; 630 if ((lflags & F_MODIFIEROFFSET) != 0) 631 offset = parseoffset(modifieroffset); 632 if (remember_yd(year, yearinfo->firstcnyday + offset, 633 &rm, &rd)) 634 remember(&remindex, yearp, monthp, dayp, edp, 635 year, rm, rd, NULL); 636 continue; 637 } 638 639 /* FullMoon */ 640 if ((lflags & ~F_MODIFIEROFFSET) == 641 (F_SPECIALDAY | F_VARIABLE | F_FULLMOON)) { 642 int i; 643 644 offset = 0; 645 if ((lflags & F_MODIFIEROFFSET) != 0) 646 offset = parseoffset(modifieroffset); 647 for (i = 0; yearinfo->ffullmoon[i] > 0; i++) { 648 if (remember_yd(year, 649 floor(yearinfo->ffullmoon[i]) + offset, 650 &rm, &rd)) { 651 ed = floattotime( 652 yearinfo->ffullmoon[i]); 653 remember(&remindex, 654 yearp, monthp, dayp, edp, 655 year, rm, rd, ed); 656 } 657 } 658 continue; 659 } 660 661 /* NewMoon */ 662 if ((lflags & ~F_MODIFIEROFFSET) == 663 (F_SPECIALDAY | F_VARIABLE | F_NEWMOON)) { 664 int i; 665 666 offset = 0; 667 if ((lflags & F_MODIFIEROFFSET) != 0) 668 offset = parseoffset(modifieroffset); 669 for (i = 0; yearinfo->ffullmoon[i] > 0; i++) { 670 if (remember_yd(year, 671 floor(yearinfo->fnewmoon[i]) + offset, 672 &rm, &rd)) { 673 ed = floattotime(yearinfo->fnewmoon[i]); 674 remember(&remindex, 675 yearp, monthp, dayp, edp, 676 year, rm, rd, ed); 677 } 678 } 679 continue; 680 } 681 682 /* (Mar|Sep)Equinox */ 683 if ((lflags & ~F_MODIFIEROFFSET) == 684 (F_SPECIALDAY | F_VARIABLE | F_MAREQUINOX)) { 685 offset = 0; 686 if ((lflags & F_MODIFIEROFFSET) != 0) 687 offset = parseoffset(modifieroffset); 688 if (remember_yd(year, yearinfo->equinoxdays[0] + offset, 689 &rm, &rd)) { 690 ed = floattotime(yearinfo->equinoxdays[0]); 691 remember(&remindex, yearp, monthp, dayp, edp, 692 year, rm, rd, ed); 693 } 694 continue; 695 } 696 if ((lflags & ~F_MODIFIEROFFSET) == 697 (F_SPECIALDAY | F_VARIABLE | F_SEPEQUINOX)) { 698 offset = 0; 699 if ((lflags & F_MODIFIEROFFSET) != 0) 700 offset = parseoffset(modifieroffset); 701 if (remember_yd(year, yearinfo->equinoxdays[1] + offset, 702 &rm, &rd)) { 703 ed = floattotime(yearinfo->equinoxdays[1]); 704 remember(&remindex, yearp, monthp, dayp, edp, 705 year, rm, rd, ed); 706 } 707 continue; 708 } 709 710 /* (Jun|Dec)Solstice */ 711 if ((lflags & ~F_MODIFIEROFFSET) == 712 (F_SPECIALDAY | F_VARIABLE | F_JUNSOLSTICE)) { 713 offset = 0; 714 if ((lflags & F_MODIFIEROFFSET) != 0) 715 offset = parseoffset(modifieroffset); 716 if (remember_yd(year, 717 yearinfo->solsticedays[0] + offset, &rm, &rd)) { 718 ed = floattotime(yearinfo->solsticedays[0]); 719 remember(&remindex, yearp, monthp, dayp, edp, 720 year, rm, rd, ed); 721 } 722 continue; 723 } 724 if ((lflags & ~F_MODIFIEROFFSET) == 725 (F_SPECIALDAY | F_VARIABLE | F_DECSOLSTICE)) { 726 offset = 0; 727 if ((lflags & F_MODIFIEROFFSET) != 0) 728 offset = parseoffset(modifieroffset); 729 if (remember_yd(year, 730 yearinfo->solsticedays[1] + offset, &rm, &rd)) { 731 ed = floattotime(yearinfo->solsticedays[1]); 732 remember(&remindex, yearp, monthp, dayp, edp, 733 year, rm, rd, ed); 734 } 735 continue; 736 } 737 738 printf("Unprocessed:\n"); 739 debug_determinestyle(2, date, lflags, month, imonth, 740 dayofmonth, idayofmonth, dayofweek, idayofweek, 741 modifieroffset, modifierindex, specialday, syear, iyear); 742 retvalsign = -1; 743 } 744 745 if (retvalsign == -1) 746 return (-remindex - 1); 747 else 748 return (remindex); 749 } 750 751 static char * 752 showflags(int flags) 753 { 754 static char s[1000]; 755 s[0] = '\0'; 756 757 if ((flags & F_YEAR) != 0) 758 strcat(s, "year "); 759 if ((flags & F_MONTH) != 0) 760 strcat(s, "month "); 761 if ((flags & F_DAYOFWEEK) != 0) 762 strcat(s, "dayofweek "); 763 if ((flags & F_DAYOFMONTH) != 0) 764 strcat(s, "dayofmonth "); 765 if ((flags & F_MODIFIERINDEX) != 0) 766 strcat(s, "modifierindex "); 767 if ((flags & F_MODIFIEROFFSET) != 0) 768 strcat(s, "modifieroffset "); 769 if ((flags & F_SPECIALDAY) != 0) 770 strcat(s, "specialday "); 771 if ((flags & F_ALLMONTH) != 0) 772 strcat(s, "allmonth "); 773 if ((flags & F_ALLDAY) != 0) 774 strcat(s, "allday "); 775 if ((flags & F_VARIABLE) != 0) 776 strcat(s, "variable "); 777 if ((flags & F_CNY) != 0) 778 strcat(s, "chinesenewyear "); 779 if ((flags & F_PASKHA) != 0) 780 strcat(s, "paskha "); 781 if ((flags & F_EASTER) != 0) 782 strcat(s, "easter "); 783 if ((flags & F_FULLMOON) != 0) 784 strcat(s, "fullmoon "); 785 if ((flags & F_NEWMOON) != 0) 786 strcat(s, "newmoon "); 787 if ((flags & F_MAREQUINOX) != 0) 788 strcat(s, "marequinox "); 789 if ((flags & F_SEPEQUINOX) != 0) 790 strcat(s, "sepequinox "); 791 if ((flags & F_JUNSOLSTICE) != 0) 792 strcat(s, "junsolstice "); 793 if ((flags & F_DECSOLSTICE) != 0) 794 strcat(s, "decsolstice "); 795 796 return s; 797 } 798 799 static const char * 800 getmonthname(int i) 801 { 802 if (nmonths[i - 1].len != 0 && nmonths[i - 1].name != NULL) 803 return (nmonths[i - 1].name); 804 return (months[i - 1]); 805 } 806 807 static int 808 checkmonth(char *s, size_t *len, size_t *offset, const char **month) 809 { 810 struct fixs *n; 811 int i; 812 813 for (i = 0; fnmonths[i].name != NULL; i++) { 814 n = fnmonths + i; 815 if (strncasecmp(s, n->name, n->len) == 0) { 816 *len = n->len; 817 *month = n->name; 818 *offset = i + 1; 819 return (1); 820 } 821 } 822 for (i = 0; nmonths[i].name != NULL; i++) { 823 n = nmonths + i; 824 if (strncasecmp(s, n->name, n->len) == 0) { 825 *len = n->len; 826 *month = n->name; 827 *offset = i + 1; 828 return (1); 829 } 830 } 831 for (i = 0; fmonths[i] != NULL; i++) { 832 *len = strlen(fmonths[i]); 833 if (strncasecmp(s, fmonths[i], *len) == 0) { 834 *month = fmonths[i]; 835 *offset = i + 1; 836 return (1); 837 } 838 } 839 for (i = 0; months[i] != NULL; i++) { 840 if (strncasecmp(s, months[i], 3) == 0) { 841 *len = 3; 842 *month = months[i]; 843 *offset = i + 1; 844 return (1); 845 } 846 } 847 return (0); 848 } 849 850 static const char * 851 getdayofweekname(int i) 852 { 853 if (ndays[i].len != 0 && ndays[i].name != NULL) 854 return (ndays[i].name); 855 return (days[i]); 856 } 857 858 static int 859 checkdayofweek(char *s, size_t *len, size_t *offset, const char **dow) 860 { 861 struct fixs *n; 862 int i; 863 864 for (i = 0; fndays[i].name != NULL; i++) { 865 n = fndays + i; 866 if (strncasecmp(s, n->name, n->len) == 0) { 867 *len = n->len; 868 *dow = n->name; 869 *offset = i; 870 return (1); 871 } 872 } 873 for (i = 0; ndays[i].name != NULL; i++) { 874 n = ndays + i; 875 if (strncasecmp(s, n->name, n->len) == 0) { 876 *len = n->len; 877 *dow = n->name; 878 *offset = i; 879 return (1); 880 } 881 } 882 for (i = 0; fdays[i] != NULL; i++) { 883 *len = strlen(fdays[i]); 884 if (strncasecmp(s, fdays[i], *len) == 0) { 885 *dow = fdays[i]; 886 *offset = i; 887 return (1); 888 } 889 } 890 for (i = 0; days[i] != NULL; i++) { 891 if (strncasecmp(s, days[i], 3) == 0) { 892 *len = 3; 893 *dow = days[i]; 894 *offset = i; 895 return (1); 896 } 897 } 898 return (0); 899 } 900 901 static int 902 isonlydigits(char *s, int nostar) 903 { 904 int i; 905 for (i = 0; s[i] != '\0'; i++) { 906 if (nostar == 0 && s[i] == '*' && s[i + 1] == '\0') 907 return 1; 908 if (!isdigit((unsigned char)s[i])) 909 return (0); 910 } 911 return (1); 912 } 913 914 static int 915 indextooffset(char *s) 916 { 917 int i; 918 struct fixs *n; 919 920 for (i = 0; i < 6; i++) { 921 if (strcasecmp(s, sequences[i]) == 0) { 922 if (i == 5) 923 return (-1); 924 return (i + 1); 925 } 926 } 927 for (i = 0; i < 6; i++) { 928 n = nsequences + i; 929 if (n->len == 0) 930 continue; 931 if (strncasecmp(s, n->name, n->len) == 0) { 932 if (i == 5) 933 return (-1); 934 return (i + 1); 935 } 936 } 937 return (0); 938 } 939 940 static int 941 parseoffset(char *s) 942 { 943 944 return strtol(s, NULL, 10); 945 } 946 947 static char * 948 floattotime(double f) 949 { 950 static char buf[100]; 951 int hh, mm, ss, i; 952 953 f -= floor(f); 954 i = f * SECSPERDAY; 955 956 hh = i / SECSPERHOUR; 957 i %= SECSPERHOUR; 958 mm = i / SECSPERMINUTE; 959 i %= SECSPERMINUTE; 960 ss = i; 961 962 sprintf(buf, "%02d:%02d:%02d", hh, mm, ss); 963 return (buf); 964 } 965 966 static char * 967 floattoday(int year, double f) 968 { 969 static char buf[100]; 970 int i, m, d, hh, mm, ss; 971 int *cumdays = cumdaytab[isleap(year)]; 972 973 for (i = 0; 1 + cumdays[i] < f; i++) 974 ; 975 m = --i; 976 d = floor(f - 1 - cumdays[i]); 977 f -= floor(f); 978 i = f * SECSPERDAY; 979 980 hh = i / SECSPERHOUR; 981 i %= SECSPERHOUR; 982 mm = i / SECSPERMINUTE; 983 i %= SECSPERMINUTE; 984 ss = i; 985 986 sprintf(buf, "%02d-%02d %02d:%02d:%02d", m, d, hh, mm, ss); 987 return (buf); 988 } 989 990 void 991 dodebug(char *what) 992 { 993 int year; 994 995 printf("UTCOffset: %g\n", UTCOffset); 996 printf("eastlongitude: %d\n", EastLongitude); 997 998 if (strcmp(what, "moon") == 0) { 999 double ffullmoon[MAXMOONS], fnewmoon[MAXMOONS]; 1000 int i; 1001 1002 for (year = year1; year <= year2; year++) { 1003 fpom(year, UTCOffset, ffullmoon, fnewmoon); 1004 printf("Full moon %d:\t", year); 1005 for (i = 0; ffullmoon[i] >= 0; i++) { 1006 printf("%g (%s) ", ffullmoon[i], 1007 floattoday(year, ffullmoon[i])); 1008 } 1009 printf("\nNew moon %d:\t", year); 1010 for (i = 0; fnewmoon[i] >= 0; i++) { 1011 printf("%g (%s) ", fnewmoon[i], 1012 floattoday(year, fnewmoon[i])); 1013 } 1014 printf("\n"); 1015 1016 } 1017 1018 return; 1019 } 1020 1021 if (strcmp(what, "sun") == 0) { 1022 double equinoxdays[2], solsticedays[2]; 1023 for (year = year1; year <= year2; year++) { 1024 printf("Sun in %d:\n", year); 1025 fequinoxsolstice(year, UTCOffset, equinoxdays, 1026 solsticedays); 1027 printf("e[0] - %g (%s)\n", 1028 equinoxdays[0], 1029 floattoday(year, equinoxdays[0])); 1030 printf("e[1] - %g (%s)\n", 1031 equinoxdays[1], 1032 floattoday(year, equinoxdays[1])); 1033 printf("s[0] - %g (%s)\n", 1034 solsticedays[0], 1035 floattoday(year, solsticedays[0])); 1036 printf("s[1] - %g (%s)\n", 1037 solsticedays[1], 1038 floattoday(year, solsticedays[1])); 1039 } 1040 return; 1041 } 1042 } 1043