X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FRecord.pm;h=e80fe122f393c37f8b641a2bcf31ec89eac1e4c9;hb=9b3b58e46da3867cabcc6a6c54442ea2e6431f9a;hp=8c9282637a4051d8c91320a4dddddc72d66398d1;hpb=ae39673322dfae93082882ab8d98725fe0744655;p=irspy-moved-to-github.git diff --git a/lib/ZOOM/IRSpy/Record.pm b/lib/ZOOM/IRSpy/Record.pm index 8c92826..e80fe12 100644 --- a/lib/ZOOM/IRSpy/Record.pm +++ b/lib/ZOOM/IRSpy/Record.pm @@ -1,14 +1,17 @@ -# $Id: Record.pm,v 1.22 2007-03-01 13:21:05 mike Exp $ +# $Id: Record.pm,v 1.28 2007-12-12 08:49:58 mike Exp $ package ZOOM::IRSpy::Record; +### I don't think there's any reason for this to be separate from +# ZOOM::IRSpy::Connection, now that the correspondence is always 1:1 use 5.008; use strict; use warnings; +use Scalar::Util; use XML::LibXML; use XML::LibXML::XPathContext; -use ZOOM::IRSpy::Utils qw(xml_encode isodate); +use ZOOM::IRSpy::Utils qw(xml_encode isodate irspy_xpath_context); =head1 NAME @@ -34,27 +37,33 @@ sub new { ### Parser should be in the IRSpy object my $parser = new XML::LibXML(); - return bless { + my $this = bless { irspy => $irspy, target => $target, parser => $parser, zeerex => $parser->parse_string($zeerex)->documentElement(), }, $class; + + #Scalar::Util::weaken($this->{irspy}); + #Scalar::Util::weaken($this->{parser}); + + return $this; } sub _empty_zeerex_record { my($target) = @_; - ### Doesn't recognise SRU/SRW URLs - my($host, $port, $db) = ZOOM::IRSpy::_parse_target_string($target); + my($protocol, $host, $port, $db) = + ZOOM::IRSpy::_parse_target_string($target); + my $xprotocol = xml_encode($protocol); my $xhost = xml_encode($host); my $xport = xml_encode($port); my $xdb = xml_encode($db); return <<__EOT__; - + $xhost $xport $xdb @@ -69,8 +78,7 @@ sub append_entry { my($xpath, $frag) = @_; #print STDERR "this=$this, xpath='$xpath', frag='$frag'\n"; - my $root = $this->{zeerex}; # XML::LibXML::Element ISA XML::LibXML::Node - my $xc = XML::LibXML::XPathContext->new($root); + my $xc = $this->xpath_context(); $xc->registerNs(zeerex => "http://explain.z3950.org/dtd/2.0/"); $xc->registerNs(irspy => $ZOOM::IRSpy::Utils::IRSPY_NS); @@ -80,7 +88,7 @@ sub append_entry { # fully general version would work its way through each # component of the XPath, but for now we just treat it as a # single chunk to go inside the top-level node. - $this->_half_decent_appendWellBalancedChunk($root, + $this->_half_decent_appendWellBalancedChunk($xc->getContextNode(), "<$xpath>"); @nodes = $xc->findnodes($xpath); die("still no matches for '$xpath' after creating: can't append") @@ -94,6 +102,12 @@ sub append_entry { $this->_half_decent_appendWellBalancedChunk($nodes[0], $frag); } +sub xpath_context { + my $this = shift(); + + return irspy_xpath_context($this->{zeerex}); +} + sub store_result { my ($this, $type, %info) = @_; my $xml = ", xmlns:irspy="$ZOOM::IRSpy::Utils::IRSPY_NS">,; - $node->appendWellBalancedChunk($frag); + eval { + $node->appendWellBalancedChunk($frag); + }; if ($@) { + print STDERR "died while trying to appendWellBalancedChunk(), probably due to bad XML:\n$frag"; + die $@; + } return; }