]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaclean.ml
completed support for "-nodb", now also matitaclean and its library work with that...
[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 open Printf
27
28 module UM = UriManager
29 module TA = GrafiteAst
30
31 let _ = MatitaInit.initialize_all ()
32
33 let main = MatitacleanLib.clean_baseuris
34
35 let _ =
36   let uris_to_remove = ref [] in
37   let files_to_remove = ref [] in
38   (match Helm_registry.get_list Helm_registry.string "matita.args" with
39   | [ "all" ] ->
40       MatitaDb.clean_owner_environment ();
41       let xmldir = Helm_registry.get "matita.basedir" ^ "/xml" in
42       ignore
43        (Sys.command
44          ("find " ^ xmldir ^
45           " \\( -name \\*.xml.gz -o -name \\*.moo \\) " ^ 
46           "-exec rm \\{\\} \\; 2> /dev/null"));
47       ignore 
48        (Sys.command ("find " ^ xmldir ^ 
49         " -type d -exec rmdir -p {} \\; 2> /dev/null"));
50       exit 0
51   | [] -> MatitaInit.die_usage ()
52   | files ->
53       List.iter
54         (fun suri ->
55           let uri = 
56             try
57               UM.buri_of_uri (UM.uri_of_string suri)
58             with UM.IllFormedUri _ ->
59               files_to_remove := suri :: !files_to_remove;
60               let u = MatitaMisc.baseuri_of_file suri in
61               if String.length u < 5 || String.sub u 0 5 <> "cic:/" then begin
62                 MatitaLog.error (sprintf "File %s defines a bad baseuri: %s"
63                   suri u);
64                 exit 1
65               end else
66                 u
67           in
68           uris_to_remove := uri :: !uris_to_remove)
69         files);
70   main !uris_to_remove;
71   let moos = List.map MatitaMisc.obj_file_of_script !files_to_remove in
72   List.iter MatitaMisc.safe_remove moos
73