]> matita.cs.unibo.it Git - helm.git/blob - helm/http_getter/http_getter.pl.in
e73d9f9878689b039352916e90b29a0abcfcd303
[helm.git] / helm / http_getter / http_getter.pl.in
1 #!@PERL_BINARY@
2
3 # Copyright (C) 2000, HELM Team.
4
5 # This file is part of HELM, an Hypertextual, Electronic
6 # Library of Mathematics, developed at the Computer Science
7 # Department, University of Bologna, Italy.
8
9 # HELM is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License
11 # as published by the Free Software Foundation; either version 2
12 # of the License, or (at your option) any later version.
13
14 # HELM is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18
19 # You should have received a copy of the GNU General Public License
20 # along with HELM; if not, write to the Free Software
21 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 # For details, see the HELM World-Wide-Web page,
24 # http://cs.unibo.it/helm/.
25
26 my $VERSION = "@VERSION@";
27
28 # First of all, let's load HELM configuration
29 use Env;
30 my $HELM_LIB_DIR = $ENV{"HELM_LIB_DIR"};
31 # this should be the only fixed constant
32 my $DEFAULT_HELM_LIB_DIR = "@HELM_LIB_DIR@";
33 if (defined ($HELM_LIB_DIR)) {
34    $HELM_LIB_PATH = $HELM_LIB_DIR."/configuration.pl";
35 } else {
36    $HELM_LIB_PATH = $DEFAULT_HELM_LIB_DIR."/configuration.pl";
37 }
38
39 # <ZACK>: TODO temporary, move this setting to configuration file
40 # set the cache mode, may be "gzipped" or "normal"
41 my $cachemode = $ENV{'HTTP_GETTER_CACHE_MODE'} || 'gzipped';
42 if (($cachemode ne 'gzipped') and ($cachemode ne 'normal')) {
43  die "Invalid HTTP_GETTER_CACHE_MODE environment variable, must be".
44  "'normal' or 'gzipped'\n";
45 }
46 # </ZACK>
47
48 # next require defines: $helm_dir, $html_link, $dtd_dir, $uris_dbm
49 require $HELM_LIB_PATH;
50
51 # Let's override the configuration file
52 $style_dir = $ENV{"HELM_STYLE_DIR"} if (defined ($ENV{"HELM_STYLE_DIR"}));
53 $dtd_dir = $ENV{"HELM_DTD_DIR"} if (defined ($ENV{"HELM_DTD_DIR"}));
54
55 use HTTP::Daemon;
56 use HTTP::Status;
57 use HTTP::Request;
58 use LWP::UserAgent;
59 use DB_File;
60 use Compress::Zlib;
61 use CGI;
62 use URI::Escape;
63
64 #CSC: mancano i controlli sulle condizioni di errore di molte funzioni
65 #CSC: ==> non e' robusto
66 #CSC: altra roba da sistemare segnata con CSC
67
68 my $d = new HTTP::Daemon LocalPort => 8081;
69 my $myownurl = $d->url;
70
71 # Let's patch the returned URL
72 $myownurl =~ s/\/$//; # chop the final slash
73 my $myownport = $myownurl;
74 $myownport =~ s/http:\/\/(.*):(.*)/$2/;
75 $myownurl  =~ s/http:\/\/(.*):(.*)/$1/;
76 ($myownurl) = gethostbyname($myownurl);
77 $myownurl = "http://".$myownurl.":".$myownport;
78
79 tie(%map, 'DB_File', $uris_dbm.".db", O_RDONLY, 0664);
80 print "Please contact me at: <URL:", $myownurl."/", ">\n";
81 print "helm_dir: $helm_dir\n";
82 print "style_dir: $style_dir\n";
83 print "dtd_dir: $dtd_dir\n";
84 print "urls_of_uris.db: $uris_dbm.db\n";
85 print "cache mode: $cachemode\n";
86
87 $SIG{CHLD} = "IGNORE"; # do not accumulate defunct processes
88 $SIG{USR1} = \&update; # sent by the child to make the parent update
89 while (my $c = $d->accept) {
90  if (fork() == 0) {
91     while (my $r = $c->get_request) {
92         #CSC: mancano i controlli di sicurezza
93         
94         my $inputuri = uri_unescape($r->url); 
95         $inputuri =~ s/^[^?]*\?uri=(.*)/$1/;
96         print "\nRequest: ".$r->url."\n\n";
97         my $http_method = $r->method;
98         my $http_path = $r->url->path;
99         my $http_query = uri_unescape($r->url->query);
100         my $cgi = new CGI("$http_query");
101
102         print "\nUnescaped query: ".$http_query."\n";
103
104         if ($http_method eq 'GET' and $http_path eq "/getciconly") {
105             # finds the uri, url and filename
106             my $cicuri = $inputuri;
107
108             my $cicfilename = $cicuri;
109             $cicfilename =~ s/cic:(.*)/$1/;
110             $cicfilename =~ s/theory:(.*)/$1/;
111
112             my $cicurl   = $map{$cicuri};
113             my $extension;
114             if ($cicurl =~ /\.xml$/) { # non gzipped file
115               $extension = ".xml";
116             } elsif ($cicurl =~ /\.xml\.gz$/) { # gzipped file
117               $extension = ".xml.gz";
118             } else { # error: unknown extension
119              die "unexpected extension in url: $cicurl, might be '.xml'".
120               "or '.xml.gz'";
121             }
122             $cicfilename = $helm_dir.$cicfilename.$extension;
123
124             if (!defined($cicurl)) {
125              print "\nNOT FOUND!!!!!\n";
126              $c->send_error(RC_NOT_FOUND)
127             } else {
128                print_request("cic",$cicuri,$cicurl,$cicfilename);
129
130                # Retrieves the file
131                my $ciccontent = download(0,"cic",$cicurl,$cicfilename);
132
133                # Answering the client
134                answer($c,$ciccontent);
135             }
136         } elsif ($http_method eq 'GET' and $http_path eq "/get") {
137             # finds the uris, urls and filenames
138             my $cicuri = $inputuri,
139                $typesuri = $inputuri,
140                $annuri = $inputuri;
141             my $annsuffix;
142             if ($inputuri =~ /\.types$/) {
143                $cicuri    =~ s/(.*)\.types$/$1/;
144                undef($annuri);
145             } elsif ($inputuri =~ /\.types\.ann$/) {
146                $cicuri    =~ s/(.*)\.types\.ann$/$1/;
147                $typesuri  =~ s/(.*)\.ann$/$1/;
148                $annsuffix = ".types.ann";
149             } elsif ($inputuri =~ /\.ann$/) {
150                $cicuri  =~ s/(.*)\.ann$/$1/;
151                undef($typesuri);
152                $annsuffix = ".ann";
153             } else {
154                undef($typesuri);
155                undef($annuri);
156             }
157
158             my $cicfilename = $cicuri;
159             $cicfilename =~ s/cic:(.*)/$1/;
160             $cicfilename =~ s/theory:(.*)/$1/;
161             $cicfilename = $helm_dir.$cicfilename;
162
163             my $cicurl   = $map{$cicuri};
164             my $typesurl = $map{$typesuri} if (defined($typesuri));
165             my $annurl   = $map{$annuri}  if (defined($annuri));
166             my ($cicext, $typesext, $annext);
167             if ($cicurl =~ /\.xml$/) { # normal file
168              $cicext = ".xml";
169             } elsif ($cicurl =~ /\.xml\.gz$/) { # gzipped file
170              $cicext = ".xml.gz";
171             } else {
172              die "unexpected extension in url: $cicurl;".
173              "might be '.xml' or '.xml.gz'";
174             }
175             if (defined($typesuri)) { # extension selection for types file
176              if ($typesurl =~ /\.xml$/) { # normal file
177               $typesext = ".types.xml";
178              } elsif ($typesurl =~ /\.xml\.gz$/) { # gzipped file
179               $typesext = ".types.xml.gz";
180              } else {
181               die "unexpected extension in url: $typesurl;".
182               "might be '.xml' or '.xml.gz'";
183              }
184             }
185             if (defined($annuri)) { # extension selection for annotation file
186              if ($annurl =~ /\.xml$/) { # normal file
187               $annext = ".xml";
188              } elsif ($annurl =~ /\.xml\.gz$/) { # gzipped file
189               $annext = ".xml.gz";
190              } else {
191               die "unexpected extension in url: $annurl".
192               "might be '.xml' or '.xml.gz'";
193              }
194             }
195             my $typesfilename = $cicfilename.$typesext if $typesuri;
196             my $annfilename  = $cicfilename.$annsuffix.$annext if $annuri;
197             $cicfilename .= $cicext;
198
199             if (!defined($cicurl) ||
200                (!defined($typesurl) && $typesuri) ||
201                (!defined($annuri) && $annuri))
202             {
203              print "\nNOT FOUND!!!!!\n";
204              $c->send_error(RC_NOT_FOUND)
205             } else {
206                print_request("cic",$cicuri,$cicurl,$cicfilename);
207                print_request("types",$typesuri,$typesurl,$typesfilename)
208                 if ($typesuri);
209                print_request("ann",$annuri,$annurl,$annfilename)
210                 if ($annuri);
211  
212                # Retrieves the files
213
214                my $ciccontent = download(1,"cic",$cicurl,$cicfilename);
215                my $typescontent =
216                 download(1,"types",$typesurl,$typesfilename) if ($typesuri);
217                my $anncontent =
218                 download(1,"ann",$annurl,$annfilename) if ($annuri);
219  
220                # Merging the files together
221  
222                my $merged = <<EOT;
223 <?xml version="1.0" encoding="UTF-8"?>
224 <cicxml uri="$cicuri">
225 $ciccontent
226 $typescontent
227 $anncontent
228 </cicxml>
229 EOT
230
231                # Answering the client
232                answer($c,$merged);
233             }
234          } elsif ($http_method eq 'GET' and $http_path eq "/getdtd") {
235             my $filename = $inputuri;
236             $filename = $dtd_dir."/".$filename;
237             print "DTD: $inputuri ==> ($filename)\n";
238             if (stat($filename)) {
239                print "Using local copy\n";
240                open(FD, $filename) or die "Cannot open $filename\n";
241                $cont = "";
242                while(<FD>) {
243                 # Vary bad heuristic for substituion of absolute URLs
244                 # for relative ones
245                 s/ENTITY (.*) SYSTEM\s+"/ENTITY $1 SYSTEM "$myownurl\/getdtd?uri=/g;
246                 $cont .= $_;
247                }
248                close(FD);
249                answer($c,$cont);
250             } else {
251                die "Could not find DTD!";
252             }
253         } elsif ($http_method eq 'GET' and $http_path eq "/getstyleconf") {
254             my $filename = $inputuri;
255             $filename = $style_dir."/config/".$filename;
256             if (stat($filename)) {
257                open(FD, $filename) or die "Cannot open $filename\n";
258                $cont = "";
259                while(<FD>) {
260                 s/DOCTYPE (.*) SYSTEM\s+"/DOCTYPE $1 SYSTEM "$myownurl\/getstyleconf?uri=/g;
261                 $cont .= $_;
262                }
263                close(FD);
264                answer($c,$cont);
265             } else {
266                die "Could not find Style Configuration File!";
267             }
268         } elsif ($http_method eq 'GET' and $http_path eq "/getxslt") {
269             my $filename = $inputuri;
270             $filename = $style_dir."/".$filename;
271             print "XSLT: $inputuri ==> ($filename)\n";
272             if (stat($filename)) {
273                print "Using local copy\n";
274                open(FD, $filename) or die "Cannot open $filename\n";
275                $cont = "";
276                while(<FD>) {
277                 # Vary bad heuristic for substituion of absolute URLs
278                 # for relative ones
279                 s/xsl:import\s+href="/xsl:import href="$myownurl\/getxslt?uri=/g ;
280                 s/xsl:include\s+href="/xsl:include href="$myownurl\/getxslt?uri=/g ;
281                 $cont .= $_;
282                }
283                close(FD);
284                answer($c,$cont);
285             } else {
286                die "Could not find XSLT!";
287             }
288         } elsif ($http_method eq 'GET' and $http_path eq "/conf") {
289             my $quoted_html_link = $html_link;
290             $quoted_html_link =~ s/&/&amp;/g;
291             $quoted_html_link =~ s/</&lt;/g;
292             $quoted_html_link =~ s/>/&gt;/g;
293             $quoted_html_link =~ s/'/&apos;/g;
294             $quoted_html_link =~ s/"/&quot;/g;
295             print "\nConfiguration requested, returned #$quoted_html_link#\n";
296             $cont = "<?xml version=\"1.0\"?><html_link>$quoted_html_link</html_link>";
297             answer($c,$cont);
298         } elsif ($http_method eq 'GET' and $http_path eq "/update") {
299             # rebuild urls_of_uris.db
300            print "Update requested...\n";
301            mk_urls_of_uris();
302            kill(USR1,getppid()); # signal changes to parent
303            print " done\n";
304            answer($c,"<html><body><h1>Update done</h1></body></html>");
305         } elsif ($http_method eq 'GET' and $http_path eq "/ls") {
306             # send back keys that begin with a given uri
307            my ($uritype,$uripattern,$uriprefix);
308            my $baseuri = $cgi->param('baseuri');
309            chop $baseuri if ($baseuri =~ /.*\/$/); # remove trailing "/"
310            my $outype = $cgi->param('format'); # output type, might be 'txt' or 'xml'
311            $uripattern = $baseuri;
312            $uripattern =~ s/^.*:(.*)/$1/;
313            if ($baseuri =~ /^cic:/) {
314             $uritype = "cic";
315            } elsif ($baseuri =~ /^theory:/) {
316             $uritype = "theory";
317            } else {
318             $uritype = "invalid";
319            }
320            if ($uritype ne "invalid") { # uri is valid
321             if (($outype ne 'txt') and ($outype ne 'xml')) { # invalid out type
322              print "Invalid output type specified: $outype\n";
323              answer($c,"<html><body><h1>Invalid output type, may be ".
324               "\"txt\" or \"xml\"</h1></body></html>");
325             } else { # valid output
326              print "BASEURI $baseuri, FORMAT $outype\n";
327              $cont = finduris($uritype,$uripattern,$outype);
328              answer($c,$cont);
329             }
330            } else { # invalid uri
331             print "Invalid uri: $baseuri, may begin with 'cic:', ".
332              "'theory:' or '*:'\n";
333             answer($c,"<html><body><h1>Invalid uri , may begin with ".
334              "\"cic:\", \"theory:\" or \"*:\"</h1></body></html>");
335            }
336         } elsif ($http_method eq 'GET' and $http_path eq "/version") {
337            print "Version requested!";
338            answer($c,"<html><body><h1>HTTP Getter Version ".
339             $VERSION."</h1></body></html>");
340         } else {
341             print "\n";
342             print "INVALID REQUEST!!!!!\n";
343             print "(PATH: ",$http_path,", ";
344             print "QUERY: ",$http_query,")\n";
345             $c->send_error(RC_FORBIDDEN)
346         }
347         print "\nRequest solved: ".$r->url."\n\n";
348     }
349     $c->close;
350     undef($c);
351     print "\nCONNECTION CLOSED\n\n";
352     exit;
353   } # fork
354 }
355
356 #================================
357
358 sub finduris { # find uris for cic and theory trees generation
359  my ($uritype,$uripattern,$format) = @_;
360  my $content = "";
361  my ($uri,$localpart,$basepart,$dirname,$suffix,$flags,$key);
362  my (@itemz,@already_pushed_dir);
363  my (%objects,%dirs); # map uris to suffixes' flags
364
365  print "FINDURIS, uritype: $uritype, uripattern: $uripattern, ".
366   "format: $format\n\n";
367  
368  if (($uritype eq "cic") or ($uritype eq "theory")) {
369    # get info only of one type: cic or theory
370   foreach (keys(%map)) { # select matching uris
371    $uri = $_;
372    if ($uri =~ /^$uritype:$uripattern\//) {
373     $localpart = $uri;
374     $localpart =~ s/^$uritype:$uripattern\/(.*)/$1/;
375
376     if ($localpart =~ /^[^\/]*$/) { # no slash, an OBJECT
377      $basepart = $localpart;
378      $basepart =~ s/^(.*)\.types(\.ann)?/$1/; # remove exts .types or
379                                               # .types.ann
380      $flags = $objects{$basepart}; # get old flags
381      if ($localpart =~ /\.ann$/) {
382       $flags = add_flag("ann","YES",$flags);
383      } else {
384       $flags = add_flag("ann","NO",$flags);
385      }
386      if ($localpart =~ /\.types$/) {
387       $flags = add_flag("types","YES",$flags);
388      } elsif ($localpart =~ /\.types\.ann$/) {
389       $flags = add_flag("types","ANN",$flags);
390      } else {
391       $flags = add_flag("types","NO",$flags);
392      }
393      $objects{$basepart} = $flags; # save new flags
394     } else { # exists at least one slash, a DIR
395      ($dirname) = split (/\//, $localpart);
396      $dirs{$dirname} = ""; # no flags requirement for dir
397     }
398    }
399   }
400  } else {
401   die "getter internal error: unsupported uritype: \"$uritype\"";
402  }
403                             # now generate OUTPUT:
404                             # output will be saved in $content
405  if ($format eq "txt") { 
406   foreach $key (sort(keys %dirs)) {
407    $content .= "dir, " . $key . "\n";
408   }
409   foreach $key (sort(keys %objects)) {
410    $content .= "object, $key, " . $objects{$key} . "\n";
411   }
412  } elsif ($format eq "xml") {
413   $content .= "<ls>\n";
414   foreach $key (sort(keys %dirs)) {
415    $content .= "\t<section>$key</section>\n";
416   }
417   foreach $key (sort(keys %objects)) {
418    $content .= "\t<object name=\"$key\">\n";
419    $flags = $objects{$key};
420    $flags =~ s/^<(.*)>$/$1/;
421    my ($annflag,$typesflag) = split /,/,$flags;
422    $content .= "\t\t<ann value=\"$annflag\" />\n";
423    $content .= "\t\t<types value=\"$typesflag\" />\n";
424    $content .= "\t</object>\n";
425   }
426   $content .= "</ls>\n";
427  } else { # may not enter this branch
428   die "Getter internal error: invalid format received by finduris sub";
429  }
430  return $content;
431 }
432
433 sub add_flag {
434 # manage string like: "<ann_flag,type_flag>"
435 # "ann_flag" may be one of "ann_YES", "ann_NO"
436 # "type_flag" may be one of "types_NO", "types_YES", "types_ANN"
437 # when adding a flag the max between the current flag and the new flag
438 # is taken, the orders are ann_NO < ann_YES and types_NO < types_YES <
439 # types_ANN
440  my ($flagtype,$newflag,$str) = @_;
441  $str = "<,>" if ($str eq "");
442  ($str =~ s/^<(.*,.*)>$/$1/) or die "Internal error: ".
443    "wrong string format for flag adding in $str";
444  my ($annflag,$typeflag) = split /,/,$str;
445  if ($flagtype eq "ann") { # ANN flag handling
446   if ($newflag eq "YES") {
447    $annflag = "YES";
448   } elsif ($newflag eq "NO") {
449    $annflag = "NO" unless ($annflag eq "YES");
450   } else {
451    die "Internal error: annflag must be \"YES\" or \"NO\"";
452   }
453  } elsif ($flagtype eq "types") { # TYPES flag handling
454   if ($newflag eq "ANN") {
455    $typeflag = "ANN";
456   } elsif ($newflag eq "YES") {
457    $typeflag = "YES" unless ($typeflag eq "ANN");
458   } elsif ($newflag eq "NO") {
459    $typeflag = "NO"
460      unless (($typeflag eq "ANN") or ($typeflag eq "YES"));
461   } else {
462    die "Internal error: typeflag must be \"YES\", \"NO\" or \"ANN\"";
463   }
464  } else {
465   die "Internal error: unsupported flagtype \"$flagtype\"";
466  }
467  $str = "<$annflag,$typeflag>";
468 }
469
470 #CSC: Too much powerful: creates even /home, /home/users/, ...
471 #CSC: Does not raise errors if could not create dirs/files
472 sub mkdirs
473 {
474  my ($pathname) = @_;
475  my @dirs = split /\//,$pathname;
476  my $tmp;
477  foreach $dir (@dirs) {
478   $tmp = ((defined($tmp)) ?  $tmp."\/".$dir : "");
479   mkdir($tmp,0777);
480  }
481  rmdir($tmp);
482 }
483
484 sub print_request
485 {
486  my ($str,$uri,$url,$filename) = @_;
487  print $str."uri: $uri\n";
488  print $str."url: $url\n";
489  print $str."filename: $filename\n\n";
490 }
491
492 sub callback
493 {
494  my ($data) = @_;
495  $cont .= $data;
496 }
497
498 sub gunzip { # gunzip a file and return the deflated content
499         my ($filename) = @_;
500
501         my ($gz, $buffer, $cont);
502
503         print "deflating $filename ...\n";
504         $gz = gzopen($filename, "r")
505                 or die "Cannot open gzip'ed file $filename: $gzerrno";
506         $cont = "";
507         while ( $gz->gzread($buffer) > 0 ) {
508                 $cont .= $buffer;
509         }
510         die "Error while reading : $gzerrno\n" if $gzerrno != Z_STREAM_END ;
511         $gz->gzclose();
512
513         return $cont;
514 }
515
516 sub gzip {      # gzip the content argument and save it to filename argument
517         my ($cont, $filename) = @_;
518
519         my ($gz, $cont);
520
521         $gz = gzopen($filename, "w")
522                 or die "Cannot gzopen for writing file $filename: $gzerrno";
523         $gz->gzwrite($cont) or die "error writing: $gzerrno\n" ;
524         $gz->gzclose();
525 }
526
527 sub download
528 {
529  my ($remove_headers,$str,$url,$filename) = @_;
530  my ($gz, $buffer);
531
532  my $resourcetype;      # retrieve mode: "normal" (.xml) or "gzipped" (.xml.gz)
533  if ($filename =~ /\.xml$/) {   # set retrieve mode
534          $resourcetype = "normal";
535  } elsif ($filename =~ /\.xml\.gz$/) {
536          $resourcetype = "gzipped";
537  } else {
538          die "Unsupported download extension, might be '.gz' or '.xml'\n";
539  }
540  my $basefname = $filename;
541  $basefname =~ s/\.gz$//;       # get base resource name removing trailing .gz
542  $cont = ""; # modified by side-effect by the callback function
543
544  my $localfname="";
545  if (stat($basefname)) {
546         $localfname=$basefname;
547  } elsif (stat($basefname.".gz")) {
548         $localfname=$basefname.".gz";
549  }
550  if ($localfname ne "") { # we already have local copy of requested file
551       # check both possible cache entry: gzipped or normal
552   print "Using local copy for the $str file\n";
553   if ($localfname =~ /\.xml\.gz$/) { # deflating cached file and return it
554    $cont = gunzip($localfname);
555   } elsif ($localfname =~ /\.xml$/) { # just return cached file
556    open(FD, $localfname) or die "Cannot open $localfname";
557    while(<FD>) { $cont .= $_; }
558    close(FD);
559   } else { # error
560    die "Internal error: unexpected file name $localfname,"
561    ."must end with '.gz' or '.xml.gz'\n";
562   }
563  } else { # download file from net
564     print "Downloading the $str file\n"; # download file
565     my $ua = LWP::UserAgent->new;
566     my $request = HTTP::Request->new(GET => "$url");
567     my $response = $ua->request($request, \&callback);
568                
569     # cache retrieved file to disk
570 # <ZACK/> TODO: inefficent, I haven't yet undestood how to deflate
571 #    in memory gzipped file, without call "gzopen"
572  print "Storing the $str file\n";
573  mkdirs($filename);
574  open(FD, ">".$filename.".tmp") or die "Cannot open $filename.tmp\n";
575  print FD $cont;
576  close(FD);
577
578  # handle cache conversion normal->gzipped or gzipped->normal as user choice
579  if (($cachemode eq 'normal') and ($resourcetype eq 'normal')) {
580    # cache the file as is
581   rename "$filename.tmp", $filename; 
582  } elsif (($cachemode eq 'gzipped') and ($resourcetype eq 'gzipped')) {
583    # cache the file as is
584    # and update the $cont variabile with deflated content
585   rename "$filename.tmp", $filename; 
586   $cont = gunzip($filename);
587  } elsif (($cachemode eq 'normal') and ($resourcetype eq 'gzipped')) {
588    # deflate cache entry
589    # and update $cont
590   open(FD, "> $basefname") or die "cannot open $basefname\n";
591   $cont = gunzip($filename.".tmp");
592   print FD $cont;
593   close(FD);
594   unlink "$filename.tmp"; # delete old gzipped file
595  } elsif (($cachemode eq 'gzipped') and ($resourcetype eq 'normal')) {
596    # compress cache entry
597   gzip($cont, $basefname.".gz");
598   unlink "$filename.tmp"; # delete old uncompressed file
599  } else {
600   die "Internal error, unsopported cachemode, resourcetype couple\n";
601  }
602  # $cont now contained uncompressed data
603
604  }
605  if ($remove_headers) {
606     $cont =~ s/<\?xml [^?]*\?>//sg;
607     $cont =~ s/<!DOCTYPE [^>]*>//sg;
608  } else {
609     $cont =~ s/DOCTYPE (.*) SYSTEM\s+"http:\/\/www.cs.unibo.it\/helm\/dtd\//DOCTYPE $1 SYSTEM "$myownurl\/getdtd?uri=/g;
610  }
611  return $cont;
612 }
613
614 sub answer
615 {
616  my ($c,$cont) = @_;
617  my $res = new HTTP::Response;
618  $res->content($cont);
619  $c->send_response($res);
620 }
621
622 sub helm_wget {
623 #retrieve a file from an url and write it to a temp dir
624 #used for retrieve resource index from servers
625  $cont = "";
626  my ($prefix, $URL) = @_;
627  my $ua = LWP::UserAgent->new;
628  my $request = HTTP::Request->new(GET => "$URL");
629  my $response = $ua->request($request, \&callback);
630  my ($filename) = reverse (split "/", $URL); # get filename part of the URL
631  open (TEMP, "> $prefix/$filename")
632   || die "Cannot open temporary file: $prefix/$filename\n";
633  print TEMP $cont;
634  close TEMP;
635 }
636
637 sub update {
638  untie %map;
639  tie(%map, 'DB_File', $uris_dbm.".db", O_RDONLY, 0664);
640 }
641
642 sub mk_urls_of_uris {
643 #rebuild $uris_dbm.db fetching resource indexes from servers
644  my (
645   $server, $idxfile, $uri, $url, $comp, $line,
646   @servers,
647   %urls_of_uris
648  );
649
650  untie %map;
651  if (stat $uris_dbm.".db") { # remove old db file
652   unlink($uris_dbm.".db") or
653    die "cannot unlink old db file: $uris_dbm.db\n";
654  }
655  tie(%urls_of_uris, 'DB_File', $uris_dbm.".db", O_RDWR|O_CREAT, 0664);
656
657  open (SRVS, "< $servers_file") or
658   die "cannot open servers file: $servers_file\n";
659  @servers = <SRVS>;
660  close (SRVS);
661  while ($server = pop @servers) { #cicle on servers in reverse order
662   print "processing server: $server ...\n";
663   chomp $server;
664   helm_wget($tmp_dir, $server."/".$indexname); #get index
665   $idxfile = $tmp_dir."/".$indexname;
666   open (INDEX, "< $idxfile") or
667    die "cannot open temporary index file: $idxfile\n";
668   while ($line = <INDEX>) { #parse index and add entry to urls_of_uris
669    chomp $line;
670    ($uri,$comp) = split /[ \t]+/, $line;
671              # build url:
672    if ($comp =~ /gz/) { 
673     $url = $uri . ".xml" . ".gz";
674    } else {
675     $url = $uri . ".xml";
676    }
677    $url =~ s/cic:/$server/;
678    $url =~ s/theory:/$server/;
679    $urls_of_uris{$uri} = $url;
680   }
681   close INDEX;
682   die "cannot unlink temporary file: $idxfile\n"
683    if (unlink $idxfile) != 1;
684  }
685
686  untie(%urls_of_uris);
687  tie(%map, 'DB_File', $uris_dbm.".db", O_RDONLY, 0664);
688 }
689