]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_notation/cicNotationRew.ml
snapshort
[helm.git] / helm / ocaml / cic_notation / cicNotationRew.ml
1 (* Copyright (C) 2004-2005, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://helm.cs.unibo.it/
24  *)
25
26 open Printf
27
28 type pattern_id = int
29 type interpretation_id = pattern_id
30 type pretty_printer_id = pattern_id
31
32 type term_info =
33   { sort: (Cic.id, CicNotationPt.sort_kind) Hashtbl.t;
34     uri: (Cic.id, string) Hashtbl.t;
35   }
36
37 let warning s = prerr_endline ("CicNotation WARNING: " ^ s)
38
39 let get_types uri =
40   let o,_ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
41     match o with
42       | Cic.InductiveDefinition (l,_,_,_) -> l 
43       | _ -> assert false
44
45 let name_of_inductive_type uri i = 
46   let types = get_types uri in
47   let (name, _, _, _) = try List.nth types i with Not_found -> assert false in
48   name
49
50   (* returns <name, type> pairs *)
51 let constructors_of_inductive_type uri i =
52   let types = get_types uri in
53   let (_, _, _, constructors) = 
54     try List.nth types i with Not_found -> assert false
55   in
56   constructors
57
58   (* returns name only *)
59 let constructor_of_inductive_type uri i j =
60   (try
61     fst (List.nth (constructors_of_inductive_type uri i) (j-1))
62   with Not_found -> assert false)
63
64 module Ast = CicNotationPt
65
66 let string_of_name = function
67   | Cic.Name s -> s
68   | Cic.Anonymous -> "_"
69
70 let ident_of_name n = Ast.Ident (string_of_name n, None)
71
72 let idref id t = Ast.AttributedTerm (`IdRef id, t)
73
74 let pp_ast0 t k =
75   prerr_endline "pp_ast0";
76   let rec aux t = CicNotationUtil.visit_ast ~special_k k t
77   and special_k = function
78     | Ast.AttributedTerm (attrs, t) -> Ast.AttributedTerm (attrs, aux t)
79     | _ -> assert false
80   in
81   aux t
82
83 let ast_of_acic0 term_info acic k =
84 (*   prerr_endline "ast_of_acic0"; *)
85   let k = k term_info in
86   let register_uri id uri = Hashtbl.add term_info.uri id uri in
87   let sort_of_id id =
88     try
89       Hashtbl.find term_info.sort id
90     with Not_found -> assert false
91   in
92   let aux_substs substs =
93     Some
94       (List.map
95         (fun (uri, annterm) -> (UriManager.name_of_uri uri, k annterm))
96         substs)
97   in
98   let aux_context context =
99     List.map
100       (function
101         | None -> None
102         | Some annterm -> Some (k annterm))
103       context
104   in
105   let aux = function
106     | Cic.ARel (id,_,_,b) -> idref id (Ast.Ident (b, None))
107     | Cic.AVar (id,uri,substs) ->
108         register_uri id (UriManager.string_of_uri uri);
109         idref id (Ast.Ident (UriManager.name_of_uri uri, aux_substs substs))
110     | Cic.AMeta (id,n,l) -> idref id (Ast.Meta (n, aux_context l))
111     | Cic.ASort (id,Cic.Prop) -> idref id (Ast.Sort `Prop)
112     | Cic.ASort (id,Cic.Set) -> idref id (Ast.Sort `Set)
113     | Cic.ASort (id,Cic.Type _) -> idref id (Ast.Sort `Type)
114     | Cic.ASort (id,Cic.CProp) -> idref id (Ast.Sort `CProp)
115     | Cic.AImplicit _ -> assert false
116     | Cic.AProd (id,n,s,t) ->
117         let binder_kind =
118           match sort_of_id id with
119           | `Set | `Type -> `Pi
120           | `Prop | `CProp -> `Forall
121         in
122         idref id (Ast.Binder (binder_kind, (ident_of_name n, Some (k s)), k t))
123     | Cic.ACast (id,v,t) ->
124         idref id (Ast.Appl [idref id (Ast.Symbol ("cast", 0)); k v; k t])
125     | Cic.ALambda (id,n,s,t) ->
126         idref id (Ast.Binder (`Lambda, (ident_of_name n, Some (k s)), k t))
127     | Cic.ALetIn (id,n,s,t) ->
128         idref id (Ast.LetIn ((ident_of_name n, None), k s, k t))
129     | Cic.AAppl (aid,args) -> idref aid (Ast.Appl (List.map k args))
130     | Cic.AConst (id,uri,substs) ->
131         register_uri id (UriManager.string_of_uri uri);
132         idref id (Ast.Ident (UriManager.name_of_uri uri, aux_substs substs))
133     | Cic.AMutInd (id,uri,i,substs) as t ->
134         let name = name_of_inductive_type uri i in
135         let uri_str = UriManager.string_of_uri uri in
136         let puri_str =
137           uri_str ^ "#xpointer(1/" ^ (string_of_int (i + 1)) ^ ")"
138         in
139         register_uri id puri_str;
140         idref id (Ast.Ident (name, aux_substs substs))
141     | Cic.AMutConstruct (id,uri,i,j,substs) ->
142         let name = constructor_of_inductive_type uri i j in
143         let uri_str = UriManager.string_of_uri uri in
144         let puri_str = sprintf "%s#xpointer(1/%d/%d)" uri_str (i + 1) j in
145         register_uri id puri_str;
146         idref id (Ast.Ident (name, aux_substs substs))
147     | Cic.AMutCase (id,uri,typeno,ty,te,patterns) ->
148         let name = name_of_inductive_type uri typeno in
149         let constructors = constructors_of_inductive_type uri typeno in
150         let rec eat_branch ty pat =
151           match (ty, pat) with
152           | Cic.Prod (_, _, t), Cic.ALambda (_, name, s, t') ->
153               let (cv, rhs) = eat_branch t t' in
154               (ident_of_name name, Some (k s)) :: cv, rhs
155           | _, _ -> [], k pat
156         in
157         let patterns =
158           List.map2
159             (fun (name, ty) pat ->
160               let (capture_variables, rhs) = eat_branch ty pat in
161               ((name, capture_variables), rhs))
162             constructors patterns
163         in
164         idref id (Ast.Case (k te, Some name, Some (k ty), patterns))
165     | Cic.AFix (id, no, funs) -> 
166         let defs = 
167           List.map
168             (fun (_, n, decr_idx, ty, bo) ->
169               ((Ast.Ident (n, None), Some (k ty)), k bo, decr_idx))
170             funs
171         in
172         let name =
173           try
174             (match List.nth defs no with
175             | (Ast.Ident (n, _), _), _, _ when n <> "_" -> n
176             | _ -> assert false)
177           with Not_found -> assert false
178         in
179         idref id (Ast.LetRec (`Inductive, defs, Ast.Ident (name, None)))
180     | Cic.ACoFix (id, no, funs) -> 
181         let defs = 
182           List.map
183             (fun (_, n, ty, bo) -> ((Ast.Ident (n, None), Some (k ty)), k bo, 0))
184             funs
185         in
186         let name =
187           try
188             (match List.nth defs no with
189             | (Ast.Ident (n, _), _), _, _ when n <> "_" -> n
190             | _ -> assert false)
191           with Not_found -> assert false
192         in
193         idref id (Ast.LetRec (`CoInductive, defs, Ast.Ident (name, None)))
194   in
195   aux acic
196
197   (* persistent state *)
198
199 let level1_patterns21 = Hashtbl.create 211
200 let level2_patterns32 = Hashtbl.create 211
201
202 let (compiled21: (CicNotationPt.term -> (CicNotationEnv.t * int) option)
203 option ref) =
204   ref None
205 let (compiled32: (Cic.annterm -> ((string * Cic.annterm) list * int) option)
206 option ref) =
207   ref None
208
209 let pattern21_matrix = ref []
210 let pattern32_matrix = ref []
211
212 let get_compiled21 () =
213   match !compiled21 with
214   | None -> assert false
215   | Some f -> f
216 let get_compiled32 () =
217   match !compiled32 with
218   | None -> assert false
219   | Some f -> f
220
221 let set_compiled21 f = compiled21 := Some f
222 let set_compiled32 f = compiled32 := Some f
223
224 let instantiate21 env precedence associativity l1 =
225   prerr_endline "instantiate21";
226   let rec subst last_box env = function
227     | Ast.AttributedTerm (_, t) -> subst last_box env t
228     | Ast.Variable var ->
229         let name, expected_ty = CicNotationEnv.declaration_of_var var in
230         let ty, value =
231           try
232             List.assoc name env
233           with Not_found -> assert false
234         in
235         assert (CicNotationEnv.well_typed ty value); (* INVARIANT *)
236         (* following assertion should be a conditional that makes this
237          * instantiation fail *)
238         assert (CicNotationEnv.well_typed expected_ty value);
239         CicNotationEnv.term_of_value value
240     | Ast.Magic m -> subst_magic last_box env m
241     | Ast.Literal _ as t -> t
242     | Ast.Layout l -> Ast.Layout (subst_layout last_box env l)
243     | t -> CicNotationUtil.visit_ast (subst last_box env) t
244   and subst_magic last_box env = function
245     | Ast.List0 (p, sep_opt)
246     | Ast.List1 (p, sep_opt) ->
247         let rec_decls = CicNotationEnv.declarations_of_term p in
248         let rec_values =
249           List.map (fun (n, _) -> CicNotationEnv.lookup_list env n) rec_decls
250         in
251         let values = CicNotationUtil.ncombine rec_values in
252         let sep =
253           match sep_opt with
254           | None -> []
255           | Some l -> [ CicNotationPt.Literal l ]
256         in
257         let rec instantiate_list acc = function
258           | [] -> List.rev acc
259           | value_set :: tl ->
260               let env = CicNotationEnv.combine rec_decls value_set in
261               instantiate_list ([subst last_box env p] @ sep @ acc) tl
262         in
263         let children = instantiate_list [] values in
264         CicNotationPt.Layout (CicNotationPt.Box (last_box, children))
265     | Ast.Opt p ->
266         let opt_decls = CicNotationEnv.declarations_of_term p in
267         let env =
268           let rec build_env = function
269             | [] -> []
270             | (name, ty) :: tl ->
271                   (* assumption: if one of the value is None then all are *)
272                 (match CicNotationEnv.lookup_opt env name with
273                 | None -> raise Exit
274                 | Some v -> (name, (ty, v)) :: build_env tl)
275           in
276           try build_env opt_decls with Exit -> []
277         in
278         let children =
279           if env = [] then []
280           else [subst last_box env p]
281         in
282         CicNotationPt.Layout (CicNotationPt.Box (last_box, children))
283     | _ -> assert false (* impossible *)
284   and subst_layout last_box env l =
285     CicNotationUtil.visit_layout (subst last_box env) l
286     (* TODO ZACK here we need to remember the last box traversed, but
287      * visit_layout is opaque :-((( *)
288   in
289   subst CicNotationPt.H env l1
290
291 let rec pp_ast1 term = 
292   let rec pp_value = function
293     | CicNotationEnv.NumValue _ as v -> v
294     | CicNotationEnv.StringValue _ as v -> v
295     | CicNotationEnv.TermValue t -> CicNotationEnv.TermValue (pp_ast1 t)
296     | CicNotationEnv.OptValue None as v -> v
297     | CicNotationEnv.OptValue (Some v) -> 
298         CicNotationEnv.OptValue (Some (pp_value v))
299     | CicNotationEnv.ListValue vl ->
300         CicNotationEnv.ListValue (List.map pp_value vl)
301   in
302   let ast_env_of_env env =
303     List.map (fun (var, (ty, value)) -> (var, (ty, pp_value value))) env
304   in
305   match (get_compiled21 ()) term with
306   | None -> pp_ast0 term pp_ast1
307   | Some (env, pid) ->
308       let precedence, associativity, l1 =
309         try
310           Hashtbl.find level1_patterns21 pid
311         with Not_found -> assert false
312       in
313       instantiate21 (ast_env_of_env env) precedence associativity l1
314
315 let instantiate32 term_info env symbol args =
316   let rec instantiate_arg = function
317     | Ast.IdentArg (n, name) ->
318         let t = (try List.assoc name env with Not_found -> assert false) in
319         let rec count_lambda = function
320           | Ast.Binder (`Lambda, _, body) -> 1 + count_lambda body
321           | _ -> 0
322         in
323         let rec add_lambda t n =
324           if n > 0 then
325             let name = CicNotationUtil.fresh_name () in
326             Ast.Binder (`Lambda, (Ast.Ident (name, None), None),
327               Ast.Appl [add_lambda t (n - 1); Ast.Ident (name, None)])
328           else
329             t
330         in
331         add_lambda t (n - count_lambda t)
332   in
333   let args' = List.map instantiate_arg args in
334   Ast.Appl (Ast.Symbol (symbol, 0) :: args')
335
336 let rec ast_of_acic1 term_info annterm = 
337   match (get_compiled32 ()) annterm with
338   | None -> ast_of_acic0 term_info annterm ast_of_acic1
339   | Some (env, pid) -> 
340       let env' =
341         List.map (fun (name, term) -> (name, ast_of_acic1 term_info term)) env
342       in
343       let symbol, args =
344         try
345           Hashtbl.find level2_patterns32 pid
346         with Not_found -> assert false
347       in
348       instantiate32 term_info env' symbol args
349
350 let load_patterns32 t =
351   set_compiled32 (CicNotationMatcher.Matcher32.compiler t)
352
353 let load_patterns21 t =
354   set_compiled21 (CicNotationMatcher.Matcher21.compiler t)
355
356 let ast_of_acic id_to_sort annterm =
357   let term_info = { sort = id_to_sort; uri = Hashtbl.create 211 } in
358   let ast = ast_of_acic1 term_info annterm in
359   ast, term_info.uri
360
361 let pp_ast term = pp_ast1 term
362
363 let fresh_id =
364   let counter = ref ~-1 in
365   fun () ->
366     incr counter;
367     !counter
368
369 let add_interpretation (symbol, args) appl_pattern =
370   let id = fresh_id () in
371   Hashtbl.add level2_patterns32 id (symbol, args);
372   pattern32_matrix := (appl_pattern, id) :: !pattern32_matrix;
373   load_patterns32 !pattern32_matrix;
374   id
375
376 let add_pretty_printer ?precedence ?associativity l2 l1 =
377   let id = fresh_id () in
378   let l2' = CicNotationUtil.strip_attributes l2 in
379   Hashtbl.add level1_patterns21 id (precedence, associativity, l1);
380   pattern21_matrix := (l2', id) :: !pattern21_matrix;
381   load_patterns21 !pattern21_matrix;
382   id
383
384 exception Interpretation_not_found
385 exception Pretty_printer_not_found
386
387 let remove_interpretation id =
388   (try
389     Hashtbl.remove level2_patterns32 id;
390   with Not_found -> raise Interpretation_not_found);
391   pattern32_matrix := List.filter (fun (_, id') -> id <> id') !pattern32_matrix;
392   load_patterns32 !pattern32_matrix
393
394 let remove_pretty_printer id =
395   (try
396     Hashtbl.remove level1_patterns21 id;
397   with Not_found -> raise Pretty_printer_not_found);
398   pattern21_matrix := List.filter (fun (_, id') -> id <> id') !pattern21_matrix;
399   load_patterns21 !pattern21_matrix
400
401 let _ =
402   load_patterns21 [];
403   load_patterns32 []
404