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 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593
|
//===-- driver/config.d - LDC config file parsing -----------------*- D -*-===//
//
// LDC – the LLVM D compiler
//
// This file is distributed under the BSD-style LDC license. See the LICENSE
// file for details.
//
//===----------------------------------------------------------------------===//
//
// Parsing engine for the LDC config file (ldc2.conf).
//
//===----------------------------------------------------------------------===//
module driver.config;
import core.stdc.ctype;
import core.stdc.stdio;
import core.stdc.string;
class Setting
{
enum Type
{
scalar,
array,
group,
}
this(string name, Type type)
{
_name = name;
_type = type;
}
@property string name() const
{
return _name;
}
@property Type type() const
{
return _type;
}
private string _name;
private Type _type;
}
class ScalarSetting : Setting
{
this(string name, string val)
{
super(name, Type.scalar);
_val = val;
}
@property string val() const
{
return _val;
}
private string _val;
}
class ArraySetting : Setting
{
this(string name, string[] vals)
{
super(name, Type.array);
_vals = vals;
}
@property const(string)[] vals() const
{
return _vals;
}
private string[] _vals;
}
class GroupSetting : Setting
{
this(string name, Setting[] children)
{
super(name, Type.group);
_children = children;
}
@property const(Setting)[] children() const
{
return _children;
}
private Setting[] _children;
}
Setting[] parseConfigFile(const(char)* filename)
{
import dmd.globals : Loc;
import dmd.root.string : toDString;
import dmd.utils;
auto content = readFile(Loc.initial, filename).extractSlice();
// skip UTF-8 BOM
if (content.length >= 3 && content[0 .. 3] == "\xEF\xBB\xBF")
content = content[3 .. $];
auto parser = Parser(cast(string) content, cast(string) filename.toDString);
return parser.parseConfig();
}
private:
/+
What follows is a recursive descent parser that reads the following
EBNF grammar.
It is a subset of the libconfig grammar (http://www.hyperrealm.com/libconfig).
config = { ows , setting } , ows ;
setting = (name | string) , (":" | "=") , value , [";" | ","] ;
name = alpha , { alpha | digit | "_" | "-" } ;
value = string | array | group ;
array = "[" , ows ,
{ string , ows , "," , ows } ,
"]" ;
group = "{" , ows , { setting , ows } , "}" ;
string = ( quotstr , { ows , quotstr } ) |
( btstr , { ows, btstr } ) ;
quotstr = '"' , { ? any char but '"', '\n' and '\r' ? | escseq } , '"' ;
escseq = "\" , ["\" | '"' | "r" | "n" | "t" ] ;
btstr = '`' , { ? any char but '`' ? } , '`' ;
alpha = ? any char between "a" and "z" included
or between "A" and "Z" included ? ;
digit = ? any char between "0" and "9" included ? ;
ows = [ ws ] ; (* optional white space *)
ws = ? white space (space, tab, line feed ...) ? ;
Single line comments are also supported. They start with "//" and span until
line feed.
The "//" sequence is however allowed within strings and doesn't need to be
escaped.
White space are significant only within strings.
Physical line feeds are not allowed within strings. To span a string over
multiple lines, use concatenation ("hello " "world" == "hello world").
The following escape sequences are allowed in strings:
- \\
- \"
- \r
- \n
- \t
+/
enum Token
{
name,
assign, // ':' or '='
str,
lbrace, // '{'
rbrace, // '}'
lbracket, // '['
rbracket, // ']'
semicolon, // ';'
comma, // ','
unknown,
eof,
}
string humanReadableToken(in Token tok)
{
final switch(tok)
{
case Token.name: return `"name"`;
case Token.assign: return `':' or '='`;
case Token.str: return `"string"`;
case Token.lbrace: return `'{'`;
case Token.rbrace: return `'}'`;
case Token.lbracket: return `'['`;
case Token.rbracket: return `']'`;
case Token.semicolon: return `';'`;
case Token.comma: return `','`;
case Token.unknown: return `"unknown token"`;
case Token.eof: return `"end of file"`;
}
}
struct Parser
{
string filename;
string content;
int index;
int lineNum = 1;
char lastChar = ' ';
static struct Ahead
{
Token tok;
string s;
}
Ahead ahead;
Ahead* aheadp;
this(string content, string filename = null)
{
this.filename = filename;
this.content = content;
}
void error(in string msg)
{
enum fmt = "Error while reading config file: %.*s\nline %d: %.*s";
char[1024] buf;
auto len = snprintf(buf.ptr, buf.length, fmt, cast(int) filename.length,
filename.ptr, lineNum, cast(int) msg.length, msg.ptr);
throw new Exception(buf[0 .. len].idup);
}
char getChar()
{
if (index == content.length)
return '\0';
const c = content[index++];
if (c == '\n')
++lineNum;
return c;
}
Token getTok(out string outStr)
{
if (aheadp)
{
immutable tok = aheadp.tok;
outStr = aheadp.s;
aheadp = null;
return tok;
}
while (isspace(lastChar))
{
lastChar = getChar();
}
if (lastChar == '/')
{
lastChar = getChar();
if (lastChar != '/')
{
outStr = "/";
return Token.unknown;
}
do
{
lastChar = getChar();
}
while (lastChar != '\n' && lastChar != '\0');
return getTok(outStr);
}
if (isalpha(lastChar))
{
string name;
do
{
name ~= lastChar;
lastChar = getChar();
}
while (isalnum(lastChar) || lastChar == '_' || lastChar == '-');
outStr = name;
return Token.name;
}
switch (lastChar)
{
case ':':
case '=':
lastChar = getChar();
return Token.assign;
case ';':
lastChar = getChar();
return Token.semicolon;
case ',':
lastChar = getChar();
return Token.comma;
case '{':
lastChar = getChar();
return Token.lbrace;
case '}':
lastChar = getChar();
return Token.rbrace;
case '[':
lastChar = getChar();
return Token.lbracket;
case ']':
lastChar = getChar();
return Token.rbracket;
case '\0':
return Token.eof;
default:
break;
}
if (lastChar == '"')
{
string str;
while (lastChar == '"')
{
while (1)
{
lastChar = getChar();
if (lastChar == '"') break;
if (lastChar == '\n' || lastChar == '\r')
{
error("Unexpected end of line in string literal");
}
else if (lastChar == '\0')
{
error("Unexpected end of file in string literal");
}
if (lastChar == '\\')
{
lastChar = getChar();
switch(lastChar)
{
case '\\':
case '"':
break;
case 'r':
lastChar = '\r';
break;
case 'n':
lastChar = '\n';
break;
case 't':
lastChar = '\t';
break;
default:
error("Unexpected escape sequence: \\" ~ lastChar);
break;
}
}
str ~= lastChar;
}
lastChar = getChar();
while (isspace(lastChar)) lastChar = getChar();
}
outStr = str;
return Token.str;
}
if (lastChar == '`')
{
string str;
while (lastChar == '`')
{
while (1)
{
lastChar = getChar();
if (lastChar == '`') break;
if (lastChar == '\0')
{
error("Unexpected end of file in string literal");
}
str ~= lastChar;
}
lastChar = getChar();
while (isspace(lastChar)) lastChar = getChar();
}
outStr = str;
return Token.str;
}
outStr = [lastChar];
lastChar = getChar();
return Token.unknown;
}
void ungetTok(in Token tok, in string s)
{
assert(!aheadp, "can only have one look ahead");
ahead.tok = tok;
ahead.s = s;
aheadp = &ahead;
}
void unexpectedTokenError(in Token tok, in Token expected, string s)
{
s = s.length ? " ("~s~")" : "";
error("Was expecting token " ~ humanReadableToken(expected) ~
". Got " ~ humanReadableToken(tok) ~ s ~ " instead.");
}
string accept(in Token expected)
{
string s;
immutable tok = getTok(s);
if (tok != expected)
{
unexpectedTokenError(tok, expected, s);
}
return s;
}
Setting[] parseConfig()
{
Setting[] res;
while (1)
{
{
string s;
auto t = getTok(s);
if (t == Token.eof)
{
break;
}
ungetTok(t, s);
}
res ~= parseSetting();
}
return res;
}
Setting parseSetting()
{
string name;
auto t = getTok(name);
if (t != Token.name && t != Token.str)
{
unexpectedTokenError(t, Token.name, name);
assert(false);
}
accept(Token.assign);
Setting res = parseValue(name);
string s;
t = getTok(s);
if (t != Token.semicolon && t != Token.comma)
{
ungetTok(t, s);
}
return res;
}
Setting parseValue(string name)
{
string s;
auto t = getTok(s);
if (t == Token.str)
{
return new ScalarSetting(name, s);
}
else if (t == Token.lbracket)
{
string[] arrVal;
while (1)
{
// get string or rbracket
t = getTok(s);
switch(t)
{
case Token.str:
arrVal ~= s;
break;
case Token.rbracket:
return new ArraySetting(name, arrVal);
default:
unexpectedTokenError(t, Token.str, s);
assert(false);
}
// get comma or rbracket
t = getTok(s);
switch(t)
{
case Token.comma:
break;
case Token.rbracket:
return new ArraySetting(name, arrVal);
default:
unexpectedTokenError(t, Token.comma, s);
assert(false);
}
}
}
else if (t == Token.lbrace)
{
Setting[] grpVal;
while (1)
{
t = getTok(s);
if (t == Token.rbrace)
{
return new GroupSetting(name, grpVal);
}
ungetTok(t, s);
grpVal ~= parseSetting();
}
}
error("Was expecting value.");
assert(false);
}
}
unittest
{
static void testScalar(string input, string expected)
{
auto setting = Parser(input).parseValue(null);
assert(setting.type == Setting.Type.scalar);
assert((cast(ScalarSetting) setting).val == expected);
}
testScalar(`""`, "");
testScalar(`"abc\r\ndef\t\"quoted/\\123\""`,
"abc\r\ndef\t\"quoted/\\123\"");
testScalar(`"concatenated" " multiline"
" strings"`, "concatenated multiline strings");
testScalar("`abc\n\\ //comment \"`",
"abc\n\\ //comment \"");
testScalar(`"Üņïčöđë"`, "Üņïčöđë");
}
unittest
{
static void testArray(string input, string[] expected)
{
auto setting = Parser(input).parseValue(null);
assert(setting.type == Setting.Type.array);
assert((cast(ArraySetting) setting).vals == expected);
}
testArray(`[]`, []);
testArray(`[ "a" ]`, [ "a" ]);
testArray(`[ "a", ]`, [ "a" ]);
testArray(`[ "a", "b" ]`, [ "a", "b" ]);
testArray(`[
// comment
"a",
// comment
"b"
]`, [ "a", "b" ]);
}
unittest
{
enum input =
`// comment
// comment
group-1_2: {};
// comment
"86(_64)?-.*linux\\.?":
{
// comment
scalar = "abc";
// comment
Array_1-2 = [ "a" ];
};
`;
auto settings = Parser(input).parseConfig();
assert(settings.length == 2);
assert(settings[0].name == "group-1_2");
assert(settings[0].type == Setting.Type.group);
assert((cast(GroupSetting) settings[0]).children == []);
assert(settings[1].name == "86(_64)?-.*linux\\.?");
assert(settings[1].type == Setting.Type.group);
auto group2 = cast(GroupSetting) settings[1];
assert(group2.children.length == 2);
assert(group2.children[0].name == "scalar");
assert(group2.children[0].type == Setting.Type.scalar);
assert((cast(ScalarSetting) group2.children[0]).val == "abc");
assert(group2.children[1].name == "Array_1-2");
assert(group2.children[1].type == Setting.Type.array);
assert((cast(ArraySetting) group2.children[1]).vals == [ "a" ]);
}
|