]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaclean.ml
all initialization code is now in the new matitaInit.ml module.
[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 -exec rm {} \\; 2> /dev/null"));
53       ignore (Sys.command ("find " ^ xmldir ^ " -type d -exec rmdir -p {} \\; 2> /dev/null"));
54       exit 0
55     end
56   let uris_to_remove =ref [] in
57   let files_to_remove =ref [] in
58   (try 
59     for i = 1 to Array.length Sys.argv - 1 do
60       let suri = Sys.argv.(i) in
61       let uri = 
62         try
63           UM.buri_of_uri (UM.uri_of_string suri)
64         with
65           UM.IllFormedUri _ ->
66            files_to_remove := suri :: !files_to_remove;
67            let u = MatitaMisc.baseuri_of_file suri in
68            if String.length u < 5 || String.sub u 0 5 <> "cic:/" then
69              begin
70                MatitaLog.error ("File " ^ suri ^ " defines a bad baseuri: "^u);
71                exit 1
72              end
73            else
74              u
75       in
76       uris_to_remove := uri :: !uris_to_remove
77     done
78   with
79     Invalid_argument _ -> usage ());
80   main !uris_to_remove;
81   let moos = List.map MatitaMisc.obj_file_of_script !files_to_remove in
82   List.iter MatitaMisc.safe_remove moos
83