X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=inline;f=helm%2Fhttp_getter%2Fhttp_getter_misc.ml;h=c983c298813e0a83f5fc8e8be3cc2aa40a38af87;hb=d3c72d6856cd185e5b3e9f2e8b928b78c7031ed1;hp=4b82dd8e7e067f73deb2267e1bbbbf2e9ec15dcd;hpb=ef8c8f30c996d30617232a662ff4d3afc5a92a8f;p=helm.git diff --git a/helm/http_getter/http_getter_misc.ml b/helm/http_getter/http_getter_misc.ml index 4b82dd8e7..c983c2988 100644 --- a/helm/http_getter/http_getter_misc.ml +++ b/helm/http_getter/http_getter_misc.ml @@ -1,5 +1,5 @@ (* - * Copyright (C) 2003: + * Copyright (C) 2003-2004: * Stefano Zacchiroli * for the HELM Team http://helm.cs.unibo.it/ * @@ -26,11 +26,12 @@ * http://helm.cs.unibo.it/ *) -open Http_getter_debugger;; -open Printf;; +open Printf + +open Http_getter_debugger let trailing_dot_gz_RE = Pcre.regexp "\\.gz$" (* for g{,un}zip *) -let url_RE = Pcre.regexp "^([\\w.]+)(:(\\d+))?(/.*)?$" +let url_RE = Pcre.regexp "^([\\w.-]+)(:(\\d+))?(/.*)?$" let http_scheme_RE = Pcre.regexp ~flags:[`CASELESS] "^http://" let file_scheme_RE = Pcre.regexp ~flags:[`CASELESS] "^file://" let dir_sep_RE = Pcre.regexp "/" @@ -40,17 +41,18 @@ let bufsiz = 16384 (* for file system I/O *) let tcp_bufsiz = 4096 (* for TCP I/O *) let fold_file f init fname = - let inchan = open_in fname in - let rec fold_lines' value = - try - let line = input_line inchan in - fold_lines' (f value line) - with End_of_file -> value + let ic = open_in fname in + let rec aux acc = + let line = try Some (input_line ic) with End_of_file -> None in + match line with + | None -> acc + | Some line -> aux (f line acc) in - let res = (try fold_lines' init with e -> (close_in inchan; raise e)) in - close_in inchan; + let res = try aux init with e -> close_in ic; raise e in + close_in ic; res -let iter_file f = fold_file (fun _ line -> f line) () + +let iter_file f = fold_file (fun line _ -> f line) () let hashtbl_sorted_fold f tbl init = let sorted_keys = @@ -58,6 +60,12 @@ let hashtbl_sorted_fold f tbl init = in List.fold_left (fun acc k -> f k (Hashtbl.find tbl k) acc) init sorted_keys +let hashtbl_sorted_iter f tbl = + let sorted_keys = + List.sort compare (Hashtbl.fold (fun key _ keys -> key::keys) tbl []) + in + List.iter (fun k -> f k (Hashtbl.find tbl k)) sorted_keys + let cp src dst = let (ic, oc) = (open_in src, open_out dst) in let buf = String.create bufsiz in @@ -133,9 +141,10 @@ let wget ?output url = | scheme -> (* unsupported scheme *) failwith ("Http_getter_misc.wget: unsupported scheme: " ^ scheme) -let gzip ?(keep = false) fname = - debug_print (sprintf "gzipping %s (keep: %b)" fname keep); - let (ic, oc) = (open_in fname, Gzip.open_out (fname ^ ".gz")) in +let gzip ?(keep = false) ?output fname = + let output = match output with None -> fname ^ ".gz" | Some fname -> fname in + debug_print (sprintf "gzipping %s (keep: %b, output: %s)" fname keep output); + let (ic, oc) = (open_in fname, Gzip.open_out output) in let buf = String.create bufsiz in (try while true do @@ -145,21 +154,33 @@ let gzip ?(keep = false) fname = with End_of_file -> ()); close_in ic; Gzip.close_out oc; if not keep then Sys.remove fname - -let gunzip ?(keep = false) fname = - debug_print (sprintf "gunzipping %s (keep: %b)" fname keep); - let basename = Pcre.replace ~rex:trailing_dot_gz_RE fname in - assert (basename <> fname); - let (ic, oc) = (Gzip.open_in fname, open_out basename) in +;; + +let gunzip ?(keep = false) ?output fname = + (* assumption: given file name ends with ".gz" or output is set *) + let output = + match output with + | None -> + if (Pcre.pmatch ~rex:trailing_dot_gz_RE fname) then + Pcre.replace ~rex:trailing_dot_gz_RE fname + else + failwith + "Http_getter_misc.gunzip: unable to determine output file name" + | Some fname -> fname + in + debug_print (sprintf "gunzipping %s (keep: %b, output: %s)" + fname keep output); + let (ic, oc) = (Gzip.open_in fname, open_out output) in let buf = String.create bufsiz in (try while true do let bytes = Gzip.input ic buf 0 bufsiz in - if bytes = 0 then raise End_of_file else output oc buf 0 bytes + if bytes = 0 then raise End_of_file else Pervasives.output oc buf 0 bytes done with End_of_file -> ()); Gzip.close_in ic; close_out oc; if not keep then Sys.remove fname +;; let tempfile () = Filename.temp_file "http_getter_" "" @@ -213,8 +234,17 @@ let http_get url = close_in ic; Some buf with Unix.Unix_error (Unix.ENOENT, "stat", _) -> None - end else (* other URL, pass it to netclient *) + end else (* other URL, pass it to Http_client *) try - Some (Http_client.Convenience.http_get url) - with Http_client.Http_error (code, _) -> None + Some (Http_client.http_get url) + with e -> + prerr_endline (sprintf + "Warning: Http_client failed on url %s with exception: %s" + url (Printexc.to_string e)); + None + +let is_blank_line = + let blank_line_RE = Pcre.regexp "(^#)|(^\\s*$)" in + fun line -> + Pcre.pmatch ~rex:blank_line_RE line