Blame


1 69bdd906 2021-06-15 op /*
2 69bdd906 2021-06-15 op * Much of the design is taken from doas (parse.y rev 1.29)
3 69bdd906 2021-06-15 op *
4 69bdd906 2021-06-15 op * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
5 69bdd906 2021-06-15 op * Copyright (c) 2015 Ted Unangst <tedu@openbsd.org>
6 69bdd906 2021-06-15 op *
7 69bdd906 2021-06-15 op * Permission to use, copy, modify, and distribute this software for any
8 69bdd906 2021-06-15 op * purpose with or without fee is hereby granted, provided that the above
9 69bdd906 2021-06-15 op * copyright notice and this permission notice appear in all copies.
10 69bdd906 2021-06-15 op *
11 69bdd906 2021-06-15 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 69bdd906 2021-06-15 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 69bdd906 2021-06-15 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 69bdd906 2021-06-15 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 69bdd906 2021-06-15 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 69bdd906 2021-06-15 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 69bdd906 2021-06-15 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 69bdd906 2021-06-15 op *
19 69bdd906 2021-06-15 op */
20 69bdd906 2021-06-15 op
21 69bdd906 2021-06-15 op %{
22 69bdd906 2021-06-15 op
23 69bdd906 2021-06-15 op #include "telescope.h"
24 69bdd906 2021-06-15 op
25 984245ce 2021-06-23 op #include <phos/phos.h>
26 984245ce 2021-06-23 op
27 74a2587f 2021-06-21 op #include <assert.h>
28 69bdd906 2021-06-15 op #include <ctype.h>
29 69bdd906 2021-06-15 op #include <limits.h>
30 74a2587f 2021-06-21 op #include <ncurses.h>
31 69bdd906 2021-06-15 op #include <stdarg.h>
32 69bdd906 2021-06-15 op #include <stdio.h>
33 69bdd906 2021-06-15 op #include <stdlib.h>
34 69bdd906 2021-06-15 op #include <string.h>
35 69bdd906 2021-06-15 op
36 69bdd906 2021-06-15 op typedef struct {
37 69bdd906 2021-06-15 op union {
38 69bdd906 2021-06-15 op char *str;
39 69bdd906 2021-06-15 op int num;
40 69bdd906 2021-06-15 op };
41 69bdd906 2021-06-15 op int lineno;
42 69bdd906 2021-06-15 op int colno;
43 69bdd906 2021-06-15 op } yystype;
44 69bdd906 2021-06-15 op #define YYSTYPE yystype
45 69bdd906 2021-06-15 op
46 69e1d1b6 2021-06-15 op static char *current_style;
47 d89b86d6 2021-06-21 op static int color_type;
48 74a2587f 2021-06-21 op
49 69bdd906 2021-06-15 op static const char *path;
50 69bdd906 2021-06-15 op
51 69bdd906 2021-06-15 op FILE *yyfp;
52 69bdd906 2021-06-15 op
53 69bdd906 2021-06-15 op int parse_errors = 0;
54 69bdd906 2021-06-15 op
55 69bdd906 2021-06-15 op static void yyerror(const char *, ...);
56 69bdd906 2021-06-15 op static int yylex(void);
57 d89b86d6 2021-06-21 op static void setprfx(const char *, const char *);
58 86e7d7b4 2021-06-19 op static void setvari(char *, int);
59 86e7d7b4 2021-06-19 op static void setvars(char *, char *);
60 74a2587f 2021-06-21 op static int colorname(const char *);
61 d89b86d6 2021-06-21 op static void setcolor(const char *, const char *, const char *);
62 d0149485 2021-06-22 op static int attrname(char *);
63 d0149485 2021-06-22 op static void setattr(char *, char *, char *);
64 984245ce 2021-06-23 op static void add_proxy(char *, char *);
65 69bdd906 2021-06-15 op
66 69bdd906 2021-06-15 op %}
67 69bdd906 2021-06-15 op
68 69bdd906 2021-06-15 op %token TSET
69 d0149485 2021-06-22 op %token TSTYLE TPRFX TCONT TBG TFG TATTR
70 69bdd906 2021-06-15 op %token TBIND TUNBIND
71 984245ce 2021-06-23 op %token TPROXY TVIA
72 69bdd906 2021-06-15 op
73 69bdd906 2021-06-15 op %token <str> TSTRING
74 69bdd906 2021-06-15 op %token <num> TNUMBER
75 69bdd906 2021-06-15 op
76 69bdd906 2021-06-15 op %%
77 69bdd906 2021-06-15 op
78 69bdd906 2021-06-15 op grammar : /* empty */
79 69bdd906 2021-06-15 op | grammar '\n'
80 69bdd906 2021-06-15 op | grammar rule '\n'
81 69bdd906 2021-06-15 op | error '\n'
82 69bdd906 2021-06-15 op ;
83 69bdd906 2021-06-15 op
84 69e1d1b6 2021-06-15 op rule : set
85 74a2587f 2021-06-21 op | style {
86 74a2587f 2021-06-21 op free(current_style);
87 74a2587f 2021-06-21 op current_style = NULL;
88 74a2587f 2021-06-21 op }
89 69e1d1b6 2021-06-15 op | bind
90 69e1d1b6 2021-06-15 op | unbind
91 984245ce 2021-06-23 op | proxy
92 69e1d1b6 2021-06-15 op ;
93 69bdd906 2021-06-15 op
94 86e7d7b4 2021-06-19 op set : TSET TSTRING '=' TSTRING { setvars($2, $4); }
95 86e7d7b4 2021-06-19 op | TSET TSTRING '=' TNUMBER { setvari($2, $4); }
96 69bdd906 2021-06-15 op ;
97 69bdd906 2021-06-15 op
98 74a2587f 2021-06-21 op style : TSTYLE TSTRING { current_style = $2; } stylespec ;
99 74a2587f 2021-06-21 op stylespec : styleopt | '{' styleopts '}' ;
100 69bdd906 2021-06-15 op
101 69bdd906 2021-06-15 op styleopts : /* empty */
102 69bdd906 2021-06-15 op | styleopts '\n'
103 69bdd906 2021-06-15 op | styleopts styleopt '\n'
104 69bdd906 2021-06-15 op ;
105 69bdd906 2021-06-15 op
106 d89b86d6 2021-06-21 op styleopt : TPRFX TSTRING { setprfx($2, $2); }
107 d89b86d6 2021-06-21 op | TPRFX TSTRING TSTRING { setprfx($2, $2); }
108 d89b86d6 2021-06-21 op | TBG { color_type = TBG; } colorspec
109 d89b86d6 2021-06-21 op | TFG { color_type = TFG; } colorspec
110 d0149485 2021-06-22 op | TATTR attr
111 d89b86d6 2021-06-21 op ;
112 d89b86d6 2021-06-21 op
113 d89b86d6 2021-06-21 op colorspec : TSTRING { setcolor($1, $1, $1); free($1); }
114 d89b86d6 2021-06-21 op | TSTRING TSTRING { setcolor($1, $2, $1); free($1); free($2); }
115 d89b86d6 2021-06-21 op | TSTRING TSTRING TSTRING { setcolor($1, $2, $3); free($1); free($2); free($3); }
116 69bdd906 2021-06-15 op ;
117 69bdd906 2021-06-15 op
118 d0149485 2021-06-22 op attr : TSTRING { setattr($1, $1, $1); free($1); }
119 d0149485 2021-06-22 op | TSTRING TSTRING { setattr($1, $2, $1); free($1); free($2); }
120 d0149485 2021-06-22 op | TSTRING TSTRING TSTRING { setattr($1, $2, $3); free($1); free($2); free($3); }
121 d0149485 2021-06-22 op ;
122 d0149485 2021-06-22 op
123 69bdd906 2021-06-15 op bind : TBIND TSTRING TSTRING TSTRING { printf("TODO: bind %s %s %s\n", $2, $3, $4); }
124 69bdd906 2021-06-15 op ;
125 69bdd906 2021-06-15 op
126 69bdd906 2021-06-15 op unbind : TUNBIND TSTRING TSTRING { printf("TODO: unbind %s %s\n", $2, $3); }
127 69bdd906 2021-06-15 op ;
128 69bdd906 2021-06-15 op
129 984245ce 2021-06-23 op proxy : TPROXY TSTRING TVIA TSTRING { add_proxy($2, $4); free($4); }
130 984245ce 2021-06-23 op ;
131 984245ce 2021-06-23 op
132 69bdd906 2021-06-15 op %%
133 69bdd906 2021-06-15 op
134 69bdd906 2021-06-15 op void
135 69bdd906 2021-06-15 op yyerror(const char *fmt, ...)
136 69bdd906 2021-06-15 op {
137 69bdd906 2021-06-15 op va_list va;
138 69bdd906 2021-06-15 op
139 69bdd906 2021-06-15 op fprintf(stderr, "%s:%d ", path, yylval.lineno+1);
140 69bdd906 2021-06-15 op va_start(va, fmt);
141 69bdd906 2021-06-15 op vfprintf(stderr, fmt, va);
142 69bdd906 2021-06-15 op va_end(va);
143 69bdd906 2021-06-15 op fprintf(stderr, "\n");
144 69bdd906 2021-06-15 op parse_errors++;
145 69bdd906 2021-06-15 op }
146 69bdd906 2021-06-15 op
147 69bdd906 2021-06-15 op static struct keyword {
148 69bdd906 2021-06-15 op const char *word;
149 69bdd906 2021-06-15 op int token;
150 69bdd906 2021-06-15 op } keywords[] = {
151 69bdd906 2021-06-15 op { "attr", TATTR },
152 984245ce 2021-06-23 op { "bg", TBG },
153 69bdd906 2021-06-15 op { "bind", TBIND },
154 984245ce 2021-06-23 op { "cont", TCONT },
155 984245ce 2021-06-23 op { "fg", TFG },
156 984245ce 2021-06-23 op { "prefix", TPRFX },
157 984245ce 2021-06-23 op { "proxy", TPROXY },
158 984245ce 2021-06-23 op { "set", TSET },
159 984245ce 2021-06-23 op { "style", TSTYLE },
160 69bdd906 2021-06-15 op { "unbind", TUNBIND },
161 984245ce 2021-06-23 op { "via", TVIA },
162 69bdd906 2021-06-15 op };
163 69bdd906 2021-06-15 op
164 69bdd906 2021-06-15 op int
165 69bdd906 2021-06-15 op yylex(void)
166 69bdd906 2021-06-15 op {
167 69bdd906 2021-06-15 op char buf[1024], *ebuf, *p, *str;
168 69bdd906 2021-06-15 op const char *errstr;
169 69bdd906 2021-06-15 op int c, quotes = 0, escape = 0, qpos = -1, nonkw = 0;
170 69bdd906 2021-06-15 op size_t i;
171 69bdd906 2021-06-15 op
172 69bdd906 2021-06-15 op p = buf;
173 69bdd906 2021-06-15 op ebuf = buf + sizeof(buf);
174 69bdd906 2021-06-15 op
175 69bdd906 2021-06-15 op repeat:
176 69bdd906 2021-06-15 op /* skip whitespace first */
177 69bdd906 2021-06-15 op for (c = getc(yyfp); c == ' ' || c == '\t' || c == '\f'; c = getc(yyfp))
178 69bdd906 2021-06-15 op yylval.colno++;
179 69bdd906 2021-06-15 op
180 69bdd906 2021-06-15 op /* check for special one-character constructions */
181 69bdd906 2021-06-15 op switch (c) {
182 c86d164e 2021-06-24 op case '\r':
183 c86d164e 2021-06-24 op /* silently eat up any \r */
184 c86d164e 2021-06-24 op goto repeat;
185 69bdd906 2021-06-15 op case '\n':
186 69bdd906 2021-06-15 op yylval.colno = 0;
187 69bdd906 2021-06-15 op yylval.lineno++;
188 69bdd906 2021-06-15 op /* fallthrough */
189 69bdd906 2021-06-15 op case '{':
190 69bdd906 2021-06-15 op case '}':
191 69bdd906 2021-06-15 op case '=':
192 69bdd906 2021-06-15 op return c;
193 69bdd906 2021-06-15 op case '#':
194 69bdd906 2021-06-15 op /* skip comments; NUL is allowed; no continuation */
195 69bdd906 2021-06-15 op while ((c = getc(yyfp)) != '\n')
196 69bdd906 2021-06-15 op if (c == EOF)
197 69bdd906 2021-06-15 op goto eof;
198 69bdd906 2021-06-15 op yylval.colno = 0;
199 69bdd906 2021-06-15 op yylval.lineno++;
200 69bdd906 2021-06-15 op return c;
201 69bdd906 2021-06-15 op case EOF:
202 69bdd906 2021-06-15 op goto eof;
203 69bdd906 2021-06-15 op }
204 69bdd906 2021-06-15 op
205 69bdd906 2021-06-15 op /* parsing next word */
206 69bdd906 2021-06-15 op for (;; c = getc(yyfp), yylval.colno++) {
207 69bdd906 2021-06-15 op switch (c) {
208 69bdd906 2021-06-15 op case '\0':
209 69bdd906 2021-06-15 op yyerror("unallowed character NULL in column %d",
210 69bdd906 2021-06-15 op yylval.colno+1);
211 69bdd906 2021-06-15 op escape = 0;
212 69bdd906 2021-06-15 op continue;
213 69bdd906 2021-06-15 op case '\\':
214 69bdd906 2021-06-15 op escape = !escape;
215 69bdd906 2021-06-15 op if (escape)
216 69bdd906 2021-06-15 op continue;
217 69bdd906 2021-06-15 op break;
218 6ba9e5a8 2021-06-24 op case '\r':
219 6ba9e5a8 2021-06-24 op /* ignore \r here too */
220 6ba9e5a8 2021-06-24 op continue;
221 69bdd906 2021-06-15 op case '\n':
222 69bdd906 2021-06-15 op if (quotes)
223 69bdd906 2021-06-15 op yyerror("unterminated quotes in column %d",
224 69bdd906 2021-06-15 op yylval.colno+1);
225 69bdd906 2021-06-15 op if (escape) {
226 69bdd906 2021-06-15 op nonkw = 1;
227 69bdd906 2021-06-15 op escape = 0;
228 69bdd906 2021-06-15 op yylval.colno = 0;
229 69bdd906 2021-06-15 op yylval.lineno++;
230 69bdd906 2021-06-15 op }
231 69bdd906 2021-06-15 op goto eow;
232 69bdd906 2021-06-15 op case EOF:
233 69bdd906 2021-06-15 op if (escape)
234 69bdd906 2021-06-15 op yyerror("unterminated escape in column %d",
235 69bdd906 2021-06-15 op yylval.colno);
236 69bdd906 2021-06-15 op if (quotes)
237 69bdd906 2021-06-15 op yyerror("unterminated quotes in column %d",
238 69bdd906 2021-06-15 op qpos + 1);
239 69bdd906 2021-06-15 op goto eow;
240 69bdd906 2021-06-15 op case '{':
241 69bdd906 2021-06-15 op case '}':
242 69bdd906 2021-06-15 op case '=':
243 69bdd906 2021-06-15 op case '#':
244 69bdd906 2021-06-15 op case ' ':
245 69bdd906 2021-06-15 op case '\t':
246 69bdd906 2021-06-15 op if (!escape && !quotes)
247 69bdd906 2021-06-15 op goto eow;
248 69bdd906 2021-06-15 op break;
249 69bdd906 2021-06-15 op case '"':
250 69bdd906 2021-06-15 op if (!escape) {
251 69bdd906 2021-06-15 op quotes = !quotes;
252 69bdd906 2021-06-15 op if (quotes) {
253 69bdd906 2021-06-15 op nonkw = 1;
254 69bdd906 2021-06-15 op qpos = yylval.colno;
255 69bdd906 2021-06-15 op }
256 69bdd906 2021-06-15 op continue;
257 69bdd906 2021-06-15 op }
258 69bdd906 2021-06-15 op }
259 69bdd906 2021-06-15 op *p++ = c;
260 69bdd906 2021-06-15 op if (p == ebuf) {
261 69bdd906 2021-06-15 op yyerror("line too long");
262 69bdd906 2021-06-15 op p = buf;
263 69bdd906 2021-06-15 op }
264 69bdd906 2021-06-15 op escape = 0;
265 69bdd906 2021-06-15 op }
266 69bdd906 2021-06-15 op
267 69bdd906 2021-06-15 op eow:
268 69bdd906 2021-06-15 op *p = 0;
269 69bdd906 2021-06-15 op if (c != EOF)
270 69bdd906 2021-06-15 op ungetc(c, yyfp);
271 69bdd906 2021-06-15 op if (p == buf) {
272 69bdd906 2021-06-15 op /*
273 69bdd906 2021-06-15 op * There could be a number of reason for empty buffer,
274 69bdd906 2021-06-15 op * and we handle all of them here, to avoid cluttering
275 69bdd906 2021-06-15 op * the main loop.
276 69bdd906 2021-06-15 op */
277 69bdd906 2021-06-15 op if (c == EOF)
278 69bdd906 2021-06-15 op goto eof;
279 69bdd906 2021-06-15 op else if (qpos == -1) /* accept, e.g., empty args: cmd foo args "" */
280 69bdd906 2021-06-15 op goto repeat;
281 69bdd906 2021-06-15 op }
282 69bdd906 2021-06-15 op if (!nonkw) {
283 69bdd906 2021-06-15 op for (i = 0; i < sizeof(keywords) / sizeof(keywords[0]); i++) {
284 69bdd906 2021-06-15 op if (strcmp(buf, keywords[i].word) == 0)
285 69bdd906 2021-06-15 op return keywords[i].token;
286 69bdd906 2021-06-15 op }
287 69bdd906 2021-06-15 op }
288 69bdd906 2021-06-15 op c = *buf;
289 69bdd906 2021-06-15 op if (!nonkw && (c == '-' || isdigit(c))) {
290 69bdd906 2021-06-15 op yylval.num = strtonum(buf, INT_MIN, INT_MAX, &errstr);
291 69bdd906 2021-06-15 op if (errstr != NULL)
292 69bdd906 2021-06-15 op yyerror("number is %s: %s", errstr, buf);
293 69bdd906 2021-06-15 op return TNUMBER;
294 69bdd906 2021-06-15 op }
295 69bdd906 2021-06-15 op if ((str = strdup(buf)) == NULL)
296 69bdd906 2021-06-15 op err(1, "%s", __func__);
297 69bdd906 2021-06-15 op yylval.str = str;
298 69bdd906 2021-06-15 op return TSTRING;
299 69bdd906 2021-06-15 op
300 69bdd906 2021-06-15 op eof:
301 69bdd906 2021-06-15 op if (ferror(yyfp))
302 69bdd906 2021-06-15 op yyerror("input error reading config");
303 69bdd906 2021-06-15 op return 0;
304 69bdd906 2021-06-15 op }
305 69bdd906 2021-06-15 op
306 69e1d1b6 2021-06-15 op static void
307 d89b86d6 2021-06-21 op setprfx(const char *prfx, const char *cont)
308 69e1d1b6 2021-06-15 op {
309 74a2587f 2021-06-21 op assert(current_style != NULL);
310 69e1d1b6 2021-06-15 op
311 d89b86d6 2021-06-21 op if (!config_setprfx(current_style, prfx, cont))
312 d89b86d6 2021-06-21 op yyerror("invalid style %s", current_style);
313 86e7d7b4 2021-06-19 op }
314 86e7d7b4 2021-06-19 op
315 86e7d7b4 2021-06-19 op static void
316 86e7d7b4 2021-06-19 op setvari(char *var, int val)
317 86e7d7b4 2021-06-19 op {
318 86e7d7b4 2021-06-19 op if (!config_setvari(var, val))
319 86e7d7b4 2021-06-19 op yyerror("invalid variable or value: %s = %d",
320 86e7d7b4 2021-06-19 op var, val);
321 86e7d7b4 2021-06-19 op
322 86e7d7b4 2021-06-19 op free(var);
323 69e1d1b6 2021-06-15 op }
324 69e1d1b6 2021-06-15 op
325 86e7d7b4 2021-06-19 op static void
326 86e7d7b4 2021-06-19 op setvars(char *var, char *val)
327 86e7d7b4 2021-06-19 op {
328 86e7d7b4 2021-06-19 op if (!config_setvars(var, val))
329 86e7d7b4 2021-06-19 op yyerror("invalid variable or value: %s = \"%s\"",
330 86e7d7b4 2021-06-19 op var, val);
331 86e7d7b4 2021-06-19 op
332 86e7d7b4 2021-06-19 op free(var);
333 74a2587f 2021-06-21 op }
334 74a2587f 2021-06-21 op
335 74a2587f 2021-06-21 op static int
336 74a2587f 2021-06-21 op colorname(const char *name)
337 74a2587f 2021-06-21 op {
338 74a2587f 2021-06-21 op struct {
339 74a2587f 2021-06-21 op const char *name;
340 74a2587f 2021-06-21 op short val;
341 74a2587f 2021-06-21 op } *i, colors[] = {
342 160abe04 2021-06-21 op { "default", -1 },
343 74a2587f 2021-06-21 op { "black", COLOR_BLACK },
344 74a2587f 2021-06-21 op { "red", COLOR_RED },
345 74a2587f 2021-06-21 op { "green", COLOR_GREEN },
346 74a2587f 2021-06-21 op { "yellow", COLOR_YELLOW },
347 74a2587f 2021-06-21 op { "blue", COLOR_BLUE },
348 74a2587f 2021-06-21 op { "magenta", COLOR_MAGENTA },
349 74a2587f 2021-06-21 op { "cyan", COLOR_CYAN },
350 74a2587f 2021-06-21 op { "white", COLOR_WHITE },
351 74a2587f 2021-06-21 op { NULL, 0 },
352 74a2587f 2021-06-21 op };
353 27766d48 2021-06-22 op const char *errstr;
354 27766d48 2021-06-22 op int n;
355 27766d48 2021-06-22 op
356 27766d48 2021-06-22 op if (has_prefix(name, "colo")) {
357 27766d48 2021-06-22 op /* people are strange */
358 27766d48 2021-06-22 op if (has_prefix(name, "color"))
359 27766d48 2021-06-22 op name += 5;
360 27766d48 2021-06-22 op else if (has_prefix(name, "colour"))
361 27766d48 2021-06-22 op name += 6;
362 27766d48 2021-06-22 op else
363 27766d48 2021-06-22 op goto err;
364 74a2587f 2021-06-21 op
365 27766d48 2021-06-22 op n = strtonum(name, 0, 256, &errstr);
366 27766d48 2021-06-22 op if (errstr != NULL)
367 27766d48 2021-06-22 op yyerror("color number is %s: %s", errstr, name);
368 27766d48 2021-06-22 op return n;
369 27766d48 2021-06-22 op }
370 27766d48 2021-06-22 op
371 74a2587f 2021-06-21 op for (i = colors; i->name != NULL; ++i) {
372 74a2587f 2021-06-21 op if (!strcmp(i->name, name))
373 74a2587f 2021-06-21 op return i->val;
374 74a2587f 2021-06-21 op }
375 74a2587f 2021-06-21 op
376 27766d48 2021-06-22 op err:
377 74a2587f 2021-06-21 op yyerror("unknown color name \"%s\"", name);
378 74a2587f 2021-06-21 op return -1;
379 86e7d7b4 2021-06-19 op }
380 86e7d7b4 2021-06-19 op
381 69bdd906 2021-06-15 op void
382 d89b86d6 2021-06-21 op setcolor(const char *prfx, const char *line, const char *trail)
383 74a2587f 2021-06-21 op {
384 d89b86d6 2021-06-21 op int p, l, t;
385 74a2587f 2021-06-21 op
386 74a2587f 2021-06-21 op assert(current_style != NULL);
387 74a2587f 2021-06-21 op
388 160abe04 2021-06-21 op p = colorname(prfx);
389 160abe04 2021-06-21 op l = colorname(line);
390 160abe04 2021-06-21 op t = colorname(trail);
391 74a2587f 2021-06-21 op
392 d89b86d6 2021-06-21 op if (!config_setcolor(color_type == TBG, current_style, p, l, t))
393 d0149485 2021-06-22 op yyerror("invalid style %s", current_style);
394 d0149485 2021-06-22 op }
395 d0149485 2021-06-22 op
396 d0149485 2021-06-22 op static int
397 d0149485 2021-06-22 op attrname(char *n)
398 d0149485 2021-06-22 op {
399 d0149485 2021-06-22 op struct {
400 d0149485 2021-06-22 op const char *name;
401 d0149485 2021-06-22 op unsigned int val;
402 d0149485 2021-06-22 op } *i, attrs[] = {
403 d0149485 2021-06-22 op { "normal", A_NORMAL },
404 d0149485 2021-06-22 op { "standout", A_STANDOUT },
405 d0149485 2021-06-22 op { "underline", A_UNDERLINE },
406 d0149485 2021-06-22 op { "reverse", A_REVERSE },
407 d0149485 2021-06-22 op { "blink", A_BLINK },
408 d0149485 2021-06-22 op { "dim", A_DIM },
409 d0149485 2021-06-22 op { "bold", A_BOLD },
410 d0149485 2021-06-22 op { NULL, 0 },
411 d0149485 2021-06-22 op };
412 d0149485 2021-06-22 op int ret, found;
413 d0149485 2021-06-22 op char *ap;
414 d0149485 2021-06-22 op
415 d0149485 2021-06-22 op ret = 0;
416 d0149485 2021-06-22 op while ((ap = strsep(&n, ",")) != NULL) {
417 d0149485 2021-06-22 op if (*ap == '\0')
418 d0149485 2021-06-22 op continue;
419 d0149485 2021-06-22 op
420 d0149485 2021-06-22 op found = 0;
421 d0149485 2021-06-22 op for (i = attrs; i ->name != NULL; ++i) {
422 d0149485 2021-06-22 op if (strcmp(i->name, ap))
423 d0149485 2021-06-22 op continue;
424 d0149485 2021-06-22 op ret |= i->val;
425 d0149485 2021-06-22 op found = 1;
426 d0149485 2021-06-22 op break;
427 d0149485 2021-06-22 op }
428 d0149485 2021-06-22 op
429 d0149485 2021-06-22 op if (!found)
430 d0149485 2021-06-22 op yyerror("unknown attribute \"%s\" at col %d",
431 d0149485 2021-06-22 op ap, yylval.colno+1);
432 d0149485 2021-06-22 op }
433 d0149485 2021-06-22 op
434 d0149485 2021-06-22 op return ret;
435 d0149485 2021-06-22 op }
436 d0149485 2021-06-22 op
437 d0149485 2021-06-22 op static void
438 d0149485 2021-06-22 op setattr(char *prfx, char *line, char *trail)
439 d0149485 2021-06-22 op {
440 d0149485 2021-06-22 op int p, l, t;
441 d0149485 2021-06-22 op
442 d0149485 2021-06-22 op assert(current_style != NULL);
443 d0149485 2021-06-22 op
444 d0149485 2021-06-22 op p = attrname(prfx);
445 d0149485 2021-06-22 op l = attrname(line);
446 d0149485 2021-06-22 op t = attrname(trail);
447 d0149485 2021-06-22 op
448 d0149485 2021-06-22 op if (!config_setattr(current_style, p, l, t))
449 d89b86d6 2021-06-21 op yyerror("invalid style %s", current_style);
450 74a2587f 2021-06-21 op }
451 74a2587f 2021-06-21 op
452 984245ce 2021-06-23 op static void
453 984245ce 2021-06-23 op add_proxy(char *proto, char *proxy)
454 984245ce 2021-06-23 op {
455 984245ce 2021-06-23 op struct proxy *p;
456 984245ce 2021-06-23 op struct phos_uri uri;
457 984245ce 2021-06-23 op
458 984245ce 2021-06-23 op if (!phos_parse_absolute_uri(proxy, &uri)) {
459 984245ce 2021-06-23 op yyerror("can't parse URL: %s", proxy);
460 984245ce 2021-06-23 op return;
461 984245ce 2021-06-23 op }
462 984245ce 2021-06-23 op
463 984245ce 2021-06-23 op if (*uri.path != '\0' || *uri.query != '\0' || *uri.fragment != '\0') {
464 984245ce 2021-06-23 op yyerror("proxy url can't have path, query or fragments");
465 984245ce 2021-06-23 op return;
466 984245ce 2021-06-23 op }
467 984245ce 2021-06-23 op
468 984245ce 2021-06-23 op if (strcmp(uri.scheme, "gemini")) {
469 984245ce 2021-06-23 op yyerror("disallowed proxy protocol %s", uri.scheme);
470 984245ce 2021-06-23 op return;
471 984245ce 2021-06-23 op }
472 984245ce 2021-06-23 op
473 984245ce 2021-06-23 op if ((p = calloc(1, sizeof(*p))) == NULL)
474 984245ce 2021-06-23 op err(1, "calloc");
475 984245ce 2021-06-23 op
476 984245ce 2021-06-23 op p->match_proto = proto;
477 984245ce 2021-06-23 op
478 984245ce 2021-06-23 op if ((p->host = strdup(uri.host)) == NULL)
479 984245ce 2021-06-23 op err(1, "strdup");
480 984245ce 2021-06-23 op
481 984245ce 2021-06-23 op if ((p->port = strdup(uri.port)) == NULL)
482 984245ce 2021-06-23 op err(1, "strdup");
483 984245ce 2021-06-23 op
484 984245ce 2021-06-23 op TAILQ_INSERT_HEAD(&proxies, p, proxies);
485 984245ce 2021-06-23 op }
486 984245ce 2021-06-23 op
487 74a2587f 2021-06-21 op void
488 69bdd906 2021-06-15 op parseconfig(const char *filename, int fonf)
489 69bdd906 2021-06-15 op {
490 69bdd906 2021-06-15 op if ((yyfp = fopen(filename, "r")) == NULL) {
491 69bdd906 2021-06-15 op if (fonf)
492 69bdd906 2021-06-15 op err(1, "%s", filename);
493 69bdd906 2021-06-15 op return;
494 69bdd906 2021-06-15 op }
495 69bdd906 2021-06-15 op
496 69bdd906 2021-06-15 op path = filename;
497 69bdd906 2021-06-15 op yyparse();
498 69bdd906 2021-06-15 op fclose(yyfp);
499 69bdd906 2021-06-15 op if (parse_errors)
500 69bdd906 2021-06-15 op exit(1);
501 69bdd906 2021-06-15 op }