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/
33 open Http_getter_types
36 let version = Http_getter_const.version
38 let prefix_RE = Pcre.regexp "^\\s*([^\\s]+)\\s+([^\\s]+)\\s*(.*)$"
40 let cache_dir = lazy (normalize_dir (Helm_registry.get "getter.cache_dir"))
42 match Helm_registry.get_opt Helm_registry.string "getter.dtd_dir" with
44 | Some dir -> Some (normalize_dir dir))
45 let dtd_base_urls = lazy (
46 let rex = Pcre.regexp "/*$" in
49 Helm_registry.get_list Helm_registry.string "getter.dtd_base_urls"
51 | [] -> ["http://helm.cs.unibo.it/dtd"; "http://mowgli.cs.unibo.it/dtd"]
54 List.map (Pcre.replace ~rex) raw_urls)
56 Helm_registry.get_opt_default Helm_registry.int ~default:58081 "getter.port")
58 let parse_prefix_attrs s =
62 | "ro" -> `Read_only :: acc
63 | "legacy" -> `Legacy :: acc
65 Http_getter_logger.log ("ignoring unknown attribute: " ^ s);
70 let prefixes = Helm_registry.get_list Helm_registry.string "getter.prefix" in
73 let subs = Pcre.extract ~rex:prefix_RE prefix in
75 (subs.(1), (subs.(2), parse_prefix_attrs subs.(3))) :: acc
76 with Invalid_argument _ ->
77 Http_getter_logger.log ("skipping invalid prefix: " ^ prefix);
81 let host = lazy (Http_getter_misc.backtick "hostname -f")
85 (let (host, port) = (Lazy.force host, Lazy.force port) in
86 sprintf "http://%s%s" (* without trailing '/' *)
87 host (if port = 80 then "" else (sprintf ":%d" port)))
89 let env_to_string () =
90 let pp_attr = function `Read_only -> "ro" | `Legacy -> "legacy" in
91 let pp_prefix (uri_prefix, (url_prefix, attrs)) =
92 sprintf " %s -> %s [%s]" uri_prefix url_prefix
93 (String.concat "," (List.map pp_attr attrs)) in
94 let pp_prefixes prefixes =
97 | l -> "\n" ^ String.concat "\n" (List.map pp_prefix l)
112 (pp_prefixes (Lazy.force prefixes))
113 (match Lazy.force dtd_dir with Some dir -> dir | None -> "NONE")
114 (Lazy.force host) (Lazy.force port)
115 (Lazy.force my_own_url) (String.concat " " (Lazy.force dtd_base_urls))
116 (match Http_getter_logger.get_log_file () with None -> "None" | Some f -> f)
117 (Http_getter_logger.get_log_level ())
120 match Lazy.force dtd_dir with
121 | None -> raise (Internal_error "dtd_dir is not available")
122 | Some dtd_dir -> dtd_dir