]> git.pond.sub.org Git - empserver/blob - src/lib/common/conftab.c
331a2630242d2e7bedfc1d5f2eca5b84754b96b1
[empserver] / src / lib / common / conftab.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2014, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  conftab.c: Load game configuration files
28  *
29  *  Known contributors to this file:
30  *     Markus Armbruster, 2006-2010
31  */
32
33 #include <config.h>
34
35 #include <errno.h>
36 #include <stdio.h>
37 #include "file.h"
38 #include "optlist.h"
39 #include "prototypes.h"
40 #include "xdump.h"
41
42 static int read_custom_table_file(char *);
43
44 /*
45  * Read builtin configuration tables.
46  * Return 0 on success, -1 on failure.
47  */
48 int
49 read_builtin_tables(void)
50 {
51     struct empfile *ep;
52     FILE *fp;
53     int lineno, res;
54
55     /*
56      * Need to read config files for tables referenced through
57      * ep->cadef[].ca_table before those for ep.  empfile[] is ordered
58      * that way.
59      */
60     for (ep = empfile; ep->name; ep++) {
61         if (!EF_IS_GAME_STATE(ep->uid) && ep->file) {
62             if ((fp = fopenat(ep->file, "r", builtindir)) == NULL) {
63                 fprintf(stderr, "Can't open %s for reading (%s)\n",
64                         ep->file, strerror(errno));
65                 return -1;
66             }
67             lineno = 1;
68             res = xundump(fp, ep->file, &lineno, ep->uid);
69             if (res >= 0 && getc(fp) != EOF) {
70                 fprintf(stderr, "%s: Junk after the table\n", ep->file);
71                 res = EF_BAD;
72             }
73             fclose(fp);
74             if (res < 0)
75                 return -1;
76         }
77     }
78
79     return 0;
80 }
81
82 /*
83  * Read user configuration tables.
84  * Return 0 on success, -1 on failure.
85  */
86 int
87 read_custom_tables(void)
88 {
89     char *tmp = strdup(custom_tables);
90     char *fname;
91     int res = 0;
92
93     for (fname = strtok(tmp, " \t"); fname; fname = strtok(NULL, " \t")) {
94         if (read_custom_table_file(fname) < 0)
95             res = -1;
96     }
97
98     free(tmp);
99     return res;
100 }
101
102 /*
103  * Read configuration table file FNAME.
104  * Return 0 on success, -1 on error.
105  */
106 static int
107 read_custom_table_file(char *fname)
108 {
109     int lineno, res, n;
110     FILE *fp;
111
112     if (!(fp = fopenat(fname, "r", configdir))) {
113         fprintf(stderr, "Can't open config table %s for reading (%s)\n",
114                 fname, strerror(errno));
115         return -1;
116     }
117
118     lineno = 1;
119     for (n = 0; (res = xundump(fp, fname, &lineno, EF_BAD)) >= 0; n++)
120         empfile[res].flags |= EFF_CUSTOM;
121     if (res != EF_BAD && n == 0)
122         fprintf(stderr, "Warning: configuration file %s is empty\n", fname);
123
124     fclose(fp);
125     return -(res == EF_BAD);
126 }