]>
git.cameronkatri.com Git - apple_cmds.git/blob - misc_cmds/calendar/day.c
2 * Copyright (c) 1989, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD: src/usr.bin/calendar/day.c,v 1.27 2007/06/09 05:54:13 grog Exp $");
37 #include <sys/types.h>
47 #include "pathnames.h"
51 static const struct tm tm0
;
56 /* 1-based month, 0-based days, cumulative */
58 { 0, -1, 30, 58, 89, 119, 150, 180, 211, 242, 272, 303, 333, 364 },
59 { 0, -1, 30, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
62 static char const *days
[] = {
63 "sun", "mon", "tue", "wed", "thu", "fri", "sat", NULL
,
66 static const char *months
[] = {
67 "jan", "feb", "mar", "apr", "may", "jun",
68 "jul", "aug", "sep", "oct", "nov", "dec", NULL
,
71 static struct fixs fndays
[8]; /* full national days names */
72 static struct fixs ndays
[8]; /* short national days names */
74 static struct fixs fnmonths
[13]; /* full national months names */
75 static struct fixs nmonths
[13]; /* short national month names */
85 for (i
= 0; i
< 7; i
++) {
87 strftime(buf
, sizeof(buf
), "%a", &tm
);
89 l
> 0 && isspace((unsigned char)buf
[l
- 1]);
93 if (ndays
[i
].name
!= NULL
)
95 if ((ndays
[i
].name
= strdup(buf
)) == NULL
)
96 errx(1, "cannot allocate memory");
97 ndays
[i
].len
= strlen(buf
);
99 strftime(buf
, sizeof(buf
), "%A", &tm
);
100 for (l
= strlen(buf
);
101 l
> 0 && isspace((unsigned char)buf
[l
- 1]);
105 if (fndays
[i
].name
!= NULL
)
106 free(fndays
[i
].name
);
107 if ((fndays
[i
].name
= strdup(buf
)) == NULL
)
108 errx(1, "cannot allocate memory");
109 fndays
[i
].len
= strlen(buf
);
112 for (i
= 0; i
< 12; i
++) {
114 strftime(buf
, sizeof(buf
), "%b", &tm
);
115 for (l
= strlen(buf
);
116 l
> 0 && isspace((unsigned char)buf
[l
- 1]);
120 if (nmonths
[i
].name
!= NULL
)
121 free(nmonths
[i
].name
);
122 if ((nmonths
[i
].name
= strdup(buf
)) == NULL
)
123 errx(1, "cannot allocate memory");
124 nmonths
[i
].len
= strlen(buf
);
126 strftime(buf
, sizeof(buf
), "%B", &tm
);
127 for (l
= strlen(buf
);
128 l
> 0 && isspace((unsigned char)buf
[l
- 1]);
132 if (fnmonths
[i
].name
!= NULL
)
133 free(fnmonths
[i
].name
);
134 if ((fnmonths
[i
].name
= strdup(buf
)) == NULL
)
135 errx(1, "cannot allocate memory");
136 fnmonths
[i
].len
= strlen(buf
);
145 tp
= localtime(&now
);
146 if ( isleap(tp
->tm_year
+ 1900) ) {
153 /* Friday displays Monday's events */
154 /* -A n ignores weekends */
155 if (f_dayAfter
!= 0 && Friday
!= -1) {
156 int weeks
= f_dayAfter
/ 5;
157 int days
= f_dayAfter
% 5;
158 f_dayAfter
+= 2 * weeks
;
160 (tp
->tm_wday
<= Friday
) &&
161 (tp
->tm_wday
+days
> Friday
)) {
165 header
[5].iov_base
= dayname
;
168 lbufp
= setlocale(LC_TIME
, NULL
);
169 if (lbufp
!= NULL
&& (oldl
= strdup(lbufp
)) == NULL
)
170 errx(1, "cannot allocate memory");
171 (void) setlocale(LC_TIME
, "C");
172 header
[5].iov_len
= strftime(dayname
, sizeof(dayname
), "%A", tp
);
173 (void) setlocale(LC_TIME
, (oldl
!= NULL
? oldl
: ""));
180 /* convert Day[/Month][/Year] into unix time (since 1970)
181 * Day: two digits, Month: two digits, Year: digits
194 tm
.tm_mday
= tp
->tm_mday
;
195 tm
.tm_mon
= tp
->tm_mon
;
196 tm
.tm_year
= tp
->tm_year
;
198 switch (sscanf(dp
, "%d.%d.%d", &d
, &m
, &y
)) {
212 fprintf(stderr
, "Mktime: %d %d %s\n", (int)mktime(&tm
), (int)t
,
219 * Possible date formats include any combination of:
220 * 3-charmonth (January, Jan, Jan)
221 * 3-charweekday (Friday, Monday, mon.)
222 * numeric month or day (1, 2, 04)
224 * Any character may separate them, or they may not be separated. Any line,
225 * following a line that is matched, that starts with "whitespace", is shown
226 * along with the matched line.
229 isnow(char *endp
, int *monthp
, int *dayp
, int *varp
)
231 int day
, flags
, month
= 0, v1
, v2
;
237 * Monthname: Jan .. Dec
245 /* read first field */
246 /* didn't recognize anything, skip it */
247 if (!(v1
= getfield(endp
, &endp
, &flags
)))
250 /* Easter or Easter depending days */
251 if (flags
& F_EASTER
)
252 day
= v1
- 1; /* days since January 1 [0-365] */
255 * 1. {Weekday,Day} XYZ ...
259 else if (flags
& F_ISDAY
|| v1
> 12) {
261 /* found a day; day: 1-31 or weekday: 1-7 */
264 /* {Day,Weekday} {Month,Monthname} ... */
265 /* if no recognizable month, assume just a day alone
266 * in other words, find month or use current month */
267 if (!(month
= getfield(endp
, &endp
, &flags
)))
268 month
= tp
->tm_mon
+ 1;
271 /* 2. {Monthname} XYZ ... */
272 else if (flags
& F_ISMONTH
) {
275 /* Monthname {day,weekday} */
276 /* if no recognizable day, assume the first day in month */
277 if (!(day
= getfield(endp
, &endp
, &flags
)))
283 v2
= getfield(endp
, &endp
, &flags
);
286 * {Day} {Monthname} ...
289 if (flags
& F_ISMONTH
) {
295 /* {Month} {Weekday,Day} ... */
297 /* F_ISDAY set, v2 > 12, or no way to tell */
299 /* if no recognizable day, assume the first */
305 /* convert Weekday into *next* Day,
306 * e.g.: 'Sunday' -> 22
309 if (flags
& F_ISDAY
) {
311 fprintf(stderr
, "\nday: %d %s month %d\n", day
, endp
, month
);
315 /* variable weekday, SundayLast, MondayFirst ... */
316 if (day
< 0 || day
>= 10) {
318 /* negative offset; last, -4 .. -1 */
320 v1
= day
/10 - 1; /* offset -4 ... -1 */
321 day
= 10 + (day
% 10); /* day 1 ... 7 */
324 v2
= tp
->tm_mday
+ (((day
- 1) - tp
->tm_wday
+ 7) % 7);
326 /* (month length - day) / 7 + 1 */
327 if (cumdays
[month
+1] - cumdays
[month
] >= v2
328 && ((int)((cumdays
[month
+1] -
329 cumdays
[month
] - v2
) / 7) + 1) == -v1
)
333 /* set to yesterday */
335 day
= tp
->tm_mday
- 1;
341 /* first, second ... +1 ... +5 */
343 v1
= day
/10; /* offset: +1 (first Sunday) ... */
347 v2
= tp
->tm_mday
+ (((day
- 1) - tp
->tm_wday
+ 7) % 7);
349 /* Hurrah! matched */
350 if ( ((v2
- 1 + 7) / 7) == v1
)
353 /* set to yesterday */
355 day
= tp
->tm_mday
- 1;
364 day
= tp
->tm_mday
+ (((day
- 1) - tp
->tm_wday
+ 7) % 7);
369 if (!(flags
& F_EASTER
)) {
370 if (day
+ cumdays
[month
] > cumdays
[month
+ 1]) { /* off end of month */
371 day
-= (cumdays
[month
+ 1] - cumdays
[month
]); /* adjust */
372 if (++month
> 12) /* next year */
377 day
= cumdays
[month
] + day
;
380 for (v1
= 0; day
> cumdays
[v1
]; v1
++)
383 *dayp
= day
- cumdays
[v1
- 1];
388 fprintf(stderr
, "day2: day %d(%d-%d) yday %d\n", *dayp
, day
,
389 cumdays
[month
], tp
->tm_yday
);
392 /* When days before or days after is specified */
393 /* no year rollover */
394 if (day
>= tp
->tm_yday
- f_dayBefore
&&
395 day
<= tp
->tm_yday
+ f_dayAfter
)
399 if (tp
->tm_yday
+ f_dayAfter
>= yrdays
) {
400 int end
= tp
->tm_yday
+ f_dayAfter
- yrdays
;
406 if (tp
->tm_yday
- f_dayBefore
< 0) {
407 int before
= yrdays
+ (tp
->tm_yday
- f_dayBefore
);
422 for (n
= fnmonths
; n
->name
; ++n
)
423 if (!strncasecmp(s
, n
->name
, n
->len
))
424 return ((n
- fnmonths
) + 1);
425 for (n
= nmonths
; n
->name
; ++n
)
426 if (!strncasecmp(s
, n
->name
, n
->len
))
427 return ((n
- nmonths
) + 1);
428 for (p
= months
; *p
; ++p
)
429 if (!strncasecmp(s
, *p
, 3))
430 return ((p
- months
) + 1);
441 for (n
= fndays
; n
->name
; ++n
)
442 if (!strncasecmp(s
, n
->name
, n
->len
))
443 return ((n
- fndays
) + 1);
444 for (n
= ndays
; n
->name
; ++n
)
445 if (!strncasecmp(s
, n
->name
, n
->len
))
446 return ((n
- ndays
) + 1);
447 for (p
= days
; *p
; ++p
)
448 if (!strncasecmp(s
, *p
, 3))
449 return ((p
- days
) + 1);
453 /* return offset for variable weekdays
454 * -1 -> last weekday in month
455 * +1 -> first weekday in month
467 /* Sun+1 or Wednesday-2
470 /* fprintf(stderr, "x: %s %s %d\n", s, s + offs - 2, offs); */
471 switch(*(s
+ offs
- 2)) {
473 return(-(atoi(s
+ offs
- 1)));
475 return(atoi(s
+ offs
- 1));
480 * some aliases: last, first, second, third, fourth
484 if (offs
> 4 && !strcasecmp(s
+ offs
- 4, "last"))
486 else if (offs
> 5 && !strcasecmp(s
+ offs
- 5, "first"))
488 else if (offs
> 6 && !strcasecmp(s
+ offs
- 6, "second"))
490 else if (offs
> 5 && !strcasecmp(s
+ offs
- 5, "third"))
492 else if (offs
> 6 && !strcasecmp(s
+ offs
- 6, "fourth"))
496 /* no offset detected */