]> matita.cs.unibo.it Git - helm.git/blob - matita/matitac.ml
8645d21755ca4460c9747715ad5c024e2a53de86
[helm.git] / 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 st =
56   GrafiteAstPp.pp_statement ~term_pp:CicNotationPp.pp_term
57     ~map_unicode_to_tex:(Helm_registry.get_bool
58       "matita.paste_unicode_as_tex")
59     ~lazy_term_pp:CicNotationPp.pp_term ~obj_pp:(CicNotationPp.pp_obj CicNotationPp.pp_term) st
60
61 let dump f =
62    Helm_registry.set_bool "matita.moo" false;
63    let floc = H.dummy_floc in
64    let nl_ast = G.Comment (floc, G.Note (floc, "")) in
65    let och = open_out f in
66    let atexit () = close_out och in
67    let nl () =  output_string och (pp_ast_statement nl_ast) in
68    let rt_base_dir = Filename.dirname Sys.argv.(0) in
69    let path = Filename.concat rt_base_dir "matita.ma.templ" in
70    let lines = 14 in
71    out_preamble och (path, lines);
72    let grafite_parser_cb fname = 
73       let ast = G.Executable (floc, G.Command (floc, G.Include (floc, fname))) in
74       output_string och (pp_ast_statement ast); nl (); nl ()
75    in
76    let matita_engine_cb = function
77       | G.Executable (_, G.Macro (_, G.Inline _)) 
78       | G.Executable (_, G.Command (_, G.Include _)) -> ()
79       | ast                                          ->
80          output_string och (pp_ast_statement ast); nl (); nl ()
81    in
82    let matitac_lib_cb = output_string och in
83    GrafiteParser.set_callback grafite_parser_cb;
84    MatitaEngine.set_callback matita_engine_cb;
85    MatitacLib.set_callback matitac_lib_cb;
86    at_exit atexit
87 ;;
88
89 (* compiler ala pascal/java using make *)
90 let main_compiler () =
91   MatitaInit.initialize_all ();
92   (* targets and deps *)
93   let targets = Helm_registry.get_list Helm_registry.string "matita.args" in
94   let deps = 
95     match targets with
96     | [] ->
97       (match Librarian.find_roots_in_dir (Sys.getcwd ()) with
98       | [x] -> 
99          Make.load_deps_file (Filename.dirname x ^ "/depends") 
100       | [] -> 
101          HLog.error "No targets and no root found"; exit 1
102       | roots -> 
103          HLog.error ("Too many roots found, move into one and retry: "^
104            String.concat ", " roots);exit 1);
105     | hd::_ -> 
106       let root, _, _ = Librarian.baseuri_of_script hd in
107       Make.load_deps_file (root ^ "/depends") 
108   in
109   (* must be called after init since args are set by cmdline parsing *)
110   let system_mode =  Helm_registry.get_bool "matita.system" in
111   if system_mode then HLog.message "Compiling in system space";
112   if not (Helm_registry.get_bool "matita.verbose") then MatitaMisc.shutup ();
113   (* here we go *)
114   let module F = 
115     struct 
116       type source_object = string
117       type target_object = string
118       let string_of_source_object s = s;;
119       let string_of_target_object s = s;;
120
121       let target_of mafile = 
122         let _,baseuri,_ = Librarian.baseuri_of_script mafile in
123         LibraryMisc.obj_file_of_baseuri 
124           ~must_exist:false ~baseuri ~writable:true 
125       ;;
126   
127       let mtime_of_source_object s =
128         try Some (Unix.stat s).Unix.st_mtime
129         with Unix.Unix_error (Unix.ENOENT, "stat", f) when f = s -> 
130           raise (Failure ("Unable to stat a source file: " ^ s)) 
131       ;;
132   
133       let mtime_of_target_object s =
134         try Some (Unix.stat s).Unix.st_mtime
135         with Unix.Unix_error (Unix.ENOENT, "stat", f) when f = s -> None
136       ;;
137   
138       let build = MatitacLib.compile;;
139     end 
140   in
141   let module Make = Make.Make(F) in
142   Make.make deps targets
143 ;;
144
145 let main () =
146  Helm_registry.set_bool "matita.moo" true;
147  match Filename.basename Sys.argv.(0) with
148  |"gragrep"    |"gragrep.opt"    |"gragrep.opt.static"    ->Gragrep.main()
149  |"matitadep"  |"matitadep.opt"  |"matitadep.opt.static"  ->Matitadep.main()
150  |"matitaclean"|"matitaclean.opt"|"matitaclean.opt.static"->Matitaclean.main()
151  |"matitamake" |"matitamake.opt" |"matitamake.opt.static" ->Matitamake.main()
152  |"matitaprover"|"matitaprover.opt"
153  |"matitaprover.opt.static" ->Matitaprover.main()
154  |"matitawiki"|"matitawiki.opt" ->MatitaWiki.main()
155  | _ ->
156     let dump_msg = "<filename> Dump with expanded macros to <filename>" in
157     MatitaInit.add_cmdline_spec ["-dump", Arg.String dump, dump_msg];
158     main_compiler ()
159
160 let _ = main ()
161