X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Ffound.mc;h=040318e820633787812e26d7a0e79e0bde6d6a19;hp=ecb4d70f9ec1cd3f0ad2041d47d3b65e493e338c;hb=5ffcdb88057319217d93ee6a3a5d8dfa4187c6f3;hpb=83e8406f04599be5d205da37e8b8982c97256eeb diff --git a/web/htdocs/details/found.mc b/web/htdocs/details/found.mc index ecb4d70..040318e 100644 --- a/web/htdocs/details/found.mc +++ b/web/htdocs/details/found.mc @@ -1,9 +1,5 @@ -%# $Id: found.mc,v 1.12 2006-10-17 14:49:58 mike Exp $ +%# $Id: found.mc,v 1.28 2007-04-26 13:57:17 mike Exp $ <%once> -use XML::LibXML; -use XML::LibXML::XPathContext; -use URI::Escape; - sub print_navlink { my($params, $cond, $caption, $skip) = @_; @@ -23,20 +19,40 @@ sub navlink { return $url; } +# Identical to the same-named function in full.mc +# So maybe this should go into IRSpy::Utils.pm? +# +sub calc_reliability { + my($xc) = @_; + + my @allpings = $xc->findnodes("i:status/i:probe"); + my $nall = @allpings; + return "[untested]" if $nall == 0; + my @okpings = $xc->findnodes('i:status/i:probe[@ok = "1"]'); + my $nok = @okpings; + return "$nok/$nall = " . int(100*$nok/$nall) . "%"; +} + + # Just make this once; forge the connection on first use our $conn = undef; <%perl> my %params = map { ( $_, $r->param($_)) } grep { $r->param($_) } $r->param(); -my $query = ""; -foreach my $key (keys %params) { - next if $key =~ /^_/; - my $val = $params{$key}; - next if $val eq ""; - $query .= " and " if $query ne ""; - $query .= "$key = ($val)"; +my $query; +if ($params{_query}) { + $query = $params{_query}; +} else { + $query = ""; + foreach my $key (keys %params) { + next if $key =~ /^_/; + my $val = $params{$key}; + next if $val eq ""; + $query .= " and " if $query ne ""; + $query .= "$key = ($val)"; + } } -$query = 'cql.allRecords=x' if $query eq ""; +$query = 'cql.allRecords=1' if $query eq ""; my $sort = $params{"_sort"}; if ($sort) { @@ -50,13 +66,23 @@ if ($sort) { $query .= " 0"; } +my $tried_to_open = 0; if (!defined $conn) { - $conn = new ZOOM::Connection("localhost:3313/IR-Explain---1"); + OPEN: + $conn = new ZOOM::Connection("localhost:8018/IR-Explain---1"); + $conn->option(elementSetName => "zeerex"); +} + +my $rs; +eval { $rs = $conn->search(new ZOOM::Query::CQL($query)) }; +if ($@ && ref $@ && $@->isa('ZOOM::Exception') && + $@->code() == ZOOM::Error::CONNECTION_LOST && !$tried_to_open) { + $tried_to_open = 1; + goto OPEN; +} elsif ($@) { + die $@; } -$conn->option(elementSetName => "zeerex"); -my $parser = new XML::LibXML(); -my $rs = $conn->search(new ZOOM::Query::CQL($query)); my $n = $rs->size(); my $skip = $params{"_skip"} || 0; @@ -66,7 +92,10 @@ my $first = $skip+1; my $last = $first+$count-1; $last = $n if $last > $n; -

<% xml_encode($query) %>

+

+ + +

% if ($n == 0) { No matches @@ -86,7 +115,8 @@ print_navlink(\%params, $last < $n, "Next", $skip+$count); # Title - Author + Reliability <& /help/link.mc, help => "info/reliability" &> + Host Port DB @@ -96,14 +126,9 @@ print_navlink(\%params, $last < $n, "Next", $skip+$count); % my @ids; % foreach my $i ($first .. $last) { <%perl> -my $rec = $rs->record($i-1); -my $xml = $rec->render(); -my $doc = $parser->parse_string($xml); -my $root = $doc->getDocumentElement(); -my $xc = XML::LibXML::XPathContext->new($root); -$xc->registerNs(e => 'http://explain.z3950.org/dtd/2.0/'); -my $title = $xc->find("e:databaseInfo/e:title"); -my $author = $xc->find("e:databaseInfo/e:author"); +my $xc = irspy_xpath_context($rs->record($i-1)); +my $title = $xc->find("e:databaseInfo/e:title") || "[UNTITLED]"; +my $reliability = calc_reliability($xc); my $host = $xc->find("e:serverInfo/e:host"); my $port = $xc->find("e:serverInfo/e:port"); my $db = $xc->find("e:serverInfo/e:database"); @@ -114,15 +139,21 @@ push @ids, $id; <% $i %> - <% xml_encode($title) %> - <% xml_encode($author) %> - <% xml_encode($host) %> - <% xml_encode($port) %> - <% xml_encode($db) %> - [Test] - [Raw] + <% xml_encode($title) %> + <% xml_encode($reliability, "", { nbsp => 1 }) %> + <% xml_encode($host, "") %> + <% xml_encode($port, "") %> + <% xml_encode($db, "") %> + + Test " title="Edit this target's record">Edit XML + % } @@ -131,8 +162,12 @@ print_navlink(\%params, $skip > 0, "Prev", $count < $skip ? $skip-$count : 0); print_navlink(\%params, $last < $n, "Next", $skip+$count);

- [Test all targets on this list]

+

+ [Statistics for targets on this list] +

% }