Rename Net::Z3950::IRSpy to ZOOM::IRSpy
[irspy-moved-to-github.git] / test-pod.pl
index 3eb8535..e37a98d 100644 (file)
@@ -1,24 +1,26 @@
 #!/usr/bin/perl -w
 
 #!/usr/bin/perl -w
 
-# $Id: test-pod.pl,v 1.3 2006-05-09 16:21:37 mike Exp $
+# $Id: test-pod.pl,v 1.7 2006-05-10 15:55:19 mike Exp $
 #
 # Run like this:
 #
 # Run like this:
-#      ZOOM_RECORD_NO_FORCE_SYNC=1 YAZ_LOG=pod perl -I lib test-pod.pl
-# (at least until the default sync. behaviour of ZOOM-C changes.)
+#      YAZ_LOG=pod perl -I lib test-pod.pl "bagel.indexdata.com/gils" "bagel.indexdata.com/marc"
 
 use strict;
 use warnings;
 
 use ZOOM::Pod;
 
 
 use strict;
 use warnings;
 
 use ZOOM::Pod;
 
-my $pod = new ZOOM::Pod("bagel.indexdata.com/gils",
-                       "bagel.indexdata.com/marc",
-                       #"z3950.loc.gov:7090/Voyager",
-                       #"localhost:9999",
-                       );
+if (@ARGV == 0) {
+    printf STDERR "Usage: $0 <target1> [<target2> ...]\n";
+    exit 1;
+}
+
+ZOOM::Log::mask_str("appl");
+my $pod = new ZOOM::Pod(@ARGV);
 $pod->option(elementSetName => "b");
 $pod->callback(ZOOM::Event::RECV_SEARCH, \&completed_search);
 $pod->callback(ZOOM::Event::RECV_RECORD, \&got_record);
 $pod->option(elementSetName => "b");
 $pod->callback(ZOOM::Event::RECV_SEARCH, \&completed_search);
 $pod->callback(ZOOM::Event::RECV_RECORD, \&got_record);
+#$pod->callback(exception => \&exception_thrown);
 $pod->search_pqf("the");
 my $err = $pod->wait();
 die "$pod->wait() failed with error $err" if $err;
 $pod->search_pqf("the");
 my $err = $pod->wait();
 die "$pod->wait() failed with error $err" if $err;
@@ -28,7 +30,7 @@ sub completed_search {
     print $conn->option("host"), ": found ", $rs->size(), " records\n";
     $state->{next_to_fetch} = 0;
     $state->{next_to_show} = 0;
     print $conn->option("host"), ": found ", $rs->size(), " records\n";
     $state->{next_to_fetch} = 0;
     $state->{next_to_show} = 0;
-    request_record($conn, $rs, $state);
+    request_records($conn, $rs, $state, 2);
     return 0;
 }
 
     return 0;
 }
 
@@ -49,17 +51,25 @@ sub got_record {
     my $i = $state->{next_to_show}++;
     my $rec = $rs->record($i);
     print $conn->option("host"), ": record $i is ", render_record($rec), "\n";
     my $i = $state->{next_to_show}++;
     my $rec = $rs->record($i);
     print $conn->option("host"), ": record $i is ", render_record($rec), "\n";
-    request_record($conn, $rs, $state);
+    request_records($conn, $rs, $state, 3)
+       if $i == $state->{next_to_fetch}-1;
+
     return 0;
 }
 
     return 0;
 }
 
-sub request_record {
-    my($conn, $rs, $state) = @_;
+sub exception_thrown {
+    my($conn, $state, $rs, $exception) = @_;
+    print "Uh-oh!  $exception\n";
+    return 0;
+}
 
 
-    my $i = $state->{next_to_fetch}++;
-    my $rec = $rs->record($i);
-    print($conn->option("host"), ": pre-fetch: record $i is ",
-         render_record($rec), "\n");
+sub request_records {
+    my($conn, $rs, $state, $count) = @_;
+
+    my $i = $state->{next_to_fetch};
+    ZOOM::Log::log("appl", "requesting $count records from $i");
+    $rs->records($i, $count, 0);
+    $state->{next_to_fetch} += $count;
 }
 
 sub render_record {
 }
 
 sub render_record {