]> git.pond.sub.org Git - empserver/blob - src/lib/common/conftab.c
ae79d13cbeb41e23cc76efbf96b3096870b11890
[empserver] / src / lib / common / conftab.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2016, 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 "fnameat.h"
39 #include "optlist.h"
40 #include "prototypes.h"
41 #include "xdump.h"
42
43 static int read_custom_table_file(char *);
44
45 /*
46  * Read builtin configuration tables.
47  * Return 0 on success, -1 on failure.
48  */
49 int
50 read_builtin_tables(void)
51 {
52     struct empfile *ep;
53     FILE *fp;
54     int lineno, res;
55
56     /*
57      * Need to read config files for tables referenced through
58      * ep->cadef[].ca_table before those for ep.  empfile[] is ordered
59      * that way.
60      */
61     for (ep = empfile; ep->name; ep++) {
62         if (!EF_IS_GAME_STATE(ep->uid) && ep->file) {
63             if ((fp = fopenat(ep->file, "r", builtindir)) == NULL) {
64                 fprintf(stderr, "Can't open %s for reading (%s)\n",
65                         ep->file, strerror(errno));
66                 return -1;
67             }
68             lineno = 1;
69             res = xundump(fp, ep->file, &lineno, ep->uid);
70             if (res >= 0 && getc(fp) != EOF) {
71                 fprintf(stderr, "%s: Junk after the table\n", ep->file);
72                 res = EF_BAD;
73             }
74             fclose(fp);
75             if (res < 0)
76                 return -1;
77         }
78     }
79
80     return 0;
81 }
82
83 /*
84  * Read user configuration tables.
85  * Return 0 on success, -1 on failure.
86  */
87 int
88 read_custom_tables(void)
89 {
90     char *tmp = strdup(custom_tables);
91     char *fname;
92     int res = 0;
93
94     for (fname = strtok(tmp, " \t"); fname; fname = strtok(NULL, " \t")) {
95         if (read_custom_table_file(fname) < 0)
96             res = -1;
97     }
98
99     free(tmp);
100     return res;
101 }
102
103 /*
104  * Read configuration table file @fname.
105  * Return 0 on success, -1 on error.
106  */
107 static int
108 read_custom_table_file(char *fname)
109 {
110     int lineno, res, n;
111     FILE *fp;
112
113     if (!(fp = fopenat(fname, "r", configdir))) {
114         fprintf(stderr, "Can't open config table %s for reading (%s)\n",
115                 fname, strerror(errno));
116         return -1;
117     }
118
119     lineno = 1;
120     for (n = 0; (res = xundump(fp, fname, &lineno, EF_BAD)) >= 0; n++)
121         empfile[res].flags |= EFF_CUSTOM;
122     if (res != EF_BAD && n == 0)
123         fprintf(stderr, "Warning: configuration file %s is empty\n", fname);
124
125     fclose(fp);
126     return -(res == EF_BAD);
127 }