From: Mike Taylor Date: Thu, 12 Oct 2006 14:40:24 +0000 (+0000) Subject: Pass access-point as $udata into irspy_connect() X-Git-Tag: CPAN-v1.02~54^2~924 X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=commitdiff_plain;h=a97dd21a5ab11f0bee50160a5354423d35841e1d;hp=86374b0502e33990e2ef9fd929395b435d084b6e Pass access-point as $udata into irspy_connect() Accept it in callbacks. --- diff --git a/lib/ZOOM/IRSpy/Test/Search/Bib1.pm b/lib/ZOOM/IRSpy/Test/Search/Bib1.pm index 56a43fb..bbeaeb3 100644 --- a/lib/ZOOM/IRSpy/Test/Search/Bib1.pm +++ b/lib/ZOOM/IRSpy/Test/Search/Bib1.pm @@ -1,4 +1,4 @@ -# $Id: Bib1.pm,v 1.6 2006-10-11 16:47:23 mike Exp $ +# $Id: Bib1.pm,v 1.7 2006-10-12 14:40:24 mike Exp $ # See the "Main" test package for documentation @@ -23,7 +23,7 @@ sub start { 1016, # any ); foreach my $attr (@attrs) { - $conn->irspy_search_pqf("\@attr 1=$attr mineral", + $conn->irspy_search_pqf("\@attr 1=$attr mineral", $attr, ZOOM::Event::RECV_SEARCH, \&found, exception => \&error); } @@ -31,13 +31,14 @@ sub start { sub found { - my($conn, $task, $event) = @_; + my($conn, $task, $attr, $event) = @_; my $n = $task->{rs}->size(); - $conn->log("irspy_test", "search found $n record", $n==1 ? "" : "s"); + $conn->log("irspy_test", "search on access-point $attr found $n record", + $n==1 ? "" : "s"); ### Need to get the BIB-1 attribute into this callback $conn->record()->append_entry("irspy:status", - "" . + "" . isodate(time()) . ""); @@ -46,11 +47,12 @@ sub found { sub error { - my($conn, $task, $exception) = @_; + my($conn, $task, $attr, $exception) = @_; - $conn->log("irspy_test", "error: $exception"); + $conn->log("irspy_test", "search on access-point $attr had error: ", + $exception); $conn->record()->append_entry("irspy:status", - "" . + "" . isodate(time()) . ""); return ZOOM::IRSpy::Status::TASK_DONE;