From: Mike Taylor Date: Mon, 30 Apr 2007 11:27:39 +0000 (+0000) Subject: irspy_identifier2target() properly implemented so that it now handles X-Git-Tag: CPAN-v1.02~458 X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=commitdiff_plain;h=353918306e570f721383346cc1c76bf6802a8426 irspy_identifier2target() properly implemented so that it now handles SRU and SRW as well as Z39.50 --- diff --git a/lib/ZOOM/IRSpy/Utils.pm b/lib/ZOOM/IRSpy/Utils.pm index e24fd6c..547131a 100644 --- a/lib/ZOOM/IRSpy/Utils.pm +++ b/lib/ZOOM/IRSpy/Utils.pm @@ -1,4 +1,4 @@ -# $Id: Utils.pm,v 1.27 2007-04-27 14:04:40 mike Exp $ +# $Id: Utils.pm,v 1.28 2007-04-30 11:27:39 mike Exp $ package ZOOM::IRSpy::Utils; @@ -181,11 +181,24 @@ sub irspy_record2identifier { # a null transform; now we have to be a bit cleverer. # sub irspy_identifier2target { + my $res = _irspy_identifier2target(@_); + carp "converted ID '@_' to target '$res'"; + return $res; +} + +sub _irspy_identifier2target { my($id) = @_; my($protocol, $target) = ($id =~ /(.*?):(.*)/); - print STDERR "protocol='$protocol', target='$target'\n"; - ### This assumes everything is Z39.50 + if (uc($protocol) eq "Z39.50") { + return "tcp:$target"; + } elsif (uc($protocol) eq "SRU") { + return "sru=get,http:$target"; + } elsif (uc($protocol) eq "SRW") { + return "sru=srw,http:$target"; + } + + warn "unrecognised protocol '$protocol' in ID $id"; return $target; }