]> matita.cs.unibo.it Git - helm.git/blob - matitaB/components/disambiguation/disambiguate.mli
43fe7a717e039f8e51e622c4419d9fe96b9d3890
[helm.git] / matitaB / components / disambiguation / disambiguate.mli
1 (* Copyright (C) 2004, 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 (** {2 Disambiguation interface} *)
27
28 (** raised when ambiguous input is found but not expected (e.g. in the batch
29   * compiler) *)
30 exception Ambiguous_input
31
32 (* the integer is an offset to be added to each location *)
33 (* list of located error messages, each list is a tuple:
34   * - environment in string form
35   * - environment patch
36   * - location
37   * - error message
38   * - significancy of the error message, if false the error is likely to be
39   *   useless for the final user ... *)
40 exception NoWellTypedInterpretation of
41  int *
42  ((Stdpp.location list * string * string) list *
43   (DisambiguateTypes.domain_item * string) list *
44   (Stdpp.location * string) Lazy.t *
45   bool) list
46 exception PathNotWellFormed
47
48 type 'a disambiguator_input = string * int * 'a
49     
50 type domain = domain_tree list
51 and domain_tree = 
52   Node of Stdpp.location list * DisambiguateTypes.domain_item * domain
53
54 type ('term,'metasenv,'subst,'graph) test_result =
55   | Ok of 'term * 'metasenv * 'subst * 'graph
56   | Ko of (Stdpp.location * string) Lazy.t
57   | Uncertain of (Stdpp.location * string) Lazy.t
58
59 exception Try_again of string Lazy.t
60
61 val set_choose_uris_callback:
62   DisambiguateTypes.interactive_user_uri_choice_type -> unit
63
64 val set_choose_interp_callback:
65   DisambiguateTypes.interactive_interpretation_choice_type -> unit
66
67 (** @raise Ambiguous_input if called, default value for internal
68   * choose_uris_callback if not set otherwise with set_choose_uris_callback
69   * above *)
70 val mono_uris_callback: DisambiguateTypes.interactive_user_uri_choice_type
71
72 (** @raise Ambiguous_input if called, default value for internal
73   * choose_interp_callback if not set otherwise with set_choose_interp_callback
74   * above *)
75 val mono_interp_callback: DisambiguateTypes.interactive_interpretation_choice_type
76
77 val resolve : 
78   env:'alias DisambiguateTypes.Environment.t ->
79   mk_choice:('alias -> 'term DisambiguateTypes.codomain_item) ->
80   DisambiguateTypes.Environment.key ->
81    [`Num_arg of string | `Args of 'term list] -> 'term
82
83 val find_in_context: string -> string option list -> int
84 val domain_of_term: context:
85   string option list -> NotationPt.term -> domain
86 val domain_of_obj: 
87   context:string option list -> NotationPt.term NotationPt.obj -> domain
88
89 (* val disambiguate_list :
90   context:'context ->
91   metasenv:'metasenv ->
92   subst:'subst ->
93   use_coercions:bool ->
94   expty:'refined_thing option ->
95   env:GrafiteAst.alias_spec DisambiguateTypes.Environment.t ->
96   uri:'uri ->
97   interpretate_thing:(context:'context ->
98                       env:GrafiteAst.alias_spec DisambiguateTypes.Environment.t ->
99                       uri:'uri ->
100                       is_path:bool ->
101                       'ast_thing -> localization_tbl:'cic_hash -> 'raw_thing) ->
102   refine_thing:('metasenv -> 'subst -> 'context -> 'uri ->
103                 use_coercions:bool -> 'raw_thing -> 'refined_thing option ->
104                 'ugraph -> localization_tbl:'cic_hash -> 
105                 ('refined_thing, 'metasenv, 'subst, 'ugraph) test_result) ->
106   ugraph:'ugraph ->
107   visit:((NotationPt.term -> bool) -> 'ast_thing -> 
108         ((NotationPt.term -> 'ast_thing) * NotationPt.term) option) ->
109   universe:GrafiteAst.alias_spec list DisambiguateTypes.Environment.t ->
110   mk_localization_tbl:(int -> 'cic_hash) ->
111   'ast_thing list -> ('ast_thing * 'ast_thing list) option
112 *)
113
114 (* val initialize_ast : unit *)
115
116 val disambiguate_thing:
117   context:'context ->
118   metasenv:'metasenv ->
119   subst:'subst ->
120   use_coercions:bool ->
121   string_context_of_context:('context -> string option list) ->
122   initial_ugraph:'ugraph ->
123   expty: 'refined_thing option ->
124   mk_implicit:(bool -> 'alias) ->
125   description_of_alias:('alias -> string) ->
126   fix_instance:(DisambiguateTypes.domain_item -> 'alias list -> 'alias list) ->
127   aliases:'alias DisambiguateTypes.Environment.t ->
128   universe:GrafiteAst.alias_spec list DisambiguateTypes.Environment.t ->
129   lookup_in_library:(
130     DisambiguateTypes.interactive_user_uri_choice_type ->
131     DisambiguateTypes.input_or_locate_uri_type ->
132     DisambiguateTypes.Environment.key ->
133     'alias list) ->
134   uri:'uri ->
135   pp_thing:('ast_thing -> string) ->
136   pp_term:(NotationPt.term -> string) ->
137   domain_of_thing:(context: string option list -> 'ast_thing -> domain) ->
138   interpretate_thing:(
139     context:'context ->
140     env:'alias DisambiguateTypes.Environment.t ->
141     uri:'uri ->
142     is_path:bool -> 
143     'ast_thing -> 
144     localization_tbl:'cichash -> 
145       'raw_thing) ->
146   refine_thing:(
147     'metasenv -> 'subst -> 'context -> 'uri -> use_coercions:bool ->
148     'raw_thing -> 'refined_thing option -> 'ugraph -> localization_tbl:'cichash -> 
149       ('refined_thing, 'metasenv,'subst,'ugraph) test_result) ->
150   visit:(pp_term:(NotationPt.term -> string) ->
151          (NotationPt.term -> bool) -> 'ast_thing -> 
152         ((NotationPt.term -> 'ast_thing) * NotationPt.term) option) -> 
153   mk_localization_tbl:(int -> 'cichash) ->
154   'ast_thing disambiguator_input ->
155   ((DisambiguateTypes.Environment.key * 'alias) list * 
156    'metasenv * 'subst * 'refined_thing * 'ugraph)
157   list * bool
158
159 val bfvisit :
160   pp_term:(NotationPt.term -> string) -> 
161   (NotationPt.term -> bool) ->
162    NotationPt.term -> ((NotationPt.term -> NotationPt.term) * NotationPt.term) option
163
164 val bfvisit_obj :
165   pp_term:(NotationPt.term -> string) -> 
166   (NotationPt.term -> bool) ->
167    NotationPt.term NotationPt.obj -> ((NotationPt.term -> NotationPt.term NotationPt.obj) * NotationPt.term) option