X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FTask%2FRetrieve.pm;h=15877bc381a912b529ca9aed904f4875486054d5;hp=e0ed1f436cc5abda730ef3048ee30ff2dcfc370f;hb=688be0c8070035d12dec697137977da341bd132f;hpb=226355bc0f1feeffbc86dc12ac62952215da6b8b diff --git a/lib/ZOOM/IRSpy/Task/Retrieve.pm b/lib/ZOOM/IRSpy/Task/Retrieve.pm index e0ed1f4..15877bc 100644 --- a/lib/ZOOM/IRSpy/Task/Retrieve.pm +++ b/lib/ZOOM/IRSpy/Task/Retrieve.pm @@ -1,4 +1,3 @@ -# $Id: Retrieve.pm,v 1.2 2006-10-25 17:16:14 mike Exp $ package ZOOM::IRSpy::Task::Retrieve; @@ -31,6 +30,9 @@ sub new { my $this = $class->SUPER::new(@_); $this->{rs} = $rs; $this->{index0} = $index0; + # Save initial record-syntax for render()'s benefit + $this->{syntax} = $this->{options}->{preferredRecordSyntax}; + return $this; } @@ -40,18 +42,23 @@ sub run { $this->set_options(); my $conn = $this->conn(); + $conn->connect($conn->option("host")); + my $rs = $this->{rs}; my $index0 = $this->{index0}; $this->irspy()->log("irspy_task", $conn->option("host"), - " retrieving record $index0 from $rs"); + " retrieving record $index0 from $rs, rs='", + $rs->option("preferredRecordSyntax"), "'"); $rs->records($index0, 1, 0); # requests record + warn "no ZOOM-C level events queued by $this" + if $conn->is_idle(); $this->set_options(); } sub render { my $this = shift(); - my $syntax = $this->{options}->{preferredRecordSyntax}; + my $syntax = $this->{syntax}; $syntax = defined $syntax ? "'$syntax'" : "undef"; return ref($this) . "(" . $this->{index0} . ", $syntax)"; }