]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/getter/http_getter_env.ml
- handle prefixes on the same line in conffile
[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 =
66   lazy
67     (let buf = Buffer.create 20 in
68     Shell.call ~stdout:(Shell.to_buffer buf) [Shell.cmd "hostname" ["-f"]];
69     Pcre.replace ~pat:"\n+$" (Buffer.contents buf))
70
71 let my_own_url =
72   lazy
73     (let (host, port) = (Lazy.force host, Lazy.force port) in
74     sprintf "http://%s%s" (* without trailing '/' *)
75     host (if port = 80 then "" else (sprintf ":%d" port)))
76
77 let env_to_string () =
78   let pp_prefix (uri_prefix, url_prefix) =
79     "    " ^ uri_prefix ^ " -- " ^ url_prefix
80   in
81   let pp_prefixes prefixes =
82     match prefixes with
83     | [] -> ""
84     | l -> "\n" ^ String.concat "\n" (List.map pp_prefix l)
85   in
86   sprintf
87 "HTTP Getter %s
88
89 prefixes:%s
90 dtd_dir:\t%s
91 host:\t\t%s
92 port:\t\t%d
93 my_own_url:\t%s
94 dtd_base_urls:\t%s
95 log_file:\t%s
96 log_level:\t%d
97 "
98     version
99     (pp_prefixes (Lazy.force prefixes))
100     (Lazy.force dtd_dir) (Lazy.force host) (Lazy.force port)
101     (Lazy.force my_own_url) (String.concat " " (Lazy.force dtd_base_urls))
102     (match Http_getter_logger.get_log_file () with None -> "None" | Some f -> f)
103     (Http_getter_logger.get_log_level ())
104