1 (* Copyright (C) 2004-2005, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
30 let alias_diff ~from status =
31 let module Map = DisambiguateTypes.Environment in
33 (fun domain_item codomain_item acc ->
34 if not (Map.mem domain_item from.aliases) then
35 Map.add domain_item codomain_item acc
38 status.aliases Map.empty
40 let set_proof_aliases status aliases =
41 let new_status = {status with aliases = aliases } in
42 let diff = alias_diff ~from:status new_status in
44 CicTextualParser2.EnvironmentP3.to_string diff ::
45 status.moo_content_rev in
46 {new_status with moo_content_rev = moo_content_rev}
48 (** given a uri and a type list (the contructors types) builds a list of pairs
49 * (name,uri) that is used to generate authomatic aliases **)
50 let extract_alias types uri =
52 fun (acc,i) (name, _, _, cl) ->
53 (name, UriManager.string_of_uri (UriManager.uri_of_uriref uri i None))
56 fun (acc,j) (name,_) ->
57 (((name,UriManager.string_of_uri (UriManager.uri_of_uriref uri i
58 (Some j))) :: acc) , j+1)
62 let env_of_list l env =
63 let l' = List.map (fun (name,suri) -> name,suri,CicUtil.term_of_uri (UriManager.uri_of_string suri)) l in
64 DisambiguateTypes.env_of_list l' env
66 let add_aliases_for_inductive_def status types suri =
67 let uri = UriManager.uri_of_string suri in
68 let aliases = env_of_list (extract_alias types uri) status.aliases in
69 set_proof_aliases status aliases
71 let add_alias_for_constant status suri =
72 let uri = UriManager.uri_of_string suri in
73 let name = UriManager.name_of_uri uri in
74 let new_env = env_of_list [(name,suri)] status.aliases in
75 set_proof_aliases status new_env
77 let add_aliases_for_object status suri =
79 Cic.InductiveDefinition (types,_,_,_) ->
80 add_aliases_for_inductive_def status types suri
81 | Cic.Constant _ -> add_alias_for_constant status suri
83 | Cic.CurrentProof _ -> assert false
85 let paths_and_uris_of_obj uri status =
86 let basedir = get_string_option status "basedir" in
87 let innertypesuri = UriManager.innertypesuri_of_uri uri in
88 let bodyuri = UriManager.bodyuri_of_uri uri in
89 let innertypesfilename = Str.replace_first (Str.regexp "^cic:") ""
90 (UriManager.string_of_uri innertypesuri) ^ ".xml.gz" in
91 let innertypespath = basedir ^ "/" ^ innertypesfilename in
92 let xmlfilename = Str.replace_first (Str.regexp "^cic:/") ""
93 (UriManager.string_of_uri uri) ^ ".xml.gz" in
94 let xmlpath = basedir ^ "/" ^ xmlfilename in
95 let xmlbodyfilename = Str.replace_first (Str.regexp "^cic:/") ""
96 (UriManager.string_of_uri uri) ^ ".body.xml.gz" in
97 let xmlbodypath = basedir ^ "/" ^ xmlbodyfilename in
98 xmlpath, xmlbodypath, innertypespath, bodyuri, innertypesuri
100 let save_object_to_disk status uri obj =
101 let ensure_path_exists path =
102 let dir = Filename.dirname path in
105 (* generate annobj, ids_to_inner_sorts and ids_to_inner_types *)
106 let annobj,_,_,ids_to_inner_sorts,ids_to_inner_types,_,_ =
107 Cic2acic.acic_object_of_cic_object ~eta_fix:false obj
111 Cic2Xml.print_object uri ~ids_to_inner_sorts ~ask_dtd_to_the_getter:false
115 Cic2Xml.print_inner_types uri ~ids_to_inner_sorts ~ids_to_inner_types
116 ~ask_dtd_to_the_getter:false
118 let xmlpath, xmlbodypath, innertypespath, bodyuri, innertypesuri =
119 paths_and_uris_of_obj uri status
121 let path_scheme_of path = "file://" ^ path in
122 List.iter MatitaMisc.mkdir
123 (List.map Filename.dirname [innertypespath; xmlpath]);
124 (* now write to disk *)
125 ensure_path_exists innertypespath;
126 Xml.pp ~gzip:true xmlinnertypes (Some innertypespath) ;
127 ensure_path_exists xmlpath;
128 Xml.pp ~gzip:true xml (Some xmlpath) ;
129 (* now register to the getter *)
130 Http_getter.register' innertypesuri (path_scheme_of innertypespath);
131 Http_getter.register' uri (path_scheme_of xmlpath);
132 (* we return a list of uri,path we registered/created *)
133 (uri,xmlpath) :: (innertypesuri,innertypespath) ::
134 (* now the optional body, both write and register *)
135 (match bodyxml,bodyuri with
137 | Some bodyxml,Some bodyuri->
138 ensure_path_exists xmlbodypath;
139 Xml.pp ~gzip:true bodyxml (Some xmlbodypath) ;
140 Http_getter.register' bodyuri (path_scheme_of xmlbodypath);
141 [bodyuri,xmlbodypath]
144 let remove_object_from_disk uri path =
146 Http_getter.unregister' uri
148 let add_obj uri obj status =
149 let dbd = MatitaDb.instance () in
150 let suri = UriManager.string_of_uri uri in
151 if CicEnvironment.in_library uri then
152 command_error (sprintf "%s already defined" suri)
154 CicTypeChecker.typecheck_obj uri obj;
155 MetadataDb.index_obj ~dbd ~uri; (* must be in the env *)
156 let new_stuff = save_object_to_disk status uri obj in
157 MatitaLog.message (sprintf "%s defined" suri);
158 let status = add_aliases_for_object status suri obj in
159 { status with objects = new_stuff @ status.objects;
160 proof_status = No_proof }
165 type t = UriManager.uri * string
166 let compare (u1, _) (u2, _) = UriManager.compare u1 u2
169 module UriSet = Set.Make (OrderedUri)
171 (* returns the uri of objects that were added in the meanwhile...
172 * status1 ----> status2
173 * assumption: objects defined in status2 are a superset of those defined in
176 let delta_status status1 status2 =
177 let module S = UriSet in
179 let s1 = List.fold_left (fun set uri -> S.add uri set) S.empty l1 in
180 let s2 = List.fold_left (fun set uri -> S.add uri set) S.empty l2 in
181 let diff = S.diff s2 s1 in
182 S.fold (fun uri uris -> uri :: uris) diff []
184 diff status1.objects status2.objects
186 let remove_coercion uri =
187 CoercDb.remove_coercion (fun (_,_,u) -> UriManager.eq u uri)
189 let time_travel ~present ~past =
190 let list_of_objs_to_remove = List.rev (delta_status past present) in
191 (* List.rev is just for the debugging code, which otherwise may list both
192 * something.ind and something.ind#xpointer ... (ask Enrico :-) *)
193 let debug_list = ref [] in
194 List.iter (fun (uri,p) ->
195 remove_object_from_disk uri p;
198 CicEnvironment.remove_obj uri
199 with CicEnvironment.Object_not_found _ ->
201 (sprintf "time_travel removes from cache %s that is not in"
202 (UriManager.string_of_uri uri)));
203 let l = MatitaDb.remove_uri uri in
204 debug_list := UriManager.string_of_uri uri :: !debug_list @ l)
205 list_of_objs_to_remove;
207 (* this is debug code
208 * idea: debug_list is the list of objects to be removed as computed from the
209 * db, while list_of_objs_to_remove is the same list but computer from the
210 * differences between statuses *)
211 let l1 = List.sort Pervasives.compare !debug_list in
212 let l2 = List.sort Pervasives.compare
213 (List.map (fun (x,_) -> UriManager.string_of_uri x) list_of_objs_to_remove)
215 let rec uniq = function
218 | h1::h2::tl when h1 = h2 -> uniq (h2 :: tl)
219 | h1::tl (* when h1 <> h2 *) -> h1 :: uniq tl
224 List.iter2 (fun x y -> if x <> y then raise Exit) l1 l2
226 | Invalid_argument _ | Exit ->
227 MatitaLog.debug "It seems you garbaged something...";
228 MatitaLog.debug "l1:";
229 List.iter MatitaLog.debug l1;
230 MatitaLog.debug "l2:";
231 List.iter MatitaLog.debug l2
235 let derived_uris_of_uri uri =
236 UriManager.innertypesuri_of_uri uri ::
237 UriManager.annuri_of_uri uri ::
238 (match UriManager.bodyuri_of_uri uri with
244 (if UriManager.uri_is_ind uri then MatitaDb.xpointers_of_ind uri else []) @
245 derived_uris_of_uri uri
251 let path = Http_getter.resolve' (UriManager.strip_xpointer uri) in
252 assert (String.sub path 0 7 = "file://");
253 String.sub path 7 (String.length path - 7)
255 MatitaLog.debug ("Removing: " ^ UriManager.string_of_uri uri);
256 remove_object_from_disk uri path;
258 Http_getter_types.Key_not_found _ -> Http_getter.unregister' uri);
260 ignore(MatitaDb.remove_uri uri))