]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/getter/http_getter.ml
getter with in memory tree of URIs
[helm.git] / helm / ocaml / getter / http_getter.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_common
32 open Http_getter_misc
33 open Http_getter_types
34
35 exception Not_implemented of string
36 exception UnexpectedGetterOutput
37
38 (* resolve_result is needed because it is not possible to raise *)
39 (* an exception in a pxp ever-processing callback. Too bad.     *)
40 type resolve_result =
41   | Unknown
42   | Exception of exn
43   | Resolved of string
44
45 type logger_callback = HelmLogger.html_tag -> unit
46
47 let stdout_logger tag =  print_string (HelmLogger.string_of_html_tag tag)
48
49 let not_implemented s = raise (Not_implemented ("Http_getter." ^ s))
50
51 let (index_line_sep_RE, index_sep_RE, trailing_types_RE,
52     heading_cic_RE, heading_theory_RE, heading_nuprl_RE,
53     heading_rdf_cic_RE, heading_rdf_theory_RE) =
54   (Pcre.regexp "[ \t]+", Pcre.regexp "\r\n|\r|\n",
55   Pcre.regexp "\\.types$",
56   Pcre.regexp "^cic:", Pcre.regexp "^theory:", Pcre.regexp "^nuprl:",
57   Pcre.regexp "^helm:rdf.*//cic:", Pcre.regexp "^helm:rdf.*//theory:")
58
59   (* global maps, shared by all threads *)
60
61 let cic_map =
62   lazy (new Http_getter_map.map (Lazy.force Http_getter_env.cic_dbm))
63 let nuprl_map =
64   lazy (new Http_getter_map.map (Lazy.force Http_getter_env.nuprl_dbm))
65 let rdf_map =
66   lazy (new Http_getter_map.map (Lazy.force Http_getter_env.rdf_dbm))
67 let xsl_map =
68   lazy (new Http_getter_map.map (Lazy.force Http_getter_env.xsl_dbm))
69
70 let uri_tree = ref None
71 let deref_if_some r = 
72   match !r with
73   | None -> assert false 
74   | Some x -> x
75 let is_prefetch_on () =
76   match !uri_tree with None -> false | Some _ -> true
77   
78 let dump_tree () =
79   let path = Lazy.force Http_getter_env.dump_file in
80   Tree.save_to_disk path (deref_if_some uri_tree);
81   Http_getter_md5.create_hash [
82       (Lazy.force Http_getter_env.cic_dbm_real);
83       path ] 
84   
85 let load_tree () = 
86   if not (Http_getter_md5.check_hash ()) then
87     assert false
88   else
89     uri_tree := Some (Tree.load_from_disk 
90       (Lazy.force Http_getter_env.dump_file))
91
92 let sync_with_map () =    
93   if not (Http_getter_md5.check_hash ()) then begin
94     let tree = ref (Some Tree.empty_tree) in
95     Http_getter_logger.log "Updating cic map dump...";
96     let t = Unix.time () in
97     (Lazy.force cic_map)#iter
98       (fun k _ ->
99         tree := Some (Tree.add_uri k (deref_if_some tree)));
100     uri_tree := !tree;
101     Http_getter_logger.log
102       (sprintf "done in %.0f sec" (Unix.time () -. t));
103       dump_tree ()
104   end else begin
105     Http_getter_logger.log "Cic map dump is up to date!";
106     load_tree ()  (* XXX TASSI: race condition here *)
107   end
108   
109 let maps = [ cic_map; nuprl_map; rdf_map; xsl_map ]
110 let close_maps () = List.iter (fun m -> (Lazy.force m) # close) maps
111 let clear_maps () = List.iter (fun m -> (Lazy.force m) # clear) maps
112 let sync_maps  () = 
113   List.iter (fun m -> (Lazy.force m) # sync) maps;
114   sync_with_map ()
115
116 let map_of_uri = function
117   | uri when is_cic_uri uri -> Lazy.force cic_map
118   | uri when is_nuprl_uri uri -> Lazy.force nuprl_map
119   | uri when is_rdf_uri uri -> Lazy.force rdf_map
120   | uri when is_xsl_uri uri -> Lazy.force xsl_map
121   | uri -> raise (Unresolvable_URI uri)
122
123 let update_from_server logger server_url = (* use global maps *)
124   Http_getter_logger.log ("Updating information from " ^ server_url);
125   let xml_url_of_uri = function
126       (* TODO missing sanity checks on server_url, e.g. it can contains $1 *)
127     | uri when (Pcre.pmatch ~rex:heading_cic_RE uri) ->
128         Pcre.replace ~rex:heading_cic_RE ~templ:server_url uri
129     | uri when (Pcre.pmatch ~rex:heading_theory_RE uri) ->
130         Pcre.replace ~rex:heading_theory_RE ~templ:server_url uri
131     | uri when (Pcre.pmatch ~rex:heading_nuprl_RE uri) ->
132         Pcre.replace ~rex:heading_nuprl_RE ~templ:server_url uri
133     | uri -> raise (Invalid_URI uri)
134   in
135   let rdf_url_of_uri = function (* TODO as above *)
136     | uri when (Pcre.pmatch ~rex:heading_rdf_cic_RE uri) ->
137         Pcre.replace ~rex:heading_rdf_cic_RE ~templ:server_url uri
138     | uri when (Pcre.pmatch ~rex:heading_rdf_theory_RE uri) ->
139         Pcre.replace ~rex:heading_rdf_theory_RE ~templ:server_url uri
140     | uri -> raise (Invalid_URI uri)
141   in
142   logger (`T ("Processing server: " ^ server_url));
143   logger `BR;
144   let (xml_index, rdf_index, xsl_index) =
145     (* TODO keeps index in memory, is better to keep them on temp files? *)
146     (http_get (server_url ^ "/" ^ (Lazy.force Http_getter_env.xml_index)),
147      http_get (server_url ^ "/" ^ (Lazy.force Http_getter_env.rdf_index)),
148      http_get (server_url ^ "/" ^ (Lazy.force Http_getter_env.xsl_index)))
149   in
150   if (xml_index = None && rdf_index = None && xsl_index = None) then
151     Http_getter_logger.log (sprintf "Warning: useless server %s" server_url);
152   (match xml_index with
153   | Some xml_index ->
154       logger (`T "- Updating XML db ...");
155 (*       logger `BR; *)
156       List.iter
157         (function
158           | l when is_blank_line l -> ()  (* skip blank and commented lines *)
159           | l ->
160               (try
161                 (match Pcre.split ~rex:index_line_sep_RE l with
162                 | [uri; "gz"] ->
163                    assert (is_cic_uri uri || is_nuprl_uri uri) ;
164                    (map_of_uri uri)#replace
165                     uri ((xml_url_of_uri uri) ^ ".xml.gz")
166                 | [uri] ->
167                    assert (is_cic_uri uri || is_nuprl_uri uri) ;
168                    (map_of_uri uri)#replace
169                     uri ((xml_url_of_uri uri) ^ ".xml")
170                 | _ ->
171                     logger (`T ("Ignoring invalid line: '" ^ l));
172                     logger `BR)
173               with Invalid_URI uri ->
174                 logger (`T ("Ignoring invalid XML URI: '" ^ l));
175                 logger `BR))
176         (Pcre.split ~rex:index_sep_RE xml_index); (* xml_index lines *)
177       logger (`T "All done");
178       logger `BR
179   | None -> ());
180   (match rdf_index with
181   | Some rdf_index ->
182       logger (`T "- Updating RDF db ...");
183 (*       logger `BR; *)
184       List.iter
185         (fun l ->
186           try
187             (match Pcre.split ~rex:index_line_sep_RE l with
188             | [uri; "gz"] ->
189                 (Lazy.force rdf_map) # replace uri
190                   ((rdf_url_of_uri uri) ^ ".xml.gz")
191             | [uri] ->
192                 (Lazy.force rdf_map) # replace uri
193                   ((rdf_url_of_uri uri) ^ ".xml")
194             | _ ->
195                 logger (`T ("Ignoring invalid line: '" ^ l));
196                 logger `BR)
197           with Invalid_URI uri ->
198             logger (`T ("Ignoring invalid RDF URI: '" ^ l));
199             logger `BR)
200         (Pcre.split ~rex:index_sep_RE rdf_index); (* rdf_index lines *)
201       logger (`T "All done");
202       logger `BR
203   | None -> ());
204   (match xsl_index with
205   | Some xsl_index ->
206       logger (`T "- Updating XSLT db ...");
207 (*       logger `BR; *)
208       List.iter
209         (fun l -> (Lazy.force xsl_map) # replace l (server_url ^ "/" ^ l))
210         (Pcre.split ~rex:index_sep_RE xsl_index);
211       logger (`T "All done");
212       logger `BR
213   | None -> ());
214   Http_getter_logger.log "done with this server"
215
216 let update_from_all_servers logger () =  (* use global maps *)
217   clear_maps ();
218   List.iter
219     (update_from_server logger)
220       (* reverse order: 1st server is the most important one *)
221     (List.map snd (List.rev (Http_getter_env.servers ())));
222   sync_maps ()
223
224 let update_from_one_server ?(logger = fun _ -> ()) server_url =
225   update_from_server logger server_url
226
227 let temp_file_of_uri uri =
228   let flat_string s s' c =
229     let cs = String.copy s in
230     for i = 0 to (String.length s) - 1 do
231       if String.contains s' s.[i] then cs.[i] <- c
232     done;
233     cs
234   in
235   let user = try Unix.getlogin () with _ -> "" in
236   Filename.open_temp_file (user ^ flat_string uri ".-=:;!?/&" '_') ""
237
238   (* should we use a remote getter or not *)
239 let remote () =
240   try
241     Helm_registry.get "getter.mode" = "remote"
242   with Helm_registry.Key_not_found _ -> false
243 let getter_url () = Helm_registry.get "getter.url"
244
245 (* Remote interface: getter methods implemented using a remote getter *)
246
247   (* <TODO> *)
248 let getxslt_remote ~patch_dtd uri = not_implemented "getxslt_remote"
249 let getdtd_remote ~patch_dtd uri = not_implemented "getdtd_remote"
250 let clean_cache_remote () = not_implemented "clean_cache_remote"
251 let list_servers_remote () = not_implemented "list_servers_remote"
252 let add_server_remote ~logger ~position name =
253   not_implemented "add_server_remote"
254 let remove_server_remote ~logger position =
255   not_implemented "remove_server_remote"
256 let getalluris_remote () = not_implemented "getalluris_remote"
257 let getallrdfuris_remote () = not_implemented "getallrdfuris_remote"
258 let ls_remote lsuri = not_implemented "ls_remote"
259   (* </TODO> *)
260
261 let resolve_remote uri =
262   (* deliver resolve request to http_getter *)
263   let doc = ClientHTTP.get (sprintf "%sresolve?uri=%s" (getter_url ()) uri) in
264   let res = ref Unknown in
265    Pxp_ev_parser.process_entity PxpHelmConf.pxp_config (`Entry_content [])
266     (Pxp_ev_parser.create_entity_manager ~is_document:true
267       PxpHelmConf.pxp_config (Pxp_yacc.from_string doc))
268     (function
269       | Pxp_types.E_start_tag ("url",["value",url],_,_) -> res := Resolved url
270       | Pxp_types.E_start_tag ("unresolvable",[],_,_) ->
271           res := Exception (Unresolvable_URI uri)
272       | Pxp_types.E_start_tag ("not_found",[],_,_) ->
273           res := Exception (Key_not_found uri)
274       | Pxp_types.E_start_tag (x,_,_,_) -> 
275           res := Exception UnexpectedGetterOutput
276       | _ -> ());
277    match !res with
278    | Unknown -> raise UnexpectedGetterOutput
279    | Exception e -> raise e
280    | Resolved url -> url
281
282 let register_remote ~uri ~url =
283   ClientHTTP.send (sprintf "%sregister?uri=%s&url=%s" (getter_url ()) uri url)
284
285 let unregister_remote uri =
286   ClientHTTP.send (sprintf "%sunregister?uri=%s" (getter_url ()) uri)
287
288 let update_remote logger  () =
289   let answer = ClientHTTP.get (getter_url () ^ "update") in
290   logger (`T answer);
291   logger `BR
292
293 let getxml_remote ~format ~patch_dtd uri =
294   ClientHTTP.get_and_save_to_tmp
295     (sprintf "%sgetxml?uri=%s&format=%s&patch_dtd=%s"
296       (getter_url ()) uri
297       (match format with `Normal -> "normal" | `Gzipped -> "gzipped")
298       (match patch_dtd with true -> "yes" | false -> "no"))
299
300 (* API *)
301
302 let help () = Http_getter_const.usage_string (Http_getter_env.env_to_string ())
303
304 let resolve uri =
305   if remote () then
306     resolve_remote uri
307   else
308     (map_of_uri uri)#resolve uri
309         
310 let register ~uri ~url =
311   if remote () then
312     register_remote ~uri ~url
313   else
314     begin
315     (map_of_uri uri)#add uri url;
316     if is_prefetch_on () then
317       uri_tree := Some (Tree.add_uri uri (deref_if_some uri_tree))
318     end
319
320 let unregister uri =
321   if remote () then
322     unregister_remote uri
323   else
324     try
325       begin
326       (map_of_uri uri)#remove uri;
327       if is_prefetch_on () then 
328         uri_tree := Some (Tree.remove_uri uri (deref_if_some uri_tree))
329       end
330     with Key_not_found _ -> ()
331
332 let update ?(logger = fun _ -> ()) () =
333   if remote () then
334     update_remote logger ()
335   else
336     update_from_all_servers logger ()
337
338 let getxml ?(format = `Normal) ?(patch_dtd = true) uri =
339   if remote () then
340     getxml_remote ~format ~patch_dtd uri
341   else begin
342     Http_getter_logger.log ~level:2 ("getxml: " ^ uri);
343     let url = resolve uri in
344     Http_getter_logger.log ~level:2 ("resolved_uri: " ^ url) ;
345     let (fname, outchan) = temp_file_of_uri uri in
346     Http_getter_cache.respond_xml ~via_http:false ~enc:format ~patch:patch_dtd
347       ~uri ~url outchan;
348     close_out outchan;
349     fname
350   end
351
352 let getxslt ?(patch_dtd = true) uri =
353   if remote () then
354     getxslt_remote ~patch_dtd uri
355   else begin
356     
357     let url = resolve uri in
358     let (fname, outchan) = temp_file_of_uri uri in
359     Http_getter_cache.respond_xsl ~via_http:false ~url ~patch:patch_dtd outchan;
360     close_out outchan;
361     fname
362   end
363
364 let getdtd ?(patch_dtd = true) uri =
365   if remote () then
366     getdtd_remote ~patch_dtd uri
367   else begin
368     let url = Lazy.force Http_getter_env.dtd_dir ^ "/" ^ uri in
369     let (fname, outchan) = temp_file_of_uri uri in
370     Http_getter_cache.respond_dtd ~via_http:false ~url ~patch:patch_dtd outchan;
371     close_out outchan;
372     fname
373   end
374
375 let clean_cache () =
376   if remote () then
377     clean_cache_remote ()
378   else
379     Http_getter_cache.clean ()
380
381 let list_servers () =
382   if remote () then
383     list_servers_remote ()
384   else
385     Http_getter_env.servers ()
386
387 let add_server ?(logger = fun _ -> ()) ?(position = 0) name =
388   if remote () then
389     add_server_remote ~logger ~position name
390   else begin
391     if position = 0 then begin
392       Http_getter_env.add_server ~position:0 name;
393       update_from_one_server ~logger name (* quick update (new server only) *)
394     end else if position > 0 then begin
395       Http_getter_env.add_server ~position name;
396       update ~logger ()
397     end else  (* already checked by parse_position *)
398       assert false
399   end
400
401 let has_server position = List.mem_assoc position (Http_getter_env.servers ())
402
403 let remove_server ?(logger = fun _ -> ()) position =
404   if remote () then
405     remove_server_remote ~logger ()
406   else begin
407     let server_name =
408       try
409         List.assoc position (Http_getter_env.servers ())
410       with Not_found ->
411         raise (Invalid_argument (sprintf "no server with position %d" position))
412     in
413     Http_getter_env.remove_server position;
414     update ~logger ()
415   end
416
417 let return_uris map filter =
418   let uris = ref [] in
419   map#iter (fun uri _ -> if filter uri then uris := uri :: !uris);
420   List.rev !uris
421
422 let getalluris () =
423   if remote () then
424     getalluris_remote ()
425   else
426     let filter uri =
427       (Pcre.pmatch ~rex:heading_cic_RE uri)
428 (*       && not (Pcre.pmatch ~rex:trailing_types_RE uri) *)
429     in
430     return_uris (Lazy.force cic_map) filter
431
432 let getallrdfuris classs =
433   if remote () then
434     getallrdfuris_remote ()
435   else
436     let filter =
437       let base = "^helm:rdf:www\\.cs\\.unibo\\.it/helm/rdf/" in
438       match classs with
439       | `Forward -> (fun uri -> Pcre.pmatch ~pat:(base ^ "forward") uri)
440       | `Backward -> (fun uri -> Pcre.pmatch ~pat:(base ^ "backward") uri)
441     in
442     return_uris (Lazy.force rdf_map) filter
443
444
445 let (++) (oldann, oldtypes, oldbody, oldtree)
446          (newann, newtypes, newbody, newtree) =
447   ((if newann   > oldann    then newann   else oldann),
448    (if newtypes > oldtypes  then newtypes else oldtypes),
449    (if newbody  > oldbody   then newbody  else oldbody),
450    (if newtree  > oldtree   then newtree  else oldtree))
451     
452 let (types_RE, types_ann_RE, body_RE, body_ann_RE,
453      proof_tree_RE, proof_tree_ann_RE, trailing_slash_RE, theory_RE) =
454   (Pcre.regexp "\\.types$", Pcre.regexp "\\.types\\.ann$",
455    Pcre.regexp "\\.body$", Pcre.regexp "\\.body\\.ann$",
456    Pcre.regexp "\\.proof_tree$", Pcre.regexp "\\.proof_tree\\.ann$",
457    Pcre.regexp "/$", Pcre.regexp "\\.theory$")
458   
459 let basepart_RE =
460   Pcre.regexp
461     "^([^.]*\\.[^.]*)((\\.body)|(\\.proof_tree)|(\\.types))?(\\.ann)?$"
462     
463 let (slash_RE, til_slash_RE, no_slashes_RE) =
464   (Pcre.regexp "/", Pcre.regexp "^.*/", Pcre.regexp "^[^/]*$")
465   
466 let ls regexp =
467   if remote () then
468     ls_remote regexp
469   else begin
470     let looking_for_dir = Pcre.pmatch ~rex:trailing_slash_RE regexp in
471     let pat = Pcre.replace ~rex:trailing_slash_RE ("^" ^ regexp) in
472     let (dir_RE, dir_local_RE, obj_RE, first_comp_RE) =
473       Pcre.regexp (pat ^ "/"), Pcre.regexp "[^/]+/[^/]*",
474       Pcre.regexp (pat ^ "(\\.|$)"), Pcre.regexp "/.*"
475     in
476     let toplevel_theory =
477       match List.rev (Pcre.split ~rex:slash_RE pat) with
478       | dir :: _ -> Some (dir ^ ".theory")
479       | _ -> None
480     in
481     let dirs = ref StringSet.empty in
482     let objs = Hashtbl.create 17 in
483     let store_dir d =
484       dirs := StringSet.add (List.hd (Pcre.split ~rex:slash_RE d)) !dirs
485     in
486     let store_obj o =
487       let basepart = Pcre.replace ~rex:basepart_RE ~templ:"$1" o in
488       let no_flags = false, No, No, No in
489       let oldflags =
490         try
491           Hashtbl.find objs basepart
492         with Not_found -> (* no ann, no types, no body, no proof tree *)
493           no_flags
494       in
495       let newflags =
496         match o with
497         | s when Pcre.pmatch ~rex:types_RE s          -> (false, Yes, No, No)
498         | s when Pcre.pmatch ~rex:types_ann_RE s      -> (true,  Ann, No, No)
499         | s when Pcre.pmatch ~rex:body_RE s           -> (false, No, Yes, No)
500         | s when Pcre.pmatch ~rex:body_ann_RE s       -> (true,  No, Ann, No)
501         | s when Pcre.pmatch ~rex:proof_tree_RE s     -> (false, No, No, Yes)
502         | s when Pcre.pmatch ~rex:proof_tree_ann_RE s -> (true,  No, No, Ann)
503         | s -> no_flags
504       in
505       Hashtbl.replace objs basepart (oldflags ++ newflags)
506     in
507     (* Variables used in backward compatibility code to map
508        theory:/path/t.theory into theory:/path/t/index.theory
509        when cic:/path/t/ exists *)
510     let the_candidate_for_remapping =
511      (* CSC: Here I am making a strong assumption: the pattern
512         can be only of the form  [^:]*:/path where path is
513         NOT a regular expression *)
514      "theory:" ^ Pcre.replace ~rex:(Pcre.regexp "[^:]*:") pat
515     in
516     let index_not_generated_yet = ref true in
517     let valid_candidates = ref [] in
518     let candidates_found = ref [] in
519     
520     (*(Lazy.force cic_map) # iter*)
521
522     (* depending on prefetch *)
523     let if_prefetch if_is if_not = 
524       if is_prefetch_on() then if_is else if_not 
525     in
526     
527     let iter_on_right_thing = if_prefetch
528       (fun f -> List.iter (fun k -> f k "") 
529       (Tree.ls_path regexp (deref_if_some uri_tree)))
530       (fun f -> (Lazy.force cic_map) # iter f)
531     in
532     let calculate_localpart = if_prefetch 
533         (fun uri -> uri)
534         (fun uri -> Pcre.replace ~rex:dir_RE uri)
535     in
536     let check_if_x_RE = if_prefetch
537         (fun x_RE uri -> true)
538         (fun x_RE uri -> Pcre.pmatch ~rex:x_RE uri)
539     in
540     let check_if_dir_RE = check_if_x_RE dir_RE in
541     let check_if_obj_RE = check_if_x_RE obj_RE in
542
543     iter_on_right_thing
544       (fun key _ ->
545         (* we work in two ways:
546          * 1 iteration on the whole map
547          * 2 tree visit
548          *
549          * Since in the first case 'key' is a complete uri, while
550          * in the second case it is only the subtree rooted in the
551          * query regex, we must relay only on the localpath.
552          *
553          * example:
554          *   query::= cic:/aaa/bbb/
555          *
556          *   answer1 ::= the whole map
557          *
558          *   aswer2  ::= [ "ccc/"; "c1.something"] where 
559          *     cic:/aaa/bbb/ccc/ and cic:/aaa/bbb/c1.something
560          *     are the (partials) uri that matched query
561          *     
562          * after the localpath extracion we have more uris in the first case,
563          * but at least the are all rooted in the same node.
564          *
565          * the Tree.get_frontier may be changed to return the same stuff as 
566          * the map iteration+localpath extraction does, but I hope it is not
567          * necessary
568          *)
569         match key with
570         | uri when looking_for_dir && check_if_dir_RE uri ->
571             (* directory hit *)
572             let localpart = calculate_localpart uri in
573             if Pcre.pmatch ~rex:no_slashes_RE localpart then
574              begin
575               (* Backward compatibility code to map
576                  theory:/path/t.theory into theory:/path/t/index.theory
577                  when cic:/path/t/ exists *)
578               if Pcre.pmatch ~rex:theory_RE localpart then
579                candidates_found := localpart :: !candidates_found
580               else
581                store_obj localpart
582              end
583             else
584              begin
585              store_dir localpart ;
586              if Pcre.pmatch localpart ~rex:dir_local_RE then 
587                begin
588                let valid = 
589                  Pcre.replace ~rex:first_comp_RE localpart ^ ".theory"
590                in
591                if not (List.mem valid !valid_candidates) then
592                  valid_candidates := valid::!valid_candidates
593                end
594              end
595         | uri when (not looking_for_dir) && check_if_obj_RE uri ->
596             (* file hit *)
597             store_obj (Pcre.replace ~rex:til_slash_RE uri)
598         | uri -> ());
599 (*
600                    (* miss *)
601            if !index_not_generated_yet &&
602               Pcre.pmatch ~rex:orig_theory_RE uri
603            then
604             (index_not_generated_yet := false ;
605              store_obj "index.theory"));
606  *)
607     store_obj "index.theory";
608     List.iter
609      (fun localpart ->
610        if not (List.mem localpart !valid_candidates) then
611         store_obj localpart
612      ) !candidates_found ;
613     let ls_items = ref [] in
614     StringSet.iter (fun dir -> ls_items := Ls_section dir :: !ls_items) !dirs;
615     Http_getter_misc.hashtbl_sorted_iter
616       (fun uri (annflag, typesflag, bodyflag, treeflag) ->
617         ls_items :=
618           Ls_object {
619             uri = uri; ann = annflag;
620             types = typesflag; body = bodyflag; proof_tree = treeflag
621           } :: !ls_items)
622       objs;
623     List.rev !ls_items
624   end
625
626 (* Shorthands from now on *)
627
628 let getxml' uri = getxml (UriManager.string_of_uri uri)
629 let resolve' uri = resolve (UriManager.string_of_uri uri)
630 let register' uri url = register ~uri:(UriManager.string_of_uri uri) ~url
631 let unregister' uri = unregister (UriManager.string_of_uri uri)
632
633 let sync_dump_file () =
634   if is_prefetch_on () then
635     dump_tree ()
636   
637 let init () =
638   Http_getter_logger.set_log_level
639     (Helm_registry.get_opt_default Helm_registry.get_int 1 "getter.log_level");
640   Http_getter_logger.set_log_file
641     (Helm_registry.get_opt Helm_registry.get_string "getter.log_file");
642   Http_getter_env.reload ();
643   let is_prefetch_set = 
644     Helm_registry.get_opt_default Helm_registry.get_bool false "getter.prefetch"
645   in
646   if is_prefetch_set then
647     ignore (Thread.create sync_with_map ())
648