]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_notation/cicNotationRew.ml
* various bug fix related to the environment returned when a match
[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 let default_prec = 50
33 let default_assoc = Gramext.NonA
34
35 type term_info =
36   { sort: (Cic.id, CicNotationPt.sort_kind) Hashtbl.t;
37     uri: (Cic.id, string) Hashtbl.t;
38   }
39
40 let warning s = prerr_endline ("CicNotation WARNING: " ^ s)
41
42 let get_types uri =
43   let o,_ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
44     match o with
45       | Cic.InductiveDefinition (l,_,_,_) -> l 
46       | _ -> assert false
47
48 let name_of_inductive_type uri i = 
49   let types = get_types uri in
50   let (name, _, _, _) = try List.nth types i with Not_found -> assert false in
51   name
52
53   (* returns <name, type> pairs *)
54 let constructors_of_inductive_type uri i =
55   let types = get_types uri in
56   let (_, _, _, constructors) = 
57     try List.nth types i with Not_found -> assert false
58   in
59   constructors
60
61   (* returns name only *)
62 let constructor_of_inductive_type uri i j =
63   (try
64     fst (List.nth (constructors_of_inductive_type uri i) (j-1))
65   with Not_found -> assert false)
66
67 module Ast = CicNotationPt
68 module Parser = CicNotationParser
69
70 let string_of_name = function
71   | Cic.Name s -> s
72   | Cic.Anonymous -> "_"
73
74 let ident_of_name n = Ast.Ident (string_of_name n, None)
75
76 let idref id t = Ast.AttributedTerm (`IdRef id, t)
77
78 let resolve_binder = function
79   | `Lambda -> "\\lambda"
80   | `Pi -> "\\Pi"
81   | `Forall -> "\\forall"
82   | `Exists -> "\\exists"
83
84 let pp_ast0 t k =
85   let reset_href t = Ast.AttributedTerm (`Href [], t) in
86   let builtin_symbol s = reset_href (Ast.Literal (`Symbol s)) in
87   let rec aux = function
88     | Ast.Appl ts ->
89         Ast.AttributedTerm (`Level (Parser.apply_prec, Parser.apply_assoc),
90           Ast.Layout (Ast.Box ((Ast.HOV, true, true), List.map k ts)))
91     | Ast.Binder (`Forall, (Ast.Ident ("_", _), ty), body)
92     | Ast.Binder (`Pi, (Ast.Ident ("_", _), ty), body) ->
93         Ast.AttributedTerm (`Level (Parser.binder_prec, Parser.binder_assoc),
94           Ast.Layout (Ast.Box ((Ast.HV, false, true), [
95             aux_ty ty;
96             Ast.Layout (Ast.Box ((Ast.H, false, false), [
97               builtin_symbol "\\to";
98               k body]))])))
99     | Ast.Binder (binder_kind, (id, ty), body) ->
100         Ast.AttributedTerm (`Level (Parser.binder_prec, Parser.binder_assoc),
101           Ast.Layout (Ast.Box ((Ast.HV, false, true), [
102             Ast.Layout (Ast.Box ((Ast.H, false, false), [
103               builtin_symbol (resolve_binder binder_kind);
104               k id;
105               builtin_symbol ":";
106               aux_ty ty ]));
107             Ast.Layout (Ast.Box ((Ast.H, false, false), [
108               builtin_symbol ".";
109               k body ]))])))
110     | t -> CicNotationUtil.visit_ast ~special_k k t
111   and aux_ty = function
112     | None -> builtin_symbol "?"
113     | Some ty -> k ty
114   and special_k = function
115     | Ast.AttributedTerm (attrs, t) -> Ast.AttributedTerm (attrs, k t)
116     | _ -> assert false
117   in
118   aux t
119
120 let ast_of_acic0 term_info acic k =
121 (*   prerr_endline "ast_of_acic0"; *)
122   let k = k term_info in
123   let register_uri id uri = Hashtbl.add term_info.uri id uri in
124   let sort_of_id id =
125     try
126       Hashtbl.find term_info.sort id
127     with Not_found -> assert false
128   in
129   let aux_substs substs =
130     Some
131       (List.map
132         (fun (uri, annterm) -> (UriManager.name_of_uri uri, k annterm))
133         substs)
134   in
135   let aux_context context =
136     List.map
137       (function
138         | None -> None
139         | Some annterm -> Some (k annterm))
140       context
141   in
142   let aux = function
143     | Cic.ARel (id,_,_,b) -> idref id (Ast.Ident (b, None))
144     | Cic.AVar (id,uri,substs) ->
145         register_uri id (UriManager.string_of_uri uri);
146         idref id (Ast.Ident (UriManager.name_of_uri uri, aux_substs substs))
147     | Cic.AMeta (id,n,l) -> idref id (Ast.Meta (n, aux_context l))
148     | Cic.ASort (id,Cic.Prop) -> idref id (Ast.Sort `Prop)
149     | Cic.ASort (id,Cic.Set) -> idref id (Ast.Sort `Set)
150     | Cic.ASort (id,Cic.Type _) -> idref id (Ast.Sort `Type)
151     | Cic.ASort (id,Cic.CProp) -> idref id (Ast.Sort `CProp)
152     | Cic.AImplicit _ -> assert false
153     | Cic.AProd (id,n,s,t) ->
154         let binder_kind =
155           match sort_of_id id with
156           | `Set | `Type -> `Pi
157           | `Prop | `CProp -> `Forall
158         in
159         idref id (Ast.Binder (binder_kind, (ident_of_name n, Some (k s)), k t))
160     | Cic.ACast (id,v,t) ->
161         idref id (Ast.Appl [idref id (Ast.Symbol ("cast", 0)); k v; k t])
162     | Cic.ALambda (id,n,s,t) ->
163         idref id (Ast.Binder (`Lambda, (ident_of_name n, Some (k s)), k t))
164     | Cic.ALetIn (id,n,s,t) ->
165         idref id (Ast.LetIn ((ident_of_name n, None), k s, k t))
166     | Cic.AAppl (aid,args) -> idref aid (Ast.Appl (List.map k args))
167     | Cic.AConst (id,uri,substs) ->
168         register_uri id (UriManager.string_of_uri uri);
169         idref id (Ast.Ident (UriManager.name_of_uri uri, aux_substs substs))
170     | Cic.AMutInd (id,uri,i,substs) as t ->
171         let name = name_of_inductive_type uri i in
172         let uri_str = UriManager.string_of_uri uri in
173         let puri_str =
174           uri_str ^ "#xpointer(1/" ^ (string_of_int (i + 1)) ^ ")"
175         in
176         register_uri id puri_str;
177         idref id (Ast.Ident (name, aux_substs substs))
178     | Cic.AMutConstruct (id,uri,i,j,substs) ->
179         let name = constructor_of_inductive_type uri i j in
180         let uri_str = UriManager.string_of_uri uri in
181         let puri_str = sprintf "%s#xpointer(1/%d/%d)" uri_str (i + 1) j in
182         register_uri id puri_str;
183         idref id (Ast.Ident (name, aux_substs substs))
184     | Cic.AMutCase (id,uri,typeno,ty,te,patterns) ->
185         let name = name_of_inductive_type uri typeno in
186         let constructors = constructors_of_inductive_type uri typeno in
187         let rec eat_branch ty pat =
188           match (ty, pat) with
189           | Cic.Prod (_, _, t), Cic.ALambda (_, name, s, t') ->
190               let (cv, rhs) = eat_branch t t' in
191               (ident_of_name name, Some (k s)) :: cv, rhs
192           | _, _ -> [], k pat
193         in
194         let patterns =
195           List.map2
196             (fun (name, ty) pat ->
197               let (capture_variables, rhs) = eat_branch ty pat in
198               ((name, capture_variables), rhs))
199             constructors patterns
200         in
201         idref id (Ast.Case (k te, Some name, Some (k ty), patterns))
202     | Cic.AFix (id, no, funs) -> 
203         let defs = 
204           List.map
205             (fun (_, n, decr_idx, ty, bo) ->
206               ((Ast.Ident (n, None), Some (k ty)), k bo, decr_idx))
207             funs
208         in
209         let name =
210           try
211             (match List.nth defs no with
212             | (Ast.Ident (n, _), _), _, _ when n <> "_" -> n
213             | _ -> assert false)
214           with Not_found -> assert false
215         in
216         idref id (Ast.LetRec (`Inductive, defs, Ast.Ident (name, None)))
217     | Cic.ACoFix (id, no, funs) -> 
218         let defs = 
219           List.map
220             (fun (_, n, ty, bo) -> ((Ast.Ident (n, None), Some (k ty)), k bo, 0))
221             funs
222         in
223         let name =
224           try
225             (match List.nth defs no with
226             | (Ast.Ident (n, _), _), _, _ when n <> "_" -> n
227             | _ -> assert false)
228           with Not_found -> assert false
229         in
230         idref id (Ast.LetRec (`CoInductive, defs, Ast.Ident (name, None)))
231   in
232   aux acic
233
234   (* persistent state *)
235
236 let level1_patterns21 = Hashtbl.create 211
237 let level2_patterns32 = Hashtbl.create 211
238
239 let (compiled21: (CicNotationPt.term -> (CicNotationEnv.t * int) option)
240 option ref) =
241   ref None
242 let (compiled32: (Cic.annterm -> ((string * Cic.annterm) list * int) option)
243 option ref) =
244   ref None
245
246 let pattern21_matrix = ref []
247 let pattern32_matrix = ref []
248
249 let get_compiled21 () =
250   match !compiled21 with
251   | None -> assert false
252   | Some f -> f
253 let get_compiled32 () =
254   match !compiled32 with
255   | None -> assert false
256   | Some f -> f
257
258 let set_compiled21 f = compiled21 := Some f
259 let set_compiled32 f = compiled32 := Some f
260
261 let instantiate21 env (* precedence associativity *) l1 =
262   let rec subst_singleton env t =
263     CicNotationUtil.boxify (subst env t)
264   and subst env = function
265     | Ast.AttributedTerm (_, t) -> subst env t
266     | Ast.Variable var ->
267         let name, expected_ty = CicNotationEnv.declaration_of_var var in
268           prerr_endline ("searching for " ^ name);
269         let ty, value =
270           try
271             List.assoc name env
272           with Not_found -> assert false
273         in
274         assert (CicNotationEnv.well_typed ty value); (* INVARIANT *)
275         (* following assertion should be a conditional that makes this
276          * instantiation fail *)
277         assert (CicNotationEnv.well_typed expected_ty value);
278         [ CicNotationEnv.term_of_value value ]
279     | Ast.Magic m -> subst_magic env m
280     | Ast.Literal _ as t -> [ t ]
281     | Ast.Layout l -> [ Ast.Layout (subst_layout env l) ]
282     | t -> [ CicNotationUtil.visit_ast (subst_singleton env) t ]
283   and subst_magic env = function
284     | Ast.List0 (p, sep_opt)
285     | Ast.List1 (p, sep_opt) ->
286         let rec_decls = CicNotationEnv.declarations_of_term p in
287         let rec_values =
288           List.map (fun (n, _) -> CicNotationEnv.lookup_list env n) rec_decls
289         in
290         let values = CicNotationUtil.ncombine rec_values in
291         let sep =
292           match sep_opt with
293           | None -> []
294           | Some l -> [ CicNotationPt.Literal l ]
295         in
296         let rec instantiate_list acc = function
297           | [] -> List.rev acc
298           | value_set :: [] ->
299               let env = CicNotationEnv.combine rec_decls value_set in
300                 instantiate_list
301                   ((CicNotationUtil.boxify (subst env p)) :: acc) []
302           | value_set :: tl ->
303               let env = CicNotationEnv.combine rec_decls value_set in
304               instantiate_list
305                 ((CicNotationUtil.boxify (subst env p @ sep)) :: acc) tl
306         in
307         instantiate_list [] values
308     | Ast.Opt p ->
309         let opt_decls = CicNotationEnv.declarations_of_term p in
310         let env =
311           let rec build_env = function
312             | [] -> []
313             | (name, ty) :: tl ->
314                   (* assumption: if one of the value is None then all are *)
315                 (match CicNotationEnv.lookup_opt env name with
316                 | None -> raise Exit
317                 | Some v -> (name, (ty, v)) :: build_env tl)
318           in
319           try build_env opt_decls with Exit -> []
320         in
321           begin
322             match env with
323               | [] -> []
324               | _ -> subst env p
325           end
326     | _ -> assert false (* impossible *)
327   and subst_layout env = function
328     | Ast.Box (kind, tl) -> Ast.Box (kind, List.concat (List.map (subst env) tl))
329     | l -> CicNotationUtil.visit_layout (subst_singleton env) l
330   in
331     subst_singleton env l1
332
333 let rec pp_ast1 term = 
334   let rec pp_value = function
335     | CicNotationEnv.NumValue _ as v -> v
336     | CicNotationEnv.StringValue _ as v -> v
337 (*     | CicNotationEnv.TermValue t when t == term -> CicNotationEnv.TermValue (pp_ast0 t pp_ast1) *)
338     | CicNotationEnv.TermValue t -> CicNotationEnv.TermValue (pp_ast1 t)
339     | CicNotationEnv.OptValue None as v -> v
340     | CicNotationEnv.OptValue (Some v) -> 
341         CicNotationEnv.OptValue (Some (pp_value v))
342     | CicNotationEnv.ListValue vl ->
343         CicNotationEnv.ListValue (List.map pp_value vl)
344   in
345   let ast_env_of_env env =
346     List.map (fun (var, (ty, value)) -> (var, (ty, pp_value value))) env
347   in
348   match term with
349   | Ast.AttributedTerm (attrs, t) -> Ast.AttributedTerm (attrs, pp_ast1 t)
350   | _ ->
351       begin
352         match (get_compiled21 ()) term with
353           | None -> pp_ast0 term pp_ast1
354           | Some (env, pid) ->
355               let precedence, associativity, l1 =
356                 try
357                   Hashtbl.find level1_patterns21 pid
358                 with Not_found -> assert false
359               in
360                 prerr_endline ("IN " ^ CicNotationPp.pp_term term);
361                 (* LUCA: il termine legato e' lo stesso termine di partenza per cui si innesca il loop infinito *)
362                 let res = Ast.AttributedTerm (`Level (precedence, associativity),
363                                               (instantiate21 (ast_env_of_env env) l1))
364                 in
365                   prerr_endline "OUT";
366                   res
367       end
368   
369
370 let instantiate32 term_info env symbol args =
371   let rec instantiate_arg = function
372     | Ast.IdentArg (n, name) ->
373         let t = (try List.assoc name env with Not_found -> assert false) in
374         let rec count_lambda = function
375           | Ast.Binder (`Lambda, _, body) -> 1 + count_lambda body
376           | _ -> 0
377         in
378         let rec add_lambda t n =
379           if n > 0 then
380             let name = CicNotationUtil.fresh_name () in
381             Ast.Binder (`Lambda, (Ast.Ident (name, None), None),
382               Ast.Appl [add_lambda t (n - 1); Ast.Ident (name, None)])
383           else
384             t
385         in
386         add_lambda t (n - count_lambda t)
387   in
388   let args' = List.map instantiate_arg args in
389   Ast.Appl (Ast.Symbol (symbol, 0) :: args')
390
391 let rec ast_of_acic1 term_info annterm = 
392   match (get_compiled32 ()) annterm with
393   | None -> ast_of_acic0 term_info annterm ast_of_acic1
394   | Some (env, pid) -> 
395       let env' =
396         List.map (fun (name, term) -> (name, ast_of_acic1 term_info term)) env
397       in
398       let symbol, args, uris =
399         try
400           Hashtbl.find level2_patterns32 pid
401         with Not_found -> assert false
402       in
403       let ast = instantiate32 term_info env' symbol args in
404       match uris with
405       | [] -> ast
406       | _ -> Ast.AttributedTerm (`Href uris, ast)
407
408 let load_patterns32 t =
409   set_compiled32 (CicNotationMatcher.Matcher32.compiler t)
410
411 let load_patterns21 t =
412   set_compiled21 (CicNotationMatcher.Matcher21.compiler t)
413
414 let ast_of_acic id_to_sort annterm =
415   let term_info = { sort = id_to_sort; uri = Hashtbl.create 211 } in
416   let ast = ast_of_acic1 term_info annterm in
417   ast, term_info.uri
418
419 let pp_ast term = pp_ast1 term
420
421 let fresh_id =
422   let counter = ref ~-1 in
423   fun () ->
424     incr counter;
425     !counter
426
427 let add_interpretation (symbol, args) appl_pattern =
428   let id = fresh_id () in
429   let uris = CicNotationUtil.find_appl_pattern_uris appl_pattern in
430   Hashtbl.add level2_patterns32 id (symbol, args, uris);
431   pattern32_matrix := (appl_pattern, id) :: !pattern32_matrix;
432   load_patterns32 !pattern32_matrix;
433   id
434
435 let add_pretty_printer
436   ?(precedence = default_prec) ?(associativity = default_assoc) l2 l1
437 =
438   let id = fresh_id () in
439   let l2' = CicNotationUtil.strip_attributes l2 in
440   Hashtbl.add level1_patterns21 id (precedence, associativity, l1);
441   pattern21_matrix := (l2', id) :: !pattern21_matrix;
442   load_patterns21 !pattern21_matrix;
443   id
444
445 exception Interpretation_not_found
446 exception Pretty_printer_not_found
447
448 let remove_interpretation id =
449   (try
450     Hashtbl.remove level2_patterns32 id;
451   with Not_found -> raise Interpretation_not_found);
452   pattern32_matrix := List.filter (fun (_, id') -> id <> id') !pattern32_matrix;
453   load_patterns32 !pattern32_matrix
454
455 let remove_pretty_printer id =
456   (try
457     Hashtbl.remove level1_patterns21 id;
458   with Not_found -> raise Pretty_printer_not_found);
459   pattern21_matrix := List.filter (fun (_, id') -> id <> id') !pattern21_matrix;
460   load_patterns21 !pattern21_matrix
461
462 let _ =
463   load_patterns21 [];
464   load_patterns32 []
465