]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/matitaclean.ml
883aa3976196c8d55278a4e82f4d8cbcecb9aece
[helm.git] / matita / 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 module L = Librarian
29
30 let clean_suffixes = [ ".moo"; ".lexicon"; ".metadata"; ".xml.gz" ]
31
32 let ask_confirmation _ =
33   print_string "
34   You are trying to delete the whole standard library.
35   Since this may be a dangerous operation, you are asked to type
36     
37     yes, I'm sure
38     
39   verbatim and press enter.\n\n> ";
40   flush stdout;
41   let str = input_line stdin in
42   if str = "yes, I'm sure" then 
43     begin
44       print_string "deletion in progess...\n";
45       flush stdout
46     end
47   else 
48     begin
49       print_string "deletion cancelled.\n";
50       flush stdout;
51       exit 1
52     end
53
54 let clean_all () =
55   if Helm_registry.get_bool "matita.system" then
56     ask_confirmation ();
57   let prefixes = 
58     HExtlib.filter_map 
59       (fun s -> 
60         if String.sub s 0 5 = "file:" then 
61           Some (Str.replace_first (Str.regexp "^file://") "" s)
62         else
63           None)
64       (Http_getter_storage.list_writable_prefixes ())
65   in
66   List.iter 
67     (fun xmldir ->
68       let clean_pat =
69         String.concat " -o "
70           (List.map (fun suf -> "-name \\*" ^ suf) clean_suffixes) in
71       let clean_cmd =
72         Printf.sprintf "find %s \\( %s \\) -exec rm \\{\\} \\; 2> /dev/null"
73           xmldir clean_pat in
74       ignore (Sys.command clean_cmd);
75       ignore 
76        (Sys.command ("find " ^ xmldir ^ 
77         " -type d -exec rmdir -p {} \\; 2> /dev/null"))) 
78     prefixes;
79   ignore (Sys.command ("rm -rf " ^ Helm_registry.get "matita.basedir"))
80
81 let get_all_scripts () = 
82    match L.find_roots_in_dir (Sys.getcwd ()) with
83       | [root] ->
84          let bdir = Filename.dirname root in
85          HExtlib.find ~test:(fun x -> Filename.check_suffix x ".ma") bdir
86       | []     ->
87          prerr_endline "no roots found"; exit 1
88       | roots  -> 
89          let roots = List.map (HExtlib.chop_prefix (Sys.getcwd()^"/")) roots in
90          prerr_endline ("Too many roots found:\n\t" ^ String.concat "\n\t" roots);
91          prerr_endline ("\nEnter one of these directories and retry");
92          exit 1
93
94 let remove_all_items items =
95    let map item =
96       if L.is_uri item then item else
97       let _,buri,_,_ = L.baseuri_of_script ~include_paths:[] item in
98       buri
99    in
100 (*MATITA 1.0, CSC: verify that uris_to_remove are reasonable uris *)
101    let uris_to_remove = List.map map items in
102    LibraryClean.clean_baseuris ~verbose:true uris_to_remove
103
104 (* FG: Old code kept for reference
105
106        let uri = 
107          (*try*)
108            NUri.baseuri_of_uri (NUri.uri_of_string suri)
109          (*with UM.IllFormedUri _ ->
110            let _,u,_,_ = L.baseuri_of_script ~include_paths:[] suri in
111            if L.is_uri u then u else begin
112              HLog.error (sprintf "File %s defines a bad baseuri: %s" suri u);
113              exit 1
114            end *)
115 *)
116
117 let main () =
118   let _ = MatitaInit.initialize_all () in
119   if not (Helm_registry.get_bool "matita.verbose") then MatitaMisc.shutup ();
120   match Helm_registry.get_list Helm_registry.string "matita.args" with
121     | [ "all" ] -> clean_all (); exit 0
122     | []        -> 
123         let items = get_all_scripts () in
124         remove_all_items items
125     | items     ->     
126         remove_all_items items