]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaDisambiguator.ml
The disambiguation now returns the aliases diff. It used to return the
[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 ~universe
72   ~(f:?fresh_instances:bool ->
73       aliases:DisambiguateTypes.environment ->
74       universe:DisambiguateTypes.multiple_environment option ->
75       'a -> 'b)
76   ~(drop_aliases: 'b -> 'b)
77   ~(drop_aliases_and_clear_diff: 'b -> 'b)
78   (thing: 'a)
79 =
80   assert (universe <> None);
81   let library = false, DisambiguateTypes.Environment.empty, None in
82   let multi_aliases=false, DisambiguateTypes.Environment.empty, universe in
83   let mono_aliases = true, aliases, None in
84   let passes =  (* <fresh_instances?, aliases, coercions?> *)
85     [ (false, mono_aliases, false);
86       (false, multi_aliases, false);
87       (true, mono_aliases, false);
88       (true, multi_aliases, false);
89       (true, mono_aliases, true);
90       (true, multi_aliases, true);
91       (true, library, true);
92     ]
93   in
94   let try_pass (fresh_instances, (_, aliases, universe), use_coercions) =
95     CoercDb.use_coercions := use_coercions;
96     f ~fresh_instances ~aliases ~universe thing
97   in
98   let set_aliases (instances,(use_mono_aliases,_,_),_) (_, user_asked as res) =
99    if use_mono_aliases && not instances then
100     drop_aliases res
101    else if user_asked then
102     drop_aliases res (* one shot aliases *)
103    else
104     drop_aliases_and_clear_diff res
105   in
106   let rec aux =
107     function
108     | [ pass ] -> set_aliases pass (try_pass pass)
109     | hd :: tl ->
110         (try
111           set_aliases hd (try_pass hd)
112         with Disambiguate.NoWellTypedInterpretation -> aux tl)
113     | [] -> assert false
114   in
115   let saved_use_coercions = !CoercDb.use_coercions in
116   try
117     let res = aux passes in
118     CoercDb.use_coercions := saved_use_coercions;
119     res
120   with exn ->
121     CoercDb.use_coercions := saved_use_coercions;
122     raise exn
123
124 type disambiguator_thing =
125  { do_it :
126     'a 'b.
127     aliases:DisambiguateTypes.environment ->
128     universe:DisambiguateTypes.multiple_environment option ->
129     f:(?fresh_instances:bool ->
130        aliases:DisambiguateTypes.environment ->
131        universe:DisambiguateTypes.multiple_environment option ->
132        'a -> 'b * bool) ->
133     drop_aliases:('b * bool -> 'b * bool) ->
134     drop_aliases_and_clear_diff:('b * bool -> 'b * bool) -> 'a -> 'b * bool
135  }
136
137 let disambiguate_thing =
138  let profiler = CicUtil.profile "disambiguate_thing" in
139   { do_it =
140      fun ~aliases ~universe ~f ~drop_aliases ~drop_aliases_and_clear_diff thing
141      -> profiler.CicUtil.profile
142          (disambiguate_thing ~aliases ~universe ~f ~drop_aliases
143            ~drop_aliases_and_clear_diff) thing
144   }
145
146 let drop_aliases (choices, user_asked) =
147   (List.map (fun (d, a, b, c) -> d, a, b, c) choices),
148   user_asked
149
150 let drop_aliases_and_clear_diff (choices, user_asked) =
151   (List.map (fun (_, a, b, c) -> [], a, b, c) choices),
152   user_asked
153
154 let disambiguate_term ?fresh_instances ~dbd ~context ~metasenv ?initial_ugraph
155   ~aliases ~universe term
156  =
157   assert (fresh_instances = None);
158   let f =
159     Disambiguator.disambiguate_term ~dbd ~context ~metasenv ?initial_ugraph
160   in
161   disambiguate_thing.do_it ~aliases ~universe ~f ~drop_aliases
162    ~drop_aliases_and_clear_diff term
163
164 let disambiguate_obj ?fresh_instances ~dbd ~aliases ~universe ~uri obj =
165   assert (fresh_instances = None);
166   let f = Disambiguator.disambiguate_obj ~dbd ~uri in
167   disambiguate_thing.do_it ~aliases ~universe ~f ~drop_aliases
168    ~drop_aliases_and_clear_diff obj