]> git.pond.sub.org Git - empserver/blob - src/util/empsched.c
Update copyright notice
[empserver] / src / util / empsched.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  *  empsched.c: Show the update schedule
29  *
30  *  Known contributors to this file:
31  *     Markus Armbruster, 2007
32  */
33
34 #include <config.h>
35
36 #include <unistd.h>
37 #include <stdio.h>
38 #include <time.h>
39 #include "optlist.h"
40 #include "prototypes.h"
41 #include "version.h"
42
43 #define DFLT_N 16
44 #define MAX_N 1000
45
46 static void
47 print_usage(char *program_name)
48 {
49     printf("Usage: %s [OPTION]... [FILE]\n"
50            "Print the Empire update schedule.\n\n"
51            "  -e CONFIG-FILE  configuration file\n"
52            "                  (default %s)\n"
53            "  -n NUMBER       print at most NUMBER updates (default %d)\n"
54            "  -h              display this help and exit\n"
55            "  -v              display version information and exit\n\n"
56            "If FILE is given, print the schedule defined there instead of\n"
57            "the current schedule.\n",
58            program_name, dflt_econfig, DFLT_N);
59 }
60
61 int
62 main(int argc, char *argv[])
63 {
64     char *config_file = NULL;
65     char *in_file;
66     unsigned long n = DFLT_N;
67     time_t sched[MAX_N + 1], anchor;
68     int opt, i;
69
70     while ((opt = getopt(argc, argv, "e:n:hv")) != EOF) {
71         switch (opt) {
72         case 'e':
73             config_file = optarg;
74             break;
75         case 'n':
76             n = strtoul(optarg, NULL, 10);
77             if (n > MAX_N) {
78                 fprintf(stderr, "%s: can't print more than %d updates",
79                         argv[0], MAX_N);
80                 exit(1);
81             }
82             break;
83         case 'h':
84             print_usage(argv[0]);
85             exit(0);
86         case 'v':
87             printf("%s\n\n%s", version, legal);
88             exit(0);
89         default:
90             fprintf(stderr, "Try -h for help.\n");
91             exit(1);
92         }
93     }
94
95     if (emp_config(config_file) < 0)
96         exit(1);
97
98     if (!argv[optind])
99         in_file = schedulefil;
100     else if (!strcmp(argv[optind], "-"))
101         in_file = NULL;
102     else
103         in_file = argv[optind];
104
105     anchor = (time(NULL) + 59) / 60 * 60;
106     if (read_schedule(in_file, sched, n + 1, 0, anchor) < 0)
107         exit(1);
108
109     for (i = 0; sched[i]; i++)
110         printf("%s", ctime(&sched[i]));
111
112     return 0;
113 }