1 (* Copyright (C) 2005, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
26 module UM = UriManager;;
27 module TA = GrafiteAst;;
29 let _ = MatitaInit.initialize_all ()
31 let main uri_to_remove = MatitacleanLib.clean_baseuris uri_to_remove
37 \t\tcleans the whole environment
38 \tmatitaclean files...
39 \t\tcleans the output of the compilation of files...
44 if Array.length Sys.argv < 2 then usage ();
45 if Sys.argv.(1) = "all" then
47 MatitaDb.clean_owner_environment ();
48 let xmldir = Helm_registry.get "matita.basedir" ^ "/xml" in
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"));
56 let uris_to_remove =ref [] in
57 let files_to_remove =ref [] in
59 for i = 1 to Array.length Sys.argv - 1 do
60 let suri = Sys.argv.(i) in
63 UM.buri_of_uri (UM.uri_of_string suri)
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
70 MatitaLog.error ("File " ^ suri ^ " defines a bad baseuri: "^u);
76 uris_to_remove := uri :: !uris_to_remove
79 Invalid_argument _ -> usage ());
81 let moos = List.map MatitaMisc.obj_file_of_script !files_to_remove in
82 List.iter MatitaMisc.safe_remove moos