69cb0637d53ca399c4af9a84f78425ff8c06423b
[goals.git] / src / parser.mly
1 (* Goalfile parser
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 Printf
22 %}
23
24 (* Tokens. *)
25 %token <Ast.substs> CODE
26 %token COLON
27 %token COMMA
28 %token <string> ID
29 %token EQUALS
30 %token EOF
31 %token GOAL
32 %token LEFT_ARRAY
33 %token LEFT_PAREN
34 %token LET
35 %token RIGHT_ARRAY
36 %token RIGHT_PAREN
37 %token <Ast.substs> STRING
38
39 (* Start nonterminals. *)
40 %start <Ast.env> file
41 %start <Ast.expr> expr
42 %%
43
44 file:
45     | stmts EOF  { $1 }
46     ;
47
48 stmts:
49     | list(stmt)
50     { List.fold_left (
51         fun env (name, expr) -> Ast.StringMap.add name expr env
52       ) Ast.StringMap.empty $1
53     }
54     ;
55 stmt:
56     | option(goal_stmt) patterns COLON barelist option(CODE)
57     { let name, params =
58         match $1 with
59         | None ->
60            sprintf "_goal@%d" $startpos.pos_lnum, []
61         | Some x -> x in
62       name, Ast.EGoal ($loc, (params, $2, $4, $5))
63     }
64     | goal_stmt CODE
65     {
66       let name, params = $1 in
67       name, Ast.EGoal ($loc, (params, [], [], Some $2))
68     }
69     | LET ID EQUALS expr { $2, $4 }
70     ;
71
72 goal_stmt:
73     | GOAL ID option(param_decl) EQUALS
74     { $2, match $3 with None -> [] | Some ps -> ps }
75     ;
76 param_decl:
77     | LEFT_PAREN separated_list(COMMA, ID) RIGHT_PAREN { $2 }
78     ;
79
80 patterns:
81     | separated_list(COMMA, pattern) { $1 }
82     ;
83 pattern:
84     | STRING     { Ast.PTactic ($loc, "file", [$1]) }
85     | ID pattern_params { Ast.PTactic ($loc, $1, $2) }
86     | ID         { Ast.PVar ($loc, $1) }
87     ;
88 pattern_params:
89     | LEFT_PAREN separated_list(COMMA, pattern_param) RIGHT_PAREN { $2 }
90     ;
91 pattern_param:
92     | STRING     { $1 }
93     ;
94
95 expr:
96     | ID params  { Ast.ECall ($loc, $1, $2) }
97     | ID         { Ast.EVar ($loc, $1) }
98     | STRING     { Ast.ESubsts ($loc, $1) }
99     | LEFT_ARRAY barelist RIGHT_ARRAY { Ast.EList ($loc, $2) }
100     ;
101 barelist:
102     | separated_list(COMMA, expr) { $1 }
103     ;
104 params:
105     | LEFT_PAREN separated_list(COMMA, expr) RIGHT_PAREN { $2 }
106     ;