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