]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/getter/http_getter_env.ml
ocaml 3.09 transition
[helm.git] / helm / ocaml / getter / http_getter_env.ml
1 (*
2  * Copyright (C) 2003-2004:
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 Printf
30
31 open Http_getter_types
32 open Http_getter_misc
33
34 let version = Http_getter_const.version
35
36 let prefix_RE = Pcre.regexp "^\\s*([^\\s]+)\\s+([^\\s]+)\\s*$"
37
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
42   let raw_urls =
43     match
44       Helm_registry.get_list Helm_registry.string "getter.dtd_base_urls"
45     with
46     | [] -> ["http://helm.cs.unibo.it/dtd"; "http://mowgli.cs.unibo.it/dtd"]
47     | urls -> urls
48   in
49   List.map (Pcre.replace ~rex) raw_urls)
50 let port            = lazy (
51   Helm_registry.get_opt_default Helm_registry.int ~default:58081 "getter.port")
52
53 let prefixes = lazy (
54   let prefixes = Helm_registry.get_list Helm_registry.string "getter.prefix" in
55   List.fold_left
56     (fun acc prefix ->
57       let subs = Pcre.extract ~rex:prefix_RE prefix in
58       try
59         (subs.(1), subs.(2)) :: acc
60       with Invalid_argument _ ->
61         Http_getter_logger.log ("skipping invalid prefix: " ^ prefix);
62         acc)
63     [] prefixes)
64
65 let host = lazy (Http_getter_misc.backtick "hostname -f")
66
67 let my_own_url =
68   lazy
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)))
72
73 let env_to_string () =
74   let pp_prefix (uri_prefix, url_prefix) =
75     "    " ^ uri_prefix ^ " -- " ^ url_prefix
76   in
77   let pp_prefixes prefixes =
78     match prefixes with
79     | [] -> ""
80     | l -> "\n" ^ String.concat "\n" (List.map pp_prefix l)
81   in
82   sprintf
83 "HTTP Getter %s
84
85 prefixes:%s
86 dtd_dir:\t%s
87 host:\t\t%s
88 port:\t\t%d
89 my_own_url:\t%s
90 dtd_base_urls:\t%s
91 log_file:\t%s
92 log_level:\t%d
93 "
94     version
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 ())
100