]> matita.cs.unibo.it Git - helm.git/blob - helm/software/matita/matitac.ml
some improvements
[helm.git] / helm / software / matita / matitac.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 (* $Id$ *)
27
28 module G = GrafiteAst
29 module L = LexiconAst
30 module H = HExtlib
31
32 (* from transcript *)
33
34 let out_comment och s =
35    let s = if s <> "" && s.[0] = '*' then "#" ^ s else s in 
36    Printf.fprintf och "%s%s%s\n\n" "(*" s "*)"
37
38 let out_line_comment och s =
39    let l = 70 - String.length s in
40    let s = Printf.sprintf " %s %s" s (String.make l '*') in
41    out_comment och s
42
43 let out_preamble och (path, lines) =
44    let ich = open_in path in
45    let rec print i =
46       if i > 0 then 
47          let s = input_line ich in
48          begin Printf.fprintf och "%s\n" s; print (pred i) end
49    in 
50    print lines;
51    out_line_comment och "This file was automatically generated: do not edit"
52
53 (* from matitacLib *)
54
55 let pp_ast_statement =
56   GrafiteAstPp.pp_statement ~term_pp:CicNotationPp.pp_term
57     ~lazy_term_pp:CicNotationPp.pp_term ~obj_pp:(CicNotationPp.pp_obj CicNotationPp.pp_term)
58
59 (**)
60
61 let dump f =
62    let floc = H.dummy_floc in
63    let nl_ast = G.Comment (floc, G.Note (floc, "")) in
64    let och = open_out f in
65    let atexit () = close_out och in
66    let nl () =  output_string och (pp_ast_statement nl_ast) in
67    let rt_base_dir = Filename.dirname Sys.argv.(0) in
68    let path = Filename.concat rt_base_dir "matita.ma.templ" in
69    let lines = 14 in
70    out_preamble och (path, lines);
71    let grafite_parser_cb fname = 
72       let ast = G.Executable (floc, G.Command (floc, G.Include (floc, fname))) in
73       output_string och (pp_ast_statement ast); nl (); nl ()
74    in
75    let matita_engine_cb = function
76       | G.Executable (_, G.Macro (_, G.Inline _)) 
77       | G.Executable (_, G.Command (_, G.Include _)) -> ()
78       | ast                                          ->
79          output_string och (pp_ast_statement ast); nl (); nl ()
80    in
81    let matitac_lib_cb = output_string och in
82    GrafiteParser.set_callback grafite_parser_cb;
83    MatitaEngine.set_callback matita_engine_cb;
84    MatitacLib.set_callback matitac_lib_cb;
85    at_exit atexit
86    
87 let main () =
88  match Filename.basename Sys.argv.(0) with
89  |"gragrep"    |"gragrep.opt"    |"gragrep.opt.static"    ->Gragrep.main()
90  |"matitadep"  |"matitadep.opt"  |"matitadep.opt.static"  ->Matitadep.main()
91  |"matitaclean"|"matitaclean.opt"|"matitaclean.opt.static"->Matitaclean.main()
92  |"matitamake" |"matitamake.opt" |"matitamake.opt.static" ->Matitamake.main()
93  |"matitaprover"|"matitaprover.opt"
94  |"matitaprover.opt.static" ->Matitaprover.main()
95  |"matitawiki"|"matitawiki.opt" ->MatitaWiki.main()
96  | _ ->
97 (*
98       let _ = Paramodulation.Saturation.init () in  *)
99 (* ALB to link paramodulation *)
100       let dump_msg = "<filename> Dump source with expanded macros to <filename>" in
101       MatitaInit.add_cmdline_spec ["-dump", Arg.String dump, dump_msg];
102       let _ = MatitacLib.main `COMPILER in
103       ()
104
105 let _ = main ()
106