]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaDisambiguator.ml
Added support for multiple disambiguation passes.
[helm.git] / helm / matita / matitaDisambiguator.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 open MatitaTypes
29
30 exception Ambiguous_input
31
32 type choose_uris_callback =
33   id:string -> UriManager.uri list -> UriManager.uri list
34
35 type choose_interp_callback = (string * string) list list -> int list
36
37 let mono_uris_callback ~id =
38  if Helm_registry.get_bool "matita.auto_disambiguation" then
39   function l -> l
40  else
41   raise Ambiguous_input
42
43 let mono_interp_callback _ = raise Ambiguous_input
44
45 let _choose_uris_callback = ref mono_uris_callback
46 let _choose_interp_callback = ref mono_interp_callback
47 let set_choose_uris_callback f = _choose_uris_callback := f
48 let set_choose_interp_callback f = _choose_interp_callback := f
49
50 module Callbacks =
51   struct
52     let interactive_user_uri_choice ~selection_mode ?ok
53           ?(enable_button_for_non_vars = true) ~title ~msg ~id uris =
54               !_choose_uris_callback ~id uris
55
56     let interactive_interpretation_choice interp =
57       !_choose_interp_callback interp
58
59     let input_or_locate_uri ~(title:string) ?id =
60       (* Zack: I try to avoid using this callback. I therefore assume that
61       * the presence of an identifier that can't be resolved via "locate"
62       * query is a syntax error *)
63       let msg = match id with Some id -> id | _ -> "_" in
64       raise (Unbound_identifier msg)
65   end
66   
67 module Disambiguator = Disambiguate.Make (Callbacks)
68
69 (* implement module's API *)
70
71 let disambiguate_thing ~aliases
72   ~(f:?fresh_instances:bool -> aliases:Disambiguate.aliases -> 'a -> 'b)
73   ~(set_aliases: DisambiguateTypes.environment -> 'b -> 'b)
74   (thing: 'a)
75 =
76   let library = false, DisambiguateTypes.empty_environment in
77   let multi_aliases = true, aliases in
78   let mono_aliases = false, aliases in
79   let passes =  (* <fresh_instances?, aliases, coercions?> *)
80     [ (false, mono_aliases, false);
81       (false, multi_aliases, false);
82       (true, library, false);
83       (true, mono_aliases, true);
84       (true, multi_aliases, true);
85       (true, library, true);
86     ]
87   in
88   let try_pass (fresh_instances, aliases, use_coercions) =
89     CoercDb.use_coercions := use_coercions;
90     f ~fresh_instances ~aliases thing
91   in
92   let rec aux =
93     function
94     | [ pass ] -> try_pass pass
95     | hd :: tl ->
96         (try
97           try_pass hd
98         with Disambiguate.NoWellTypedInterpretation ->
99           let (_, user_asked) as res = aux tl in
100           if user_asked then res else set_aliases aliases res)
101     | [] -> assert false
102   in
103   let saved_use_coercions = !CoercDb.use_coercions in
104   try
105     let res = aux passes in
106     CoercDb.use_coercions := saved_use_coercions;
107     res
108   with exn ->
109     CoercDb.use_coercions := saved_use_coercions;
110     raise exn
111
112 let set_aliases aliases (choices, user_asked) =
113   (List.map (fun (_, a, b, c) -> aliases, a, b, c) choices),
114   user_asked
115
116 let disambiguate_term ~dbd ~context ~metasenv ?initial_ugraph ~aliases term =
117   let f =
118     Disambiguator.disambiguate_term ~dbd ~context ~metasenv ?initial_ugraph
119   in
120   disambiguate_thing ~aliases ~f ~set_aliases term
121
122 let disambiguate_obj ~dbd ~aliases ~uri obj =
123   let f = Disambiguator.disambiguate_obj ~dbd ~uri in
124   disambiguate_thing ~aliases ~f ~set_aliases obj
125