2 * Copyright (C) 2003-2004:
3 * Stefano Zacchiroli <zack@cs.unibo.it>
4 * for the HELM Team http://helm.cs.unibo.it/
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.
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.
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.
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,
25 * For details, see the HELM World-Wide-Web page,
26 * http://helm.cs.unibo.it/
31 let trailing_dot_gz_RE = Pcre.regexp "\\.gz$" (* for g{,un}zip *)
32 let url_RE = Pcre.regexp "^([\\w.-]+)(:(\\d+))?(/.*)?$"
33 let http_scheme_RE = Pcre.regexp ~flags:[`CASELESS] "^http://"
34 let file_scheme_RE = Pcre.regexp ~flags:[`CASELESS] "^file://"
35 let dir_sep_RE = Pcre.regexp "/"
36 let heading_slash_RE = Pcre.regexp "^/"
38 let bufsiz = 16384 (* for file system I/O *)
39 let tcp_bufsiz = 4096 (* for TCP I/O *)
41 let fold_file f init fname =
42 let ic = open_in fname in
44 let line = try Some (input_line ic) with End_of_file -> None in
47 | Some line -> aux (f line acc)
49 let res = try aux init with e -> close_in ic; raise e in
53 let iter_file f = fold_file (fun line _ -> f line) ()
55 let hashtbl_sorted_fold f tbl init =
57 List.sort compare (Hashtbl.fold (fun key _ keys -> key::keys) tbl [])
59 List.fold_left (fun acc k -> f k (Hashtbl.find tbl k) acc) init sorted_keys
61 let hashtbl_sorted_iter f tbl =
63 List.sort compare (Hashtbl.fold (fun key _ keys -> key::keys) tbl [])
65 List.iter (fun k -> f k (Hashtbl.find tbl k)) sorted_keys
68 let (ic, oc) = (open_in src, open_out dst) in
69 let buf = String.create bufsiz in
72 let bytes = input ic buf 0 bufsiz in
73 if bytes = 0 then raise End_of_file else output oc buf 0 bytes
75 with End_of_file -> ());
76 close_in ic; close_out oc
78 let wget ?output url =
79 Http_getter_logger.log
80 (sprintf "wgetting %s (output: %s)" url
81 (match output with None -> "default" | Some f -> f));
83 | url when Pcre.pmatch ~rex:file_scheme_RE url -> (* file:// *)
84 (let src_fname = Pcre.replace ~rex:file_scheme_RE url in
86 | Some dst_fname -> cp src_fname dst_fname
88 let dst_fname = Filename.basename src_fname in
89 if src_fname <> dst_fname then
90 cp src_fname dst_fname
91 else (* src and dst are the same: do nothing *)
93 | url when Pcre.pmatch ~rex:http_scheme_RE url -> (* http:// *)
95 open_out (match output with Some f -> f | None -> Filename.basename url)
97 Http_client.http_get_iter (fun data -> output_string oc data) url;
99 | scheme -> (* unsupported scheme *)
100 failwith ("Http_getter_misc.wget: unsupported scheme: " ^ scheme)
102 let gzip ?(keep = false) ?output fname =
103 let output = match output with None -> fname ^ ".gz" | Some fname -> fname in
104 Http_getter_logger.log ~level:3
105 (sprintf "gzipping %s (keep: %b, output: %s)" fname keep output);
106 let (ic, oc) = (open_in fname, Gzip.open_out output) in
107 let buf = String.create bufsiz in
110 let bytes = input ic buf 0 bufsiz in
111 if bytes = 0 then raise End_of_file else Gzip.output oc buf 0 bytes
113 with End_of_file -> ());
114 close_in ic; Gzip.close_out oc;
115 if not keep then Sys.remove fname
118 let gunzip ?(keep = false) ?output fname =
119 (* assumption: given file name ends with ".gz" or output is set *)
123 if (Pcre.pmatch ~rex:trailing_dot_gz_RE fname) then
124 Pcre.replace ~rex:trailing_dot_gz_RE fname
127 "Http_getter_misc.gunzip: unable to determine output file name"
128 | Some fname -> fname
130 Http_getter_logger.log ~level:3
131 (sprintf "gunzipping %s (keep: %b, output: %s)" fname keep output);
132 let (ic, oc) = (Gzip.open_in fname, open_out output) in
133 let buf = String.create bufsiz in
136 let bytes = Gzip.input ic buf 0 bufsiz in
137 if bytes = 0 then raise End_of_file else Pervasives.output oc buf 0 bytes
139 with End_of_file -> ());
140 Gzip.close_in ic; close_out oc;
141 if not keep then Sys.remove fname
144 let tempfile () = Filename.temp_file "http_getter_" ""
146 exception Mkdir_failure of string * string;; (* dirname, failure reason *)
149 let mkdir ?(parents = false) dirname =
152 let split = Pcre.split ~rex:dir_sep_RE dirname in
153 if Pcre.pmatch ~rex:heading_slash_RE dirname then
162 sprintf "%s%s%s" pre (match pre with "/" | "" -> "" | _ -> "/") dir
165 (match (Unix.stat next_dir).Unix.st_kind with
166 | Unix.S_DIR -> () (* dir component already exists, go on! *)
167 | _ -> (* dir component already exists but isn't a dir, abort! *)
169 (Mkdir_failure (dirname,
170 sprintf "'%s' already exists but is not a dir" next_dir)))
171 with Unix.Unix_error (Unix.ENOENT, "stat", _) ->
172 (* dir component doesn't exists, create it and go on! *)
173 Unix.mkdir next_dir dir_perm);
177 if parents then mkdirhier () else Unix.mkdir dirname dir_perm
179 let string_of_proc_status = function
180 | Unix.WEXITED code -> sprintf "[Exited: %d]" code
181 | Unix.WSIGNALED sg -> sprintf "[Killed: %d]" sg
182 | Unix.WSTOPPED sg -> sprintf "[Stopped: %d]" sg
185 if Pcre.pmatch ~rex:file_scheme_RE url then begin
186 (* file:// URL. Read data from file system *)
187 let fname = Pcre.replace ~rex:file_scheme_RE url in
189 let size = (Unix.stat fname).Unix.st_size in
190 let buf = String.create size in
191 let ic = open_in fname in
192 really_input ic buf 0 size;
195 with Unix.Unix_error (Unix.ENOENT, "stat", _) -> None
196 end else (* other URL, pass it to Http_client *)
198 Some (Http_client.http_get url)
200 Http_getter_logger.log (sprintf
201 "Warning: Http_client failed on url %s with exception: %s"
202 url (Printexc.to_string e));
206 let blank_line_RE = Pcre.regexp "(^#)|(^\\s*$)" in
208 Pcre.pmatch ~rex:blank_line_RE line