1 (* Copyright (C) 2004-2005, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
30 module Ast = CicNotationPt
31 module Env = CicNotationEnv
34 let debug_print s = if debug then prerr_endline (Lazy.force s) else ()
37 type pretty_printer_id = pattern_id
39 let resolve_binder = function
40 | `Lambda -> "\\lambda"
42 | `Forall -> "\\forall"
43 | `Exists -> "\\exists"
45 let add_level_info prec t = Ast.AttributedTerm (`Level prec, t)
47 let rec top_pos t = add_level_info ~-1 t
49 let rec remove_level_info =
51 | Ast.AttributedTerm (`Level _, t) -> remove_level_info t
52 | Ast.AttributedTerm (a, t) -> Ast.AttributedTerm (a, remove_level_info t)
55 let add_xml_attrs attrs t =
56 if attrs = [] then t else Ast.AttributedTerm (`XmlAttrs attrs, t)
58 let add_keyword_attrs =
59 add_xml_attrs (RenderingAttrs.keyword_attributes `MathML)
61 let box kind spacing indent content =
62 Ast.Layout (Ast.Box ((kind, spacing, indent), content))
66 let hvbox = box Ast.HV
67 let hovbox = box Ast.HOV
68 let break = Ast.Layout Ast.Break
69 let space = Ast.Literal (`Symbol " ")
70 let builtin_symbol s = Ast.Literal (`Symbol s)
71 let keyword k = add_keyword_attrs (Ast.Literal (`Keyword k))
74 add_xml_attrs (RenderingAttrs.number_attributes `MathML)
75 (Ast.Literal (`Number s))
78 add_xml_attrs (RenderingAttrs.ident_attributes `MathML) (Ast.Ident (i, None))
80 let ident_w_href href i =
84 let href = UriManager.string_of_uri href in
85 add_xml_attrs [Some "xlink", "href", href] (ident i)
88 add_xml_attrs (RenderingAttrs.builtin_symbol_attributes `MathML)
91 let string_of_sort_kind = function
101 let rec aux_args level =
105 [ Ast.AttributedTerm (`Level level,k last) ]
107 (Ast.AttributedTerm (`Level level, k hd)) :: aux_args 71 tl
109 add_level_info Ast.apply_prec
110 (hovbox true true (CicNotationUtil.dress break (aux_args 70 ts)))
111 | Ast.Binder (binder_kind, (id, ty), body) ->
112 add_level_info Ast.binder_prec
114 [ binder_symbol (resolve_binder binder_kind);
115 k id; builtin_symbol ":"; aux_ty ty; break;
116 builtin_symbol "."; k body ])
117 | Ast.Case (what, indty_opt, outty_opt, patterns) ->
122 [ space; keyword "return"; space; break; remove_level_info (k outty)]
127 | Some (indty, href) -> [ space; keyword "in"; space; break; ident_w_href href indty ]
132 hvbox false true [keyword "match"; space; break; top_pos (k what)];
134 hvbox false true indty_box;
136 hvbox false true outty_box
144 let mk_case_pattern =
146 Ast.Pattern (head, href, vars) ->
147 hbox true false (ident_w_href href head :: List.map aux_var vars)
148 | Ast.Wildcard -> builtin_symbol "_"
156 mk_case_pattern lhs; builtin_symbol "\\Rightarrow" ];
157 break; top_pos (k rhs) ]))
161 let rec aux_patterns = function
167 last; builtin_symbol "]" ] ]
169 [ break; hbox false false [ builtin_symbol "|"; hd ] ]
174 [ hbox false false [ builtin_symbol "["; builtin_symbol "]" ] ]
177 builtin_symbol "["; one; builtin_symbol "]" ] ]
179 hbox false false [ builtin_symbol "["; hd ]
182 add_level_info Ast.simple_prec
184 hvbox false false ([match_box]); break;
185 hbox false false [ hvbox false false patterns'' ] ])
186 | Ast.Cast (bo, ty) ->
187 add_level_info Ast.simple_prec
189 builtin_symbol "("; top_pos (k bo); break; builtin_symbol ":";
190 top_pos (k ty); builtin_symbol ")"])
191 | Ast.LetIn (var, s, t) ->
192 add_level_info Ast.let_in_prec
195 keyword "let"; space;
198 builtin_symbol "\\def"; break; top_pos (k s) ];
199 break; space; keyword "in"; space ];
202 | Ast.LetRec (rec_kind, funs, where) ->
204 match rec_kind with `Inductive -> "rec" | `CoInductive -> "corec"
206 let mk_fun (args, (name,ty), body, rec_param) =
207 List.map aux_var args ,k name, HExtlib.map_option k ty, k body,
208 fst (List.nth args rec_param)
210 let mk_funs = List.map mk_fun in
211 let fst_fun, tl_funs =
212 match mk_funs funs with hd :: tl -> hd, tl | [] -> assert false
215 let (params, name, ty, body, rec_param) = fst_fun in
223 [space; keyword "on" ; space ; rec_param ;space ] @
224 (match ty with None -> [] | Some ty -> [builtin_symbol ":"; ty]) @
225 [ builtin_symbol "\\def";
231 (fun (params, name, ty, body, rec_param) ->
237 [space; keyword "on" ; space; rec_param ;space ] @
240 | Some ty -> [builtin_symbol ":"; ty]) @
241 [ builtin_symbol "\\def"; break; body ])])
244 add_level_info Ast.let_in_prec
246 (fst_row :: List.flatten tl_rows
247 @ [ break; keyword "in"; break; k where ])))
248 | Ast.Implicit -> builtin_symbol "?"
250 let local_context l =
251 List.map (function None -> None | Some t -> Some (k t)) l
253 Ast.Meta(n, local_context l)
254 | Ast.Sort sort -> aux_sort sort
257 | Ast.Ident (_, None) | Ast.Ident (_, Some [])
258 | Ast.Uri (_, None) | Ast.Uri (_, Some [])
260 | Ast.UserInput as leaf -> leaf
261 | t -> CicNotationUtil.visit_ast ~special_k k t
262 and aux_sort sort_kind =
263 add_xml_attrs (RenderingAttrs.keyword_attributes `MathML)
264 (Ast.Ident (string_of_sort_kind sort_kind, None))
265 and aux_ty = function
266 | None -> builtin_symbol "?"
268 and aux_var = function
271 builtin_symbol "("; name; builtin_symbol ":"; break; k ty;
274 and special_k = function
275 | Ast.AttributedTerm (attrs, t) -> Ast.AttributedTerm (attrs, k t)
277 prerr_endline ("unexpected special: " ^ CicNotationPp.pp_term t);
282 (* persistent state *)
284 let level1_patterns21 = Hashtbl.create 211
286 let compiled21 = ref None
288 let pattern21_matrix = ref []
290 let get_compiled21 () =
291 match !compiled21 with
292 | None -> assert false
293 | Some f -> Lazy.force f
295 let set_compiled21 f = compiled21 := Some f
298 List.fold_right (fun idref t -> Ast.AttributedTerm (`IdRef idref, t))
300 let instantiate21 idrefs env l1 =
301 let rec subst_singleton pos env =
303 Ast.AttributedTerm (attr, t) ->
304 Ast.AttributedTerm (attr, subst_singleton pos env t)
305 | t -> CicNotationUtil.group (subst pos env t)
306 and subst pos env = function
307 | Ast.AttributedTerm (attr, t) ->
308 (* prerr_endline ("loosing attribute " ^ CicNotationPp.pp_attribute attr); *)
310 | Ast.Variable var ->
311 let name, expected_ty = CicNotationEnv.declaration_of_var var in
316 prerr_endline ("name " ^ name ^ " not found in environment");
319 assert (CicNotationEnv.well_typed ty value); (* INVARIANT *)
320 (* following assertion should be a conditional that makes this
321 * instantiation fail *)
322 if not (CicNotationEnv.well_typed expected_ty value) then
324 prerr_endline ("The variable " ^ name ^ " is used with the wrong type in the notation declaration");
327 let value = CicNotationEnv.term_of_value value in
329 match expected_ty with
330 | Env.TermType l -> Ast.AttributedTerm (`Level l,value)
334 | Ast.Magic m -> subst_magic pos env m
335 | Ast.Literal l as t ->
336 let t = add_idrefs idrefs t in
338 | `Keyword k -> [ add_keyword_attrs t ]
340 | Ast.Layout l -> [ Ast.Layout (subst_layout pos env l) ]
341 | t -> [ CicNotationUtil.visit_ast (subst_singleton pos env) t ]
342 and subst_magic pos env = function
343 | Ast.List0 (p, sep_opt)
344 | Ast.List1 (p, sep_opt) ->
345 let rec_decls = CicNotationEnv.declarations_of_term p in
347 List.map (fun (n, _) -> CicNotationEnv.lookup_list env n) rec_decls
349 let values = CicNotationUtil.ncombine rec_values in
353 | Some l -> [ Ast.Literal l; break; space ]
355 let rec instantiate_list acc = function
358 let env = CicNotationEnv.combine rec_decls value_set in
359 instantiate_list (CicNotationUtil.group (subst pos env p) :: acc)
362 let env = CicNotationEnv.combine rec_decls value_set in
363 let terms = subst pos env p in
364 instantiate_list (CicNotationUtil.group (terms @ sep) :: acc) tl
366 if values = [] then []
367 else [hovbox false false (instantiate_list [] values)]
369 let opt_decls = CicNotationEnv.declarations_of_term p in
371 let rec build_env = function
373 | (name, ty) :: tl ->
374 (* assumption: if one of the value is None then all are *)
375 (match CicNotationEnv.lookup_opt env name with
377 | Some v -> (name, (ty, v)) :: build_env tl)
379 try build_env opt_decls with Exit -> []
384 | _ -> subst pos env p
386 | _ -> assert false (* impossible *)
387 and subst_layout pos env = function
388 | Ast.Box (kind, tl) ->
389 let tl' = subst_children pos env tl in
390 Ast.Box (kind, List.concat tl')
391 | l -> CicNotationUtil.visit_layout (subst_singleton pos env) l
392 and subst_children pos env =
400 (* | `None -> assert false *)
403 [ subst pos' env child ]
409 (* | `None -> assert false *)
412 (subst pos env hd) :: subst_children pos' env tl
414 subst_singleton `Left env l1
416 let rec pp_ast1 term =
417 let rec pp_value = function
418 | CicNotationEnv.NumValue _ as v -> v
419 | CicNotationEnv.StringValue _ as v -> v
420 (* | CicNotationEnv.TermValue t when t == term -> CicNotationEnv.TermValue (pp_ast0 t pp_ast1) *)
421 | CicNotationEnv.TermValue t -> CicNotationEnv.TermValue (pp_ast1 t)
422 | CicNotationEnv.OptValue None as v -> v
423 | CicNotationEnv.OptValue (Some v) ->
424 CicNotationEnv.OptValue (Some (pp_value v))
425 | CicNotationEnv.ListValue vl ->
426 CicNotationEnv.ListValue (List.map pp_value vl)
428 let ast_env_of_env env =
429 List.map (fun (var, (ty, value)) -> (var, (ty, pp_value value))) env
431 (* prerr_endline ("pattern matching from 2 to 1 on term " ^ CicNotationPp.pp_term term); *)
433 | Ast.AttributedTerm (attrs, term') ->
434 Ast.AttributedTerm (attrs, pp_ast1 term')
436 (match (get_compiled21 ()) term with
437 | None -> pp_ast0 term pp_ast1
438 | Some (env, ctors, pid) ->
440 List.flatten (List.map CicNotationUtil.get_idrefs ctors)
444 Hashtbl.find level1_patterns21 pid
445 with Not_found -> assert false
447 instantiate21 idrefs (ast_env_of_env env) l1)
449 let load_patterns21 t =
450 set_compiled21 (lazy (Content2presMatcher.Matcher21.compiler t))
453 debug_print (lazy "pp_ast <-");
454 let ast' = pp_ast1 ast in
455 debug_print (lazy ("pp_ast -> " ^ CicNotationPp.pp_term ast'));
458 exception Pretty_printer_not_found
460 let fill_pos_info l1_pattern = l1_pattern
461 (* let rec aux toplevel pos =
468 | Ast.Variable _ as t -> add_pos_info pos t
471 aux true l1_pattern *)
473 let counter = ref ~-1
476 Hashtbl.clear level1_patterns21
483 let add_pretty_printer l2 (CicNotationParser.CL1P (l1,precedence)) =
484 let id = fresh_id () in
485 let l1' = add_level_info precedence (fill_pos_info l1) in
486 let l2' = CicNotationUtil.strip_attributes l2 in
487 Hashtbl.add level1_patterns21 id l1';
488 pattern21_matrix := (l2', id) :: !pattern21_matrix;
489 load_patterns21 !pattern21_matrix;
492 let remove_pretty_printer id =
494 Hashtbl.remove level1_patterns21 id;
495 with Not_found -> raise Pretty_printer_not_found);
496 pattern21_matrix := List.filter (fun (_, id') -> id <> id') !pattern21_matrix;
497 load_patterns21 !pattern21_matrix
499 (* presentation -> content *)
501 let unopt_names names env =
502 let rec aux acc = function
503 | (name, (ty, v)) :: tl when List.mem name names ->
505 | Env.OptType ty, Env.OptValue (Some v) ->
506 aux ((name, (ty, v)) :: acc) tl
508 | hd :: tl -> aux (hd :: acc) tl
513 let head_names names env =
514 let rec aux acc = function
515 | (name, (ty, v)) :: tl when List.mem name names ->
517 | Env.ListType ty, Env.ListValue (v :: _) ->
518 aux ((name, (ty, v)) :: acc) tl
519 | Env.TermType _, Env.TermValue _ ->
520 aux ((name, (ty, v)) :: acc) tl
522 | _ :: tl -> aux acc tl
523 (* base pattern may contain only meta names, thus we trash all others *)
528 let tail_names names env =
529 let rec aux acc = function
530 | (name, (ty, v)) :: tl when List.mem name names ->
532 | Env.ListType ty, Env.ListValue (_ :: vtl) ->
533 aux ((name, (Env.ListType ty, Env.ListValue vtl)) :: acc) tl
534 | Env.TermType _, Env.TermValue _ ->
535 aux ((name, (ty, v)) :: acc) tl
537 | binding :: tl -> aux (binding :: acc) tl
542 let instantiate_level2 env term =
543 (* prerr_endline ("istanzio: " ^ CicNotationPp.pp_term term); *)
544 let fresh_env = ref [] in
545 let lookup_fresh_name n =
547 List.assoc n !fresh_env
549 let new_name = CicNotationUtil.fresh_name () in
550 fresh_env := (n, new_name) :: !fresh_env;
553 let rec aux env term =
554 (* prerr_endline ("ENV " ^ CicNotationPp.pp_env env); *)
556 | Ast.AttributedTerm (a, term) -> (*Ast.AttributedTerm (a, *)aux env term
557 | Ast.Appl terms -> Ast.Appl (List.map (aux env) terms)
558 | Ast.Binder (binder, var, body) ->
559 Ast.Binder (binder, aux_capture_var env var, aux env body)
560 | Ast.Case (term, indty, outty_opt, patterns) ->
561 Ast.Case (aux env term, indty, aux_opt env outty_opt,
562 List.map (aux_branch env) patterns)
563 | Ast.LetIn (var, t1, t3) ->
564 Ast.LetIn (aux_capture_var env var, aux env t1, aux env t3)
565 | Ast.LetRec (kind, definitions, body) ->
566 Ast.LetRec (kind, List.map (aux_definition env) definitions,
568 | Ast.Uri (name, None) -> Ast.Uri (name, None)
569 | Ast.Uri (name, Some substs) ->
570 Ast.Uri (name, Some (aux_substs env substs))
571 | Ast.Ident (name, Some substs) ->
572 Ast.Ident (name, Some (aux_substs env substs))
573 | Ast.Meta (index, substs) -> Ast.Meta (index, aux_meta_substs env substs)
580 | Ast.UserInput -> term
582 | Ast.Magic magic -> aux_magic env magic
583 | Ast.Variable var -> aux_variable env var
586 and aux_opt env = function
587 | Some term -> Some (aux env term)
589 and aux_capture_var env (name, ty_opt) = (aux env name, aux_opt env ty_opt)
590 and aux_branch env (pattern, term) =
591 (aux_pattern env pattern, aux env term)
592 and aux_pattern env =
594 Ast.Pattern (head, hrefs, vars) ->
595 Ast.Pattern (head, hrefs, List.map (aux_capture_var env) vars)
596 | Ast.Wildcard -> Ast.Wildcard
597 and aux_definition env (params, var, term, i) =
598 (List.map (aux_capture_var env) params, aux_capture_var env var, aux env term, i)
599 and aux_substs env substs =
600 List.map (fun (name, term) -> (name, aux env term)) substs
601 and aux_meta_substs env meta_substs = List.map (aux_opt env) meta_substs
602 and aux_variable env = function
603 | Ast.NumVar name -> Ast.Num (Env.lookup_num env name, 0)
604 | Ast.IdentVar name -> Ast.Ident (Env.lookup_string env name, None)
605 | Ast.TermVar (name,(Ast.Level l|Ast.Self l)) ->
606 Ast.AttributedTerm (`Level l,Env.lookup_term env name)
607 | Ast.FreshVar name -> Ast.Ident (lookup_fresh_name name, None)
608 | Ast.Ascription (term, name) -> assert false
609 and aux_magic env = function
610 | Ast.Default (some_pattern, none_pattern) ->
611 let some_pattern_names = CicNotationUtil.names_of_term some_pattern in
612 let none_pattern_names = CicNotationUtil.names_of_term none_pattern in
615 (fun name -> not (List.mem name none_pattern_names))
618 (match opt_names with
619 | [] -> assert false (* some pattern must contain at least 1 name *)
620 | (name :: _) as names ->
621 (match Env.lookup_value env name with
622 | Env.OptValue (Some _) ->
623 (* assumption: if "name" above is bound to Some _, then all
624 * names returned by "meta_names_of" are bound to Some _ as well
626 aux (unopt_names names env) some_pattern
627 | Env.OptValue None -> aux env none_pattern
629 prerr_endline (sprintf
630 "lookup of %s in env %s did not return an optional value"
631 name (CicNotationPp.pp_env env));
633 | Ast.Fold (`Left, base_pattern, names, rec_pattern) ->
634 let acc_name = List.hd names in (* names can't be empty, cfr. parser *)
636 List.filter ((<>) acc_name)
637 (CicNotationUtil.names_of_term rec_pattern)
639 (match meta_names with
640 | [] -> assert false (* as above *)
641 | (name :: _) as names ->
642 let rec instantiate_fold_left acc env' =
643 match Env.lookup_value env' name with
644 | Env.ListValue (_ :: _) ->
645 instantiate_fold_left
647 acc_name, (Env.TermType 0, Env.TermValue acc)
649 aux (acc_binding :: head_names names env') rec_pattern)
650 (tail_names names env')
651 | Env.ListValue [] -> acc
654 instantiate_fold_left (aux env base_pattern) env)
655 | Ast.Fold (`Right, base_pattern, names, rec_pattern) ->
656 let acc_name = List.hd names in (* names can't be empty, cfr. parser *)
658 List.filter ((<>) acc_name)
659 (CicNotationUtil.names_of_term rec_pattern)
661 (match meta_names with
662 | [] -> assert false (* as above *)
663 | (name :: _) as names ->
664 let rec instantiate_fold_right env' =
665 match Env.lookup_value env' name with
666 | Env.ListValue (_ :: _) ->
667 let acc = instantiate_fold_right (tail_names names env') in
669 acc_name, (Env.TermType 0, Env.TermValue acc)
671 aux (acc_binding :: head_names names env') rec_pattern
672 | Env.ListValue [] -> aux env base_pattern
675 instantiate_fold_right env)
676 | Ast.If (_, p_true, p_false) as t ->
677 aux env (CicNotationUtil.find_branch (Ast.Magic t))
678 | Ast.Fail -> assert false
685 let _ = load_patterns21 []