]> matita.cs.unibo.it Git - helm.git/blob - components/getter/http_getter_env.ml
matita 0.5.1 tagged
[helm.git] / components / 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 (* $Id$ *)
30
31 open Printf
32
33 open Http_getter_types
34 open Http_getter_misc
35
36 let version = Http_getter_const.version
37
38 let prefix_RE = Pcre.regexp "^\\s*([^\\s]+)\\s+([^\\s]+)\\s*(.*)$"
39
40 let cache_dir  = lazy (normalize_dir (Helm_registry.get "getter.cache_dir"))
41 let dtd_dir = lazy (
42   match Helm_registry.get_opt Helm_registry.string "getter.dtd_dir" with
43   | None -> None
44   | Some dir -> Some (normalize_dir dir))
45 let dtd_base_urls  = lazy (
46   let rex = Pcre.regexp "/*$" in
47   let raw_urls =
48     match
49       Helm_registry.get_list Helm_registry.string "getter.dtd_base_urls"
50     with
51     | [] -> ["http://helm.cs.unibo.it/dtd"; "http://mowgli.cs.unibo.it/dtd"]
52     | urls -> urls
53   in
54   List.map (Pcre.replace ~rex) raw_urls)
55 let port            = lazy (
56   Helm_registry.get_opt_default Helm_registry.int ~default:58081 "getter.port")
57
58 let parse_prefix_attrs s =
59   List.fold_right
60     (fun s acc ->
61       match s with
62       | "ro" -> `Read_only :: acc
63       | "legacy" -> `Legacy :: acc
64       | s ->
65           Http_getter_logger.log ("ignoring unknown attribute: " ^ s);
66           acc)
67     (Pcre.split s) []
68
69 let prefixes = lazy (
70   let prefixes = Helm_registry.get_list Helm_registry.string "getter.prefix" in
71   List.fold_left
72     (fun acc prefix ->
73       let subs = Pcre.extract ~rex:prefix_RE prefix in
74       try
75         (subs.(1), (subs.(2), parse_prefix_attrs subs.(3))) :: acc
76       with Invalid_argument _ ->
77         Http_getter_logger.log ("skipping invalid prefix: " ^ prefix);
78         acc)
79     [] prefixes)
80
81 let host = lazy (Http_getter_misc.backtick "hostname -f")
82
83 let my_own_url =
84   lazy
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)))
88
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 =
95     match prefixes with
96     | [] -> ""
97     | l -> "\n" ^ String.concat "\n" (List.map pp_prefix l)
98   in
99   sprintf
100 "HTTP Getter %s
101
102 prefixes:%s
103 dtd_dir:\t%s
104 host:\t\t%s
105 port:\t\t%d
106 my_own_url:\t%s
107 dtd_base_urls:\t%s
108 log_file:\t%s
109 log_level:\t%d
110 "
111     version
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 ())
118
119 let get_dtd_dir () =
120   match Lazy.force dtd_dir with
121   | None -> raise (Internal_error "dtd_dir is not available")
122   | Some dtd_dir -> dtd_dir
123