summaryrefslogtreecommitdiff
path: root/src/vyos1x_lexer.mll
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2019-06-30 02:17:45 +0700
committerDaniil Baturin <daniil@baturin.org>2019-06-30 04:03:03 +0700
commitb280bab4edd89733d364e87adfb8a1e7e5f1b302 (patch)
treebfd9fed1a8e68b55ce514471419002a388ad7509 /src/vyos1x_lexer.mll
parentaa3d09c3fff12e379fd189ceaf55644574ff5c43 (diff)
downloadvyos1x-config-b280bab4edd89733d364e87adfb8a1e7e5f1b302.tar.gz
vyos1x-config-b280bab4edd89733d364e87adfb8a1e7e5f1b302.zip
T1478: Improved lexing error reporting, including proper support for single quoted strings.
Diffstat (limited to 'src/vyos1x_lexer.mll')
-rw-r--r--src/vyos1x_lexer.mll61
1 files changed, 32 insertions, 29 deletions
diff --git a/src/vyos1x_lexer.mll b/src/vyos1x_lexer.mll
index a996642..f5d17af 100644
--- a/src/vyos1x_lexer.mll
+++ b/src/vyos1x_lexer.mll
@@ -1,9 +1,14 @@
{
+open Util
open Vyos1x_parser
exception Error of string
+let lexing_error lexbuf msg =
+ let line, column = Util.get_lexing_position lexbuf in
+ raise (Syntax_error (Some (line, column), msg))
+
(*
The language of the VyOS 1.x config file has multiple ambiguities that
@@ -57,7 +62,7 @@ rule token = parse
| '\n'
{ Lexing.new_line lexbuf; if !vy_inside_node then (vy_inside_node := false; NEWLINE) else token lexbuf }
| '"'
- { vy_inside_node := true; read_string (Buffer.create 16) lexbuf }
+ { vy_inside_node := true; read_double_quoted_string (Buffer.create 16) lexbuf }
| '''
{ vy_inside_node := true; read_single_quoted_string (Buffer.create 16) lexbuf }
| "/*"
@@ -72,48 +77,46 @@ rule token = parse
{ vy_inside_node := true; IDENTIFIER s}
| eof
{ EOF }
-| _
-{ raise (Error (Printf.sprintf "At offset %d: unexpected character.\n" (Lexing.lexeme_start lexbuf))) }
+| _ as bad_char
+{ lexing_error lexbuf (Printf.sprintf "unexpected character \'%c\'" bad_char) }
-and read_string buf =
+and read_double_quoted_string buf =
parse
| '"' { STRING (Buffer.contents buf) }
- | '\\' '/' { Buffer.add_char buf '/'; read_string buf lexbuf }
- | '\\' '\\' { Buffer.add_char buf '\\'; read_string buf lexbuf }
- | '\\' 'b' { Buffer.add_char buf '\b'; read_string buf lexbuf }
- | '\\' 'f' { Buffer.add_char buf '\012'; read_string buf lexbuf }
- | '\\' 'n' { Buffer.add_char buf '\n'; read_string buf lexbuf }
- | '\\' 'r' { Buffer.add_char buf '\r'; read_string buf lexbuf }
- | '\\' 't' { Buffer.add_char buf '\t'; read_string buf lexbuf }
- | '\\' '\'' { Buffer.add_char buf '\''; read_string buf lexbuf }
- | '\\' '"' { Buffer.add_char buf '"'; read_string buf lexbuf }
- | '\n' { Lexing.new_line lexbuf; Buffer.add_char buf '\n'; read_string buf lexbuf }
+ | '\\' '/' { Buffer.add_char buf '/'; read_double_quoted_string buf lexbuf }
+ | '\\' '\\' { Buffer.add_char buf '\\'; read_double_quoted_string buf lexbuf }
+ | '\\' 'b' { Buffer.add_char buf '\b'; read_double_quoted_string buf lexbuf }
+ | '\\' 'f' { Buffer.add_char buf '\012'; read_double_quoted_string buf lexbuf }
+ | '\\' 'n' { Buffer.add_char buf '\n'; read_double_quoted_string buf lexbuf }
+ | '\\' 'r' { Buffer.add_char buf '\r'; read_double_quoted_string buf lexbuf }
+ | '\\' 't' { Buffer.add_char buf '\t'; read_double_quoted_string buf lexbuf }
+ | '\\' '\'' { Buffer.add_char buf '\''; read_double_quoted_string buf lexbuf }
+ | '\\' '"' { Buffer.add_char buf '"'; read_double_quoted_string buf lexbuf }
+ | '\n' { Lexing.new_line lexbuf; Buffer.add_char buf '\n'; read_double_quoted_string buf lexbuf }
| [^ '"' '\\']+
{ Buffer.add_string buf (Lexing.lexeme lexbuf);
- read_string buf lexbuf
+ read_double_quoted_string buf lexbuf
}
- | _ { raise (Error (Printf.sprintf "Illegal string character: %s" (Lexing.lexeme lexbuf))) }
- | eof { raise (Error ("String is not terminated")) }
+ | eof { lexing_error lexbuf "Quoted string is missing the closing double quote" }
and read_single_quoted_string buf =
parse
| ''' { STRING (Buffer.contents buf) }
- | '\\' '/' { Buffer.add_char buf '/'; read_string buf lexbuf }
- | '\\' '\\' { Buffer.add_char buf '\\'; read_string buf lexbuf }
- | '\\' 'b' { Buffer.add_char buf '\b'; read_string buf lexbuf }
- | '\\' 'f' { Buffer.add_char buf '\012'; read_string buf lexbuf }
- | '\\' 'n' { Buffer.add_char buf '\n'; read_string buf lexbuf }
- | '\\' 'r' { Buffer.add_char buf '\r'; read_string buf lexbuf }
- | '\\' 't' { Buffer.add_char buf '\t'; read_string buf lexbuf }
- | '\\' '\'' { Buffer.add_char buf '\''; read_string buf lexbuf }
- | '\\' '"' { Buffer.add_char buf '"'; read_string buf lexbuf }
- | '\n' { Lexing.new_line lexbuf; Buffer.add_char buf '\n'; read_string buf lexbuf }
+ | '\\' '/' { Buffer.add_char buf '/'; read_single_quoted_string buf lexbuf }
+ | '\\' '\\' { Buffer.add_char buf '\\'; read_single_quoted_string buf lexbuf }
+ | '\\' 'b' { Buffer.add_char buf '\b'; read_single_quoted_string buf lexbuf }
+ | '\\' 'f' { Buffer.add_char buf '\012'; read_single_quoted_string buf lexbuf }
+ | '\\' 'n' { Buffer.add_char buf '\n'; read_single_quoted_string buf lexbuf }
+ | '\\' 'r' { Buffer.add_char buf '\r'; read_single_quoted_string buf lexbuf }
+ | '\\' 't' { Buffer.add_char buf '\t'; read_single_quoted_string buf lexbuf }
+ | '\\' '\'' { Buffer.add_char buf '\''; read_single_quoted_string buf lexbuf }
+ | '\\' '"' { Buffer.add_char buf '"'; read_single_quoted_string buf lexbuf }
+ | '\n' { Lexing.new_line lexbuf; Buffer.add_char buf '\n'; read_single_quoted_string buf lexbuf }
| [^ ''' '\\']+
{ Buffer.add_string buf (Lexing.lexeme lexbuf);
read_single_quoted_string buf lexbuf
}
- | _ { raise (Error (Printf.sprintf "Illegal string character: %s" (Lexing.lexeme lexbuf))) }
- | eof { raise (Error ("String is not terminated")) }
+ | eof { lexing_error lexbuf "Quoted string is missing the closing single quote" }
and read_comment buf =
parse