1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
|
/*************************************************************************
* Copyright (c) 2011 AT&T Intellectual Property
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v10.html
*
* Contributors: Details at https://graphviz.org
*************************************************************************/
/*
* Top-level parsing of gpr code into blocks
*
*/
#include <ast/ast.h>
#include <ast/error.h>
#include <gvpr/parse.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <util/agxbuf.h>
#include <util/alloc.h>
#include <util/gv_ctype.h>
#include <util/list.h>
#include <util/unreachable.h>
static int lineno = 1; /* current line number */
static int col0 = 1; /* true if char ptr is at column 0 */
static int startLine = 1; /* set to start line of bracketd content */
static int kwLine = 1; /* set to line of keyword */
static char *case_str[] = {
"BEGIN", "END", "BEG_G", "END_G", "N", "E", "EOF", "ERROR",
};
/// convert case_t to string
static char *caseStr(case_t cs) { return case_str[(int)cs]; }
/// eat characters until eol
static int eol(FILE *str) {
int c;
while ((c = getc(str)) != '\n') {
if (c < 0)
return c;
}
lineno++;
col0 = 1;
return c;
}
/* return character from input stream
* while keeping track of line number.
* Strip out comments, and return space or newline.
* If a newline is seen in comment and ostr
* is non-null, add newline to ostr.
*/
static int readc(FILE *str, agxbuf *ostr) {
int c;
int cc;
switch (c = getc(str)) {
case '\n':
lineno++;
col0 = 1;
break;
case '#':
if (col0) { /* shell comment */
c = eol(str);
} else
col0 = 0;
break;
case '/':
cc = getc(str);
switch (cc) {
case '*': /* in C comment */
while (1) {
switch (c = getc(str)) {
case '\n':
lineno++;
if (ostr)
agxbputc(ostr, (char)c);
break;
case '*':
switch (cc = getc(str)) {
case -1:
return cc;
break;
case '\n':
lineno++;
if (ostr)
agxbputc(ostr, (char)cc);
break;
case '*':
ungetc(cc, str);
break;
case '/':
col0 = 0;
return ' ';
break;
}
}
}
break;
case '/': /* in C++ comment */
c = eol(str);
break;
default: /* not a comment */
if (cc >= '\0')
ungetc(cc, str);
break;
}
break;
default:
col0 = 0;
break;
}
return c;
}
/// push character back onto stream; if newline, reduce lineno
static void unreadc(FILE *str, int c) {
ungetc(c, str);
if (c == '\n')
lineno--;
}
static int skipWS(FILE *str) {
int c;
while (true) {
c = readc(str, 0);
if (!gv_isspace(c)) {
return c;
}
}
}
/// Put initial alpha in buffer; add additional alphas, up to buffer size.
static void parseID(FILE *str, int c, char *buf, size_t bsize) {
char *ptr = buf;
char *eptr = buf + (bsize - 1);
*ptr++ = (char)c;
while (true) {
c = readc(str, 0);
if (c < 0)
break;
if (gv_isalpha(c) || c == '_') {
if (ptr == eptr)
break;
*ptr++ = (char)c;
} else {
unreadc(str, c);
break;
}
}
*ptr = '\0';
}
#define BSIZE 8
/* Look for keywords: BEGIN, END, BEG_G, END_G, N, E
* As side-effect, sets kwLine to line of keyword.
*/
static case_t parseKind(FILE *str) {
int c;
char buf[BSIZE];
case_t cs = Error;
c = skipWS(str);
if (c < 0)
return Eof;
if (!gv_isalpha(c)) {
error(ERROR_ERROR, "expected keyword BEGIN/END/N/E...; found '%c', line %d",
c, lineno);
return Error;
}
kwLine = lineno;
parseID(str, c, buf, BSIZE);
if (strcmp(buf, "BEGIN") == 0) {
cs = Begin;
} else if (strcmp(buf, "BEG_G") == 0) {
cs = BeginG;
} else if (strcmp(buf, "E") == 0) {
cs = Edge;
} else if (strcmp(buf, "END") == 0) {
cs = End;
} else if (strcmp(buf, "END_G") == 0) {
cs = EndG;
} else if (strcmp(buf, "N") == 0) {
cs = Node;
}
if (cs == Error)
error(ERROR_ERROR, "unexpected keyword \"%s\", line %d", buf, kwLine);
return cs;
}
/* eat characters from ins, putting them into outs,
* up to and including a terminating character ec
* that is not escaped with a back quote.
*/
static int endString(FILE *ins, agxbuf *outs, char ec) {
int sline = lineno;
int c;
while ((c = getc(ins)) != ec) {
if (c == '\\') {
agxbputc(outs, (char)c);
c = getc(ins);
}
if (c < 0) {
error(ERROR_ERROR, "unclosed string, start line %d", sline);
return c;
}
if (c == '\n')
lineno++;
agxbputc(outs, (char)c);
}
agxbputc(outs, (char)c);
return 0;
}
/* eat characters from ins, putting them into outs,
* up to a terminating character ec.
* Strings are treated as atomic units: any ec in them
* is ignored. Since matching bc-ec pairs might nest,
* the function is called recursively.
*/
static int endBracket(FILE *ins, agxbuf *outs, char bc, char ec) {
int c;
while (true) {
c = readc(ins, outs);
if (c < 0 || c == ec)
return c;
else if (c == bc) {
agxbputc(outs, (char)c);
c = endBracket(ins, outs, bc, ec);
if (c < 0)
return c;
else
agxbputc(outs, (char)c);
} else if (c == '\'' || c == '"') {
agxbputc(outs, (char)c);
if (endString(ins, outs, (char)c))
return -1;
} else
agxbputc(outs, (char)c);
}
}
/* parse paired expression : bc <string> ec
* returning <string>
* As a side-effect, set startLine to beginning of content.
*/
static char *parseBracket(FILE *str, agxbuf *buf, int bc, int ec) {
int c;
c = skipWS(str);
if (c < 0)
return 0;
if (c != bc) {
unreadc(str, c);
return 0;
}
startLine = lineno;
c = endBracket(str, buf, bc, (char)ec);
if (c < 0) {
if (!getErrorErrors())
error(ERROR_ERROR, "unclosed bracket %c%c expression, start line %d", bc,
ec, startLine);
return 0;
} else
return agxbdisown(buf);
}
static char *parseAction(FILE *str, agxbuf *buf) {
return parseBracket(str, buf, '{', '}');
}
static char *parseGuard(FILE *str, agxbuf *buf) {
return parseBracket(str, buf, '[', ']');
}
/* Recognize
* BEGIN <optional action>
* END <optional action>
* BEG_G <optional action>
* END_G <optional action>
* N <optional guard> <optional action>
* E <optional guard> <optional action>
* where
* guard = '[' <expr> ']'
* action = '{' <expr> '}'
*/
static case_t parseCase(FILE *str, char **guard, int *gline, char **action,
int *aline) {
case_t kind;
agxbuf buf = {0};
kind = parseKind(str);
switch (kind) {
case Begin:
case BeginG:
case End:
case EndG:
*action = parseAction(str, &buf);
*aline = startLine;
if (getErrorErrors())
kind = Error;
break;
case Edge:
case Node:
*guard = parseGuard(str, &buf);
*gline = startLine;
if (!getErrorErrors()) {
*action = parseAction(str, &buf);
*aline = startLine;
}
if (getErrorErrors())
kind = Error;
break;
case Eof:
case Error: /* to silence warnings */
break;
default:
UNREACHABLE();
}
agxbfree(&buf);
return kind;
}
/// create new block and append to list; return new item as tail
static void addBlock(parse_blocks_t *list, char *stmt, int line,
case_infos_t nodelist, case_infos_t edgelist) {
parse_block item = {0};
item.l_beging = line;
item.begg_stmt = stmt;
item.node_stmts = nodelist;
item.edge_stmts = edgelist;
LIST_APPEND(list, item);
}
/// create new case_info and append to list
static void addCase(case_infos_t *list, char *guard, int gline, char *action,
int line) {
if (!guard && !action) {
error(ERROR_WARNING,
"Case with neither guard nor action, line %d - ignored", kwLine);
return;
}
case_info item = {.guard = guard, .action = action};
if (guard)
item.gstart = gline;
if (action)
item.astart = line;
LIST_APPEND(list, item);
}
static void bindAction(case_t cs, char *action, int aline, char **ap, int *lp) {
if (!action)
error(ERROR_WARNING, "%s with no action, line %d - ignored", caseStr(cs),
kwLine);
else if (*ap)
error(ERROR_ERROR, "additional %s section, line %d", caseStr(cs), kwLine);
else {
*ap = action;
*lp = aline;
}
}
static void free_case_info(case_info c) {
free(c.guard);
free(c.action);
}
/// parses input into gpr sections
parse_prog *parseProg(char *input, int isFile) {
FILE *str;
parse_blocks_t blocklist = {0};
case_infos_t edgelist = {.dtor = free_case_info};
case_infos_t nodelist = {.dtor = free_case_info};
int l_beging = 0;
lineno = col0 = startLine = kwLine = 1;
parse_prog *prog = calloc(1, sizeof(parse_prog));
if (!prog) {
error(ERROR_ERROR, "parseProg: out of memory");
return NULL;
}
if (isFile) {
str = fopen(input, "r");
prog->source = input;
} else {
str = tmpfile();
if (str != NULL) {
fputs(input, str);
rewind(str);
}
prog->source = NULL; /* command line */
}
if (!str) {
if (isFile)
error(ERROR_ERROR, "could not open %s for reading", input);
else
error(ERROR_ERROR, "parseProg : unable to create sfio stream");
free(prog);
return NULL;
}
char *begg_stmt = NULL;
for (bool more = true; more;) {
char *guard = NULL;
int gline = 0;
char *action = NULL;
int line = 0;
switch (parseCase(str, &guard, &gline, &action, &line)) {
case Begin:
bindAction(Begin, action, line, &prog->begin_stmt, &prog->l_begin);
action = NULL;
break;
case BeginG:
if (action && (begg_stmt || !LIST_IS_EMPTY(&nodelist) ||
!LIST_IS_EMPTY(&edgelist))) { // non-empty block
addBlock(&blocklist, begg_stmt, l_beging, nodelist, edgelist);
/* reset values */
edgelist = (case_infos_t){.dtor = free_case_info};
nodelist = (case_infos_t){.dtor = free_case_info};
begg_stmt = NULL;
}
bindAction(BeginG, action, line, &begg_stmt, &l_beging);
action = NULL;
break;
case End:
bindAction(End, action, line, &prog->end_stmt, &prog->l_end);
action = NULL;
break;
case EndG:
bindAction(EndG, action, line, &prog->endg_stmt, &prog->l_endg);
action = NULL;
break;
case Eof:
more = false;
break;
case Node:
addCase(&nodelist, guard, gline, action, line);
guard = NULL;
action = NULL;
break;
case Edge:
addCase(&edgelist, guard, gline, action, line);
guard = NULL;
action = NULL;
break;
case Error: /* to silence warnings */
more = false;
break;
default:
UNREACHABLE();
}
free(guard);
free(action);
}
if (begg_stmt || !LIST_IS_EMPTY(&nodelist) ||
!LIST_IS_EMPTY(&edgelist)) { // non-empty block
addBlock(&blocklist, begg_stmt, l_beging, nodelist, edgelist);
}
prog->blocks = blocklist;
fclose(str);
if (getErrorErrors()) {
freeParseProg(prog);
prog = NULL;
}
return prog;
}
static void freeBlocks(parse_blocks_t *ip) {
for (size_t i = 0; i < LIST_SIZE(ip); ++i) {
parse_block p = LIST_GET(ip, i);
free(p.begg_stmt);
LIST_FREE(&p.node_stmts);
LIST_FREE(&p.edge_stmts);
}
LIST_FREE(ip);
}
void freeParseProg(parse_prog *prog) {
if (!prog)
return;
free(prog->begin_stmt);
freeBlocks(&prog->blocks);
free(prog->endg_stmt);
free(prog->end_stmt);
free(prog);
}
|