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 open Http_getter_types
34 let version = Http_getter_const.version
36 let prefix_RE = Pcre.regexp "^\\s*([^\\s]+)\\s+([^\\s]+)\\s*$"
38 let cache_dir = lazy (normalize_dir (Helm_registry.get "getter.cache_dir"))
39 let dtd_dir = lazy (normalize_dir (Helm_registry.get "getter.dtd_dir"))
40 let dtd_base_urls = lazy (
41 let rex = Pcre.regexp "/*$" in
44 Helm_registry.get_list Helm_registry.string "getter.dtd_base_urls"
46 | [] -> ["http://helm.cs.unibo.it/dtd"; "http://mowgli.cs.unibo.it/dtd"]
49 List.map (Pcre.replace ~rex) raw_urls)
51 Helm_registry.get_opt_default Helm_registry.int ~default:58081 "getter.port")
54 let prefixes = Helm_registry.get_list Helm_registry.string "getter.prefix" in
57 let subs = Pcre.extract ~rex:prefix_RE prefix in
59 (subs.(1), subs.(2)) :: acc
60 with Invalid_argument _ ->
61 Http_getter_logger.log ("skipping invalid prefix: " ^ prefix);
65 let host = lazy (Http_getter_misc.backtick "hostname -f")
69 (let (host, port) = (Lazy.force host, Lazy.force port) in
70 sprintf "http://%s%s" (* without trailing '/' *)
71 host (if port = 80 then "" else (sprintf ":%d" port)))
73 let env_to_string () =
74 let pp_prefix (uri_prefix, url_prefix) =
75 " " ^ uri_prefix ^ " -- " ^ url_prefix
77 let pp_prefixes prefixes =
80 | l -> "\n" ^ String.concat "\n" (List.map pp_prefix l)
95 (pp_prefixes (Lazy.force prefixes))
96 (Lazy.force dtd_dir) (Lazy.force host) (Lazy.force port)
97 (Lazy.force my_own_url) (String.concat " " (Lazy.force dtd_base_urls))
98 (match Http_getter_logger.get_log_file () with None -> "None" | Some f -> f)
99 (Http_getter_logger.get_log_level ())