]> git.xonotic.org Git - xonotic/gmqcc.git/blob - opts.c
2a7dc8d3dde16507aa9b1948d28dddc6489732e6
[xonotic/gmqcc.git] / opts.c
1 /*
2  * Copyright (C) 2012
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 "gmqcc.h"
25 unsigned int opts_optimizationcount[COUNT_OPTIMIZATIONS];
26 opts_cmd_t   opts; /* command lien options */
27
28 static void opts_setdefault() {
29     memset(&opts, 0, sizeof(opts_cmd_t));
30     
31     /* warnings */
32     opts_set(opts.warn,  WARN_UNUSED_VARIABLE,           true);
33     opts_set(opts.warn,  WARN_USED_UNINITIALIZED,        true);
34     opts_set(opts.warn,  WARN_UNKNOWN_CONTROL_SEQUENCE,  true);
35     opts_set(opts.warn,  WARN_EXTENSIONS,                true);
36     opts_set(opts.warn,  WARN_FIELD_REDECLARED,          true);
37     opts_set(opts.warn,  WARN_MISSING_RETURN_VALUES,     true);
38     opts_set(opts.warn,  WARN_TOO_FEW_PARAMETERS,        true);
39     opts_set(opts.warn,  WARN_LOCAL_SHADOWS,             false);
40     opts_set(opts.warn,  WARN_LOCAL_CONSTANTS,           true);
41     opts_set(opts.warn,  WARN_VOID_VARIABLES,            true);
42     opts_set(opts.warn,  WARN_IMPLICIT_FUNCTION_POINTER, true);
43     opts_set(opts.warn,  WARN_VARIADIC_FUNCTION,         true);
44     opts_set(opts.warn,  WARN_FRAME_MACROS,              true);
45     opts_set(opts.warn,  WARN_EFFECTLESS_STATEMENT,      true);
46     opts_set(opts.warn,  WARN_END_SYS_FIELDS,            true);
47     opts_set(opts.warn,  WARN_ASSIGN_FUNCTION_TYPES,     true);
48     opts_set(opts.warn,  WARN_PREPROCESSOR,              true);
49     opts_set(opts.warn,  WARN_MULTIFILE_IF,              true);
50     opts_set(opts.warn,  WARN_DOUBLE_DECLARATION,        true);
51     opts_set(opts.warn,  WARN_CONST_VAR,                 true);
52     opts_set(opts.warn,  WARN_MULTIBYTE_CHARACTER,       true);
53     opts_set(opts.warn,  WARN_UNKNOWN_PRAGMAS,           true);
54     opts_set(opts.warn,  WARN_UNREACHABLE_CODE,          true);
55     /* flags */
56     opts_set(opts.flags, ADJUST_VECTOR_FIELDS,           true);
57     opts_set(opts.flags, FTEPP,                          false);
58     opts_set(opts.flags, CORRECT_TERNARY,                true);
59 }
60
61 void opts_init(const char *output, int standard, size_t arraysize) {
62     opts_setdefault();
63     
64     opts.output         = output;
65     opts.standard       = standard;
66     opts.max_array_size = arraysize;
67 }
68
69 static bool opts_setflag_all(const char *name, bool on, uint32_t *flags, const opts_flag_def *list, size_t listsize) {
70     size_t i;
71
72     for (i = 0; i < listsize; ++i) {
73         if (!strcmp(name, list[i].name)) {
74             longbit lb = list[i].bit;
75 #if 0
76             if (on)
77                 flags[lb.idx] |= (1<<(lb.bit));
78             else
79                 flags[lb.idx] &= ~(1<<(lb.bit));
80 #else
81             if (on)
82                 flags[0] |= (1<<lb);
83             else
84                 flags[0] &= ~(1<<(lb));
85 #endif
86             return true;
87         }
88     }
89     return false;
90 }
91 bool opts_setflag (const char *name, bool on) {
92     return opts_setflag_all(name, on, opts.flags,        opts_flag_list, COUNT_FLAGS);
93 }
94 bool opts_setwarn (const char *name, bool on) {
95     return opts_setflag_all(name, on, opts.warn,         opts_warn_list, COUNT_WARNINGS);
96 }
97 bool opts_setoptim(const char *name, bool on) {
98     return opts_setflag_all(name, on, opts.optimization, opts_opt_list,  COUNT_OPTIMIZATIONS);
99 }
100
101 void opts_set(uint32_t *flags, size_t idx, bool on) {
102     longbit lb = LONGBIT(idx);
103 #if 0
104     if (on)
105         flags[lb.idx] |= (1<<(lb.bit));
106     else
107         flags[lb.idx] &= ~(1<<(lb.bit));
108 #else
109     if (on)
110         flags[0] |= (1<<(lb));
111     else
112         flags[0] &= ~(1<<(lb));
113 #endif
114 }
115
116 void opts_setoptimlevel(unsigned int level) {
117     size_t i;
118     for (i = 0; i < COUNT_OPTIMIZATIONS; ++i)
119         opts_set(opts.optimization, i, level >= opts_opt_oflag[i]);
120 }
121
122 /*
123  * Standard configuration parser and subsystem.  Yes, optionally you may
124  * create ini files or cfg (the driver accepts both) for a project opposed
125  * to supplying just a progs.src (since you also may need to supply command
126  * line arguments or set the options of the compiler) [which cannot be done
127  * from a progs.src.
128  */
129 static char *opts_ini_rstrip(char *s) {
130     char *p = s + strlen(s);
131     while(p > s && isspace(*--p))
132         *p = '\0';
133     return s;
134 }
135
136 static char *opts_ini_lskip(const char *s) {
137     while (*s && isspace(*s))
138         s++;
139     return (char*)s;
140 }
141
142 static char *opts_ini_next(const char *s, char c) {
143     bool last = false;
144     while (*s && *s != c && !(last && *s == ';'))
145         last = !!isspace(*s), s++;
146
147     return (char*)s;
148 }
149
150 static size_t opts_ini_parse (
151     FILE   *filehandle,
152     char *(*loadhandle)(const char *, const char *, const char *),
153     char **errorhandle
154 ) {
155     size_t linesize;
156     size_t lineno             = 1;
157     size_t error              = 0;
158     char  *line               = NULL;
159     char   section_data[2048] = "";
160     char   oldname_data[2048] = "";
161
162     /* parsing and reading variables */
163     char *parse_beg;
164     char *parse_end;
165     char *read_name;
166     char *read_value;
167
168     while (util_getline(&line, &linesize, filehandle) != EOF) {
169         parse_beg = line;
170
171         /* handle BOM */
172         if (lineno == 1 && (
173                 (unsigned char)parse_beg[0] == 0xEF &&
174                 (unsigned char)parse_beg[1] == 0xBB &&
175                 (unsigned char)parse_beg[2] == 0xBF
176             )
177         ) {
178             parse_beg ++; /* 0xEF */
179             parse_beg ++; /* 0xBB */
180             parse_beg ++; /* 0xBF */
181         }
182
183         if (*(parse_beg = opts_ini_lskip(opts_ini_rstrip(parse_beg))) == ';' || *parse_beg == '#') {
184             /* ignore '#' is a perl extension */
185         } else if (*parse_beg == '[') {
186             /* section found */
187             if (*(parse_end = opts_ini_next(parse_beg + 1, ']')) == ']') {
188                 * parse_end = '\0'; /* terminate bro */
189                 strncpy(section_data, parse_beg + 1, sizeof(section_data));
190                 section_data[sizeof(section_data) - 1] = '\0';
191                 *oldname_data                          = '\0';
192             } else if (!error) {
193                 /* otherwise set error to the current line number */
194                 error = lineno;
195             }
196         } else if (*parse_beg && *parse_beg != ';') {
197             /* not a comment, must be a name value pair :) */
198             if (*(parse_end = opts_ini_next(parse_beg, '=')) != '=')
199                   parse_end = opts_ini_next(parse_beg, ':');
200
201             if (*parse_end == '=' || *parse_end == ':') {
202                 *parse_end = '\0'; /* terminate bro */
203                 read_name  = opts_ini_rstrip(parse_beg);
204                 read_value = opts_ini_lskip(parse_end + 1);
205                 if (*(parse_end = opts_ini_next(read_value, '\0')) == ';')
206                     * parse_end = '\0';
207                 opts_ini_rstrip(read_value);
208
209                 /* valid name value pair, lets call down to handler */
210                 strncpy(oldname_data, read_name, sizeof(oldname_data));
211                 oldname_data[sizeof(oldname_data) - 1] ='\0';
212
213                 if ((*errorhandle = loadhandle(section_data, read_name, read_value)) && !error)
214                     error = lineno;
215             } else if (!error) {
216                 /* otherwise set error to the current line number */
217                 error = lineno;
218             }
219         }
220         lineno++;
221     }
222     mem_d(line);
223     return error;
224 }
225
226 /*
227  * returns true/false for a char that contains ("true" or "false" or numeric 0/1)
228  */
229 static bool opts_ini_bool(const char *value) {
230     if (!strcmp(value, "true"))  return true;
231     if (!strcmp(value, "false")) return false;
232     return !!atoi(value);
233 }
234
235 static char *opts_ini_load(const char *section, const char *name, const char *value) {
236     char *error = NULL;
237     bool  found = false;
238
239     /*
240      * undef all of these because they may still be defined like in my
241      * case they where.
242      */  
243     #undef GMQCC_TYPE_FLAGS
244     #undef GMQCC_TYPE_OPTIMIZATIONS
245     #undef GMQCC_TYPE_WARNS
246
247     /* flags */
248     #define GMQCC_TYPE_FLAGS
249     #define GMQCC_DEFINE_FLAG(X)                                       \
250     if (!strcmp(section, "flags") && !strcmp(name, #X)) {              \
251         opts_set(opts.flags, X, opts_ini_bool(value));                 \
252         found = true;                                                  \
253     }
254     #include "opts.def"
255
256     /* warnings */
257     #define GMQCC_TYPE_WARNS
258     #define GMQCC_DEFINE_FLAG(X)                                       \
259     if (!strcmp(section, "warnings") && !strcmp(name, #X)) {           \
260         opts_set(opts.warn, WARN_##X, opts_ini_bool(value));           \
261         found = true;                                                  \
262     }
263     #include "opts.def"
264
265     /* optimizations */
266     #define GMQCC_TYPE_OPTIMIZATIONS
267     #define GMQCC_DEFINE_FLAG(X,Y)                                     \
268     if (!strcmp(section, "optimizations") && !strcmp(name, #X)) {      \
269         opts_set(opts.optimization, OPTIM_##X, opts_ini_bool(value));  \
270         found = true;                                                  \
271     }
272     #include "opts.def"
273
274     /* nothing was found ever! */
275     if (!found) {
276         if (strcmp(section, "flags")         &&
277             strcmp(section, "warnings")      &&
278             strcmp(section, "optimizations"))
279         {
280             vec_upload(error, "invalid section `", 17);
281             vec_upload(error, section, strlen(section));
282             vec_push  (error, '`');
283             vec_push  (error, '\0');
284         } else {
285             vec_upload(error, "invalid variable `", 18);
286             vec_upload(error, name, strlen(name));
287             vec_push  (error, '`');
288             vec_upload(error, " in section: `", 14);
289             vec_upload(error, section, strlen(section));
290             vec_push  (error, '`');
291             vec_push  (error, '\0');
292         }
293     }
294     return error;
295 }
296
297 /*
298  * Actual loading subsystem, this finds the ini or cfg file, and properly
299  * loads it and executes it to set compiler options.
300  */
301 void opts_ini_init(const char *file) {
302     /*
303      * Possible matches are:
304      *  gmqcc.ini
305      *  gmqcc.cfg
306      */
307     char       *error;
308     size_t     line;
309     FILE       *ini;
310
311     
312     if (!file) {
313         /* try ini */
314         if (!(ini = fopen((file = "gmqcc.ini"), "r")))
315             /* try cfg */
316             if (!(ini = fopen((file = "gmqcc.cfg"), "r")))
317                 return;
318     } else if (!(ini = fopen(file, "r")))
319         return;
320
321     con_out("found ini file `%s`\n", file);
322
323     if ((line = opts_ini_parse(ini, &opts_ini_load, &error)) != 0) {
324         /* there was a parse error with the ini file */
325         con_printmsg(LVL_ERROR, file, line, "error", error);
326         vec_free(error);
327     }
328
329     fclose(ini);
330 }