1 # $Id: IRSpy.pm,v 1.84 2007-04-30 11:28:37 mike Exp $
9 use Data::Dumper; # For debugging only
13 use XML::LibXML::XPathContext;
15 use Net::Z3950::ZOOM 1.13; # For the ZOOM version-check only
16 use ZOOM::IRSpy::Node;
17 use ZOOM::IRSpy::Connection;
18 use ZOOM::IRSpy::Stats;
19 use ZOOM::IRSpy::Utils qw(cql_target render_record
20 irspy_xpath_context irspy_make_identifier
21 irspy_record2identifier);
24 our $VERSION = '0.02';
25 our $irspy_to_zeerex_xsl = dirname(__FILE__) . '/../../xsl/irspy2zeerex.xsl';
28 # Enumeration for callback functions to return
29 package ZOOM::IRSpy::Status;
30 sub OK { 29 } # No problems, task is still progressing
31 sub TASK_DONE { 18 } # Task is complete, next task should begin
32 sub TEST_GOOD { 8 } # Whole test is complete, and succeeded
33 sub TEST_BAD { 31 } # Whole test is complete, and failed
34 sub TEST_SKIPPED { 12 } # Test couldn't be run
40 ZOOM::IRSpy - Perl extension for discovering and analysing IR services
45 $spy = new ZOOM::IRSpy("target/string/for/irspy/database");
46 $spy->targets(@targets);
47 $spy->initialise("Main");
52 This module exists to implement the IRspy program, which discovers,
53 analyses and monitors IR servers implementing the Z39.50 and SRU/W
54 protocols. It is a successor to the ZSpy program.
59 ZOOM::Log::mask_str("irspy");
60 ZOOM::Log::mask_str("irspy_debug");
61 ZOOM::Log::mask_str("irspy_event");
62 ZOOM::Log::mask_str("irspy_unhandled");
63 ZOOM::Log::mask_str("irspy_test");
64 ZOOM::Log::mask_str("irspy_task");
69 my($dbname, $user, $password, $activeSetSize) = @_;
72 push @options, (user => $user, password => $password)
75 my $conn = new ZOOM::Connection($dbname, 0, @options)
76 or die "$0: can't connection to IRSpy database 'dbname'";
78 my $xslt = new XML::LibXSLT;
80 $xslt->register_function($ZOOM::IRSpy::Utils::IRSPY_NS, 'strcmp',
81 \&ZOOM::IRSpy::Utils::xslt_strcmp);
83 my $libxml = new XML::LibXML;
84 my $xsl_doc = $libxml->parse_file($irspy_to_zeerex_xsl);
85 my $irspy_to_zeerex_style = $xslt->parse_stylesheet($xsl_doc);
89 query => "cql.allRecords=1", # unless overridden
90 targets => undef, # Filled in later if targets() is
91 # called; used only to keep state from
92 # targets() until initialise() is
94 connections => undef, # Filled in by initialise()
95 queue => undef, # Filled in by initialise()
97 irspy_to_zeerex_style => $irspy_to_zeerex_style,
98 test => undef, # Filled in by initialise()
99 tests => undef, # Tree of tests to be executed
100 activeSetSize => defined $activeSetSize ? $activeSetSize : 10,
102 $this->log("irspy", "starting up with database '$dbname'");
118 $this->{query} = $query;
122 # Explicitly nominate a set of targets to check, overriding the
123 # default which is to re-check everything in the database. Each
124 # target already in the database results in the existing record being
125 # updated; each new target causes a new record to be added.
131 $this->log("irspy", "setting explicit list of targets ",
132 join(", ", map { "'$_'" } @targets));
134 foreach my $target (@targets) {
135 my($protocol, $host, $port, $db, $newtarget) =
136 _parse_target_string($target);
137 if ($newtarget ne $target) {
138 $this->log("irspy_debug", "rewriting '$target' to '$newtarget'");
139 $target = $newtarget; # This is written through the ref
141 push @qlist, cql_target($protocol, $host, $port, $db);
144 $this->{targets} = \@targets;
145 $this->{query} = join(" or ", @qlist);
149 # Also used by ZOOM::IRSpy::Record
150 sub _parse_target_string {
153 my($protocol, $host, $port, $db) = ($target =~ /(.*?):(.*?):(.*?)\/(.*)/);
154 if (!defined $host) {
156 ($protocol, $host, $db) = ($target =~ /(.*?):(.*?)\/(.*)/);
157 $target = irspy_make_identifier($protocol, $host, $port, $db);
159 die "$0: invalid target string '$target'"
162 return ($protocol, $host, $port, $db, $target);
166 # Records must be fetched for all records satisfying $this->{query} If
167 # $this->{targets} is already set (i.e. a specific list of targets to
168 # check was specified by a call to targets()), then new, empty records
169 # will be made for any targets that are not already in the database.
175 $tname = "Main" if !defined $tname;
176 $this->{test} = $tname;
177 $this->{tree} = $this->_gather_tests($tname)
178 or die "No tests defined for '$tname'";
179 $this->{tree}->resolve();
180 #$this->{tree}->print(0);
182 my $timeout = "ZOOM::IRSpy::Test::$tname"->timeout();
185 my $targets = $this->{targets};
186 if (defined $targets) {
187 @targets = @$targets;
188 delete $this->{targets};
190 my $rs = $this->{conn}->search(new ZOOM::Query::CQL($this->{query}));
191 $this->log("irspy", "'", $this->{query}, "' found ",
192 $rs->size(), " target records");
193 delete $this->{query};
195 foreach my $i (1 .. $rs->size()) {
196 push @targets, render_record($rs, $i-1, "id");
200 my $n = $this->{activeSetSize};
201 $n = @targets if $n == 0 || $n > @targets;
204 foreach my $i (1..$n) {
205 push @connections, create ZOOM::IRSpy::Connection($this,
208 timeout => $timeout);
211 $this->{connections} = \@connections;
212 $this->{queue} = \@targets;
216 sub _irspy_to_zeerex {
218 my($conn, $save_xml) = @_;
219 my $irspy_doc = $conn->record()->{zeerex}->ownerDocument;
222 unlink('/tmp/irspy_orig.xml');
223 open FH, '>/tmp/irspy_orig.xml'
224 or die "can't write irspy_orig.xml: $!";
225 print FH $irspy_doc->toString();
229 my $result = $this->{irspy_to_zeerex_style}->transform($irspy_doc, %params);
231 unlink('/tmp/irspy_transformed.xml');
232 open FH, '>/tmp/irspy_transformed.xml'
233 or die "can't write irspy_transformed.xml: $!";
234 print FH $result->toString();
238 return $result->documentElement();
242 sub _rewrite_record {
246 $conn->log("irspy", "rewriting XML record");
247 my $rec = $this->_irspy_to_zeerex($conn, $ENV{IRSPY_SAVE_XML});
249 # Since IRSpy can run for a long time between writes back to the
250 # database, it's quite possible for the server to have closed the
251 # connection as idle. So re-establish it if necessary.
252 $this->{conn}->connect($conn->option("host"));
254 _really_rewrite_record($this->{conn}, $rec);
255 $conn->log("irspy", "rewrote XML record");
259 sub _really_rewrite_record {
260 my($conn, $rec, $oldid) = @_;
262 my $p = $conn->package();
263 $p->option(action => "specialUpdate");
264 my $xml = $rec->toString();
265 $p->option(record => $xml);
269 # This is the expression in the ID-making stylesheet
270 # ../../zebra/zeerex2id.xsl
271 my $xc = irspy_xpath_context($rec);
272 my $id = irspy_record2identifier($xc);
273 if (defined $oldid && $id ne $oldid) {
274 warn "IDs differ (old='$oldid' new='$id')";
276 ### Should use same mechanism as delete.mc
277 my $p = $conn->package();
278 $p->option(action => "recordDelete");
279 $p->option(recordIdOpaque => $oldid);
280 $p->option(record => "<dummy/>"); # Work around Zebra bug
285 $p = $conn->package();
292 print "Updated $conn with xml=<br/>\n<pre>$xml</pre>\n";
297 # The approach: gather declarative information about test hierarchy,
298 # then go into a loop. In the loop, we ensure that each connection is
299 # running a test, and within that test a task, until its list of tests
300 # is exhausted. No individual test ever calls wait(): tests just queue
301 # up tasks and return immediately. When the tasks are run (one at a
302 # time on each connection) they generate events, and it is these that
303 # are harvested by ZOOM::event(). Since each connection knows what
304 # task it is running, it can invoke the appropriate callbacks.
305 # Callbacks return a ZOOM::IRSpy::Status value which tells the main
306 # loop how to continue.
309 # While a connection is running a task, its current_task()
310 # points at the task structure. When it finishes its task,
311 # next_task() is pointed at the next task to execute (if there
312 # is one), and its current_task() is set to zero. When the next
313 # task is executed, the connection's next_task() is set to zero
314 # and its current_task() pointed to the task structure.
315 # current_task() and next_task() are both zero only when there
316 # are no more queued tasks, which is when a new test is
319 # Each connection's current test is stored in its
320 # "current_test_address" option. The next test to execute is
321 # calculated by walking the declarative tree of tests. This
322 # option begins empty; the "next test" after this is of course
328 my $topname = $this->{tree}->name();
329 my $timeout = "ZOOM::IRSpy::Test::$topname"->timeout();
330 $this->log("irspy", "beginnning with test '$topname' (timeout $timeout)");
333 my @conn = @{ $this->{connections} };
336 ROUND_AND_ROUND_WE_GO:
338 my @copy_conn = @conn; # avoid alias problems after splice()
339 my $nconn = scalar(@copy_conn);
340 foreach my $i0 (0 .. $#copy_conn) {
341 my $conn = $copy_conn[$i0];
342 #print "connection $i0 of $nconn/", scalar(@conn), " is $conn\n";
343 next if !defined $conn;
344 if (!$conn->current_task()) {
345 if (!$conn->next_task()) {
346 # Out of tasks: we need a new test
348 my $address = $conn->option("current_test_address");
350 if (!defined $address) {
353 $conn->log("irspy_test",
354 "checking for next test after '$address'");
355 $nextaddr = $this->_next_test($address);
357 if (!defined $nextaddr) {
358 $conn->log("irspy", "has no more tests: removing");
359 $this->_rewrite_record($conn);
360 $conn->option(rewrote_record => 1);
361 if (@{ $this->{queue} } == 0) {
362 # Do not destroy: we need this for later sanity checks
363 splice @conn, $i0, 1;
367 ZOOM::IRSpy::Connection($this,
368 shift @{ $this->{queue} }, async => 1,
369 timeout => $timeout);
370 $conn[$i0]->option(current_test_address => "");
371 $conn[$i0]->log("irspy", "entering active pool - ",
372 scalar(@{ $this->{queue} }),
373 " targets remain in queue");
378 my $node = $this->{tree}->select($nextaddr)
379 or die "invalid nextaddr '$nextaddr'";
380 $conn->option(current_test_address => $nextaddr);
381 my $tname = $node->name();
382 $conn->log("irspy_test",
383 "starting test '$nextaddr' = $tname");
384 my $tasks = $conn->tasks();
385 my $oldcount = @$tasks;
386 "ZOOM::IRSpy::Test::$tname"->start($conn);
387 $tasks = $conn->tasks();
388 if (@$tasks > $oldcount) {
389 # Prepare to start the first of the newly added tasks
390 $conn->next_task($tasks->[$oldcount]);
392 $conn->log("irspy_task",
393 "no tasks added by new test $tname");
398 my $task = $conn->next_task();
399 die "no next task queued for $conn" if !defined $task;
400 $conn->log("irspy_task", "preparing task $task");
402 $conn->current_task($task);
408 my $i0 = ZOOM::event(\@conn);
409 $this->log("irspy_event",
410 "ZOOM_event(", scalar(@conn), " connections) = $i0");
413 0 => "no events remain",
414 -1 => "ZOOM::event() argument not a reference",
415 -2 => "ZOOM::event() reference not an array",
416 -3 => "no connections remain",
417 -4 => "too many connections for ZOOM::event()",
419 my $message = $messages{$i0} || "ZOOM::event() returned $i0";
420 $this->log("irspy", $message);
424 my $conn = $conn[$i0-1];
425 my $ev = $conn->last_event();
426 my $evstr = ZOOM::event_str($ev);
427 $conn->log("irspy_event", "event $ev ($evstr)");
428 goto NEXT_EVENT if $ev != ZOOM::Event::ZEND;
430 my $task = $conn->current_task();
431 die "$conn has no current task for event $ev ($evstr)" if !$task;
434 eval { $conn->check() };
435 if ($@ && ref $@ && $@->isa("ZOOM::Exception")) {
436 my $sub = $task->{cb}->{exception};
437 die $@ if !defined $sub;
438 $res = &$sub($conn, $task, $task->udata(), $@);
440 die "Unexpected non-ZOOM exception: " . ref($@) . " ($@)";
442 my $sub = $task->{cb}->{$ev};
444 $conn->log("irspy_unhandled", "event $ev ($evstr)");
448 $res = &$sub($conn, $task, $task->udata(), $ev);
451 if ($res == ZOOM::IRSpy::Status::OK) {
452 # Nothing to do -- life continues
454 } elsif ($res == ZOOM::IRSpy::Status::TASK_DONE) {
455 my $task = $conn->current_task();
456 die "no task for TASK_DONE on $conn" if !$task;
457 die "next task already defined for $conn" if $conn->next_task();
458 $conn->log("irspy_task", "completed task $task");
459 $conn->next_task($task->{next});
460 $conn->current_task(0);
462 } elsif ($res == ZOOM::IRSpy::Status::TEST_GOOD ||
463 $res == ZOOM::IRSpy::Status::TEST_BAD) {
464 my $x = ($res == ZOOM::IRSpy::Status::TEST_GOOD) ? "good" : "bad";
465 $conn->log("irspy_task", "test ended during task $task ($x)");
466 $conn->log("irspy_test", "test completed ($x)");
467 $conn->current_task(0);
469 if ($res == ZOOM::IRSpy::Status::TEST_BAD) {
470 my $address = $conn->option('current_test_address');
471 $conn->log("irspy", "top-level test failed!")
473 my $node = $this->{tree}->select($address);
475 while (defined $node->next() &&
476 length($node->next()->address()) >= length($address)) {
477 $conn->log("irspy_debug", "skipping from '",
478 $node->address(), "' to '",
479 $node->next()->address(), "'");
480 $node = $node->next();
484 $conn->option(current_test_address => $node->address());
485 $conn->log("irspy_test", "skipped $skipcount tests");
486 $nskipped += $skipcount;
489 } elsif ($res == ZOOM::IRSpy::Status::TEST_SKIPPED) {
490 $conn->log("irspy_test", "test skipped during task $task");
491 $conn->current_task(0);
496 die "unknown callback return-value '$res'";
500 $this->log("irspy", "exiting main loop");
502 # Sanity checks: none of the following should ever happen
504 $this->log("irspy", "performing end-of-run sanity-checks");
505 foreach my $conn (@conn) {
506 my $test = $conn->option("current_test_address");
507 my $next = $this->_next_test($test);
510 "$conn (in test '$test') has queued test '$next'");
513 if (my $task = $conn->current_task()) {
514 $this->log("irspy", "$conn still has an active task $task");
517 if (my $task = $conn->next_task()) {
518 $this->log("irspy", "$conn still has a queued task $task");
521 if (!$conn->is_idle()) {
523 "$conn still has ZOOM-C level tasks queued: see below");
526 my $ev = $conn->peek_event();
527 if ($ev != 0 && $ev != ZOOM::Event::ZEND) {
528 my $evstr = ZOOM::event_str($ev);
529 $this->log("irspy", "$conn has event $ev ($evstr) waiting");
532 if (!$conn->option("rewrote_record")) {
533 $this->log("irspy", "$conn did not rewrite its ZeeRex record");
538 # This really shouldn't be necessary, and in practice it rarely
539 # helps, but it's belt and braces. (For now, we don't do this
540 # hence the zero in the $nruns check).
543 $this->log("irspy", "back into main loop, ${nruns}th time");
544 goto ROUND_AND_ROUND_WE_GO;
546 $this->log("irspy", "bailing after $nruns main-loop runs");
550 # This shouldn't happen emit anything either:
551 while ((my $i1 = ZOOM::event(\@conn)) > 0) {
552 my $conn = $conn[$i1-1];
553 my $ev = $conn->last_event();
554 my $evstr = ZOOM::event_str($ev);
556 "$conn still has ZOOM-C level task queued: $ev ($evstr)")
557 if $ev != ZOOM::Event::ZEND;
564 # Exactly equivalent to ZOOM::event() except that it is tolerant to
565 # undefined values in the array being passed in.
567 sub __UNUSED_tolerant_ZOOM_event {
571 foreach my $i (0 .. @$connref-1) {
572 my $conn = $connref->[$i];
579 my $res = ZOOM::event(\@conn);
580 return $res if $res <= 0;
581 my $res2 = $map[$res-1] + 1;
582 print STDERR "*** tolerant_ZOOM_event() returns $res->$res2\n";
589 my($tname, @ancestors) = @_;
591 die("$0: test-hierarchy loop detected: " .
592 join(" -> ", @ancestors, $tname))
593 if grep { $_ eq $tname } @ancestors;
595 my $slashSeperatedTname = $tname;
596 $slashSeperatedTname =~ s/::/\//g;
597 my $fullName = "ZOOM/IRSpy/Test/$slashSeperatedTname.pm";
602 $this->log("irspy", "couldn't require '$fullName': $@");
603 $this->log("warn", "can't load test '$tname': skipping",
604 $@ =~ /^Can.t locate/ ? () : " ($@)");
608 $this->log("irspy", "adding test '$tname'");
610 foreach my $subtname ("ZOOM::IRSpy::Test::$tname"->subtests($this)) {
611 my $subtest = $this->_gather_tests($subtname, @ancestors, $tname);
612 push @subnodes, $subtest if defined $subtest;
615 return new ZOOM::IRSpy::Node($tname, @subnodes);
619 # These next three should arguably be Node methods
622 my($address, $omit_child) = @_;
626 my $maybe = $address eq "" ? "0" : "$address:0";
627 return $maybe if $this->{tree}->select($maybe);
630 # The top-level node has no successor or parent
631 return undef if $address eq "";
633 # Try next sibling child
634 my @components = split /:/, $address;
635 my $last = pop @components;
636 my $maybe = join(":", @components, $last+1);
637 return $maybe if $this->{tree}->select($maybe);
639 # This node is exhausted: try the parent's successor
640 return $this->_next_test(join(":", @components), 1)
644 sub _last_sibling_test {
649 if !defined $this->_next_sibling_test($address);
653 my $maybe = $this->_next_sibling_test($address);
654 last if !defined $maybe;
657 $this->log("irspy", "skipping $nskipped tests to '$address'");
660 return ($address, $nskipped);
664 sub _next_sibling_test {
668 my @components = split /:/, $address;
669 my $last = pop @components;
670 my $maybe = join(":", @components, $last+1);
671 return $maybe if $this->{tree}->select($maybe);
681 ZOOM::IRSpy::Maintenance.
683 The ZOOM-Perl module,
684 http://search.cpan.org/~mirk/Net-Z3950-ZOOM/
687 http://indexdata.com/zebra/
691 Mike Taylor, E<lt>mike@indexdata.comE<gt>
693 =head1 COPYRIGHT AND LICENSE
695 Copyright (C) 2006 by Index Data ApS.
697 This library is free software; you can redistribute it and/or modify
698 it under the same terms as Perl itself, either Perl version 5.8.7 or,
699 at your option, any later version of Perl 5 you may have available.