]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/grafite_parser/grafiteDisambiguator.ml
test branch
[helm.git] / helm / ocaml / grafite_parser / grafiteDisambiguator.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 (* $Id$ *)
27
28 open Printf
29
30 exception Ambiguous_input
31 (* the integer is an offset to be added to each location *)
32 exception DisambiguationError of
33  int * (Token.flocation option * string Lazy.t) list list
34   (** parameters are: option name, error message *)
35 exception Unbound_identifier of string
36
37 type choose_uris_callback =
38   id:string -> UriManager.uri list -> UriManager.uri list
39
40 type choose_interp_callback = (string * string) list list -> int list
41
42 let mono_uris_callback ~id =
43  if Helm_registry.get_bool "matita.auto_disambiguation" then
44   function l -> l
45  else
46   raise Ambiguous_input
47
48 let mono_interp_callback _ = raise Ambiguous_input
49
50 let _choose_uris_callback = ref mono_uris_callback
51 let _choose_interp_callback = ref mono_interp_callback
52 let set_choose_uris_callback f = _choose_uris_callback := f
53 let set_choose_interp_callback f = _choose_interp_callback := f
54
55 module Callbacks =
56   struct
57     let interactive_user_uri_choice ~selection_mode ?ok
58           ?(enable_button_for_non_vars = true) ~title ~msg ~id uris =
59               !_choose_uris_callback ~id uris
60
61     let interactive_interpretation_choice interp =
62       !_choose_interp_callback interp
63
64     let input_or_locate_uri ~(title:string) ?id =
65       (* Zack: I try to avoid using this callback. I therefore assume that
66       * the presence of an identifier that can't be resolved via "locate"
67       * query is a syntax error *)
68       let msg = match id with Some id -> id | _ -> "_" in
69       raise (Unbound_identifier msg)
70   end
71   
72 module Disambiguator = Disambiguate.Make (Callbacks)
73
74 (* implement module's API *)
75
76 let disambiguate_thing ~aliases ~universe
77   ~(f:?fresh_instances:bool ->
78       aliases:DisambiguateTypes.environment ->
79       universe:DisambiguateTypes.multiple_environment option ->
80       'a -> 'b)
81   ~(drop_aliases: 'b -> 'b)
82   ~(drop_aliases_and_clear_diff: 'b -> 'b)
83   (thing: 'a)
84 =
85   assert (universe <> None);
86   let library = false, DisambiguateTypes.Environment.empty, None in
87   let multi_aliases = false, DisambiguateTypes.Environment.empty, universe in
88   let mono_aliases = true, aliases, Some DisambiguateTypes.Environment.empty in
89   let passes =  (* <fresh_instances?, aliases, coercions?> *)
90     [ (false, mono_aliases, false);
91       (false, multi_aliases, false);
92       (true, mono_aliases, false);
93       (true, multi_aliases, false);
94       (true, mono_aliases, true);
95       (true, multi_aliases, true);
96       (true, library, true);
97     ]
98   in
99   let try_pass (fresh_instances, (_, aliases, universe), insert_coercions) =
100     CicRefine.insert_coercions := insert_coercions;
101     f ~fresh_instances ~aliases ~universe thing
102   in
103   let set_aliases (instances,(use_mono_aliases,_,_),_) (_, user_asked as res) =
104    if use_mono_aliases && not instances then
105     drop_aliases res
106    else if user_asked then
107     drop_aliases res (* one shot aliases *)
108    else
109     drop_aliases_and_clear_diff res
110   in
111   let rec aux errors =
112     function
113     | [ pass ] ->
114         (try
115           set_aliases pass (try_pass pass)
116          with Disambiguate.NoWellTypedInterpretation (offset,newerrors) ->
117           raise (DisambiguationError (offset, errors @ [newerrors])))
118     | hd :: tl ->
119         (try
120           set_aliases hd (try_pass hd)
121         with Disambiguate.NoWellTypedInterpretation (_offset,newerrors) ->
122          aux (errors @ [newerrors]) tl)
123     | [] -> assert false
124   in
125   let saved_insert_coercions = !CicRefine.insert_coercions in
126   try
127     let res = aux [] passes in
128     CicRefine.insert_coercions := saved_insert_coercions;
129     res
130   with exn ->
131     CicRefine.insert_coercions := saved_insert_coercions;
132     raise exn
133
134 type disambiguator_thing =
135  { do_it :
136     'a 'b.
137     aliases:DisambiguateTypes.environment ->
138     universe:DisambiguateTypes.multiple_environment option ->
139     f:(?fresh_instances:bool ->
140        aliases:DisambiguateTypes.environment ->
141        universe:DisambiguateTypes.multiple_environment option ->
142        'a -> 'b * bool) ->
143     drop_aliases:('b * bool -> 'b * bool) ->
144     drop_aliases_and_clear_diff:('b * bool -> 'b * bool) -> 'a -> 'b * bool
145  }
146
147 let disambiguate_thing =
148  let profiler = HExtlib.profile "disambiguate_thing" in
149   { do_it =
150      fun ~aliases ~universe ~f ~drop_aliases ~drop_aliases_and_clear_diff thing
151      -> profiler.HExtlib.profile
152          (disambiguate_thing ~aliases ~universe ~f ~drop_aliases
153            ~drop_aliases_and_clear_diff) thing
154   }
155
156 let drop_aliases (choices, user_asked) =
157   (List.map (fun (d, a, b, c) -> d, a, b, c) choices),
158   user_asked
159
160 let drop_aliases_and_clear_diff (choices, user_asked) =
161   (List.map (fun (_, a, b, c) -> [], a, b, c) choices),
162   user_asked
163
164 let disambiguate_term ?fresh_instances ~dbd ~context ~metasenv ?initial_ugraph
165   ~aliases ~universe term
166  =
167   assert (fresh_instances = None);
168   let f =
169     Disambiguator.disambiguate_term ~dbd ~context ~metasenv ?initial_ugraph
170   in
171   disambiguate_thing.do_it ~aliases ~universe ~f ~drop_aliases
172    ~drop_aliases_and_clear_diff term
173
174 let disambiguate_obj ?fresh_instances ~dbd ~aliases ~universe ~uri obj =
175   assert (fresh_instances = None);
176   let f = Disambiguator.disambiguate_obj ~dbd ~uri in
177   disambiguate_thing.do_it ~aliases ~universe ~f ~drop_aliases
178    ~drop_aliases_and_clear_diff obj