]> matita.cs.unibo.it Git - helm.git/blob - matita/matitamakeLib.ml
signal hadler restored after runnig external 'make'
[helm.git] / matita / matitamakeLib.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 open Printf
29
30 let logger = fun mark -> 
31   match mark with 
32   | `Error -> HLog.error
33   | `Warning -> HLog.warn
34   | `Debug -> HLog.debug
35   | `Message -> HLog.message
36
37 type development = 
38   { root: string ; name: string }
39
40 let developments = ref []
41   
42 let pool () = Helm_registry.get "matita.basedir" ^ "/matitamake/" ;;
43 let rootfile = "/root" ;;
44
45 let ls_dir dir = 
46   try
47     let d = Unix.opendir dir in
48     let content = ref [] in
49     try
50       while true do
51         let name = Unix.readdir d in
52         if name <> "." && name <> ".." then
53           content := name :: !content
54       done;
55       Some []
56     with End_of_file -> Unix.closedir d; Some !content
57   with Unix.Unix_error _ -> None
58
59 let initialize () = 
60   (* create a base env if none *)
61   HExtlib.mkdir (pool ());
62   (* load developments *)
63   match ls_dir (pool ()) with
64   | None -> logger `Error ("Unable to list directory " ^ pool ()) 
65   | Some l -> 
66       List.iter 
67         (fun name -> 
68           let root = 
69             try 
70               Some (HExtlib.input_file (pool () ^ name ^ rootfile))
71             with Unix.Unix_error _ -> 
72               logger `Warning ("Malformed development " ^ name);
73               None
74           in 
75           match root with 
76           | None -> ()
77           | Some root -> 
78               developments := {root = root ; name = name} :: !developments;
79               let inc = Helm_registry.get_list 
80                 Helm_registry.string "matita.includes" in
81               Helm_registry.set_list Helm_registry.of_string 
82                 ~key:"matita.includes" ~value:(inc @ [root])
83           ) 
84       l
85
86 (* finds the makefile path for development devel *)
87 let makefile_for_development devel =
88   let develdir = pool () ^ devel.name in
89   develdir ^ "/makefile"
90
91 let dot_for_development devel = 
92   let dot_fname = pool () ^ devel.name ^ "/depend.dot" in
93   if Sys.file_exists dot_fname then Some dot_fname else None
94
95 (* given a dir finds a development that is radicated in it or below *)
96 let development_for_dir dir =
97   let is_prefix_of d1 d2 =
98     let len1 = String.length d1 in
99     let len2 = String.length d2 in
100     if len2 < len1 then 
101       false
102     else
103       let pref = String.sub d2 0 len1 in
104       pref = d1 && (len1 = len2 || d2.[len1] = '/')
105   in
106   try
107     Some (List.find (fun d -> is_prefix_of d.root dir) !developments)
108   with Not_found | Failure _ -> None
109
110 let development_for_name name =
111   try 
112     Some (List.find (fun d -> d.name = name) !developments)
113   with Not_found -> None
114
115 (* dumps the deveopment to disk *)
116 let dump_development devel =
117   let devel_dir = pool () ^ devel.name in 
118   HExtlib.mkdir devel_dir;
119   HExtlib.output_file ~filename:(devel_dir ^ rootfile) ~text:devel.root
120
121 let list_known_developments () = 
122   List.map (fun r -> r.name,r.root) !developments
123
124 let am_i_opt = lazy (
125   if Pcre.pmatch ~pat:"\\.opt$" Sys.argv.(0) then ".opt" else "")
126   
127 let rebuild_makefile development = 
128   let makefilepath = makefile_for_development development in
129   let template = 
130     HExtlib.input_file BuildTimeConf.matitamake_makefile_template 
131   in
132   let ext = Lazy.force am_i_opt in
133   let cc = BuildTimeConf.runtime_base_dir ^ "/matitac" ^ ext in
134   let rm = BuildTimeConf.runtime_base_dir ^ "/matitaclean" ^ ext in
135   let mm = BuildTimeConf.runtime_base_dir ^ "/matitadep" ^ ext in
136   let df = pool () ^ development.name ^ "/depend" in
137   let template = Pcre.replace ~pat:"@ROOT@" ~templ:development.root template in
138   let template = Pcre.replace ~pat:"@CC@" ~templ:cc template in
139   let template = Pcre.replace ~pat:"@DEP@" ~templ:mm template in
140   let template = Pcre.replace ~pat:"@DEPFILE@" ~templ:df template in
141   let template = Pcre.replace ~pat:"@CLEAN@" ~templ:rm template in
142   HExtlib.output_file ~filename:makefilepath ~text:template
143   
144 let rebuild_makefile_devel development = 
145   let path = development.root ^ "/makefile" in
146   if not (Sys.file_exists path) then
147     begin
148       let template = 
149         HExtlib.input_file BuildTimeConf.matitamake_makefile_template_devel
150       in
151       let template = 
152         Pcre.replace ~pat:"@MATITA_RT_BASE_DIR@"
153           ~templ:BuildTimeConf.runtime_base_dir template
154       in
155       HExtlib.output_file ~filename:path ~text:template
156     end
157   
158 (* creates a new development if possible *)
159 let initialize_development name dir =
160   let name = Pcre.replace ~pat:" " ~templ:"_" name in 
161   let dev = {name = name ; root = dir} in
162   dump_development dev;
163   rebuild_makefile dev;
164   rebuild_makefile_devel dev;
165   developments := dev :: !developments;
166   Some dev
167
168 let make chdir args = 
169   let old = Unix.getcwd () in
170   try
171     Unix.chdir chdir;
172     let cmd = String.concat " " ("make" :: List.map Filename.quote args) in
173     let rc = Unix.system cmd in
174     Unix.chdir old;
175     match rc with
176     | Unix.WEXITED 0 -> true
177     | Unix.WEXITED i -> logger `Error ("make returned " ^ string_of_int i);false
178     | _ -> logger `Error "make STOPPED or SIGNALED!";false
179   with Unix.Unix_error (_,cmd,err) -> 
180     logger `Warning ("Unix Error: " ^ cmd ^ ": " ^ err);
181     false
182       
183 let call_make ?matita_flags development target make =
184   let matita_flags = 
185     let already_defined = 
186       match matita_flags with 
187       | None -> (try Sys.getenv "MATITA_FLAGS" with Not_found -> "")
188       | Some s -> s 
189     in
190     already_defined ^ 
191       if Helm_registry.get_bool "matita.bench" then "-bench" else ""
192   in
193   let csc = try ["SRC=" ^ Sys.getenv "SRC"] with Not_found -> [] in
194   rebuild_makefile development;
195   let makefile = makefile_for_development development in
196   let flags = [] in 
197   let flags =
198     try
199       flags @ [ sprintf "MATITA_FLAGS=\"%s\"" matita_flags ]
200     with Not_found -> flags in
201   let flags = flags @ csc in
202   let args = 
203     ["--no-print-directory"; "-s"; "-k"; "-f"; makefile; target] @ flags 
204   in
205  (*    prerr_endline (String.concat " " args);   *)
206   make development.root args
207       
208 let build_development ?matita_flags ?(target="all") development =
209   call_make ?matita_flags development target make
210
211 (* not really good vt100 *)
212 let vt100 s =
213   let rex = Pcre.regexp "\e\\[[0-9;]+m" in
214   let rex_i = Pcre.regexp "^Info" in
215   let rex_w = Pcre.regexp "^Warning" in
216   let rex_e = Pcre.regexp "^Error" in
217   let rex_d = Pcre.regexp "^Debug" in
218   let rex_noendline = Pcre.regexp "\\n" in
219   let s = Pcre.replace ~rex:rex_noendline s in
220   let tokens = Pcre.split ~rex s in
221   let logger = ref HLog.message in
222   let rec aux = 
223     function
224     | [] -> ()
225     | s::tl ->
226         (if Pcre.pmatch ~rex:rex_i s then
227           logger := HLog.message
228         else if Pcre.pmatch ~rex:rex_w s then
229           logger := HLog.warn
230         else if Pcre.pmatch ~rex:rex_e s then
231           logger := HLog.error
232         else if Pcre.pmatch ~rex:rex_d s then
233           logger := HLog.debug
234         else 
235           !logger s);
236         aux tl
237   in
238   aux tokens
239   
240
241 let mk_maker refresh_cb =
242   (fun chdir args ->
243     let out_r,out_w = Unix.pipe () in
244     let err_r,err_w = Unix.pipe () in
245     let pid = ref ~-1 in
246     let oldhandler = Sys.signal Sys.sigchld (Sys.Signal_ignore) in
247     try
248 (*       prerr_endline (String.concat " " args); *)
249       let argv = Array.of_list ("make"::args) in
250       pid := Unix.create_process "make" argv Unix.stdin out_w err_w;
251       Unix.close out_w;
252       Unix.close err_w;
253       let buf = String.create 1024 in
254       let rec aux = function 
255         | f::tl ->
256             let len = Unix.read f buf 0 1024 in
257             if len = 0 then 
258               raise 
259                 (Unix.Unix_error 
260                   (Unix.EPIPE,"read","len = 0 (matita internal)"));
261             vt100 (String.sub buf 0 len);
262             aux tl
263         | _ -> ()
264       in
265       while true do
266         let r,_,_ = Unix.select [out_r; err_r] [] [] (-. 1.) in
267         aux r;
268         refresh_cb ()
269       done;
270       ignore(Sys.signal Sys.sigchld oldhandler);
271       true
272     with 
273     | Unix.Unix_error (_,"read",_)
274     | Unix.Unix_error (_,"select",_) -> 
275         ignore(Sys.signal Sys.sigchld oldhandler);
276         true)
277
278 let build_development_in_bg ?matita_flags ?(target="all") refresh_cb development =
279   call_make ?matita_flags development target (mk_maker refresh_cb)
280
281 let clean_development ?matita_flags development =
282   call_make ?matita_flags development "clean" make
283
284 let clean_development_in_bg ?matita_flags  refresh_cb development =
285   call_make development ?matita_flags  "clean" (mk_maker refresh_cb)
286
287 let destroy_development_aux development clean_development =
288   let delete_development development = 
289     let unlink = HExtlib.safe_remove in
290     let rmdir dir =
291       try
292         Unix.rmdir dir 
293       with Unix.Unix_error _ -> 
294         logger `Warning ("Unable to remove dir " ^ dir);
295         match ls_dir dir with
296         | None -> logger `Error ("Unable to list directory " ^ dir) 
297         | Some [] -> ()
298         | Some l -> logger `Error ("The directory is not empty")
299     in
300     unlink (makefile_for_development development);
301     unlink (pool () ^ development.name ^ rootfile);
302     unlink (pool () ^ development.name ^ "/depend");
303     unlink (pool () ^ development.name ^ "/depend.errors");
304     unlink (pool () ^ development.name ^ "/depend.dot");
305     rmdir (pool () ^ development.name);
306     developments := 
307       List.filter (fun d -> d.name <> development.name) !developments
308   in
309   if not(clean_development development) then
310     begin
311       logger `Warning "Unable to clean the development problerly.";
312       logger `Warning "This may cause garbage."
313     end;
314   delete_development development 
315  
316 let destroy_development ?matita_flags development = 
317   destroy_development_aux development (clean_development ?matita_flags)
318
319 let destroy_development_in_bg ?matita_flags refresh development = 
320   destroy_development_aux development 
321     (clean_development_in_bg refresh ?matita_flags ) 
322   
323 let root_for_development development = development.root
324 let name_for_development development = development.name
325
326 let publish_development_bstract build clean devel = 
327   let matita_flags, matita_flags_system = 
328     let orig_matita_flags = 
329       try Sys.getenv "MATITA_FLAGS" with Not_found -> "" 
330     in
331     "\"" ^ orig_matita_flags ^ "\"", "\"" ^ orig_matita_flags ^ " -system\"" 
332   in
333   HLog.message "cleaning the development before publishing";
334   if clean ~matita_flags devel then
335     begin
336       HLog.message "rebuilding the development in 'system' space";
337       (* here we should use pristine metadata if we use sqlite *)
338       if build ~matita_flags:matita_flags_system devel then
339         begin
340           HLog.message "publishing succeded";
341           true
342         end
343       else
344         begin
345           HLog.error "building process failed, reverting";
346           if not (clean ~matita_flags devel) then
347             HLog.error "cleaning failed, end of the world (2)";
348           false
349         end
350     end
351   else
352     (HLog.error "unable to clean the development, publishing failed"; false)
353   
354 let publish_development devel = 
355   publish_development_bstract 
356     (fun ~matita_flags devel -> build_development ~matita_flags devel) 
357     (fun ~matita_flags devel -> clean_development ~matita_flags devel) devel
358 let publish_development_in_bg cb devel = 
359   publish_development_bstract 
360     (fun ~matita_flags devel -> build_development_in_bg cb ~matita_flags devel)
361     (fun ~matita_flags devel -> clean_development_in_bg cb ~matita_flags devel)
362     devel
363