2 ||M|| This file is part of HELM, an Hypertextual, Electronic
3 ||A|| Library of Mathematics, developed at the Computer Science
4 ||T|| Department, University of Bologna, Italy.
6 ||T|| HELM is free software; you can redistribute it and/or
7 ||A|| modify it under the terms of the GNU General Public License
8 \ / version 2 or (at your option) any later version.
9 \ / This software is distributed as is, NO WARRANTY.
10 V_______________________________________________________________ *)
14 module R = Helm_registry
16 module B = NCicLibrary
17 module C = NCicTypeChecker
22 module D = MatitaRemove
32 if !O.no_init then begin
35 H.set_log_callback no_log;
39 let scan_uri devel str =
40 M.from_string (R.get "matita.basedir") devel str;
44 let devel, uri = E.get_uri devel in
47 let set_g () = O.exclude := `Generated :: !O.exclude
49 let set_i () = O.exclude := `Implied :: !O.exclude
51 let set_p () = O.exclude := `Provided :: !O.exclude
53 let out_f () = O.iter_xflavours E.out_int
55 let out_oc () = E.out_int !O.net
57 let out_on () = E.out_length !O.objs
59 let out_os () = E.out_uris !O.objs
61 let out_sc () = E.out_int !O.chars
63 let out_sn () = E.out_length !O.srcs
65 let out_ss () = E.out_uris !O.srcs
68 if L.is_uri s then scan_uri "" s
69 else if E.is_registry s then init s
73 D.objects (); O.clear ()
76 let help = "Usage: probe [ -LX | <configuration file> | -gip | <HELM (base)uri> | -f | -oc | -on | -os | -sc | -sn | -ss ]*" in
77 let help_L = " Activate lexer debugging" in
78 let help_X = " Clear configuration, options and counters" in
79 let help_f = " Print the number of objects grouped by flavour" in
80 let help_g = " Exclude generated objects" in
81 let help_i = " Exclude implied objects" in
82 let help_oc = " Print the total intrinsic complexity (objects)" in
83 let help_on = " Print the number of objects" in
84 let help_os = " Print the list of objects" in
85 let help_p = " Exclude provided objects" in
86 let help_sc = " Print the total extrinsic complexity (sources)" in
87 let help_sn = " Print the number of sources" in
88 let help_ss = " Print the list of sources" in
90 "-L" , A.Set O.debug_lexer, help_L;
91 "-X" , A.Unit clear , help_X;
92 "-f" , A.Unit out_f , help_f;
93 "-g" , A.Unit set_g , help_g;
94 "-i" , A.Unit set_i , help_i;
95 "-oc", A.Unit out_oc, help_oc;
96 "-on", A.Unit out_on, help_on;
97 "-os", A.Unit out_os, help_os;
98 "-p" , A.Unit set_p , help_p;
99 "-sc", A.Unit out_sc, help_sc;
100 "-sn", A.Unit out_sn, help_sn;
101 "-ss", A.Unit out_ss, help_ss;