]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaDisambiguator.ml
New policy for the 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 = true, 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, mono_aliases, false);
83       (true, multi_aliases, false);
84       (true, mono_aliases, true);
85       (true, multi_aliases, true);
86       (true, library, true);
87     ]
88   in
89   let try_pass (fresh_instances, aliases, use_coercions) =
90     CoercDb.use_coercions := use_coercions;
91     f ~fresh_instances ~aliases thing
92   in
93   let set_aliases (_,(use_multi_aliases,_),_) (_, user_asked as res) =
94    if not use_multi_aliases then
95     res
96    else if user_asked then
97     res (* one shot aliases *)
98    else
99     set_aliases aliases res
100   in
101   let rec aux =
102     function
103     | [ pass ] -> set_aliases pass (try_pass pass)
104     | hd :: tl ->
105         (try
106           set_aliases hd (try_pass hd)
107         with Disambiguate.NoWellTypedInterpretation -> aux tl)
108     | [] -> assert false
109   in
110   let saved_use_coercions = !CoercDb.use_coercions in
111   try
112     let res = aux passes in
113     CoercDb.use_coercions := saved_use_coercions;
114     res
115   with exn ->
116     CoercDb.use_coercions := saved_use_coercions;
117     raise exn
118
119 let set_aliases aliases (choices, user_asked) =
120   (List.map (fun (_, a, b, c) -> aliases, a, b, c) choices),
121   user_asked
122
123 let disambiguate_term ~dbd ~context ~metasenv ?initial_ugraph ~aliases term =
124   let f =
125     Disambiguator.disambiguate_term ~dbd ~context ~metasenv ?initial_ugraph
126   in
127   disambiguate_thing ~aliases ~f ~set_aliases term
128
129 let disambiguate_obj ~dbd ~aliases ~uri obj =
130   let f = Disambiguator.disambiguate_obj ~dbd ~uri in
131   disambiguate_thing ~aliases ~f ~set_aliases obj
132