Remove Ast.PVar.
[goals.git] / src / ast.mli
1 (* Goalfile Abstract Syntax Tree
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 module Env : sig
21   type key = string
22   type 'a t
23   val empty: 'a t
24   val add: key -> 'a -> 'a t -> 'a t
25   val find: key -> 'a t -> 'a
26   val fold: (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
27   val filter: (key -> 'a -> bool) -> 'a t -> 'a t
28   val bindings: 'a t -> (key * 'a) list
29 end
30
31 (** Location where we parsed from $loc = $startpos, $endpos *)
32 type loc = Lexing.position * Lexing.position
33 val noloc : loc
34 val print_loc : out_channel -> loc -> unit
35 val string_loc : unit -> loc -> string
36
37 (** An environment is a set of variable and goal definitions, mapping
38     variable or goal name -> expression. *)
39 type env = expr Env.t
40 and pattern =
41   (** match tactic such as *file ("filename") *)
42   | PTactic of loc * id * substs list
43 and expr =
44   (** goal (params) = patterns : exprs = code *)
45   | EGoal of loc * goal
46   (** goalname (params) etc. *)
47   | ECall of loc * id * expr list
48   (** *tactic (params) etc. *)
49   | ETactic of loc * id * expr list
50   (** variable, or goal call with no parameters *)
51   | EVar of loc * id
52   (** list *)
53   | EList of loc * expr list
54   (** string with %-substitutions *)
55   | ESubsts of loc * substs
56   (** constant expression, such as a plain string, int, boolean, etc. *)
57   | EConstant of loc * constant
58 and constant =
59   | CString of string
60 and goal = param_decl list * pattern list * expr list * code option
61   (** Goal parameter is the parameter name and an optional default value. *)
62 and param_decl = id
63 and id = string
64 and code = substs
65 and substs = subst list
66 and subst =
67   (** String literal part. *)
68   | SString of string
69   (** %-substitution. *)
70   | SVar of id
71
72 (** Look up a variable in the environment.  Raise [Failure _]
73     if not found. *)
74 val getvar : env -> loc -> id -> expr
75
76 (** Look up a goal in the environment.  Raise [Failure _] if not
77     found or if the named variable is not a goal. *)
78 val getgoal : env -> loc -> id -> goal
79
80 (** Take any expression and simplify it down to a constant.
81     If the expression cannot be simplified then this raises
82     [Failure _]. *)
83 val to_constant : env -> expr -> constant
84
85 (** Take a substitution list and try to turn it into a simple
86     string by evaluating every variable.  If not possible this
87     raises [Failure _]. *)
88 val substitute : env -> loc -> substs -> string
89
90 (** Similar to {!substitute} except this is used where we will
91     pass the result immediately to the shell to execute.  Variables
92     are substituted with shell quoted strings.  Raises [Failure _]
93     on error. *)
94 val to_shell_script : env -> loc -> substs -> string
95
96 (** This is used for incrementally building Ast.substs in the parser. *)
97 module Substs : sig
98   type t
99   val create : unit -> t
100   val get : t -> substs
101   val add_char : t -> char -> unit
102   val add_string : t -> string -> unit
103   val add_var : t -> string -> unit
104 end
105
106 (** Print all definitions in an environment. *)
107 val print_env : out_channel -> env -> unit
108
109 (** %a formatters. *)
110 val string_pattern : unit -> pattern -> string
111 val string_expr : unit -> expr -> string