X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Ffull.mc;h=a371c49188fc782c58c20c5e47ae9f418492e81c;hp=49690a72bccd34eb0e8cc4d7362bb4762a80ea99;hb=9256e774441281d764891b4fb1184a16e887741c;hpb=133fa8ece58e75a4cf2ed020f945dfbee9e8d0f4 diff --git a/web/htdocs/details/full.mc b/web/htdocs/details/full.mc index 49690a7..a371c49 100644 --- a/web/htdocs/details/full.mc +++ b/web/htdocs/details/full.mc @@ -1,4 +1,4 @@ -%# $Id: full.mc,v 1.6 2006-11-06 11:41:03 mike Exp $ +%# $Id: full.mc,v 1.12 2006-11-06 17:40:04 mike Exp $ <%args> $id @@ -43,22 +43,28 @@ if ($n == 0) { [ "Implementation ID" => "i:status/i:implementationId" ], [ "Implementation Name" => "i:status/i:implementationName" ], [ "Implementation Version" => "i:status/i:implementationVersion" ], - [ "Reliability" => sub { "### 97%" } ], - [ "Services" => sub { "### search, present, delSet, concurrentOperations, namedResultSets" } ], - [ "Bib-1 Use attributes" => sub { "### 4-5, 7-8, 12, 21, 31, 54, 58, 63, 1003-1005, 1009, 1011-1012, 1016, 1031" } ], - [ "Operators" => sub { "### and, or, not" } ], - [ "Record syntaxes" => sub { "### SUTRS, USmarc, Danmarc" } ], - [ "Explain" => sub { "### CategoryList, TargetInfo, DatabaseInfo, RecordSyntaxInfo, AttributeSetInfo, AttributeDetails" } ], + [ "Reliability" => \&calc_reliability, $xc ], + [ "Services" => sub { " +### IRSpy does not yet check for search, present, delSet, +concurrentOperations, namedResultSets, etc. and store the information +is a usable form. This information should probably be harvested from +the Init Response. +" } ], + [ "Bib-1 Use attributes" => \&calc_ap, $xc, "bib-1" ], + [ "Dan-1 Use attributes" => \&calc_ap, $xc, "dan-1" ], + [ "Operators" => \&calc_boolean, $xc ], + [ "Record syntaxes" => \&calc_recsyn, $xc ], + [ "Explain" => \&calc_explain, $xc ], );

<% xml_encode($xc->find("e:databaseInfo/e:title")) %>

<%perl> foreach my $ref (@fields) { - my($caption, $xpath, %attrs) = @$ref; + my($caption, $xpath, @args) = @$ref; my $data; if (ref $xpath && ref($xpath) eq "CODE") { - $data = &$xpath(); + $data = &$xpath(@args); } else { $data = $xc->find($xpath); } @@ -72,3 +78,85 @@ if ($n == 0) { % }
% } +<%perl> + +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) . "%"; +} + +sub calc_ap { + my($xc, $set) = @_; + + my $expr = 'e:indexInfo/e:index/e:map/e:attr[ + @set = "'.$set.'" and @type = "1"]'; + my @bib1nodes = $xc->findnodes($expr); + my $nbib1 = @bib1nodes; + return "[none]" if $nbib1 == 0; + + my $res = ""; + my($first, $last); + @bib1nodes = sort { $a->findvalue(".") <=> $b->findvalue(".") } @bib1nodes; + foreach my $node (@bib1nodes) { + my $ap .= $node->findvalue("."); + if (!defined $first) { + $first = $ap; + } elsif (!defined $last || $last == $ap-1) { + $last = $ap; + } else { + # Got a complete range + $res .= ", " if $res ne ""; + $res .= "$first"; + $res .= "-$last" if defined $last; + $first = $ap; + $last = undef; + } + } + + # Leftovers + if (defined $first) { + $res .= ", " if $res ne ""; + $res .= "$first"; + $res .= "-$last" if defined $last; + } + + return "$nbib1 access points: $res"; +} + +sub calc_boolean { + my($xc) = @_; + + ### Note that we are currently interrogating an IRSpy extension. + # The standard ZeeRex record should be extended with a + # "supports" type for this. + my @nodes = $xc->findnodes('i:status/i:boolean[@ok = "1"]'); + my $res = join(", ", map { $_->findvalue('@operator') } @nodes); + $res = "[none]" if $res eq ""; + return $res; +} + +sub calc_recsyn { + my($xc) = @_; + + my @nodes = $xc->findnodes('e:recordInfo/e:recordSyntax'); + my $res = join(", ", map { $_->findvalue('@name') } @nodes); + $res = "[none]" if $res eq ""; + return $res; +} + +sub calc_explain { + my($xc) = @_; + + my @nodes = $xc->findnodes('i:status/i:explain[@ok = "1"]'); + my $res = join(", ", map { $_->findvalue('@category') } @nodes); + $res = "[none]" if $res eq ""; + return $res; +} + +