Allow functions "returning strings" (etc), redefine sort function.
[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"
56               { TACTIC_KEYWORD }
57     | "function"
58               { FUNCTION }
59     | "let"   { LET }
60     | "include"
61               { INCLUDE }
62     | "-include"
63               { OPTINCLUDE }
64     | "returning"
65               { RETURNING }
66     | "expression"
67               { EXPRESSION }
68     | "string"
69               { STRING_KEYWORD }
70     | "strings"
71               { STRINGS }
72     | "*" id  { (* NB: The initial '*' is part of the name. *)
73                 TACTIC (Lexing.lexeme lexbuf) }
74     | id      { ID (Lexing.lexeme lexbuf) }
75     | _       { raise (SyntaxError ("unexpected character: " ^
76                                     Lexing.lexeme lexbuf)) }
77     | eof     { EOF }
78
79 (* Parse "STRING" literal with %-substitutions. *)
80 and read_string buf =
81     parse
82     | '\\' '"'
83               { Ast.Substs.add_char buf '"'; read_string buf lexbuf }
84     | '\\' 'a'
85               { Ast.Substs.add_char buf '\007'; read_string buf lexbuf }
86     | '\\' 'b'
87               { Ast.Substs.add_char buf '\008'; read_string buf lexbuf }
88     | '\\' 't'
89               { Ast.Substs.add_char buf '\009'; read_string buf lexbuf }
90     | '\\' 'n'
91               { Ast.Substs.add_char buf '\010'; read_string buf lexbuf }
92     | '\\' 'v'
93               { Ast.Substs.add_char buf '\011'; read_string buf lexbuf }
94     | '\\' 'f'
95               { Ast.Substs.add_char buf '\012'; read_string buf lexbuf }
96     | '\\' 'r'
97               { Ast.Substs.add_char buf '\013'; read_string buf lexbuf }
98     | '\\' '\\'
99               { Ast.Substs.add_char buf '\\'; read_string buf lexbuf }
100     | '"'     { STRING (Ast.Substs.get buf) }
101     | newline { Ast.Substs.add_char buf '\n';
102                 new_line lexbuf; read_string buf lexbuf }
103     | '%' '%' { Ast.Substs.add_char buf '%'; read_string buf lexbuf }
104     | '%' id  { let id = Lexing.lexeme lexbuf in
105                 let len = String.length id in
106                 Ast.Substs.add_var buf (String.sub id 1 (len-1));
107                 read_string buf lexbuf }
108     | '%' _   { raise (SyntaxError ("illegal character in %-substitution: " ^
109                                     Lexing.lexeme lexbuf)) }
110     | [^ '"' '\\' '\r' '\n' '%' ]+
111               { Ast.Substs.add_string buf (Lexing.lexeme lexbuf);
112                 read_string buf lexbuf }
113     | _       { raise (SyntaxError ("illegal character in string: " ^
114                                       Lexing.lexeme lexbuf)) }
115     | eof     { raise (SyntaxError ("unterminated string")) }
116
117 (* Parse { CODE } literal with %-substitutions.
118  *
119  * Note the range of %-substitutions possible is larger than
120  * for strings.
121  *)
122 and read_code buf level =
123     parse
124     | '{'     { Ast.Substs.add_char buf '{';
125                 incr level; read_code buf level lexbuf }
126     | '}'     { decr level;
127                 if !level = 0 then CODE (Ast.Substs.get buf)
128                 else (
129                   Ast.Substs.add_char buf '}';
130                   read_code buf level lexbuf
131                 ) }
132     | newline { Ast.Substs.add_char buf '\n';
133                 new_line lexbuf; read_code buf level lexbuf }
134     | '%' '%' { Ast.Substs.add_char buf '%'; read_code buf level lexbuf }
135     | '%' '@' { Ast.Substs.add_var buf "@"; read_code buf level lexbuf }
136     | '%' '<' { Ast.Substs.add_var buf "<"; read_code buf level lexbuf }
137     | '%' '^' { Ast.Substs.add_var buf "^"; read_code buf level lexbuf }
138     | '%' id  { let id = Lexing.lexeme lexbuf in
139                 let len = String.length id in
140                 Ast.Substs.add_var buf (String.sub id 1 (len-1));
141                 read_code buf level lexbuf }
142     | '%' _   { raise (SyntaxError ("illegal character in %-substitution: " ^
143                                       Lexing.lexeme lexbuf)) }
144     | [^ '{' '}' '\r' '\n' '%' ]+
145               { Ast.Substs.add_string buf (Lexing.lexeme lexbuf);
146                 read_code buf level lexbuf }
147     | _       { raise (SyntaxError ("illegal character in code section: " ^
148                                       Lexing.lexeme lexbuf)) }
149     | eof     { raise (SyntaxError ("unterminated code section")) }