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/
28 exception AlreadyDefined of UriManager.uri
30 let auxiliary_lemmas_hashtbl = UriManager.UriHashtbl.create 29
32 (* uri |--> (derived_coercions_in_the_coercion_DB, derived_coercions_in_lib)
34 * in case of remove_coercion uri, the first component is removed from the
35 * coercion DB, while the second is passed to remove_obj (and is not [] only if
36 * add_coercion is called with add_composites
38 let coercion_hashtbl = UriManager.UriHashtbl.create 3
41 let innertypesuri = UriManager.innertypesuri_of_uri uri in
42 let bodyuri = UriManager.bodyuri_of_uri uri in
43 let univgraphuri = UriManager.univgraphuri_of_uri uri in
44 innertypesuri,bodyuri,univgraphuri
46 let paths_and_uris_of_obj uri =
47 let resolved = Http_getter.filename' ~writable:true uri in
48 let basepath = Filename.dirname resolved in
49 let innertypesuri, bodyuri, univgraphuri = uris_of_obj uri in
50 let innertypesfilename=(UriManager.nameext_of_uri innertypesuri)^".xml.gz"in
51 let innertypespath = basepath ^ "/" ^ innertypesfilename in
52 let xmlfilename = (UriManager.nameext_of_uri uri) ^ ".xml.gz" in
53 let xmlpath = basepath ^ "/" ^ xmlfilename in
54 let xmlbodyfilename = (UriManager.nameext_of_uri uri) ^ ".body.xml.gz" in
55 let xmlbodypath = basepath ^ "/" ^ xmlbodyfilename in
56 let xmlunivgraphfilename=(UriManager.nameext_of_uri univgraphuri)^".xml.gz"in
57 let xmlunivgraphpath = basepath ^ "/" ^ xmlunivgraphfilename in
58 xmlpath, xmlbodypath, innertypespath, bodyuri, innertypesuri,
59 xmlunivgraphpath, univgraphuri
61 let save_object_to_disk uri obj ugraph univlist =
63 if not (Helm_registry.get_opt_default
64 Helm_registry.bool "matita.nodisk" ~default:false)
68 let ensure_path_exists path =
69 let dir = Filename.dirname path in
72 (* generate annobj, ids_to_inner_sorts and ids_to_inner_types *)
73 let annobj = Cic2acic.plain_acic_object_of_cic_object obj in
77 uri ?ids_to_inner_sorts:None ~ask_dtd_to_the_getter:false annobj
79 let xmlpath, xmlbodypath, innertypespath, bodyuri, innertypesuri,
80 xmlunivgraphpath, univgraphuri =
81 paths_and_uris_of_obj uri
83 write (List.iter HExtlib.mkdir) (List.map Filename.dirname [xmlpath]);
84 (* now write to disk *)
85 write ensure_path_exists xmlpath;
86 write (Xml.pp ~gzip:true xml) (Some xmlpath);
87 write (CicUniv.write_xml_of_ugraph xmlunivgraphpath ugraph) univlist;
88 (* we return a list of uri,path we registered/created *)
90 (univgraphuri,xmlunivgraphpath) ::
91 (* now the optional body, both write and register *)
92 (match bodyxml,bodyuri with
94 | Some bodyxml,Some bodyuri->
95 write ensure_path_exists xmlbodypath;
96 write (Xml.pp ~gzip:true bodyxml) (Some xmlbodypath);
97 [bodyuri, xmlbodypath]
102 let profiler = HExtlib.profile "add_obj.typecheck_obj" in
103 fun uri obj -> profiler.HExtlib.profile (CicTypeChecker.typecheck_obj uri) obj
106 let profiler = HExtlib.profile "add_obj.index_obj" in
108 profiler.HExtlib.profile (fun uri -> MetadataDb.index_obj ~dbd ~uri) uri
110 let add_single_obj uri obj refinement_toolkit =
111 let module RT = RefinementTool in
113 if (*List.mem `Generated (CicUtil.attributes_of_obj obj) &&*)
114 not (CoercGraph.is_a_coercion (Cic.Const (uri, [])))
116 refinement_toolkit.RT.pack_coercion_obj obj
120 let dbd = LibraryDb.instance () in
121 if CicEnvironment.in_library uri then
122 raise (AlreadyDefined uri)
124 (*CicUniv.reset_spent_time ();
125 let before = Unix.gettimeofday () in*)
126 typecheck_obj uri obj; (* 1 *)
127 (*let after = Unix.gettimeofday () in
128 let univ_time = CicUniv.get_spent_time () in
129 let total_time = after -. before in
131 (Printf.sprintf "QED: %%univ = %2.5f, total = %2.5f, univ = %2.5f, %s\n"
132 (univ_time *. 100. /. total_time) (total_time) (univ_time)
133 (UriManager.name_of_uri uri));*)
134 let _, ugraph, univlist =
135 CicEnvironment.get_cooked_obj_with_univlist CicUniv.empty_ugraph uri in
137 index_obj ~dbd ~uri; (* 2 must be in the env *)
140 let new_stuff = save_object_to_disk uri obj ugraph univlist in
143 (Printf.sprintf "%s defined" (UriManager.string_of_uri uri))
145 List.iter HExtlib.safe_remove (List.map snd new_stuff); (* -3 *)
148 ignore(LibraryDb.remove_uri uri); (* -2 *)
151 CicEnvironment.remove_obj uri; (* -1 *)
155 let remove_single_obj uri =
156 let derived_uris_of_uri uri =
157 let innertypesuri, bodyuri, univgraphuri = uris_of_obj uri in
158 innertypesuri::univgraphuri::(match bodyuri with None -> [] | Some u -> [u])
162 (if UriManager.uri_is_ind uri then LibraryDb.xpointers_of_ind uri else []) @
163 derived_uris_of_uri uri
168 let file = Http_getter.resolve' ~writable:true uri in
169 HExtlib.safe_remove file;
170 HExtlib.rmdir_descend (Filename.dirname file)
171 with Http_getter_types.Key_not_found _ -> ());
172 ignore (LibraryDb.remove_uri uri);
173 (*CoercGraph.remove_coercion uri;*)
174 CicEnvironment.remove_obj uri)
177 (*** GENERATION OF AUXILIARY LEMMAS ***)
179 let generate_elimination_principles uri refinement_toolkit =
183 let uri,obj = CicElim.elim_of ~sort uri 0 in
184 add_single_obj uri obj refinement_toolkit;
186 with CicElim.Can_t_eliminate -> ()
189 List.iter elim [ Cic.Prop; Cic.Set; (Cic.Type (CicUniv.fresh ())) ];
192 List.iter remove_single_obj !uris;
195 (* COERCIONS ***********************************************************)
197 let remove_all_coercions () =
198 UriManager.UriHashtbl.clear coercion_hashtbl;
199 CoercDb.remove_coercion (fun (_,_,u1) -> true)
201 let add_coercion ~add_composites refinement_toolkit uri =
203 let coer = CicUtil.term_of_uri uri in
204 CicTypeChecker.type_of_aux' [] [] coer CicUniv.empty_ugraph
206 (* we have to get the source and the tgt type uri
207 * in Coq syntax we have already their names, but
208 * since we don't support Funclass and similar I think
209 * all the coercion should be of the form
211 * So we should be able to extract them from the coercion type
213 * Currently only (_:T1)T2 is supported.
214 * should we saturate it with metas in case we insert it?
217 let extract_last_two_p ty =
218 let rec aux = function
219 | Cic.Prod( _, _, ((Cic.Prod _) as t)) ->
221 | Cic.Prod( _, src, tgt) -> src, tgt
228 (fun (_,_,ul) -> List.exists (fun u -> UriManager.eq u uri) ul)
231 let ty_src, ty_tgt = extract_last_two_p coer_ty in
232 let src_carr = CoercDb.coerc_carr_of_term (CicReduction.whd [] ty_src) in
233 let tgt_carr = CoercDb.coerc_carr_of_term (CicReduction.whd [] ty_tgt) in
234 if not add_composites then
235 (CoercDb.add_coercion (src_carr, tgt_carr, uri);[])
238 CicCoercion.close_coercion_graph refinement_toolkit src_carr tgt_carr uri
240 let composite_uris = List.map (fun (_,_,uri,_) -> uri) new_coercions in
242 (* this if starts here just to be sure the closure function works fine *)
244 assert (new_coercions = []);
246 (UriManager.string_of_uri uri ^
247 " is already declared as a coercion! skipping...");
254 (fun (src,tgt,uri,_) -> CoercDb.add_coercion (src,tgt,uri))
256 CoercDb.add_coercion (src_carr, tgt_carr, uri);
257 (* add the composites obj and they eventual lemmas *)
259 if add_composites then
261 (fun acc (_,_,uri,obj) ->
262 add_single_obj uri obj refinement_toolkit;
268 (* store that composite_uris are related to uri. the first component is
269 * the stuff in the DB while the second is stuff for remove_obj *)
271 prerr_endline ("adding: " ^
272 string_of_bool add_composites ^ UriManager.string_of_uri uri);
273 List.iter (fun u -> prerr_endline (UriManager.string_of_uri u))
276 UriManager.UriHashtbl.add coercion_hashtbl uri
277 (composite_uris,if add_composites then composite_uris else []);
279 prerr_endline ("lemmas:");
280 List.iter (fun u -> prerr_endline (UriManager.string_of_uri u))
282 prerr_endline ("lemmas END");*)
287 let remove_coercion uri =
289 let (composites_in_db, composites_in_lib) =
290 UriManager.UriHashtbl.find coercion_hashtbl uri
292 (*prerr_endline ("removing: " ^UriManager.string_of_uri uri);
293 List.iter (fun u -> prerr_endline (UriManager.string_of_uri u))
295 UriManager.UriHashtbl.remove coercion_hashtbl uri;
296 CoercDb.remove_coercion (fun (_,_,u) -> UriManager.eq uri u);
297 (* remove from the DB *)
299 (fun u -> CoercDb.remove_coercion (fun (_,_,u1) -> UriManager.eq u u1))
301 (* remove composites from the lib *)
302 List.iter remove_single_obj composites_in_lib
304 Not_found -> () (* mhh..... *)
307 let generate_projections refinement_toolkit uri fields =
309 let projections = CicRecord.projections_of uri (List.map fst fields) in
312 (fun (uri, name, bo) (_name, coercion) ->
315 CicTypeChecker.type_of_aux' [] [] bo CicUniv.empty_ugraph in
316 let attrs = [`Class `Projection; `Generated] in
317 let obj = Cic.Constant (name,Some bo,ty,[],attrs) in
318 add_single_obj uri obj refinement_toolkit;
322 (*prerr_endline ("composite for " ^ UriManager.string_of_uri uri);*)
323 let x = add_coercion ~add_composites:true refinement_toolkit uri
325 (*prerr_endline ("are: ");
326 List.iter (fun u -> prerr_endline (UriManager.string_of_uri u)) x;
334 uris := uri :: composites @ !uris
336 CicTypeChecker.TypeCheckerFailure s ->
338 ("Unable to create projection " ^ name ^ " cause: " ^ Lazy.force s);
339 | CicEnvironment.Object_not_found uri ->
340 let depend = UriManager.name_of_uri uri in
342 ("Unable to create projection " ^ name ^ " because it requires " ^
344 ) projections fields;
347 List.iter remove_single_obj !uris;
350 let build_inversion_principle = ref (fun a b -> assert false);;
352 let generate_inversion refinement_toolkit uri obj =
353 match !build_inversion_principle uri obj with
355 | Some (ind_uri,ind_obj) ->
356 add_single_obj ind_uri ind_obj refinement_toolkit;
359 let add_obj refinement_toolkit uri obj =
360 add_single_obj uri obj refinement_toolkit;
365 | Cic.Constant _ -> ()
366 | Cic.InductiveDefinition (_,_,_,attrs) ->
368 generate_elimination_principles uri refinement_toolkit;
369 uris := !uris @ generate_inversion refinement_toolkit uri obj;
370 let rec get_record_attrs =
373 | (`Class (`Record fields))::_ -> Some fields
374 | _::tl -> get_record_attrs tl
376 (match get_record_attrs attrs with
377 | None -> () (* not a record *)
380 (generate_projections refinement_toolkit uri fields))
382 | Cic.Variable _ -> assert false
384 UriManager.UriHashtbl.add auxiliary_lemmas_hashtbl uri !uris;
387 List.iter remove_single_obj !uris;
393 let res = UriManager.UriHashtbl.find auxiliary_lemmas_hashtbl uri in
394 UriManager.UriHashtbl.remove auxiliary_lemmas_hashtbl uri;
397 Not_found -> [] (*assert false*)
399 List.iter remove_single_obj (uri::uris)