2 * Copyright (C) 2013 Red Hat Inc.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 (* For general information about camlp4, see:
20 * http://brion.inria.fr/gallium/index.php/Camlp4
22 * For information about quotations, see:
23 * http://brion.inria.fr/gallium/index.php/Quotation
32 let locfail _loc msg = Loc.raise _loc (Failure msg)
34 (* 'expr' is a function expression (RHS of a binding). It has the
35 * form 'fun a -> fun b -> ...'. Return the parameters and the body of
38 let rec function_parameters = function
39 (* fun patt -> expr *)
40 | ExFun (_loc, McArr (_ploc, param, ExNil _, expr)) ->
41 let params, body = function_parameters expr in
42 ((_ploc, param) :: params), body
43 (* patt when expr -> expr *)
44 | ExFun (_loc, McArr (_, _, _, expr)) ->
45 locfail _loc "not supported: goal function uses when-clause"
48 (* Define one or more 'let [rec] goal ... [and ...]' expressions.
50 * 'r' is Some _ if the rec keyword was defined. 'lets' is the list
53 let generate_let_goal _loc (r : rec_flag) (lets : binding) =
54 let autopublish = ref [] in
56 (* lets might be a single binding, or multiple bindings using BiAnd
57 * ('let .. and'). Rewrite each individual goal in the list.
59 let rec rewrite = function
60 | BiNil _loc -> BiNil _loc
62 (* let goal left = ... and right = ... *)
63 | BiAnd (_loc, left, right) ->
64 BiAnd (_loc, rewrite left, rewrite right)
66 (* let goal name = expr *)
67 | BiEq (_loc, PaId (_, (IdLid (_, name))), expr) ->
68 (* Rename the function to goal_<name>. *)
69 let gname = "goal_" ^ name in
71 (* Split the function into parameters and body. *)
72 let params, body = function_parameters expr in
75 locfail _loc "goal must have some parameters; you probably want to put '()' here";
77 (* Is it a "zero-parameters" automatically published goal? What
78 * this really means is it has exactly one unit parameter.
81 | [ _, PaId (_, IdUid (_, "()")) ] ->
82 autopublish := name :: !autopublish
86 (* Put a try-clause around the body. *)
87 let body = <:expr< try $body$ with Goal_result Goal_OK -> () >> in
89 (* Recreate the function with parameters. *)
92 fun (_ploc, param) rest ->
93 ExFun (_loc, McArr (_ploc, param, ExNil _ploc, rest))
96 <:binding< $lid:gname$ = $expr$ >>
98 locfail _loc "cannot parse 'let goal' expression"
100 let lets = rewrite lets in
102 (* let [rec] ... and ... in () *)
103 let stmts = Ast.StVal (_loc, r, lets) in
105 (* Auto-published goals. *)
109 let gname = "goal_" ^ name in
111 let () = publish $str:name$ (
114 Goaljobs.require ($lid:gname$ ())
116 failwith (Printf.sprintf "goal '%s' does not take any arguments"
120 StSem (_loc, stmt, publish_name)
123 (* Rewrite 'require (name args...)' as 'require (goal_name args)'.
124 * 'expr' is a function call.
126 let generate_require _loc expr =
127 (* Note that 'f a b c' is parsed as '((f a) b) c' so the actually
128 * function name is buried deeply in the tree. Rewrite the name.
130 let rec rewrite = function
131 | ExApp (_loc, ExId (_loc1, IdLid (_loc2, name)), right) ->
132 let gname = "goal_" ^ name in
133 ExApp (_loc, ExId (_loc1, IdLid (_loc2, gname)), right)
134 | ExApp (_loc, (ExApp _ as expr), right) ->
135 ExApp (_loc, rewrite expr, right)
137 locfail _loc "require (...) expression must contain a call to a goal"
139 let expr = rewrite expr in
140 <:expr< Goaljobs.require ($expr$) >>
145 GLOBAL: expr str_item;
147 (* Rewrite 'require (name args...)'. *)
148 expr: LEVEL "apply" [
149 [ "require"; e = expr ->
150 generate_require _loc e ]
153 (* "str_item" is a top level statement in an OCaml program. *)
154 str_item: LEVEL "top" [
155 [ "let"; r = opt_rec; "goal"; ls = binding ->
156 generate_let_goal _loc r ls ]