1 (* Copyright (C) 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/
31 let debug_prerr = if debug then prerr_endline else ignore
33 module HGT = Http_getter_types;;
34 module HG = Http_getter;;
35 module UM = UriManager;;
37 let cache_of_processed_baseuri = Hashtbl.create 1024
39 let one_step_depend suri =
42 UM.buri_of_uri (UM.uri_of_string suri)
43 with UM.IllFormedUri _ -> suri
45 if Hashtbl.mem cache_of_processed_baseuri buri then
49 Hashtbl.add cache_of_processed_baseuri buri true;
51 let buri = buri ^ "/" in
52 let buri = HMysql.escape buri in
53 let obj_tbl = MetadataTypes.obj_tbl () in
55 ("SELECT source, h_occurrence FROM %s WHERE " ^^
56 "h_occurrence REGEXP '^%s[^/]*$'")
60 let rc = HMysql.exec (LibraryDb.instance ()) query in
64 match row.(0), row.(1) with
65 | Some uri, Some occ when Filename.dirname occ = buri ->
68 let l = List.sort Pervasives.compare !l in
71 exn -> raise exn (* no errors should be accepted *)
74 let safe_buri_of_suri suri =
76 UM.buri_of_uri (UM.uri_of_string suri)
78 UM.IllFormedUri _ -> suri
80 let close_uri_list uri_to_remove =
81 (* to remove an uri you have to remove the whole script *)
84 (List.fast_sort Pervasives.compare
85 (List.map safe_buri_of_suri uri_to_remove))
87 (* cleand the already visided baseuris *)
91 if Hashtbl.mem cache_of_processed_baseuri buri then false
95 (* now calculate the list of objects that belong to these baseuris *)
100 let inhabitants = HG.ls (buri ^ "/") in
101 let inhabitants = List.filter
102 (function HGT.Ls_object _ -> true | _ -> false)
105 let inhabitants = List.map
107 | HGT.Ls_object e -> buri ^ "/" ^ e.HGT.uri
113 with HGT.Invalid_URI u ->
114 HLog.error ("We were listing an invalid buri: " ^ u);
117 (* now we want the list of all uri that depend on them *)
120 (fun acc u -> one_step_depend u @ acc) [] uri_to_remove
123 HExtlib.list_uniq (List.fast_sort Pervasives.compare depend)
125 uri_to_remove, depend
127 let rec close_db uris next =
130 | l -> let uris, next = close_uri_list l in close_db uris next @ uris
132 let cleaned_no = ref 0;;
134 (** TODO repellent code ... *)
135 let moo_root_dir = lazy (
137 List.assoc "cic:/matita/"
141 Str.split (Str.regexp "[ \t\r\n]+") (HExtlib.trim_blanks pair)
145 (Helm_registry.get_list Helm_registry.string "getter.prefix"))
147 String.sub url 7 (String.length url - 7) (* remove heading "file:///" *)
150 let close_nodb buris =
151 let rev_deps = Hashtbl.create 97 in
153 HExtlib.find ~test:(fun name -> Filename.check_suffix name ".metadata")
154 (Lazy.force moo_root_dir)
158 let metadata = LibraryNoDb.load_metadata ~fname:path in
159 let baseuri_of_current_metadata =
160 prerr_endline "ERROR, add to the getter reverse lookup";
161 let basedir = "/fake" in
162 let dirname = Filename.dirname path in
163 let basedirlen = String.length basedir in
164 assert (String.sub dirname 0 basedirlen = basedir);
166 String.sub dirname basedirlen (String.length dirname - basedirlen) ^
167 Filename.basename path
171 (function LibraryNoDb.Dependency buri -> Some buri)
175 (fun buri -> Hashtbl.add rev_deps buri baseuri_of_current_metadata) deps)
177 let buris_to_remove =
179 (List.fast_sort Pervasives.compare
180 (List.flatten (List.map (Hashtbl.find_all rev_deps) buris)))
182 let objects_to_remove =
183 let objs_of_buri buri =
186 | Http_getter_types.Ls_object o ->
187 Some (buri ^ "/" ^ o.Http_getter_types.uri)
189 (Http_getter.ls buri)
191 List.flatten (List.map objs_of_buri (buris @ buris_to_remove))
195 let clean_baseuris ?(verbose=true) buris =
196 Hashtbl.clear cache_of_processed_baseuri;
197 let buris = List.map Http_getter_misc.strip_trailing_slash buris in
198 debug_prerr "clean_baseuris called on:";
200 List.iter debug_prerr buris;
202 if Helm_registry.get_bool "db.nodb" then
207 let l = HExtlib.list_uniq (List.fast_sort Pervasives.compare l) in
208 let l = List.map UriManager.uri_of_string l in
209 debug_prerr "clean_baseuri will remove:";
211 List.iter (fun u -> debug_prerr (UriManager.string_of_uri u)) l;
216 LibraryMisc.obj_file_of_baseuri ~must_exist:false ~writable:true ~baseuri
218 HExtlib.safe_remove obj_file ;
220 (LibraryMisc.metadata_file_of_baseuri
221 ~must_exist:false ~writable:true ~baseuri) ;
223 (LibraryMisc.lexicon_file_of_baseuri
224 ~must_exist:false ~writable:true ~baseuri) ;
225 HExtlib.rmdir_descend (Filename.chop_extension obj_file)
226 with Http_getter_types.Key_not_found _ -> ())
227 (HExtlib.list_uniq (List.fast_sort Pervasives.compare
228 (List.map (UriManager.buri_of_uri) l @ buris)));
230 (let last_baseuri = ref "" in
232 let buri = UriManager.buri_of_uri uri in
233 if buri <> !last_baseuri then
235 if Helm_registry.get_bool "matita.bench" then
236 (print_endline ("matitaclean " ^ buri ^ "/");flush stdout)
238 HLog.message ("Removing: " ^ buri ^ "/*");
241 LibrarySync.remove_obj uri
243 cleaned_no := !cleaned_no + List.length l;
244 if !cleaned_no > 30 then
249 ignore (HMysql.exec (LibraryDb.instance ()) ("OPTIMIZE TABLE " ^ table)))
250 [MetadataTypes.name_tbl (); MetadataTypes.rel_tbl ();
251 MetadataTypes.sort_tbl (); MetadataTypes.obj_tbl();
252 MetadataTypes.count_tbl()]