parser: Optional semicolon between statements.
[goals.git] / src / lexer.mll
1 (* Goalfile lexer
2  * Copyright (C) 2019 Richard W.M. Jones
3  * Copyright (C) 2019 Red Hat Inc.
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  *)
19
20 {
21 open Lexing
22 open Parser
23
24 open Printf
25
26 exception SyntaxError of string
27
28 let new_line lexbuf =
29   let pos = lexbuf.lex_curr_p in
30   lexbuf.lex_curr_p <-
31     { pos with pos_bol = lexbuf.lex_curr_pos; pos_lnum = pos.pos_lnum + 1 }
32 }
33
34 let white = [' ' '\t']+
35 let newline = '\r' | '\n' | "\r\n"
36 let comment = '#' (_#'\n')*
37 let id = ['a'-'z' 'A'-'Z' '_'] ['a'-'z' 'A'-'Z' '0'-'9' '_' '-']*
38
39 rule read =
40     parse
41     | white
42     | comment { read lexbuf }
43     | newline { new_line lexbuf; read lexbuf }
44     | ","     { COMMA }
45     | ":"     { COLON }
46     | ";"     { SEMICOLON }
47     | "="     { EQUALS }
48     | "("     { LEFT_PAREN }
49     | ")"     { RIGHT_PAREN }
50     | "["     { LEFT_ARRAY }
51     | "]"     { RIGHT_ARRAY }
52     | '"'     { read_string (Ast.Substs.create ()) lexbuf }
53     | "{"     { read_code (Ast.Substs.create ()) (ref 1) lexbuf }
54     | "goal"  { GOAL }
55     | "tactic" { TACTIC_KEYWORD }
56     | "let"   { LET }
57     | "include" { INCLUDE }
58     | "-include" { OPTINCLUDE }
59     | "*" id  { (* NB: The initial '*' is part of the name. *)
60                 TACTIC (Lexing.lexeme lexbuf) }
61     | id      { ID (Lexing.lexeme lexbuf) }
62     | _       { raise (SyntaxError ("unexpected character: " ^
63                                     Lexing.lexeme lexbuf)) }
64     | eof     { EOF }
65
66 (* Parse "STRING" literal with %-substitutions. *)
67 and read_string buf =
68     parse
69     | '\\' '"'
70               { Ast.Substs.add_char buf '"'; read_string buf lexbuf }
71     | '\\' 'a'
72               { Ast.Substs.add_char buf '\007'; read_string buf lexbuf }
73     | '\\' 'b'
74               { Ast.Substs.add_char buf '\008'; read_string buf lexbuf }
75     | '\\' 't'
76               { Ast.Substs.add_char buf '\009'; read_string buf lexbuf }
77     | '\\' 'n'
78               { Ast.Substs.add_char buf '\010'; read_string buf lexbuf }
79     | '\\' 'v'
80               { Ast.Substs.add_char buf '\011'; read_string buf lexbuf }
81     | '\\' 'f'
82               { Ast.Substs.add_char buf '\012'; read_string buf lexbuf }
83     | '\\' 'r'
84               { Ast.Substs.add_char buf '\013'; read_string buf lexbuf }
85     | '\\' '\\'
86               { Ast.Substs.add_char buf '\\'; read_string buf lexbuf }
87     | '"'     { STRING (Ast.Substs.get buf) }
88     | newline { Ast.Substs.add_char buf '\n';
89                 new_line lexbuf; read_string buf lexbuf }
90     | '%' '%' { Ast.Substs.add_char buf '%'; read_string buf lexbuf }
91     | '%' id  { let id = Lexing.lexeme lexbuf in
92                 let len = String.length id in
93                 Ast.Substs.add_var buf (String.sub id 1 (len-1));
94                 read_string buf lexbuf }
95     | '%' _   { raise (SyntaxError ("illegal character in %-substitution: " ^
96                                     Lexing.lexeme lexbuf)) }
97     | [^ '"' '\\' '\r' '\n' '%' ]+
98               { Ast.Substs.add_string buf (Lexing.lexeme lexbuf);
99                 read_string buf lexbuf }
100     | _       { raise (SyntaxError ("illegal character in string: " ^
101                                       Lexing.lexeme lexbuf)) }
102     | eof     { raise (SyntaxError ("unterminated string")) }
103
104 (* Parse { CODE } literal with %-substitutions.
105  *
106  * Note the range of %-substitutions possible is larger than
107  * for strings.
108  *)
109 and read_code buf level =
110     parse
111     | '{'     { Ast.Substs.add_char buf '{';
112                 incr level; read_code buf level lexbuf }
113     | '}'     { decr level;
114                 if !level = 0 then CODE (Ast.Substs.get buf)
115                 else (
116                   Ast.Substs.add_char buf '}';
117                   read_code buf level lexbuf
118                 ) }
119     | newline { Ast.Substs.add_char buf '\n';
120                 new_line lexbuf; read_code buf level lexbuf }
121     | '%' '%' { Ast.Substs.add_char buf '%'; read_code buf level lexbuf }
122     | '%' '@' { Ast.Substs.add_var buf "@"; read_code buf level lexbuf }
123     | '%' '<' { Ast.Substs.add_var buf "<"; read_code buf level lexbuf }
124     | '%' '^' { Ast.Substs.add_var buf "^"; read_code buf level lexbuf }
125     | '%' id  { let id = Lexing.lexeme lexbuf in
126                 let len = String.length id in
127                 Ast.Substs.add_var buf (String.sub id 1 (len-1));
128                 read_code buf level lexbuf }
129     | '%' _   { raise (SyntaxError ("illegal character in %-substitution: " ^
130                                       Lexing.lexeme lexbuf)) }
131     | [^ '{' '}' '\r' '\n' '%' ]+
132               { Ast.Substs.add_string buf (Lexing.lexeme lexbuf);
133                 read_code buf level lexbuf }
134     | _       { raise (SyntaxError ("illegal character in code section: " ^
135                                       Lexing.lexeme lexbuf)) }
136     | eof     { raise (SyntaxError ("unterminated code section")) }