]> git.xonotic.org Git - xonotic/gmqcc.git/blob - opts.c
Fix some bugs
[xonotic/gmqcc.git] / opts.c
1 /*
2  * Copyright (C) 2012, 2013
3  *     Wolfgang Bumiller
4  *     Dale Weiler
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy of
7  * this software and associated documentation files (the "Software"), to deal in
8  * the Software without restriction, including without limitation the rights to
9  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
10  * of the Software, and to permit persons to whom the Software is furnished to do
11  * so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in all
14  * copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22  * SOFTWARE.
23  */
24 #include <string.h>
25 #include <stdlib.h>
26 #include <ctype.h>
27
28 #include "gmqcc.h"
29
30 unsigned int opts_optimizationcount[COUNT_OPTIMIZATIONS];
31 opts_cmd_t   opts; /* command lien options */
32
33 static void opts_setdefault(void) {
34     memset(&opts, 0, sizeof(opts_cmd_t));
35     OPTS_OPTION_BOOL(OPTION_CORRECTION) = true;
36
37     /* warnings */
38     opts_set(opts.warn,  WARN_UNUSED_VARIABLE,           true);
39     opts_set(opts.warn,  WARN_USED_UNINITIALIZED,        true);
40     opts_set(opts.warn,  WARN_UNKNOWN_CONTROL_SEQUENCE,  true);
41     opts_set(opts.warn,  WARN_EXTENSIONS,                true);
42     opts_set(opts.warn,  WARN_FIELD_REDECLARED,          true);
43     opts_set(opts.warn,  WARN_MISSING_RETURN_VALUES,     true);
44     opts_set(opts.warn,  WARN_INVALID_PARAMETER_COUNT,   true);
45     opts_set(opts.warn,  WARN_LOCAL_CONSTANTS,           true);
46     opts_set(opts.warn,  WARN_VOID_VARIABLES,            true);
47     opts_set(opts.warn,  WARN_IMPLICIT_FUNCTION_POINTER, true);
48     opts_set(opts.warn,  WARN_VARIADIC_FUNCTION,         true);
49     opts_set(opts.warn,  WARN_FRAME_MACROS,              true);
50     opts_set(opts.warn,  WARN_EFFECTLESS_STATEMENT,      true);
51     opts_set(opts.warn,  WARN_END_SYS_FIELDS,            true);
52     opts_set(opts.warn,  WARN_ASSIGN_FUNCTION_TYPES,     true);
53     opts_set(opts.warn,  WARN_CPP,                       true);
54     opts_set(opts.warn,  WARN_MULTIFILE_IF,              true);
55     opts_set(opts.warn,  WARN_DOUBLE_DECLARATION,        true);
56     opts_set(opts.warn,  WARN_CONST_VAR,                 true);
57     opts_set(opts.warn,  WARN_MULTIBYTE_CHARACTER,       true);
58     opts_set(opts.warn,  WARN_UNKNOWN_PRAGMAS,           true);
59     opts_set(opts.warn,  WARN_UNREACHABLE_CODE,          true);
60     opts_set(opts.warn,  WARN_UNKNOWN_ATTRIBUTE,         true);
61     opts_set(opts.warn,  WARN_RESERVED_NAMES,            true);
62     opts_set(opts.warn,  WARN_UNINITIALIZED_CONSTANT,    true);
63     opts_set(opts.warn,  WARN_DEPRECATED,                true);
64     opts_set(opts.warn,  WARN_PARENTHESIS,               true);
65
66     /* flags */
67     opts_set(opts.flags, ADJUST_VECTOR_FIELDS,           true);
68     opts_set(opts.flags, CORRECT_TERNARY,                true);
69     opts_set(opts.flags, BAIL_ON_WERROR,                 true);
70     opts_set(opts.flags, LEGACY_VECTOR_MATHS,            true);
71     opts_set(opts.flags, DARKPLACES_STRING_TABLE_BUG,    true);
72
73 }
74
75 void opts_backup_non_Wall() {
76     size_t i;
77     for (i = 0; i <= WARN_DEBUG; ++i)
78         opts_set(opts.warn_backup, i, OPTS_WARN(i));
79 }
80
81 void opts_restore_non_Wall() {
82     size_t i;
83     for (i = 0; i <= WARN_DEBUG; ++i)
84         opts_set(opts.warn, i, OPTS_GENERIC(opts.warn_backup, i));
85 }
86
87 void opts_backup_non_Werror_all() {
88     size_t i;
89     for (i = 0; i <= WARN_DEBUG; ++i)
90         opts_set(opts.werror_backup, i, OPTS_WERROR(i));
91 }
92
93 void opts_restore_non_Werror_all() {
94     size_t i;
95     for (i = 0; i <= WARN_DEBUG; ++i)
96         opts_set(opts.werror, i, OPTS_GENERIC(opts.werror_backup, i));
97 }
98
99 void opts_init(const char *output, int standard, size_t arraysize) {
100     opts_setdefault();
101
102     OPTS_OPTION_STR(OPTION_OUTPUT)         = (char*)output;
103     OPTS_OPTION_U32(OPTION_STANDARD)       = standard;
104     OPTS_OPTION_U32(OPTION_MAX_ARRAY_SIZE) = arraysize;
105     OPTS_OPTION_U16(OPTION_MEMDUMPCOLS)    = 16;
106 }
107
108 static bool opts_setflag_all(const char *name, bool on, uint32_t *flags, const opts_flag_def *list, size_t listsize) {
109     size_t i;
110
111     for (i = 0; i < listsize; ++i) {
112         if (!strcmp(name, list[i].name)) {
113             longbit lb = list[i].bit;
114
115             if (on)
116                 flags[lb.idx] |= (1<<(lb.bit));
117             else
118                 flags[lb.idx] &= ~(1<<(lb.bit));
119
120             return true;
121         }
122     }
123     return false;
124 }
125 bool opts_setflag  (const char *name, bool on) {
126     return opts_setflag_all(name, on, opts.flags,        opts_flag_list, COUNT_FLAGS);
127 }
128 bool opts_setwarn  (const char *name, bool on) {
129     return opts_setflag_all(name, on, opts.warn,         opts_warn_list, COUNT_WARNINGS);
130 }
131 bool opts_setwerror(const char *name, bool on) {
132     return opts_setflag_all(name, on, opts.werror,       opts_warn_list, COUNT_WARNINGS);
133 }
134 bool opts_setoptim (const char *name, bool on) {
135     return opts_setflag_all(name, on, opts.optimization, opts_opt_list,  COUNT_OPTIMIZATIONS);
136 }
137
138 void opts_set(uint32_t *flags, size_t idx, bool on) {
139     longbit lb;
140     LONGBIT_SET(lb, idx);
141
142     if (on)
143         flags[lb.idx] |= (1<<(lb.bit));
144     else
145         flags[lb.idx] &= ~(1<<(lb.bit));
146 }
147
148 void opts_setoptimlevel(unsigned int level) {
149     size_t i;
150     for (i = 0; i < COUNT_OPTIMIZATIONS; ++i)
151         opts_set(opts.optimization, i, level >= opts_opt_oflag[i]);
152
153     if (!level)
154         opts.optimizeoff = true;
155 }
156
157 /*
158  * Standard configuration parser and subsystem.  Yes, optionally you may
159  * create ini files or cfg (the driver accepts both) for a project opposed
160  * to supplying just a progs.src (since you also may need to supply command
161  * line arguments or set the options of the compiler) [which cannot be done
162  * from a progs.src.
163  */
164 static char *opts_ini_rstrip(char *s) {
165     char *p = s + strlen(s);
166     while(p > s && isspace(*--p))
167         *p = '\0';
168     return s;
169 }
170
171 static char *opts_ini_lskip(const char *s) {
172     while (*s && isspace(*s))
173         s++;
174     return (char*)s;
175 }
176
177 static char *opts_ini_next(const char *s, char c) {
178     bool last = false;
179     while (*s && *s != c && !(last && *s == ';'))
180         last = !!isspace(*s), s++;
181
182     return (char*)s;
183 }
184
185 static size_t opts_ini_parse (
186     FILE   *filehandle,
187     char *(*loadhandle)(const char *, const char *, const char *),
188     char **errorhandle
189 ) {
190     size_t linesize;
191     size_t lineno             = 1;
192     size_t error              = 0;
193     char  *line               = NULL;
194     char   section_data[2048] = "";
195     char   oldname_data[2048] = "";
196
197     /* parsing and reading variables */
198     char *parse_beg;
199     char *parse_end;
200     char *read_name;
201     char *read_value;
202
203     while (fs_file_getline(&line, &linesize, filehandle) != EOF) {
204         parse_beg = line;
205
206         /* handle BOM */
207         if (lineno == 1 && (
208                 (unsigned char)parse_beg[0] == 0xEF &&
209                 (unsigned char)parse_beg[1] == 0xBB &&
210                 (unsigned char)parse_beg[2] == 0xBF
211             )
212         ) {
213             parse_beg ++; /* 0xEF */
214             parse_beg ++; /* 0xBB */
215             parse_beg ++; /* 0xBF */
216         }
217
218         if (*(parse_beg = opts_ini_lskip(opts_ini_rstrip(parse_beg))) == ';' || *parse_beg == '#') {
219             /* ignore '#' is a perl extension */
220         } else if (*parse_beg == '[') {
221             /* section found */
222             if (*(parse_end = opts_ini_next(parse_beg + 1, ']')) == ']') {
223                 * parse_end = '\0'; /* terminate bro */
224                 util_strncpy(section_data, parse_beg + 1, sizeof(section_data));
225                 section_data[sizeof(section_data) - 1] = '\0';
226                 *oldname_data                          = '\0';
227             } else if (!error) {
228                 /* otherwise set error to the current line number */
229                 error = lineno;
230             }
231         } else if (*parse_beg && *parse_beg != ';') {
232             /* not a comment, must be a name value pair :) */
233             if (*(parse_end = opts_ini_next(parse_beg, '=')) != '=')
234                   parse_end = opts_ini_next(parse_beg, ':');
235
236             if (*parse_end == '=' || *parse_end == ':') {
237                 *parse_end = '\0'; /* terminate bro */
238                 read_name  = opts_ini_rstrip(parse_beg);
239                 read_value = opts_ini_lskip(parse_end + 1);
240                 if (*(parse_end = opts_ini_next(read_value, '\0')) == ';')
241                     * parse_end = '\0';
242                 opts_ini_rstrip(read_value);
243
244                 /* valid name value pair, lets call down to handler */
245                 util_strncpy(oldname_data, read_name, sizeof(oldname_data));
246                 oldname_data[sizeof(oldname_data) - 1] ='\0';
247
248                 if ((*errorhandle = loadhandle(section_data, read_name, read_value)) && !error)
249                     error = lineno;
250             } else if (!error) {
251                 /* otherwise set error to the current line number */
252                 error = lineno;
253             }
254         }
255         lineno++;
256     }
257     mem_d(line);
258     return error;
259 }
260
261 /*
262  * returns true/false for a char that contains ("true" or "false" or numeric 0/1)
263  */
264 static bool opts_ini_bool(const char *value) {
265     if (!strcmp(value, "true"))  return true;
266     if (!strcmp(value, "false")) return false;
267     return !!strtol(value, NULL, 10);
268 }
269
270 static char *opts_ini_load(const char *section, const char *name, const char *value) {
271     char *error = NULL;
272     bool  found = false;
273
274     /*
275      * undef all of these because they may still be defined like in my
276      * case they where.
277      */
278     #undef GMQCC_TYPE_FLAGS
279     #undef GMQCC_TYPE_OPTIMIZATIONS
280     #undef GMQCC_TYPE_WARNS
281
282     /* flags */
283     #define GMQCC_TYPE_FLAGS
284     #define GMQCC_DEFINE_FLAG(X)                                       \
285     if (!strcmp(section, "flags") && !strcmp(name, #X)) {              \
286         opts_set(opts.flags, X, opts_ini_bool(value));                 \
287         found = true;                                                  \
288     }
289     #include "opts.def"
290
291     /* warnings */
292     #define GMQCC_TYPE_WARNS
293     #define GMQCC_DEFINE_FLAG(X)                                       \
294     if (!strcmp(section, "warnings") && !strcmp(name, #X)) {           \
295         opts_set(opts.warn, WARN_##X, opts_ini_bool(value));           \
296         found = true;                                                  \
297     }
298     #include "opts.def"
299
300     /* Werror-individuals */
301     #define GMQCC_TYPE_WARNS
302     #define GMQCC_DEFINE_FLAG(X)                                       \
303     if (!strcmp(section, "errors") && !strcmp(name, #X)) {             \
304         opts_set(opts.werror, WARN_##X, opts_ini_bool(value));         \
305         found = true;                                                  \
306     }
307     #include "opts.def"
308
309     /* optimizations */
310     #define GMQCC_TYPE_OPTIMIZATIONS
311     #define GMQCC_DEFINE_FLAG(X,Y)                                     \
312     if (!strcmp(section, "optimizations") && !strcmp(name, #X)) {      \
313         opts_set(opts.optimization, OPTIM_##X, opts_ini_bool(value));  \
314         found = true;                                                  \
315     }
316     #include "opts.def"
317
318     /* nothing was found ever! */
319     if (!found) {
320         if (strcmp(section, "flags")         &&
321             strcmp(section, "warnings")      &&
322             strcmp(section, "optimizations"))
323         {
324             vec_upload(error, "invalid section `", 17);
325             vec_upload(error, section, strlen(section));
326             vec_push  (error, '`');
327             vec_push  (error, '\0');
328         } else {
329             vec_upload(error, "invalid variable `", 18);
330             vec_upload(error, name, strlen(name));
331             vec_push  (error, '`');
332             vec_upload(error, " in section: `", 14);
333             vec_upload(error, section, strlen(section));
334             vec_push  (error, '`');
335             vec_push  (error, '\0');
336         }
337     }
338     return error;
339 }
340
341 /*
342  * Actual loading subsystem, this finds the ini or cfg file, and properly
343  * loads it and executes it to set compiler options.
344  */
345 void opts_ini_init(const char *file) {
346     /*
347      * Possible matches are:
348      *  gmqcc.ini
349      *  gmqcc.cfg
350      */
351     char       *error;
352     size_t     line;
353     FILE       *ini;
354
355
356     if (!file) {
357         /* try ini */
358         if (!(ini = fs_file_open((file = "gmqcc.ini"), "r")))
359             /* try cfg */
360             if (!(ini = fs_file_open((file = "gmqcc.cfg"), "r")))
361                 return;
362     } else if (!(ini = fs_file_open(file, "r")))
363         return;
364
365     con_out("found ini file `%s`\n", file);
366
367     if ((line = opts_ini_parse(ini, &opts_ini_load, &error)) != 0) {
368         /* there was a parse error with the ini file */
369         con_printmsg(LVL_ERROR, file, line, 0 /*TODO: column for ini error*/, "error", error);
370         vec_free(error);
371     }
372
373     fs_file_close(ini);
374 }