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