]> matita.cs.unibo.it Git - helm.git/blob - components/cic_disambiguation/disambiguateTypes.ml
tagged 0.5.0-rc1
[helm.git] / components / cic_disambiguation / disambiguateTypes.ml
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 (* $Id$ *)
27
28 (*
29 type term = CicNotationPt.term
30 type tactic = (term, term, GrafiteAst.reduction, string) GrafiteAst.tactic
31 type tactical = (term, term, GrafiteAst.reduction, string) GrafiteAst.tactical
32 type script_entry =
33   | Command of tactical
34   | Comment of CicNotationPt.location * string
35 type script = CicNotationPt.location * script_entry list
36 *)
37
38 type domain_item =
39   | Id of string               (* literal *)
40   | Symbol of string * int     (* literal, instance num *)
41   | Num of int                 (* instance num *)
42
43 exception Invalid_choice of Stdpp.location option * string Lazy.t
44
45 module OrderedDomain =
46   struct
47     type t = domain_item
48     let compare = Pervasives.compare
49   end
50
51 (* module Domain = Set.Make (OrderedDomain) *)
52 module Environment =
53 struct
54   module Environment' = Map.Make (OrderedDomain)
55
56   include Environment'
57
58   let find k env =
59    match k with
60       Symbol (sym,n) ->
61        (try find k env
62         with Not_found -> find (Symbol (sym,0)) env)
63     | Num n ->
64        (try find k env
65         with Not_found -> find (Num 0) env)
66     | _ -> find k env
67
68   let cons k v env =
69     try
70       let current = find k env in
71       let dsc, _ = v in
72       add k (v :: (List.filter (fun (dsc', _) -> dsc' <> dsc) current)) env
73     with Not_found ->
74       add k [v] env
75
76   let hd list_env =
77     try
78       map List.hd list_env
79     with Failure _ -> assert false
80
81   let fold_flatten f env base =
82     fold
83       (fun k l acc -> List.fold_right (fun v acc -> f k v acc) l acc)
84       env base
85
86 end
87
88 type codomain_item =
89   string *  (* description *)
90   (environment -> string -> Cic.term list -> Cic.term)
91     (* environment, literal number, arguments as needed *)
92
93 and environment = codomain_item Environment.t
94
95 type multiple_environment = codomain_item list Environment.t
96
97
98 (** adds a (name,uri) list l to a disambiguation environment e **)
99 let multiple_env_of_list l e = 
100   List.fold_left
101    (fun e (name,descr,t) -> Environment.cons (Id name) (descr,fun _ _ _ -> t) e)
102    e l
103
104 let env_of_list l e = 
105   List.fold_left
106    (fun e (name,descr,t) -> Environment.add (Id name) (descr,fun _ _ _ -> t) e)
107    e l
108
109 module type Callbacks =
110   sig
111     val interactive_user_uri_choice:
112       selection_mode:[`SINGLE | `MULTIPLE] ->
113       ?ok:string ->
114       ?enable_button_for_non_vars:bool ->
115       title:string -> msg:string -> id:string -> UriManager.uri list ->
116       UriManager.uri list
117     val interactive_interpretation_choice:
118       string -> int ->
119       (Stdpp.location list * string * string) list list -> int list
120     val input_or_locate_uri:
121       title:string -> ?id:string -> unit -> UriManager.uri option
122   end
123
124 let string_of_domain_item = function
125   | Id s -> Printf.sprintf "ID(%s)" s
126   | Symbol (s, i) -> Printf.sprintf "SYMBOL(%s,%d)" s i
127   | Num i -> Printf.sprintf "NUM(instance %d)" i
128
129 let string_of_domain dom =
130   String.concat "; " (List.map string_of_domain_item dom)