]> matita.cs.unibo.it Git - helm.git/blob - matita/matitaclean.ml
Huge commit for the release. Includes:
[helm.git] / matita / matitaclean.ml
1 (* Copyright (C) 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 (* $Id$ *)
27
28 open Printf
29
30 module UM = UriManager
31 module TA = GrafiteAst
32
33 let clean_suffixes = [ ".moo"; ".lexicon"; ".metadata"; ".xml.gz" ]
34
35 let main () =
36   let _ = MatitaInit.initialize_all () in
37   match Helm_registry.get_list Helm_registry.string "matita.args" with
38   | [ "all" ] ->
39       LibraryDb.clean_owner_environment ();
40       let prefixes = 
41         HExtlib.filter_map 
42           (fun s -> 
43             if String.sub s 0 5 = "file:" then 
44               Some (Str.replace_first (Str.regexp "^file://") "" s)
45             else
46               None)
47           (Http_getter_storage.list_writable_prefixes ())
48       in
49       List.iter 
50         (fun xmldir ->
51           let clean_pat =
52             String.concat " -o "
53               (List.map (fun suf -> "-name \\*" ^ suf) clean_suffixes) in
54           let clean_cmd =
55             sprintf "find %s \\( %s \\) -exec rm \\{\\} \\; 2> /dev/null"
56               xmldir clean_pat in
57           ignore (Sys.command clean_cmd);
58           ignore 
59            (Sys.command ("find " ^ xmldir ^ 
60             " -type d -exec rmdir -p {} \\; 2> /dev/null"))) 
61         prefixes;
62       exit 0
63   | [] -> MatitaInit.die_usage ()
64   | files ->
65      let uris_to_remove =
66       List.fold_left
67         (fun uris_to_remove suri ->
68           let uri = 
69             try
70               UM.buri_of_uri (UM.uri_of_string suri)
71             with UM.IllFormedUri _ ->
72               let u =
73                DependenciesParser.baseuri_of_script ~include_paths:[] suri in
74               if String.length u < 5 || String.sub u 0 5 <> "cic:/" then begin
75                 HLog.error (sprintf "File %s defines a bad baseuri: %s"
76                   suri u);
77                 exit 1
78               end else
79                 u
80           in
81            uri::uris_to_remove) [] files
82      in
83       LibraryClean.clean_baseuris uris_to_remove