]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaclean.ml
./matitaclean all removes all
[helm.git] / helm / 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 module UM = UriManager;;
27 module TA = GrafiteAst;;
28
29 let _ = MatitaInit.initialize_all ()
30
31 let main uri_to_remove = MatitacleanLib.clean_baseuris uri_to_remove
32
33 let usage () =
34   prerr_endline "
35 usage:
36 \tmatitaclean all
37 \t\tcleans the whole environment
38 \tmatitaclean files...
39 \t\tcleans the output of the compilation of files...
40 ";
41   exit 1
42     
43 let _ =
44   if Array.length Sys.argv < 2 then usage ();
45   if Sys.argv.(1) = "all" then 
46     begin
47       MatitaDb.clean_owner_environment ();
48       let xmldir = Helm_registry.get "matita.basedir" ^ "/xml" in
49       ignore
50        (Sys.command
51          ("find " ^ xmldir ^
52           " \\( -name \\*.xml.gz -o -name \\*.moo \\) " ^ 
53           "-exec rm \\{\\} \\; 2> /dev/null"));
54       ignore 
55        (Sys.command ("find " ^ xmldir ^ 
56         " -type d -exec rmdir -p {} \\; 2> /dev/null"));
57       exit 0
58     end
59   let uris_to_remove =ref [] in
60   let files_to_remove =ref [] in
61   (try 
62     for i = 1 to Array.length Sys.argv - 1 do
63       let suri = Sys.argv.(i) in
64       let uri = 
65         try
66           UM.buri_of_uri (UM.uri_of_string suri)
67         with
68           UM.IllFormedUri _ ->
69            files_to_remove := suri :: !files_to_remove;
70            let u = MatitaMisc.baseuri_of_file suri in
71            if String.length u < 5 || String.sub u 0 5 <> "cic:/" then
72              begin
73                MatitaLog.error ("File " ^ suri ^ " defines a bad baseuri: "^u);
74                exit 1
75              end
76            else
77              u
78       in
79       uris_to_remove := uri :: !uris_to_remove
80     done
81   with
82     Invalid_argument _ -> usage ());
83   main !uris_to_remove;
84   let moos = List.map MatitaMisc.obj_file_of_script !files_to_remove in
85   List.iter MatitaMisc.safe_remove moos
86