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