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 e3427d18 2021-06-25 op static void bindkey(const char *, const char *, const char *);
66 69bdd906 2021-06-15 op
67 69bdd906 2021-06-15 op %}
68 69bdd906 2021-06-15 op
69 69bdd906 2021-06-15 op %token TSET
70 d0149485 2021-06-22 op %token TSTYLE TPRFX TCONT TBG TFG TATTR
71 69bdd906 2021-06-15 op %token TBIND TUNBIND
72 984245ce 2021-06-23 op %token TPROXY TVIA
73 69bdd906 2021-06-15 op
74 69bdd906 2021-06-15 op %token <str> TSTRING
75 69bdd906 2021-06-15 op %token <num> TNUMBER
76 69bdd906 2021-06-15 op
77 69bdd906 2021-06-15 op %%
78 69bdd906 2021-06-15 op
79 69bdd906 2021-06-15 op grammar : /* empty */
80 69bdd906 2021-06-15 op | grammar '\n'
81 69bdd906 2021-06-15 op | grammar rule '\n'
82 69bdd906 2021-06-15 op | error '\n'
83 69bdd906 2021-06-15 op ;
84 69bdd906 2021-06-15 op
85 69e1d1b6 2021-06-15 op rule : set
86 74a2587f 2021-06-21 op | style {
87 74a2587f 2021-06-21 op free(current_style);
88 74a2587f 2021-06-21 op current_style = NULL;
89 74a2587f 2021-06-21 op }
90 69e1d1b6 2021-06-15 op | bind
91 69e1d1b6 2021-06-15 op | unbind
92 984245ce 2021-06-23 op | proxy
93 69e1d1b6 2021-06-15 op ;
94 69bdd906 2021-06-15 op
95 86e7d7b4 2021-06-19 op set : TSET TSTRING '=' TSTRING { setvars($2, $4); }
96 86e7d7b4 2021-06-19 op | TSET TSTRING '=' TNUMBER { setvari($2, $4); }
97 69bdd906 2021-06-15 op ;
98 69bdd906 2021-06-15 op
99 74a2587f 2021-06-21 op style : TSTYLE TSTRING { current_style = $2; } stylespec ;
100 74a2587f 2021-06-21 op stylespec : styleopt | '{' styleopts '}' ;
101 69bdd906 2021-06-15 op
102 69bdd906 2021-06-15 op styleopts : /* empty */
103 69bdd906 2021-06-15 op | styleopts '\n'
104 69bdd906 2021-06-15 op | styleopts styleopt '\n'
105 69bdd906 2021-06-15 op ;
106 69bdd906 2021-06-15 op
107 d89b86d6 2021-06-21 op styleopt : TPRFX TSTRING { setprfx($2, $2); }
108 eff23f5d 2021-06-25 op | TPRFX TSTRING TSTRING { setprfx($2, $3); }
109 d89b86d6 2021-06-21 op | TBG { color_type = TBG; } colorspec
110 d89b86d6 2021-06-21 op | TFG { color_type = TFG; } colorspec
111 d0149485 2021-06-22 op | TATTR attr
112 d89b86d6 2021-06-21 op ;
113 d89b86d6 2021-06-21 op
114 d89b86d6 2021-06-21 op colorspec : TSTRING { setcolor($1, $1, $1); free($1); }
115 d89b86d6 2021-06-21 op | TSTRING TSTRING { setcolor($1, $2, $1); free($1); free($2); }
116 d89b86d6 2021-06-21 op | TSTRING TSTRING TSTRING { setcolor($1, $2, $3); free($1); free($2); free($3); }
117 69bdd906 2021-06-15 op ;
118 69bdd906 2021-06-15 op
119 d0149485 2021-06-22 op attr : TSTRING { setattr($1, $1, $1); free($1); }
120 d0149485 2021-06-22 op | TSTRING TSTRING { setattr($1, $2, $1); free($1); free($2); }
121 d0149485 2021-06-22 op | TSTRING TSTRING TSTRING { setattr($1, $2, $3); free($1); free($2); free($3); }
122 d0149485 2021-06-22 op ;
123 d0149485 2021-06-22 op
124 e3427d18 2021-06-25 op bind : TBIND TSTRING TSTRING TSTRING { bindkey($2, $3, $4); free($2); free($3); free($4); }
125 69bdd906 2021-06-15 op ;
126 69bdd906 2021-06-15 op
127 e3427d18 2021-06-25 op unbind : TUNBIND TSTRING TSTRING { yyerror("TODO: unbind %s %s", $2, $3); }
128 69bdd906 2021-06-15 op ;
129 69bdd906 2021-06-15 op
130 984245ce 2021-06-23 op proxy : TPROXY TSTRING TVIA TSTRING { add_proxy($2, $4); free($4); }
131 984245ce 2021-06-23 op ;
132 984245ce 2021-06-23 op
133 69bdd906 2021-06-15 op %%
134 69bdd906 2021-06-15 op
135 69bdd906 2021-06-15 op void
136 69bdd906 2021-06-15 op yyerror(const char *fmt, ...)
137 69bdd906 2021-06-15 op {
138 69bdd906 2021-06-15 op va_list va;
139 69bdd906 2021-06-15 op
140 69bdd906 2021-06-15 op fprintf(stderr, "%s:%d ", path, yylval.lineno+1);
141 69bdd906 2021-06-15 op va_start(va, fmt);
142 69bdd906 2021-06-15 op vfprintf(stderr, fmt, va);
143 69bdd906 2021-06-15 op va_end(va);
144 69bdd906 2021-06-15 op fprintf(stderr, "\n");
145 69bdd906 2021-06-15 op parse_errors++;
146 69bdd906 2021-06-15 op }
147 69bdd906 2021-06-15 op
148 69bdd906 2021-06-15 op static struct keyword {
149 69bdd906 2021-06-15 op const char *word;
150 69bdd906 2021-06-15 op int token;
151 69bdd906 2021-06-15 op } keywords[] = {
152 69bdd906 2021-06-15 op { "attr", TATTR },
153 984245ce 2021-06-23 op { "bg", TBG },
154 69bdd906 2021-06-15 op { "bind", TBIND },
155 984245ce 2021-06-23 op { "cont", TCONT },
156 984245ce 2021-06-23 op { "fg", TFG },
157 984245ce 2021-06-23 op { "prefix", TPRFX },
158 984245ce 2021-06-23 op { "proxy", TPROXY },
159 984245ce 2021-06-23 op { "set", TSET },
160 984245ce 2021-06-23 op { "style", TSTYLE },
161 69bdd906 2021-06-15 op { "unbind", TUNBIND },
162 984245ce 2021-06-23 op { "via", TVIA },
163 69bdd906 2021-06-15 op };
164 69bdd906 2021-06-15 op
165 69bdd906 2021-06-15 op int
166 69bdd906 2021-06-15 op yylex(void)
167 69bdd906 2021-06-15 op {
168 69bdd906 2021-06-15 op char buf[1024], *ebuf, *p, *str;
169 69bdd906 2021-06-15 op const char *errstr;
170 69bdd906 2021-06-15 op int c, quotes = 0, escape = 0, qpos = -1, nonkw = 0;
171 69bdd906 2021-06-15 op size_t i;
172 69bdd906 2021-06-15 op
173 69bdd906 2021-06-15 op p = buf;
174 69bdd906 2021-06-15 op ebuf = buf + sizeof(buf);
175 69bdd906 2021-06-15 op
176 69bdd906 2021-06-15 op repeat:
177 69bdd906 2021-06-15 op /* skip whitespace first */
178 69bdd906 2021-06-15 op for (c = getc(yyfp); c == ' ' || c == '\t' || c == '\f'; c = getc(yyfp))
179 69bdd906 2021-06-15 op yylval.colno++;
180 69bdd906 2021-06-15 op
181 69bdd906 2021-06-15 op /* check for special one-character constructions */
182 69bdd906 2021-06-15 op switch (c) {
183 c86d164e 2021-06-24 op case '\r':
184 c86d164e 2021-06-24 op /* silently eat up any \r */
185 c86d164e 2021-06-24 op goto repeat;
186 69bdd906 2021-06-15 op case '\n':
187 69bdd906 2021-06-15 op yylval.colno = 0;
188 69bdd906 2021-06-15 op yylval.lineno++;
189 69bdd906 2021-06-15 op /* fallthrough */
190 69bdd906 2021-06-15 op case '{':
191 69bdd906 2021-06-15 op case '}':
192 69bdd906 2021-06-15 op case '=':
193 69bdd906 2021-06-15 op return c;
194 69bdd906 2021-06-15 op case '#':
195 69bdd906 2021-06-15 op /* skip comments; NUL is allowed; no continuation */
196 69bdd906 2021-06-15 op while ((c = getc(yyfp)) != '\n')
197 69bdd906 2021-06-15 op if (c == EOF)
198 69bdd906 2021-06-15 op goto eof;
199 69bdd906 2021-06-15 op yylval.colno = 0;
200 69bdd906 2021-06-15 op yylval.lineno++;
201 69bdd906 2021-06-15 op return c;
202 69bdd906 2021-06-15 op case EOF:
203 69bdd906 2021-06-15 op goto eof;
204 69bdd906 2021-06-15 op }
205 69bdd906 2021-06-15 op
206 69bdd906 2021-06-15 op /* parsing next word */
207 69bdd906 2021-06-15 op for (;; c = getc(yyfp), yylval.colno++) {
208 69bdd906 2021-06-15 op switch (c) {
209 69bdd906 2021-06-15 op case '\0':
210 69bdd906 2021-06-15 op yyerror("unallowed character NULL in column %d",
211 69bdd906 2021-06-15 op yylval.colno+1);
212 69bdd906 2021-06-15 op escape = 0;
213 69bdd906 2021-06-15 op continue;
214 69bdd906 2021-06-15 op case '\\':
215 69bdd906 2021-06-15 op escape = !escape;
216 69bdd906 2021-06-15 op if (escape)
217 69bdd906 2021-06-15 op continue;
218 69bdd906 2021-06-15 op break;
219 6ba9e5a8 2021-06-24 op case '\r':
220 6ba9e5a8 2021-06-24 op /* ignore \r here too */
221 6ba9e5a8 2021-06-24 op continue;
222 69bdd906 2021-06-15 op case '\n':
223 69bdd906 2021-06-15 op if (quotes)
224 69bdd906 2021-06-15 op yyerror("unterminated quotes in column %d",
225 69bdd906 2021-06-15 op yylval.colno+1);
226 69bdd906 2021-06-15 op if (escape) {
227 69bdd906 2021-06-15 op nonkw = 1;
228 69bdd906 2021-06-15 op escape = 0;
229 69bdd906 2021-06-15 op yylval.colno = 0;
230 69bdd906 2021-06-15 op yylval.lineno++;
231 69bdd906 2021-06-15 op }
232 69bdd906 2021-06-15 op goto eow;
233 69bdd906 2021-06-15 op case EOF:
234 69bdd906 2021-06-15 op if (escape)
235 69bdd906 2021-06-15 op yyerror("unterminated escape in column %d",
236 69bdd906 2021-06-15 op yylval.colno);
237 69bdd906 2021-06-15 op if (quotes)
238 69bdd906 2021-06-15 op yyerror("unterminated quotes in column %d",
239 69bdd906 2021-06-15 op qpos + 1);
240 69bdd906 2021-06-15 op goto eow;
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 ' ':
246 69bdd906 2021-06-15 op case '\t':
247 69bdd906 2021-06-15 op if (!escape && !quotes)
248 69bdd906 2021-06-15 op goto eow;
249 69bdd906 2021-06-15 op break;
250 69bdd906 2021-06-15 op case '"':
251 69bdd906 2021-06-15 op if (!escape) {
252 69bdd906 2021-06-15 op quotes = !quotes;
253 69bdd906 2021-06-15 op if (quotes) {
254 69bdd906 2021-06-15 op nonkw = 1;
255 69bdd906 2021-06-15 op qpos = yylval.colno;
256 69bdd906 2021-06-15 op }
257 69bdd906 2021-06-15 op continue;
258 69bdd906 2021-06-15 op }
259 69bdd906 2021-06-15 op }
260 69bdd906 2021-06-15 op *p++ = c;
261 69bdd906 2021-06-15 op if (p == ebuf) {
262 69bdd906 2021-06-15 op yyerror("line too long");
263 69bdd906 2021-06-15 op p = buf;
264 69bdd906 2021-06-15 op }
265 69bdd906 2021-06-15 op escape = 0;
266 69bdd906 2021-06-15 op }
267 69bdd906 2021-06-15 op
268 69bdd906 2021-06-15 op eow:
269 69bdd906 2021-06-15 op *p = 0;
270 69bdd906 2021-06-15 op if (c != EOF)
271 69bdd906 2021-06-15 op ungetc(c, yyfp);
272 69bdd906 2021-06-15 op if (p == buf) {
273 69bdd906 2021-06-15 op /*
274 69bdd906 2021-06-15 op * There could be a number of reason for empty buffer,
275 69bdd906 2021-06-15 op * and we handle all of them here, to avoid cluttering
276 69bdd906 2021-06-15 op * the main loop.
277 69bdd906 2021-06-15 op */
278 69bdd906 2021-06-15 op if (c == EOF)
279 69bdd906 2021-06-15 op goto eof;
280 69bdd906 2021-06-15 op else if (qpos == -1) /* accept, e.g., empty args: cmd foo args "" */
281 69bdd906 2021-06-15 op goto repeat;
282 69bdd906 2021-06-15 op }
283 69bdd906 2021-06-15 op if (!nonkw) {
284 69bdd906 2021-06-15 op for (i = 0; i < sizeof(keywords) / sizeof(keywords[0]); i++) {
285 69bdd906 2021-06-15 op if (strcmp(buf, keywords[i].word) == 0)
286 69bdd906 2021-06-15 op return keywords[i].token;
287 69bdd906 2021-06-15 op }
288 69bdd906 2021-06-15 op }
289 69bdd906 2021-06-15 op c = *buf;
290 69bdd906 2021-06-15 op if (!nonkw && (c == '-' || isdigit(c))) {
291 69bdd906 2021-06-15 op yylval.num = strtonum(buf, INT_MIN, INT_MAX, &errstr);
292 69bdd906 2021-06-15 op if (errstr != NULL)
293 69bdd906 2021-06-15 op yyerror("number is %s: %s", errstr, buf);
294 69bdd906 2021-06-15 op return TNUMBER;
295 69bdd906 2021-06-15 op }
296 69bdd906 2021-06-15 op if ((str = strdup(buf)) == NULL)
297 69bdd906 2021-06-15 op err(1, "%s", __func__);
298 69bdd906 2021-06-15 op yylval.str = str;
299 69bdd906 2021-06-15 op return TSTRING;
300 69bdd906 2021-06-15 op
301 69bdd906 2021-06-15 op eof:
302 69bdd906 2021-06-15 op if (ferror(yyfp))
303 69bdd906 2021-06-15 op yyerror("input error reading config");
304 69bdd906 2021-06-15 op return 0;
305 69bdd906 2021-06-15 op }
306 69bdd906 2021-06-15 op
307 69e1d1b6 2021-06-15 op static void
308 d89b86d6 2021-06-21 op setprfx(const char *prfx, const char *cont)
309 69e1d1b6 2021-06-15 op {
310 74a2587f 2021-06-21 op assert(current_style != NULL);
311 69e1d1b6 2021-06-15 op
312 d89b86d6 2021-06-21 op if (!config_setprfx(current_style, prfx, cont))
313 d89b86d6 2021-06-21 op yyerror("invalid style %s", current_style);
314 86e7d7b4 2021-06-19 op }
315 86e7d7b4 2021-06-19 op
316 86e7d7b4 2021-06-19 op static void
317 86e7d7b4 2021-06-19 op setvari(char *var, int val)
318 86e7d7b4 2021-06-19 op {
319 86e7d7b4 2021-06-19 op if (!config_setvari(var, val))
320 86e7d7b4 2021-06-19 op yyerror("invalid variable or value: %s = %d",
321 86e7d7b4 2021-06-19 op var, val);
322 86e7d7b4 2021-06-19 op
323 86e7d7b4 2021-06-19 op free(var);
324 69e1d1b6 2021-06-15 op }
325 69e1d1b6 2021-06-15 op
326 86e7d7b4 2021-06-19 op static void
327 86e7d7b4 2021-06-19 op setvars(char *var, char *val)
328 86e7d7b4 2021-06-19 op {
329 86e7d7b4 2021-06-19 op if (!config_setvars(var, val))
330 86e7d7b4 2021-06-19 op yyerror("invalid variable or value: %s = \"%s\"",
331 86e7d7b4 2021-06-19 op var, val);
332 86e7d7b4 2021-06-19 op
333 86e7d7b4 2021-06-19 op free(var);
334 74a2587f 2021-06-21 op }
335 74a2587f 2021-06-21 op
336 74a2587f 2021-06-21 op static int
337 74a2587f 2021-06-21 op colorname(const char *name)
338 74a2587f 2021-06-21 op {
339 74a2587f 2021-06-21 op struct {
340 74a2587f 2021-06-21 op const char *name;
341 74a2587f 2021-06-21 op short val;
342 74a2587f 2021-06-21 op } *i, colors[] = {
343 160abe04 2021-06-21 op { "default", -1 },
344 74a2587f 2021-06-21 op { "black", COLOR_BLACK },
345 74a2587f 2021-06-21 op { "red", COLOR_RED },
346 74a2587f 2021-06-21 op { "green", COLOR_GREEN },
347 74a2587f 2021-06-21 op { "yellow", COLOR_YELLOW },
348 74a2587f 2021-06-21 op { "blue", COLOR_BLUE },
349 74a2587f 2021-06-21 op { "magenta", COLOR_MAGENTA },
350 74a2587f 2021-06-21 op { "cyan", COLOR_CYAN },
351 74a2587f 2021-06-21 op { "white", COLOR_WHITE },
352 74a2587f 2021-06-21 op { NULL, 0 },
353 74a2587f 2021-06-21 op };
354 27766d48 2021-06-22 op const char *errstr;
355 27766d48 2021-06-22 op int n;
356 27766d48 2021-06-22 op
357 27766d48 2021-06-22 op if (has_prefix(name, "colo")) {
358 27766d48 2021-06-22 op /* people are strange */
359 27766d48 2021-06-22 op if (has_prefix(name, "color"))
360 27766d48 2021-06-22 op name += 5;
361 27766d48 2021-06-22 op else if (has_prefix(name, "colour"))
362 27766d48 2021-06-22 op name += 6;
363 27766d48 2021-06-22 op else
364 27766d48 2021-06-22 op goto err;
365 74a2587f 2021-06-21 op
366 27766d48 2021-06-22 op n = strtonum(name, 0, 256, &errstr);
367 27766d48 2021-06-22 op if (errstr != NULL)
368 27766d48 2021-06-22 op yyerror("color number is %s: %s", errstr, name);
369 27766d48 2021-06-22 op return n;
370 27766d48 2021-06-22 op }
371 27766d48 2021-06-22 op
372 74a2587f 2021-06-21 op for (i = colors; i->name != NULL; ++i) {
373 74a2587f 2021-06-21 op if (!strcmp(i->name, name))
374 74a2587f 2021-06-21 op return i->val;
375 74a2587f 2021-06-21 op }
376 74a2587f 2021-06-21 op
377 27766d48 2021-06-22 op err:
378 74a2587f 2021-06-21 op yyerror("unknown color name \"%s\"", name);
379 74a2587f 2021-06-21 op return -1;
380 86e7d7b4 2021-06-19 op }
381 86e7d7b4 2021-06-19 op
382 69bdd906 2021-06-15 op void
383 d89b86d6 2021-06-21 op setcolor(const char *prfx, const char *line, const char *trail)
384 74a2587f 2021-06-21 op {
385 d89b86d6 2021-06-21 op int p, l, t;
386 74a2587f 2021-06-21 op
387 74a2587f 2021-06-21 op assert(current_style != NULL);
388 74a2587f 2021-06-21 op
389 160abe04 2021-06-21 op p = colorname(prfx);
390 160abe04 2021-06-21 op l = colorname(line);
391 160abe04 2021-06-21 op t = colorname(trail);
392 74a2587f 2021-06-21 op
393 d89b86d6 2021-06-21 op if (!config_setcolor(color_type == TBG, current_style, p, l, t))
394 d0149485 2021-06-22 op yyerror("invalid style %s", current_style);
395 d0149485 2021-06-22 op }
396 d0149485 2021-06-22 op
397 d0149485 2021-06-22 op static int
398 d0149485 2021-06-22 op attrname(char *n)
399 d0149485 2021-06-22 op {
400 d0149485 2021-06-22 op struct {
401 d0149485 2021-06-22 op const char *name;
402 d0149485 2021-06-22 op unsigned int val;
403 d0149485 2021-06-22 op } *i, attrs[] = {
404 d0149485 2021-06-22 op { "normal", A_NORMAL },
405 d0149485 2021-06-22 op { "standout", A_STANDOUT },
406 d0149485 2021-06-22 op { "underline", A_UNDERLINE },
407 d0149485 2021-06-22 op { "reverse", A_REVERSE },
408 d0149485 2021-06-22 op { "blink", A_BLINK },
409 d0149485 2021-06-22 op { "dim", A_DIM },
410 d0149485 2021-06-22 op { "bold", A_BOLD },
411 d0149485 2021-06-22 op { NULL, 0 },
412 d0149485 2021-06-22 op };
413 d0149485 2021-06-22 op int ret, found;
414 d0149485 2021-06-22 op char *ap;
415 d0149485 2021-06-22 op
416 d0149485 2021-06-22 op ret = 0;
417 d0149485 2021-06-22 op while ((ap = strsep(&n, ",")) != NULL) {
418 d0149485 2021-06-22 op if (*ap == '\0')
419 d0149485 2021-06-22 op continue;
420 d0149485 2021-06-22 op
421 d0149485 2021-06-22 op found = 0;
422 d0149485 2021-06-22 op for (i = attrs; i ->name != NULL; ++i) {
423 d0149485 2021-06-22 op if (strcmp(i->name, ap))
424 d0149485 2021-06-22 op continue;
425 d0149485 2021-06-22 op ret |= i->val;
426 d0149485 2021-06-22 op found = 1;
427 d0149485 2021-06-22 op break;
428 d0149485 2021-06-22 op }
429 d0149485 2021-06-22 op
430 d0149485 2021-06-22 op if (!found)
431 d0149485 2021-06-22 op yyerror("unknown attribute \"%s\" at col %d",
432 d0149485 2021-06-22 op ap, yylval.colno+1);
433 d0149485 2021-06-22 op }
434 d0149485 2021-06-22 op
435 d0149485 2021-06-22 op return ret;
436 d0149485 2021-06-22 op }
437 d0149485 2021-06-22 op
438 d0149485 2021-06-22 op static void
439 d0149485 2021-06-22 op setattr(char *prfx, char *line, char *trail)
440 d0149485 2021-06-22 op {
441 d0149485 2021-06-22 op int p, l, t;
442 d0149485 2021-06-22 op
443 d0149485 2021-06-22 op assert(current_style != NULL);
444 d0149485 2021-06-22 op
445 d0149485 2021-06-22 op p = attrname(prfx);
446 d0149485 2021-06-22 op l = attrname(line);
447 d0149485 2021-06-22 op t = attrname(trail);
448 d0149485 2021-06-22 op
449 d0149485 2021-06-22 op if (!config_setattr(current_style, p, l, t))
450 d89b86d6 2021-06-21 op yyerror("invalid style %s", current_style);
451 74a2587f 2021-06-21 op }
452 74a2587f 2021-06-21 op
453 984245ce 2021-06-23 op static void
454 984245ce 2021-06-23 op add_proxy(char *proto, char *proxy)
455 984245ce 2021-06-23 op {
456 984245ce 2021-06-23 op struct proxy *p;
457 984245ce 2021-06-23 op struct phos_uri uri;
458 984245ce 2021-06-23 op
459 984245ce 2021-06-23 op if (!phos_parse_absolute_uri(proxy, &uri)) {
460 984245ce 2021-06-23 op yyerror("can't parse URL: %s", proxy);
461 984245ce 2021-06-23 op return;
462 984245ce 2021-06-23 op }
463 984245ce 2021-06-23 op
464 984245ce 2021-06-23 op if (*uri.path != '\0' || *uri.query != '\0' || *uri.fragment != '\0') {
465 984245ce 2021-06-23 op yyerror("proxy url can't have path, query or fragments");
466 984245ce 2021-06-23 op return;
467 984245ce 2021-06-23 op }
468 984245ce 2021-06-23 op
469 984245ce 2021-06-23 op if (strcmp(uri.scheme, "gemini")) {
470 984245ce 2021-06-23 op yyerror("disallowed proxy protocol %s", uri.scheme);
471 984245ce 2021-06-23 op return;
472 984245ce 2021-06-23 op }
473 984245ce 2021-06-23 op
474 984245ce 2021-06-23 op if ((p = calloc(1, sizeof(*p))) == NULL)
475 984245ce 2021-06-23 op err(1, "calloc");
476 984245ce 2021-06-23 op
477 984245ce 2021-06-23 op p->match_proto = proto;
478 984245ce 2021-06-23 op
479 984245ce 2021-06-23 op if ((p->host = strdup(uri.host)) == NULL)
480 984245ce 2021-06-23 op err(1, "strdup");
481 984245ce 2021-06-23 op
482 984245ce 2021-06-23 op if ((p->port = strdup(uri.port)) == NULL)
483 984245ce 2021-06-23 op err(1, "strdup");
484 984245ce 2021-06-23 op
485 984245ce 2021-06-23 op TAILQ_INSERT_HEAD(&proxies, p, proxies);
486 e3427d18 2021-06-25 op }
487 e3427d18 2021-06-25 op
488 e3427d18 2021-06-25 op static interactivefn *
489 e3427d18 2021-06-25 op cmdname(const char *name)
490 e3427d18 2021-06-25 op {
491 e3427d18 2021-06-25 op struct cmd *cmd;
492 e3427d18 2021-06-25 op
493 e3427d18 2021-06-25 op for (cmd = cmds; cmd->cmd != NULL; ++cmd) {
494 e3427d18 2021-06-25 op if (!strcmp(cmd->cmd, name))
495 e3427d18 2021-06-25 op return cmd->fn;
496 e3427d18 2021-06-25 op }
497 e3427d18 2021-06-25 op
498 e3427d18 2021-06-25 op return NULL;
499 e3427d18 2021-06-25 op }
500 e3427d18 2021-06-25 op
501 e3427d18 2021-06-25 op static void
502 e3427d18 2021-06-25 op bindkey(const char *map, const char *key, const char *cmd)
503 e3427d18 2021-06-25 op {
504 e3427d18 2021-06-25 op struct kmap *kmap;
505 e3427d18 2021-06-25 op interactivefn *fn;
506 e3427d18 2021-06-25 op
507 e3427d18 2021-06-25 op if (!strcmp(map, "global-map"))
508 e3427d18 2021-06-25 op kmap = &global_map;
509 e3427d18 2021-06-25 op else if (!strcmp(map, "minibuffer-map"))
510 e3427d18 2021-06-25 op kmap = &minibuffer_map;
511 e3427d18 2021-06-25 op else {
512 e3427d18 2021-06-25 op yyerror("unknown map: %s", map);
513 e3427d18 2021-06-25 op return;
514 e3427d18 2021-06-25 op }
515 e3427d18 2021-06-25 op
516 e3427d18 2021-06-25 op if ((fn = cmdname(cmd)) == NULL) {
517 e3427d18 2021-06-25 op yyerror("unknown cmd: %s", fn);
518 e3427d18 2021-06-25 op return;
519 e3427d18 2021-06-25 op }
520 e3427d18 2021-06-25 op
521 e3427d18 2021-06-25 op if (!kmap_define_key(kmap, key, fn))
522 e3427d18 2021-06-25 op yyerror("failed to bind %s %s %s", map, key, cmd);
523 984245ce 2021-06-23 op }
524 984245ce 2021-06-23 op
525 74a2587f 2021-06-21 op void
526 69bdd906 2021-06-15 op parseconfig(const char *filename, int fonf)
527 69bdd906 2021-06-15 op {
528 69bdd906 2021-06-15 op if ((yyfp = fopen(filename, "r")) == NULL) {
529 69bdd906 2021-06-15 op if (fonf)
530 69bdd906 2021-06-15 op err(1, "%s", filename);
531 69bdd906 2021-06-15 op return;
532 69bdd906 2021-06-15 op }
533 69bdd906 2021-06-15 op
534 69bdd906 2021-06-15 op path = filename;
535 69bdd906 2021-06-15 op yyparse();
536 69bdd906 2021-06-15 op fclose(yyfp);
537 69bdd906 2021-06-15 op if (parse_errors)
538 69bdd906 2021-06-15 op exit(1);
539 69bdd906 2021-06-15 op }