]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaSync.ml
More profiling code inserted.
[helm.git] / helm / matita / matitaSync.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 open Printf
27
28 open MatitaTypes
29
30 let alias_diff ~from status = 
31   let module Map = DisambiguateTypes.Environment in
32   Map.fold
33     (fun domain_item (description1,_ as codomain_item) acc ->
34       try
35        let description2,_ = Map.find domain_item from.aliases in
36         if description1 <> description2 then
37           Map.add domain_item codomain_item acc
38         else
39           acc
40       with
41        Not_found ->
42          Map.add domain_item codomain_item acc)
43     status.aliases Map.empty
44
45 let alias_diff =
46  let profiler = CicUtil.profile "alias_diff (conteggiato anche in include)" in
47  fun ~from status -> profiler.CicUtil.profile (alias_diff ~from) status
48
49 let set_proof_aliases status aliases =
50  let new_status = { status with aliases = aliases } in
51  let diff = alias_diff ~from:status new_status in
52  let multi_aliases =
53   DisambiguateTypes.Environment.fold DisambiguateTypes.Environment.cons
54    diff status.multi_aliases in
55  let new_status = { new_status with multi_aliases = multi_aliases } in
56  if DisambiguateTypes.Environment.is_empty diff then
57    new_status
58  else
59    add_moo_content (DisambiguatePp.commands_of_environment diff) new_status
60   
61 (** given a uri and a type list (the contructors types) builds a list of pairs
62  *  (name,uri) that is used to generate authomatic aliases **)
63 let extract_alias types uri = 
64   fst(List.fold_left (
65     fun (acc,i) (name, _, _, cl) -> 
66       (name, UriManager.string_of_uri (UriManager.uri_of_uriref uri i None))
67       ::
68       (fst(List.fold_left (
69         fun (acc,j) (name,_) ->
70           (((name,UriManager.string_of_uri (UriManager.uri_of_uriref uri i
71           (Some j))) :: acc) , j+1)
72         ) (acc,1) cl)),i+1
73   ) ([],0) types)
74
75 let env_of_list l env =
76  let l' = List.map (fun (name,suri) -> name,suri,CicUtil.term_of_uri (UriManager.uri_of_string suri)) l in
77   DisambiguateTypes.env_of_list l' env
78
79 let add_aliases_for_inductive_def status types suri = 
80   let uri = UriManager.uri_of_string suri in
81   let aliases = env_of_list (extract_alias types uri) status.aliases in
82   set_proof_aliases status aliases
83
84 let add_alias_for_constant status suri =
85  let uri = UriManager.uri_of_string suri in
86  let name = UriManager.name_of_uri uri in
87  let new_env = env_of_list [(name,suri)] status.aliases in
88  set_proof_aliases status new_env
89
90 let add_aliases_for_object status suri =
91  function
92     Cic.InductiveDefinition (types,_,_,_) ->
93      add_aliases_for_inductive_def status types suri
94   | Cic.Constant _ -> add_alias_for_constant status suri
95   | Cic.Variable _
96   | Cic.CurrentProof _ -> assert false
97   
98 let paths_and_uris_of_obj uri status =
99   let basedir = get_string_option status "basedir" ^ "/xml" in
100   let innertypesuri = UriManager.innertypesuri_of_uri uri in
101   let bodyuri = UriManager.bodyuri_of_uri uri in
102   let innertypesfilename = Str.replace_first (Str.regexp "^cic:") ""
103         (UriManager.string_of_uri innertypesuri) ^ ".xml.gz" in
104   let innertypespath = basedir ^ "/" ^ innertypesfilename in
105   let xmlfilename = Str.replace_first (Str.regexp "^cic:/") ""
106         (UriManager.string_of_uri uri) ^ ".xml.gz" in
107   let xmlpath = basedir ^ "/" ^ xmlfilename in
108   let xmlbodyfilename = Str.replace_first (Str.regexp "^cic:/") ""
109         (UriManager.string_of_uri uri) ^ ".body.xml.gz" in
110   let xmlbodypath = basedir ^ "/" ^  xmlbodyfilename in
111   xmlpath, xmlbodypath, innertypespath, bodyuri, innertypesuri
112
113 let save_object_to_disk status uri obj =
114   let ensure_path_exists path =
115     let dir = Filename.dirname path in
116     MatitaMisc.mkdir dir
117   in
118   (* generate annobj, ids_to_inner_sorts and ids_to_inner_types *)
119   let annobj,_,_,ids_to_inner_sorts,ids_to_inner_types,_,_ =
120     Cic2acic.acic_object_of_cic_object ~eta_fix:false obj
121   in 
122   (* prepare XML *)
123   let xml, bodyxml =
124    Cic2Xml.print_object uri ~ids_to_inner_sorts ~ask_dtd_to_the_getter:false
125     annobj 
126   in
127   let xmlinnertypes =
128    Cic2Xml.print_inner_types uri ~ids_to_inner_sorts ~ids_to_inner_types
129     ~ask_dtd_to_the_getter:false
130   in
131   let xmlpath, xmlbodypath, innertypespath, bodyuri, innertypesuri = 
132     paths_and_uris_of_obj uri status 
133   in
134   let path_scheme_of path = "file://" ^ path in
135   List.iter MatitaMisc.mkdir
136     (List.map Filename.dirname [innertypespath; xmlpath]);
137   (* now write to disk *)
138   ensure_path_exists innertypespath;
139   Xml.pp ~gzip:true xmlinnertypes (Some innertypespath);
140   ensure_path_exists xmlpath;
141   Xml.pp ~gzip:true xml (Some xmlpath) ;
142   (* we return a list of uri,path we registered/created *)
143   (uri,xmlpath) :: (innertypesuri,innertypespath) ::
144     (* now the optional body, both write and register *)
145     (match bodyxml,bodyuri with
146        None,None -> []
147      | Some bodyxml,Some bodyuri->
148          ensure_path_exists xmlbodypath;
149          Xml.pp ~gzip:true bodyxml (Some xmlbodypath);
150          [bodyuri, xmlbodypath]
151      | _-> assert false) 
152
153 let typecheck_obj =
154  let profiler = CicUtil.profile "add_obj.typecheck_obj" in
155   fun uri obj -> profiler.CicUtil.profile (CicTypeChecker.typecheck_obj uri) obj
156
157 let index_obj =
158  let profiler = CicUtil.profile "add_obj.index_obj" in
159   fun ~dbd ~uri ->
160    profiler.CicUtil.profile (fun uri -> MetadataDb.index_obj ~dbd ~uri) uri
161
162 let save_object_to_disk =
163  let profiler = CicUtil.profile "add_obj.save_object_to_disk" in
164   fun status uri obj ->
165    profiler.CicUtil.profile (save_object_to_disk status uri) obj
166
167 let add_obj uri obj status =
168   let dbd = MatitaDb.instance () in
169   let suri = UriManager.string_of_uri uri in
170   if CicEnvironment.in_library uri then
171     command_error (sprintf "%s already defined" suri)
172   else begin
173     typecheck_obj uri obj; (* 1 *)
174     try 
175       index_obj ~dbd ~uri; (* 2 must be in the env *)
176       try
177         let new_stuff = save_object_to_disk status uri obj in (* 3 *)
178         try 
179           MatitaLog.message (sprintf "%s defined" suri);
180           let status = add_aliases_for_object status suri obj in
181           { status with objects = new_stuff @ status.objects;
182                         proof_status = No_proof }
183         with exc ->
184           List.iter MatitaMisc.safe_remove (List.map snd new_stuff); (* -3 *)
185           raise exc
186       with exc ->
187         ignore(MatitaDb.remove_uri uri); (* -2 *)
188         raise exc
189     with exc ->
190       CicEnvironment.remove_obj uri; (* -1 *)
191       raise exc
192   end
193
194 let add_obj =
195  let profiler = CicUtil.profile "add_obj" in
196   fun uri obj status -> profiler.CicUtil.profile (add_obj uri obj) status
197    
198 module OrderedUri =
199 struct
200   type t = UriManager.uri * string
201   let compare (u1, _) (u2, _) = UriManager.compare u1 u2
202 end
203
204 module OrderedId = 
205 struct
206   type t = CicNotation.notation_id
207   let compare = Pervasives.compare
208 end
209
210 module UriSet = Set.Make (OrderedUri)
211 module IdSet  = Set.Make (OrderedId)
212
213   (** @return l2 \ l1 *)
214 let uri_list_diff l2 l1 =
215   let module S = UriSet in
216   let s1 = List.fold_left (fun set uri -> S.add uri set) S.empty l1 in
217   let s2 = List.fold_left (fun set uri -> S.add uri set) S.empty l2 in
218   let diff = S.diff s2 s1 in
219   S.fold (fun uri uris -> uri :: uris) diff []
220
221   (** @return l2 \ l1 *)
222 let id_list_diff l2 l1 =
223   let module S = IdSet in
224   let s1 = List.fold_left (fun set uri -> S.add uri set) S.empty l1 in
225   let s2 = List.fold_left (fun set uri -> S.add uri set) S.empty l2 in
226   let diff = S.diff s2 s1 in
227   S.fold (fun uri uris -> uri :: uris) diff []
228
229 let remove_coercion uri = 
230   CoercDb.remove_coercion (fun (_,_,u) -> UriManager.eq u uri)
231   
232 let time_travel ~present ~past =
233   let objs_to_remove = uri_list_diff present.objects past.objects in
234   let notation_to_remove =
235     id_list_diff present.notation_ids past.notation_ids
236   in
237   let debug_list = ref [] in
238   List.iter
239     (fun (uri,p) -> 
240       MatitaMisc.safe_remove p;
241       remove_coercion uri;
242       (try 
243         CicEnvironment.remove_obj uri
244       with CicEnvironment.Object_not_found _ -> 
245         MatitaLog.debug
246           (sprintf "time_travel removes from cache %s that is not in" 
247             (UriManager.string_of_uri uri)));
248       let l = MatitaDb.remove_uri uri in
249       debug_list := UriManager.string_of_uri uri :: !debug_list @ l) 
250     objs_to_remove;
251   List.iter CicNotation.remove_notation notation_to_remove
252   (*
253   (* this is debug code
254   * idea: debug_list is the list of objects to be removed as computed from the
255   * db, while list_of_objs_to_remove is the same list but computer from the
256   * differences between statuses *)
257   let l1 = List.sort Pervasives.compare !debug_list in
258   let l2 = List.sort Pervasives.compare 
259     (List.map (fun (x,_) -> UriManager.string_of_uri x) list_of_objs_to_remove)
260   in
261   let rec uniq = function 
262     | [] -> []
263     | h::[] -> [h]
264     | h1::h2::tl when h1 = h2 -> uniq (h2 :: tl)
265     | h1::tl (* when h1 <> h2 *) -> h1 :: uniq tl
266   in
267   let l1 =  uniq l1 in
268   let l2 =  uniq l2 in
269   try
270     List.iter2 (fun x y -> if x <> y then raise Exit) l1 l2
271   with
272   | Invalid_argument _ | Exit -> 
273       MatitaLog.debug "It seems you garbaged something...";
274       MatitaLog.debug "l1:";
275       List.iter MatitaLog.debug l1;
276       MatitaLog.debug "l2:";
277       List.iter MatitaLog.debug l2
278       *)
279     
280 let remove ~verbose uri =
281   let derived_uris_of_uri uri =
282     UriManager.innertypesuri_of_uri uri ::
283     (match UriManager.bodyuri_of_uri uri with
284     | None -> []
285     | Some u -> [u])
286   in
287   let to_remove =
288     uri :: 
289     (if UriManager.uri_is_ind uri then MatitaDb.xpointers_of_ind uri else []) @
290     derived_uris_of_uri uri   
291   in   
292   List.iter 
293     (fun uri -> 
294       (try
295         if verbose then
296          MatitaLog.debug ("Removing: " ^ UriManager.string_of_uri uri);
297         MatitaMisc.safe_remove (Http_getter.resolve' uri)
298       with Http_getter_types.Key_not_found _ -> ());
299       remove_coercion uri; 
300       ignore (MatitaDb.remove_uri uri);
301       CicEnvironment.remove_obj uri)
302   to_remove