X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=lib%2FZOOM%2FIRSpy%2FUtils.pm;h=5db0e331c7e4dbad71fde3c70649f83b6084e908;hb=e6bfba4ec8171872285ef6a8d077700cd871b6da;hp=cbdb5c8a4ab4edc229b4fc91148b20433a59c44e;hpb=e9810bfbcdbfadbeb838cbe71a6fa52375232d6a;p=irspy-moved-to-github.git diff --git a/lib/ZOOM/IRSpy/Utils.pm b/lib/ZOOM/IRSpy/Utils.pm index cbdb5c8..5db0e33 100644 --- a/lib/ZOOM/IRSpy/Utils.pm +++ b/lib/ZOOM/IRSpy/Utils.pm @@ -1,4 +1,4 @@ -# $Id: Utils.pm,v 1.24 2007-03-01 13:59:45 mike Exp $ +# $Id: Utils.pm,v 1.26 2007-03-19 18:51:03 mike Exp $ package ZOOM::IRSpy::Utils; @@ -13,7 +13,8 @@ our @EXPORT_OK = qw(isodate cql_target irspy_xpath_context modify_xml_document - bib1_access_point); + bib1_access_point + render_record); use XML::LibXML; use XML::LibXML::XPathContext; @@ -72,11 +73,13 @@ sub cql_quote { } -# Makes a CQL query that finds a specified target +# Makes a CQL query that finds a specified target. Arguments may be +# either an ID alone, or a (host, port, db) triple. sub cql_target { my($host, $port, $db) = @_; - return "rec.id=" . cql_quote("$host:$port/$db"); + $host .= ":$port/$db" if defined $port; + return "rec.id=" . cql_quote($host); } @@ -103,10 +106,19 @@ sub irspy_namespace { sub irspy_xpath_context { my($record) = @_; - my $xml = ref $record ? $record->render() : $record; - my $parser = new XML::LibXML(); - my $doc = $parser->parse_string($xml); - my $root = $doc->getDocumentElement(); + if (ref $record && $record->isa("ZOOM::Record")) { + $record = $record->render(); + } + + my $root; + if (ref $record) { + $root = $record; + } else { + my $parser = new XML::LibXML(); + my $doc = $parser->parse_string($record); + $root = $doc->getDocumentElement(); + } + my $xc = XML::LibXML::XPathContext->new($root); foreach my $prefix (keys %_namespaces) { $xc->registerNs($prefix, $_namespaces{$prefix}); @@ -590,4 +602,18 @@ sub bib1_access_point { } +sub render_record { + my($rs, $which, $elementSetName) = @_; + + # There is a slight race condition here on the element-set name, + # but it shouldn't be a problem as this is (currently) only called + # from parts of the program that run single-threaded. + my $old = $rs->option(elementSetName => $elementSetName); + my $rec = $rs->record($which); + $rs->option(elementSetName => $old); + + return $rec->render(); +} + + 1;