]> matita.cs.unibo.it Git - helm.git/blob - matita/matitaclean.ml
5425a22170897fa9543c9aa727336c7ac5da155e
[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 ask_confirmation _ =
36   print_string "
37   You are trying to delete the whole standard library.
38   Since this may be a dangerous operation, you are asked to type
39     
40     yes, I'm sure
41     
42   verbatim and press enter.\n\n> ";
43   flush stdout;
44   let str = input_line stdin in
45   if str = "yes, I'm sure" then 
46     begin
47       print_string "deletion in progess...\n";
48       flush stdout
49     end
50   else 
51     begin
52       print_string "deletion cancelled.\n";
53       flush stdout;
54       exit 1
55     end
56 ;;
57
58 let main () =
59   let _ = MatitaInit.initialize_all () in
60   if Helm_registry.get_bool "matita.bench" then MatitaMisc.shutup ();
61   match Helm_registry.get_list Helm_registry.string "matita.args" with
62   | [ "all" ] ->
63       if Helm_registry.get_bool "matita.system" then
64         ask_confirmation ();
65       LibraryDb.clean_owner_environment ();
66       let prefixes = 
67         HExtlib.filter_map 
68           (fun s -> 
69             if String.sub s 0 5 = "file:" then 
70               Some (Str.replace_first (Str.regexp "^file://") "" s)
71             else
72               None)
73           (Http_getter_storage.list_writable_prefixes ())
74       in
75       List.iter 
76         (fun xmldir ->
77           let clean_pat =
78             String.concat " -o "
79               (List.map (fun suf -> "-name \\*" ^ suf) clean_suffixes) in
80           let clean_cmd =
81             sprintf "find %s \\( %s \\) -exec rm \\{\\} \\; 2> /dev/null"
82               xmldir clean_pat in
83           ignore (Sys.command clean_cmd);
84           ignore 
85            (Sys.command ("find " ^ xmldir ^ 
86             " -type d -exec rmdir -p {} \\; 2> /dev/null"))) 
87         prefixes;
88       exit 0
89   | [] -> MatitaInit.die_usage ()
90   | files ->
91      let uris_to_remove =
92       List.fold_left
93         (fun uris_to_remove suri ->
94           let uri = 
95             try
96               UM.buri_of_uri (UM.uri_of_string suri)
97             with UM.IllFormedUri _ ->
98               let _,u,_ = Librarian.baseuri_of_script ~include_paths:[] suri in
99               if String.length u < 5 || String.sub u 0 5 <> "cic:/" then begin
100                 HLog.error (sprintf "File %s defines a bad baseuri: %s"
101                   suri u);
102                 exit 1
103               end else
104                 u
105           in
106            uri::uris_to_remove) [] files
107      in
108       LibraryClean.clean_baseuris uris_to_remove