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