]> matita.cs.unibo.it Git - helm.git/blob - helm/http_getter/http_getter_misc.ml
- added debugging log messages in g{,un}zip
[helm.git] / helm / http_getter / http_getter_misc.ml
1 (*
2  * Copyright (C) 2003:
3  *    Stefano Zacchiroli <zack@cs.unibo.it>
4  *    for the HELM Team http://helm.cs.unibo.it/
5  *
6  *  This file is part of HELM, an Hypertextual, Electronic
7  *  Library of Mathematics, developed at the Computer Science
8  *  Department, University of Bologna, Italy.
9  *
10  *  HELM is free software; you can redistribute it and/or
11  *  modify it under the terms of the GNU General Public License
12  *  as published by the Free Software Foundation; either version 2
13  *  of the License, or (at your option) any later version.
14  *
15  *  HELM is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with HELM; if not, write to the Free Software
22  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston,
23  *  MA  02111-1307, USA.
24  *
25  *  For details, see the HELM World-Wide-Web page,
26  *  http://helm.cs.unibo.it/
27  *)
28
29 open Http_getter_debugger;;
30 open Printf;;
31
32 let fold_file f init fname =
33   let inchan = open_in fname in
34   let rec fold_lines' value =
35     try 
36       let line = input_line inchan in 
37       fold_lines' (f value line)
38     with End_of_file -> value
39   in
40   let res = (try fold_lines' init with e -> (close_in inchan; raise e)) in
41   close_in inchan;
42   res
43 let iter_file f = fold_file (fun _ line -> f line) ()
44
45 let hashtbl_sorted_fold f tbl init =
46   let sorted_keys =
47     List.sort compare (Hashtbl.fold (fun key _ keys -> key::keys) tbl [])
48   in
49   List.fold_left (fun acc k -> f k (Hashtbl.find tbl k) acc) init sorted_keys
50
51 let cp src dst =
52   Shell.call
53     ~stdout:Shell.to_dev_null ~stderr:Shell.to_dev_null
54     [Shell.cmd "cp" [src; dst]]
55
56 let file_scheme_RE = Pcre.regexp "^file://"
57 let wget ?output url =
58   let use_wget () =
59     let flags =
60       (match output with Some file -> ["-O"; file] | None -> []) @ [url]
61     in
62     debug_print ("wget " ^ String.concat " " flags);
63     Shell.call
64       ~stdout:Shell.to_dev_null ~stderr:Shell.to_dev_null
65       [Shell.cmd "wget" flags]
66   in
67   if Pcre.pmatch ~rex:file_scheme_RE url then begin (* file:// URL *)
68     let src_fname = Pcre.replace ~rex:file_scheme_RE url in
69     match output with
70     | Some dst_fname -> cp src_fname dst_fname
71     | None ->
72         let dst_fname = Filename.basename src_fname in
73         if src_fname <> dst_fname then
74           cp src_fname dst_fname
75         else  (* src and dst are the same: do nothing *)
76           ()
77   end else  (* other URL, pass it to wget *)
78     use_wget ()
79
80 let bufsiz = 16384                              (* for g{,un}zip *)
81 let trailing_dot_gz_RE = Pcre.regexp "\\.gz$"   (* for g{,un}zip *)
82
83 let gzip ?(keep = false) fname =
84   debug_print (sprintf "gzipping %s (keep: %b)" fname keep);
85   let (ic, oc) = (open_in fname, Gzip.open_out (fname ^ ".gz")) in
86   let buf = String.create bufsiz in
87   (try
88     while true do
89       let bytes = input ic buf 0 bufsiz in
90       if bytes = 0 then raise End_of_file else Gzip.output oc buf 0 bytes
91     done
92   with End_of_file -> ());
93   close_in ic;
94   Gzip.close_out oc;
95   if not keep then Sys.remove fname
96
97 let gunzip ?(keep = false) fname =
98   debug_print (sprintf "gunzipping %s (keep: %b)" fname keep);
99   let basename = Pcre.replace ~rex:trailing_dot_gz_RE fname in
100   assert (basename <> fname);
101   let (ic, oc) = (Gzip.open_in fname, open_out basename) in
102   let buf = String.create bufsiz in
103   (try
104     while true do
105       let bytes = Gzip.input ic buf 0 bufsiz in
106       if bytes = 0 then raise End_of_file else output oc buf 0 bytes
107     done
108   with End_of_file -> ());
109   Gzip.close_in ic;
110   close_out oc;
111   if not keep then Sys.remove fname
112
113 let tempfile () =
114   let buf = Buffer.create 28 in (* strlen("/tmp/fileSzb3Mw_http_getter") *)
115   Shell.call
116     ~stdout:(Shell.to_buffer buf)
117     [Shell.cmd "tempfile" ["--suffix=_http_getter"]];
118   Pcre.replace ~pat:"\n" (Buffer.contents buf)
119
120 let mkdir ?(parents = false) dirname =
121   if not (Sys.file_exists dirname) then begin
122     let flags = if parents then ["-p"; dirname] else [dirname] in
123     debug_print ("mkdir " ^ String.concat " " flags);
124     Shell.call [Shell.cmd "mkdir" flags]
125   end
126
127 let string_of_proc_status = function
128   | Unix.WEXITED code -> sprintf "[Exited: %d]" code
129   | Unix.WSIGNALED sg -> sprintf "[Killed: %d]" sg
130   | Unix.WSTOPPED sg -> sprintf "[Stopped: %d]" sg
131
132 let http_get url =
133   if Pcre.pmatch ~rex:file_scheme_RE url then begin
134       (* file:// URL. Read data from file system *)
135     let fname = Pcre.replace ~rex:file_scheme_RE url in
136     try
137       let size = (Unix.stat fname).Unix.st_size in
138       let buf = String.create size in
139       let ic = open_in fname in
140       really_input ic buf 0 size;
141       close_in ic;
142       Some buf
143     with Unix.Unix_error (Unix.ENOENT, "stat", _) -> None
144   end else  (* other URL, pass it to netclient *)
145     try
146       Some (Http_client.Convenience.http_get url)
147     with Http_client.Http_error (code, _) -> None
148