diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-08-12 20:35:04 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-08-12 20:35:04 -0700 |
commit | 80023f287c52876b82af43027dd4605ab939d006 (patch) | |
tree | 74fba3604b31bd2c80541503ed698257515630c0 /parser.c | |
parent | b29e871f63bb13278220ade37209c9b11a3d64d6 (diff) | |
download | txr-80023f287c52876b82af43027dd4605ab939d006.tar.gz txr-80023f287c52876b82af43027dd4605ab939d006.tar.bz2 txr-80023f287c52876b82af43027dd4605ab939d006.zip |
Use new pushback token priming for single regex parse.
* parser.h (enum prime_parser): New enum.
(prime_parser, prime_scanner, parse): Declarations updated with new
argument.
* parser.c (prime_parser): New argument of enum prime_parser type
Select appropriate secret token for regex and Lisp case. Pass prime
selector down to prime_scanner.
(regex_parse): Do not prepend secret escape to string. Do not use
parse_once function; instead do the parser init and cleanup here and
use the parse function.
(lisp_parse): Pass new argument to parse, configuring the parser to be
primed for Lisp parsing.
* parser.l (grammar): Rule producing SECRET_ESCAPE_R removed.
(prime_scanner): New argument. Pop the scanner state down to INITIAL.
Then unconditionally switch to appopriate state based on priming
configuration.
* parser.y (parse): New argument for priming selection, passed down to
prime parser.
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 30 |
1 files changed, 21 insertions, 9 deletions
@@ -152,14 +152,23 @@ static void pushback_token(parser_t *p, struct yy_token *tok) p->tok_pushback[p->tok_idx++] = *tok; } -void prime_parser(parser_t *p, val name) +void prime_parser(parser_t *p, val name, enum prime_parser prim) { - struct yy_token secret_escape_e = { SECRET_ESCAPE_E }; + struct yy_token sec_tok = { 0 }; + + switch (prim) { + case prime_lisp: + sec_tok.yy_char = SECRET_ESCAPE_E; + break; + case prime_regex: + sec_tok.yy_char = SECRET_ESCAPE_R; + break; + } if (p->recent_tok.yy_char) pushback_token(p, &p->recent_tok); - pushback_token(p, &secret_escape_e); - prime_scanner(p->scanner); + pushback_token(p, &sec_tok); + prime_scanner(p->scanner, prim); set(mkloc(p->name, p->parser), name); } @@ -231,20 +240,23 @@ except: val regex_parse(val string, val error_stream) { uses_or2; - val parse_string = cat_str(list(lit("@\x01R"), string, nao), nil); val save_stream = std_error; - val stream = make_string_byte_input_stream(parse_string); + val stream = make_string_byte_input_stream(string); parser_t parser; error_stream = default_bool_arg(error_stream); std_error = if3(error_stream == t, std_output, or2(error_stream, std_null)); + parser_common_init(&parser); + parser.stream = stream; + { int gc = gc_state(0); - val name = if3(std_error != std_null, lit("regex"), lit("")); - parse_once(stream, name, &parser); + parse(&parser, if3(std_error != std_null, lit("regex"), lit("")), prime_regex); gc_state(gc); } + + parser_cleanup(&parser); std_error = save_stream; return parser.errors ? nil : parser.syntax_tree; } @@ -274,7 +286,7 @@ val lisp_parse(val source_in, val error_stream, val error_return_val, val name_i { int gc = gc_state(0); - parse(pi, if3(std_error != std_null, name, lit(""))); + parse(pi, if3(std_error != std_null, name, lit("")), prime_lisp); gc_state(gc); } |