]> git.pond.sub.org Git - empserver/blob - src/lib/common/rdsched.c
Update copyright notice
[empserver] / src / lib / common / rdsched.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2009, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  rdsched.c: Read update schedule
29  *
30  *  Known contributors to this file:
31  *     Markus Armbruster, 2007-2008
32  */
33
34 #define _XOPEN_SOURCE 500
35
36 #include <config.h>
37
38 #include <ctype.h>
39 #include <errno.h>
40 #include <limits.h>
41 #include <stdio.h>
42 #include <string.h>
43 #include <time.h>
44 #include "prototypes.h"
45
46 static int parse_schedule_line(char *, time_t[], int, time_t, time_t *,
47                                char *, int);
48 static int time_ok(time_t, char *, int);
49 static char *parse_time(time_t *, char *, time_t *);
50 static char *parse_every(time_t *, char *);
51 static char *parse_until(time_t *, char *, time_t *);
52 static char *parse_skip(time_t *, char *, time_t *);
53 static int insert_update(time_t, time_t[], int, time_t);
54 static int delete_update(time_t, time_t[], int);
55
56 /*
57  * Read update schedule from file FNAME.
58  * Put the first N-1 updates after T0 into SCHED[] in ascending order,
59  * terminated with a zero.
60  * Use ANCHOR as initial anchor for anchor-relative times.
61  * Return 0 on success, -1 on failure.
62  */
63 int
64 read_schedule(char *fname, time_t sched[], int n, time_t t0, time_t anchor)
65 {
66     FILE *fp;
67     int lno = 0;
68     char buf[1024];
69     char *endp;
70
71     if (fname) {
72         fp = fopen(fname, "r");
73         if (!fp) {
74             logerror("Can't open %s for reading (%s)\n",
75                      fname, strerror(errno));
76             return -1;
77         }
78     } else {
79         fp = stdin;
80         fname = "<stdin>";
81     }
82
83     sched[0] = 0;
84     while (fgets(buf, sizeof(buf), fp) != NULL) {
85         ++lno;
86         endp = strchr(buf, '#');
87         if (endp)
88             *endp = 0;
89         if (parse_schedule_line(buf, sched, n, t0, &anchor, fname, lno))
90             return -1;
91     }
92
93     fclose(fp);
94     return 0;
95 }
96
97 /*
98  * Parse an update schedule directive from LINE.
99  * Update SCHED[] and ANCHOR accordingly.
100  * SCHED[] holds the first N-1 updates after T0 in ascending order.
101  * FNAME and LNO file name and line number for reporting errors.
102  */
103 static int
104 parse_schedule_line(char *line, time_t sched[], int n,
105                     time_t t0, time_t *anchor,
106                     char *fname, int lno)
107 {
108     char *endp, *p;
109     int bol;
110     time_t t, delta, u;
111
112     if ((endp = parse_time(&t, line, anchor))) {
113         if (!time_ok(t, fname, lno))
114             return -1;
115         *anchor = t;
116         insert_update(t, sched, n, t0);
117     } else if ((endp = parse_every(&delta, line))) {
118         if ((p = parse_until(&u, endp, anchor))) {
119             endp = p;
120             if (!time_ok(u, fname, lno))
121                 return -1;
122         } else
123             u = (time_t)-1;
124         t = *anchor;
125         do {
126             t += delta;
127         } while ((u == (time_t)-1 || t <= u)
128                  && insert_update(t, sched, n, t0) < n - 1);
129     } else if ((endp = parse_skip(&t, line, anchor))) {
130         if (!time_ok(t, fname, lno))
131             return -1;
132         delete_update(t, sched, n);
133     } else
134         endp = line;
135
136     bol = endp == line;
137     while (isspace(*endp)) endp++;
138     if (*endp) {
139         if (bol)
140             logerror("%s:%d: unintelligible\n", fname, lno);
141         else
142             logerror("%s:%d: trailing junk\n", fname, lno);
143         return -1;
144     }
145
146     return 0;
147 }
148
149 /*
150  * Complain and return zero when T is bad, else return non-zero.
151  * FNAME and LNO file name and line number.
152  */
153 static int
154 time_ok(time_t t, char *fname, int lno)
155 {
156     if (t == (time_t)-1) {
157         logerror("%s:%d: time weird\n", fname, lno);
158         return 0;
159     }
160     return 1;
161 }
162
163 /*
164  * Parse a time from S into *T.
165  * *ANCHOR is the base for anchor-relative time.
166  * Return pointer to first character not parsed on success,
167  * null pointer on failure.
168  */
169 static char *
170 parse_time(time_t *t, char *s, time_t *anchor)
171 {
172     static char *fmt[] = {
173         /*
174          * Absolute time formats
175          * Must set tm_year, tm_mon, tm_mday, tm_hour, tm_min.
176          */
177         "%Y-%m-%d %H:%M ",      /* ISO 8601 */
178         "%b %d %H:%M %Y ",      /* like ctime(): Dec 22 15:35 2006 */
179         "%d %b %Y %H:%M ",      /* like RFC 2822: 22 Dec 2006 15:35 */
180         /*
181          * Relative to anchor formats
182          * Must set tm_wday, may set tm_hour and tm_min
183          */
184         "next %a %H:%M ",       /* next Fri 15:35 */
185         "next %a ",             /* next Fri */
186         NULL
187     };
188     char *p, *endp;
189     int i;
190     struct tm tm, nexttm;
191
192     for (p = s; isspace(*(unsigned char *)p); ++p) ;
193
194     for (i = 0; ; i++) {
195         if (!fmt[i])
196             return NULL;
197         /*
198          * Carefully initialize tm so we can tell what strptime()
199          * actually set.
200          *
201          * Beware: some losing implementations of strptime() happily
202          * succeed when they fully consumed the first argument,
203          * regardless of whether they matched the full second argument
204          * or not.  Observed on FreeBSD 6.2.
205          */
206         memset(&tm, 0, sizeof(tm));
207         tm.tm_hour = -1;        /* to recognize anchor-relat. w/o time */
208         tm.tm_year = INT_MIN;   /* strptime() lossage work-around */
209         tm.tm_mon = tm.tm_mday = tm.tm_min = tm.tm_wday = -1; /* ditto */
210         endp = strptime(p, fmt[i], &tm);
211         if (endp
212             /* strptime() lossage work-around: */
213             && ((tm.tm_year != INT_MIN && tm.tm_mon != -1
214                  && tm.tm_mday != -1 && tm.tm_hour != -1 && tm.tm_min != -1)
215                 || (tm.tm_wday != -1
216                     && (tm.tm_hour == -1 || tm.tm_min != -1))))
217             break;
218     }
219
220     if (tm.tm_mday == -1) {
221         /* relative to anchor */
222         nexttm = *localtime(anchor);
223         if (tm.tm_hour >= 0) {
224             /* got hour and minute */
225             nexttm.tm_hour = tm.tm_hour;
226             nexttm.tm_min = tm.tm_min;
227             nexttm.tm_sec = 0;
228         }
229         nexttm.tm_mday += tm.tm_wday - nexttm.tm_wday;
230         if (tm.tm_wday <= nexttm.tm_wday)
231             nexttm.tm_mday += 7;
232         tm = nexttm;
233     }
234
235     tm.tm_isdst = -1;
236     *t = mktime(&tm);
237     return endp;
238 }
239
240 /*
241  * Parse an every clause from S into *SECS.
242  * Return pointer to first character not parsed on success,
243  * null pointer on failure.
244  */
245 static char *
246 parse_every(time_t *secs, char *s)
247 {
248     int nch, delta;
249
250     nch = -1;
251     sscanf(s, " every %u hours%n", &delta, &nch);
252     if (nch >= 0)
253         delta *= 60;
254     else
255         sscanf(s, " every %u minutes%n", &delta, &nch);
256     if (nch < 0)
257         return NULL;
258     *secs = 60 * delta;
259     return s + nch;
260 }
261
262 /*
263  * Parse an until clause from S into *T.
264  * *ANCHOR is the base for anchor-relative time.
265  * Return pointer to first character not parsed on success,
266  * null pointer on failure.
267  */
268 static char *
269 parse_until(time_t *t, char *s, time_t *anchor)
270 {
271     int nch;
272
273     nch = -1;
274     sscanf(s, " until%n", &nch);
275     if (nch < 0)
276         return NULL;
277     return parse_time(t, s + nch, anchor);
278 }
279
280 /*
281  * Parse an skip clause from S into *T.
282  * *ANCHOR is the base for anchor-relative time.
283  * Return pointer to first character not parsed on success,
284  * null pointer on failure.
285  */
286 static char *
287 parse_skip(time_t *t, char *s, time_t *anchor)
288 {
289     int nch;
290
291     nch = -1;
292     sscanf(s, " skip%n", &nch);
293     if (nch < 0)
294         return NULL;
295     return parse_time(t, s + nch, anchor);
296 }
297
298 /*
299  * Return the index of the first update at or after T in SCHED[].
300  */
301 static int
302 find_update(time_t t, time_t sched[])
303 {
304     int i;
305
306     /* Could use binary search here, but it's hardly worth it */
307     for (i = 0; sched[i] && t > sched[i]; i++) ;
308     return i;
309 }
310
311 /*
312  * Insert update at T into SCHED[].
313  * SCHED[] holds the first N-1 updates after T0 in ascending order.
314  * If T is before T0 or outside game_days/game_hours, return -1.
315  * If there's no space for T in SCHED[], return N-1.
316  * Else insert T into SCHED[] and return its index in SCHED[].
317  */
318 static int
319 insert_update(time_t t, time_t sched[], int n, time_t t0)
320 {
321     int i;
322
323     if (t <= t0 || !gamehours(t))
324         return -1;
325
326     i = find_update(t, sched);
327     memmove(sched + i + 1, sched + i, (n - 1 - i) * sizeof(*sched));
328     sched[i] = t;
329     sched[n - 1] = 0;
330     return i;
331 }
332
333 /*
334  * Delete update T from SCHED[].
335  * SCHED[] holds N-1 updates in ascending order.
336  * Return the index of the first update after T in SCHED[].
337  */
338 static int
339 delete_update(time_t t, time_t sched[], int n)
340 {
341     int i = find_update(t, sched);
342     if (t == sched[i])
343         memmove(sched + i, sched + i + 1,
344                 (n - 1 - i) * sizeof(*sched));
345     return i;
346 }