]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaclean.ml
use safe_remove to remove files instead of Unix.unlink
[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       exit 0
54     end
55   let uris_to_remove =ref [] in
56   let files_to_remove =ref [] in
57   (try 
58     for i = 1 to Array.length Sys.argv - 1 do
59       let suri = Sys.argv.(i) in
60       let uri = 
61         try
62           UM.buri_of_uri (UM.uri_of_string suri)
63         with
64           UM.IllFormedUri _ ->
65            files_to_remove := suri :: !files_to_remove;
66            let u = MatitacleanLib.baseuri_of_file suri in
67            if String.length u < 5 || String.sub u 0 5 <> "cic:/" then
68              begin
69                MatitaLog.error ("File " ^ suri ^ " defines a bad baseuri: "^u);
70                exit 1
71              end
72            else
73              u
74       in
75       uris_to_remove := uri :: !uris_to_remove
76     done
77   with
78     Invalid_argument _ -> usage ());
79   main !uris_to_remove;
80   let moos = List.map MatitaMisc.obj_file_of_script !files_to_remove in
81   List.iter MatitaMisc.safe_remove moos
82