Complete scan documentation.
[ZOOM-Perl-moved-to-github.git] / lib / ZOOM.pod
1 # $Id: ZOOM.pod,v 1.15 2005-12-13 12:32:15 mike Exp $
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 ZOOM - Perl extension implementing the ZOOM API for Information Retrieval
9
10 =head1 SYNOPSIS
11
12  use ZOOM;
13  eval {
14      $conn = new ZOOM::Connection($host, $port)
15      $conn->option(preferredRecordSyntax => "usmarc");
16      $rs = $conn->search_pqf('@attr 1=4 dinosaur');
17      $n = $rs->size();
18      print $rs->record(0)->render();
19  };
20  if ($@) {
21      print "Error ", $@->code(), ": ", $@->message(), "\n";
22  }
23
24 =head1 DESCRIPTION
25
26 This module provides a nice, Perlish implementation of the ZOOM
27 Abstract API described and documented at http://zoom.z3950.org/api/
28
29 the ZOOM module is implemented as a set of thin classes on top of the
30 non-OO functions provided by this distribution's C<Net::Z3950::ZOOM>
31 module, which in 
32 turn is a thin layer on top of the ZOOM-C code supplied as part of
33 Index Data's YAZ Toolkit.  Because ZOOM-C is also the underlying code
34 that implements ZOOM bindings in C++, Visual Basic, Scheme, Ruby, .NET
35 (including C#) and other languages, this Perl module works compatibly
36 with those other implementations.  (Of course, the point of a public
37 API such as ZOOM is that all implementations should be compatible
38 anyway; but knowing that the same code is running is reassuring.)
39
40 The ZOOM module provides two enumerations (C<ZOOM::Error> and
41 C<ZOOM::Event>), a single utility function C<diag_str()> in the C<ZOOM>
42 package itself, and eight classes:
43 C<ZOOM::Exception>,
44 C<ZOOM::Options>,
45 C<ZOOM::Connection>,
46 C<ZOOM::Query>,
47 C<ZOOM::ResultSet>,
48 C<ZOOM::Record>,
49 C<ZOOM::ScanSet>
50 and
51 C<ZOOM::Package>.
52 Of these, the Query class is abstract, and has two concrete
53 subclasses:
54 C<ZOOM::Query::CQL>
55 and
56 C<ZOOM::Query::PQF>.
57 Many useful ZOOM applications can be built using only the Connection,
58 ResultSet, Record and Exception classes, as in the example
59 code-snippet above.
60
61 A typical application will begin by creating an Connection object,
62 then using that to execute searches that yield ResultSet objects, then
63 fetching records from the result-sets to yield Record objects.  If an
64 error occurs, an Exception object is thrown and can be dealt with.
65
66 More sophisticated applications might also browse the server's indexes
67 to create a ScanSet, from which indexed terms may be retrieved; others
68 might send ``Extended Services'' Packages to the server, to achieve
69 non-standard tasks such as database creation and record update.
70 Searching using a query syntax other than PQF can be done using an
71 query object of one of the Query subclasses.  Finally, sets of options
72 may be manipulated independently of the objects they are associated
73 with using an Options object.
74
75 In general, method calls throw an exception if anything goes wrong, so
76 you don't need to test for success after each call.  See the section
77 below on the Exception class for details.
78
79 =head1 UTILITY FUNCTION
80
81 =head2 ZOOM::diag_str()
82
83  $msg = ZOOM::diag_str(ZOOM::Error::INVALID_QUERY);
84
85 Returns a human-readable English-language string corresponding to the
86 error code that is its own parameter.  This works for any error-code
87 returned from
88 C<ZOOM::Exception::code()>,
89 C<ZOOM::Connection::error_x()>
90 or
91 C<ZOOM::Connection::errcode()>,
92 irrespective of whether it is a member of the C<ZOOM::Error>
93 enumeration or drawn from the BIB-1 diagnostic set.
94
95 =head1 CLASSES
96
97 The eight ZOOM classes are described here in ``sensible order'':
98 first, the four commonly used classes, in the he order that they will
99 tend to be used in most programs (Connection, ResultSet, Record,
100 Exception); then the four more esoteric classes in descending order of
101 how often they are needed.
102
103 With the exception of the Options class, which is an extension to the
104 ZOOM model, the introduction to each class includes a link to the
105 relevant section of the ZOOM Abstract API.
106
107 =head2 ZOOM::Connection
108
109  $conn = new ZOOM::Connection("indexdata.dk:210/gils");
110  print("server is '", $conn->option("serverImplementationName"), "'\n");
111  $conn->option(preferredRecordSyntax => "usmarc");
112  $rs = $conn->search_pqf('@attr 1=4 mineral');
113  $ss = $conn->scan('@attr 1=1003 a');
114  if ($conn->errcode() != 0) {
115     die("somthing went wrong: " . $conn->errmsg())
116  }
117  $conn->destroy()
118
119 This class represents a connection to an information retrieval server,
120 using an IR protocol such as ANSI/NISO Z39.50, SRW (the
121 Search/Retrieve Webservice), SRU (the Search/Retrieve URL) or
122 OpenSearch.  Not all of these protocols require a low-level connection
123 to be maintained, but the Connection object nevertheless provides a
124 location for the necessary cache of configuration and state
125 information, as well as a uniform API to the connection-oriented
126 facilities (searching, index browsing, etc.), provided by these
127 protocols.
128
129 See the description of the C<Connection> class in the ZOOM Abstract
130 API at
131 http://zoom.z3950.org/api/zoom-current.html#3.2
132
133 =head3 Methods
134
135 =head4 new()
136
137  $conn = new ZOOM::Connection("indexdata.dk", 210);
138  $conn = new ZOOM::Connection("indexdata.dk:210/gils");
139  $conn = new ZOOM::Connection("tcp:indexdata.dk:210/gils");
140  $conn = new ZOOM::Connection("http:indexdata.dk:210/gils");
141
142 Creates a new Connection object, and immediately connects it to the
143 specified server.  If you want to make a new Connection object but
144 delay forging the connection, use the C<create()> and C<connect()>
145 methods instead.
146
147 This constructor can be called with two arguments or a single
148 argument.  In the former case, the arguments are the name and port
149 number of the Z39.50 server to connect to; in the latter case, the
150 single argument is a YAZ service-specifier string of the form
151
152 =over 4
153
154 =item
155
156 [I<scheme>:]I<host>[:I<port>][/I<databaseName>]
157
158 =back
159
160 In which the I<host> and I<port> parts are as in the two-argument
161 form, the I<databaseName> if provided specifies the name of the
162 database to be used in subsequent searches on this connection, and the
163 optional I<scheme> (default C<tcp>) indicates what protocol should be
164 used.  At present, the following schemes are supported:
165
166 =over 4
167
168 =item tcp
169
170 Z39.50 connection.
171
172 =item ssl
173
174 Z39.50 connection encrypted using SSL (Secure Sockets Layer).  Not
175 many servers support this, but Index Data's Zebra is one that does.
176
177 =item unix
178
179 Z39.50 connection on a Unix-domain (local) socket, in which case the
180 I<hostname> portion of the string is instead used as a filename in the
181 local filesystem.
182
183 =item http
184
185 SRW connection using SOAP over HTTP.
186
187 =back
188
189 Support for SRU will follow in the fullness of time.
190
191 If an error occurs, an exception is thrown.  This may indicate a
192 networking problem (e.g. the host is not found or unreachable), or a
193 protocol-level problem (e.g. a Z39.50 server rejected the Init
194 request).
195
196 =head4 create() / connect()
197
198  $options = new ZOOM::Options();
199  $options->option(implementationName => "my client");
200  $conn = create ZOOM::Connection($options)
201  $conn->connect($host, 0);
202
203 The usual Connection constructor, C<new()> brings a new object into
204 existence and forges the connection to the server all in one
205 operation, which is often what you want.  For applications that need
206 more control, however, these two method separate the two steps,
207 allowing additional steps in between such as the setting of options.
208
209 C<create()> creates and returns a new Connection object, which is
210 I<not> connected to any server.  It may be passed an options block, of
211 type C<ZOOM::Options> (see below), into which options may be set
212 before or after the creation of the Connection.  The connection to the
213 server may then be forged by the C<connect()> method, the arguments of
214 which are the same as those of the C<new()> constructor.
215
216 =head4 error_x() / errcode() / errmsg() / addinfo() / diagset()
217
218  ($errcode, $errmsg, $addinfo, $diagset) = $conn->error_x();
219  $errcode = $conn->errcode();
220  $errmsg = $conn->errmsg();
221  $addinfo = $conn->addinfo();
222  $diagset = $conn->diagset();
223
224 These methods may be used to obtain information about the last error
225 to have occurred on a connection - although typically they will not
226 been used, as the same information is available through the
227 C<ZOOM::Exception> that is thrown when the error occurs.  The
228 C<errcode()>,
229 C<errmsg()>,
230 C<addinfo()>
231 and
232 C<diagset()>
233 methods each return one element of the diagnostic, and
234 C<error_x()>
235 returns all four at once.
236
237 See the C<ZOOM::Exception> for the interpretation of these elements.
238
239 =head4 option() / option_binary()
240
241  print("server is '", $conn->option("serverImplementationName"), "'\n");
242  $conn->option(preferredRecordSyntax => "usmarc");
243  $conn->option_binary(iconBlob => "foo\0bar");
244  die if length($conn->option_binary("iconBlob") != 7);
245
246 Objects of the Connection, ResultSet, ScanSet and Package classes
247 carry with them a set of named options which affect their behaviour in
248 certain ways.  See the ZOOM-C options documentation for details:
249
250 Connection options are listed at
251 http://indexdata.com/yaz/doc/zoom.tkl#zoom.connections
252
253 These options are set and fetched using the C<option()> method, which
254 may be called with either one or two arguments.  In the two-argument
255 form, the option named by the first argument is set to the value of
256 the second argument, and its old value is returned.  In the
257 one-argument form, the value of the specified option is returned.
258
259 For historical reasons, option values are not binary-clean, so that a
260 value containing a NUL byte will be returned in truncated form.  The
261 C<option_binary()> method behaves identically to C<option()> except
262 that it is binary-clean, so that values containing NUL bytes are set
263 and returned correctly.
264
265 =head4 search() / search_pqf()
266
267  $rs = $conn->search(new ZOOM::Query::CQL('title=dinosaur'));
268  # The next two lines are equivalent
269  $rs = $conn->search(new ZOOM::Query::PQF('@attr 1=4 dinosaur'));
270  $rs = $conn->search_pqf('@attr 1=4 dinosaur');
271
272 The principal purpose of a search-and-retrieve protocol is searching
273 (and, er, retrieval), so the principal method used on a Connection
274 object is C<search()>.  It accepts a single argument, a C<ZOOM::Query>
275 object (or, more precisely, an object of a subclass of this class);
276 and it creates and returns a new ResultSet object representing the set
277 of records resulting from the search.
278
279 Since queries using PQF (Prefix Query Format) are so common, we make
280 them a special case by providing a C<search_prefix()> method.  This is
281 identical to C<search()> except that it accepts a string containing
282 the query rather than an object, thereby obviating the need to create
283 a C<ZOOM::Query::PQF> object.  See the documentation of that class for
284 information about PQF.
285
286 =head4 scan()
287
288 Many Z39.50 servers allow you to browse their indexes to find terms to
289 search for.  This is done using the C<scan> method, which creates and
290 returns a new ScanSet object representing the set of terms resulting
291 from the scan.
292
293 C<scan()> takes a single argument, but it has to work hard: it
294 specifies both what index to scan for terms, and where in the index to
295 start scanning.  What's more, the specification of what index to scan
296 includes multiple facets, such as what database fields it's an index
297 of (author, subject, title, etc.) and whether to scan for whole fields
298 or single words (e.g. the title ``I<The Empire Strikes Back>'', or the
299 four words ``Back'', ``Empire'', ``Strikes'' and ``The'', interleaved
300 with words from other titles in the same index.
301
302 All of this is done by using a single term from the PQF query as the
303 C<scan()> argument.  (At present, only PQF is supported, although
304 there is no reason in principle why CQL and other query syntaxes
305 should not be supported in future).  The attributes associated with
306 the term indicate which index is to be used, and the term itself
307 indicates the point in the index at which to start the scan.  For
308 example, if the argument is C<@attr 1=4 fish>, then
309
310 =over 4
311
312 =item @attr 1=4
313
314 This is the BIB-1 attribute with type 1 (meaning access-point, which
315 specifies an index), and type 4 (which means ``title'').  So the scan
316 is in the title index.
317
318 =item fish
319
320 Start the scan from the lexicographically earliest term that is equal
321 to or falls after ``fish''.
322
323 =back
324
325 The argument C<@attr 1=4 @attr 6=3 fish> would behave similarly; but
326 the BIB-1 attribute 6=3 mean completeness=``complete field'', so the
327 scan would be for complete titles rather than for words occurring in
328 titles.
329
330 This takes a bit of getting used to.
331
332 The behaviour is C<scan()> is affected by the following options, which
333 may be set on the Connection through which the scan is done:
334
335 =over 4
336
337 =item number [default: 10]
338
339 Indicates how many terms should be returned in the ScanSet.  The
340 number actually returned may be less, if the start-point is near the
341 end of the index, but will not be greater.
342
343 =item position [default: 1]
344
345 A 1-based index specifying where in the returned list of terms the
346 seed-term should appear.  By default it should be the first term
347 returned, but C<position> may be set, for example, to zero (requesting
348 the next terms I<after> the seed-term), or to the same value as
349 C<number> (requesting the index terms I<before> the seed term).
350
351 =item stepSize [default: 0]
352
353 An integer indicating how many indexed terms are to be skipped between
354 each one returned in the ScanSet.  By default, no terms are skipped,
355 but overriding this can be useful to get a high-level overview of the
356 index.
357
358 =back
359
360 =head4 package()
361
362  $p = $conn->package();
363  $o = new ZOOM::Options();
364  $o->option(databaseName => "newdb");
365  $p = $conn->package($o);
366
367 Creates and returns a new C<ZOOM::Package>, to be used in invoking an
368 Extended Service.  An options block may optionally be passed in.  See
369 the C<ZOOM::Package> documentation.
370
371 =head4 destroy()
372
373  $conn->destroy()
374
375 Destroys a Connection object, tearing down any low-level connection
376 associated with it and freeing its resources.  It is an error to reuse
377 a Connection that has been C<destroy()>ed.
378
379 =head2 ZOOM::ResultSet
380
381  $rs = $conn->search_pqf('@attr 1=4 mineral');
382  $n = $rs->size();
383  for $i (1 .. $n) {
384      $rec = $rs->record($i-1);
385      print $rec->render();
386  }
387
388 A ResultSet object represents the set of zero or more records
389 resulting from a search, and is the means whereby these records can be
390 retrieved.  A ResultSet object may maintain client side cache or some,
391 less, none, all or more of the server's records: in general, this is
392 supposed to an implementaton detail of no interest to a typical
393 application, although more sophisticated applications do have
394 facilities for messing with the cache.  Most applications will only
395 need the C<size()>, C<record()> and C<sort()> methods.
396
397 There is no C<new()> method nor any other explicit constructor.  The
398 only way to create a new ResultSet is by using C<search()> (or
399 C<search_prefix()>) on a Connection.
400
401 See the description of the C<Result Set> class in the ZOOM Abstract
402 API at
403 http://zoom.z3950.org/api/zoom-current.html#3.4
404
405 =head3 Methods
406
407 =head4 option()
408
409  $rs->option(elementSetName => "f");
410
411 Allows options to be set into, and read from a ResultSet, just like
412 the Connection class's C<option()> method.  There is no
413 C<option_binary()> method for ResultSet objects.
414
415 ResultSet options are listed at
416 http://indexdata.com/yaz/doc/zoom.resultsets.tkl
417
418 =head4 size()
419
420  print "Found ", $rs->size(), " records\n";
421
422 Returns the number of records in the result set.
423
424 =head4 record() / record_immediate()
425
426  $rec = $rs->record(0);
427  $rec2 = $rs->record_immediate(0);
428  $rec3 = $rs->record_immediate(1)
429      or print "second record wasn't in cache\n";
430
431 The C<record()> method returns a C<ZOOM::Record> object representing
432 a record from result-set, whose position is indicated by the argument
433 passed in.  This is a zero-based index, so that legitimate values
434 range from zero to C<$rs->size()-1>.
435
436 The C<record_immediate()> API is identical, but it never invokes a
437 network operation, merely returning the record from the ResultSet's
438 cache if it's already there, or an undefined value otherwise.  So if
439 you use this method, B<you must always check the return value>.
440
441 =head4 records()
442
443  $rs->records(0, 10, 0);
444  for $i (0..10) {
445      print $rs->record_immediate($i)->render();
446  }
447
448  @nextseven = $rs->records(10, 7, 1);
449
450 The C<record_immediate()> method only fetches records from the cache,
451 whereas C<record()> fetches them from the server if they have not
452 already been cached; but the ZOOM module has to guess what the most
453 efficient strategy for this is.  It might fetch each record, alone
454 when asked for: that's optimal in an application that's only
455 interested in the top hit from each search, but pessimal for one that
456 wants to display a whole list of results.  Conversely, the software's
457 strategy might be always to ask for blocks of a twenty records:
458 that's great for assembling long lists of things, but wasteful when
459 only one record is wanted.  The problem is that the ZOOM module can't
460 tell, when you call C<$rs->record()>, what your intention is.
461
462 But you can tell it.  The C<records()> method fetches a sequence of
463 records, all in one go.  It takes three arguments: the first is the
464 zero-based index of the first record in the sequence, the second is
465 the number of records to fetch, and the third is a boolean indication
466 of whether or not to return the retrieved records as well as adding
467 them to the cache.  (You can always pass 1 for this if you like, and
468 Perl will discard the unused return value, but there is a small
469 efficiency gain to be had by passing 0.)
470
471 Once the records have been retrieved from the server
472 (i.e. C<records()> has completed without throwing an exception), they
473 can be fetched much more efficiently using C<record()> - or
474 C<record_immediate()>, which is then guaranteed to succeed.
475
476 =head4 cache_reset()
477
478  $rs->cache_reset()
479
480 Resets the ResultSet's record cache, so that subsequent invocations of
481 C<record_immediate()> will fail.  I struggle to imagine a real
482 scenario where you'd want to do this.
483
484 =head4 sort()
485
486  if ($rs->sort("yaz", "1=4 >i 1=21 >s") < 0) {
487      die "sort failed";
488  }
489
490 Sorts the ResultSet in place (discarding any cached records, as they
491 will in general be sorted into a different position).  There are two
492 arguments: the first is a string indicating the type of the
493 sort-specification, and the second is the specification itself.
494
495 The C<sort()> method returns 0 on success, or -1 if the
496 sort-specification is invalid.
497
498 At present, the only supported sort-specification type is C<yaz>.
499 Such a specification consists of a space-separated sequence of keys,
500 each of which itself consists of two space-separated words (so that
501 the total number of words in the sort-specification is even).  The two
502 words making up each key are a field and a set of flags.  The field
503 can take one of two forms: if it contains an C<=> sign, then it is a
504 BIB-1 I<type>=I<value> pair specifying which field to sort
505 (e.g. C<1=4> for a title sort); otherwise it is sent for the server to
506 interpret as best it can.  The word of flags is made up from one or
507 more of the following: C<s> for case sensitive, C<i> for case
508 insensitive; C<<> for ascending order and C<E<gt>> for descending
509 order.
510
511 For example, the sort-specification in the code-fragment above will
512 sort the records in C<$rs> case-insensitively in descending order of
513 title, with records having equivalent titles sorted case-sensitively
514 in ascending order of subject.  (The BIB-1 access points 4 and 21
515 represent title and subject respectively.)
516  
517 =head4 destroy()
518
519  $rs->destroy()
520
521 Destroys a ResultSet object, freeing its resources.  It is an error to
522 reuse a ResultSet that has been C<destroy()>ed.
523
524 =head2 ZOOM::Record
525
526  $rec = $rs->record($i);
527  print $rec->render();
528  $raw = $rec->raw();
529  $marc = new_from_usmarc MARC::Record($raw);
530  print "Record title is: ", $marc->title(), "\n";
531
532 A Record object represents a record that has been retrived from the
533 server.
534
535 There is no C<new()> method nor any other explicit constructor.  The
536 only way to create a new Record is by using C<record()> (or
537 C<record_immediate()>, or C<records()>) on a ResultSet.
538
539 In general, records are ``owned'' by their result-sets that they were
540 retrieved from, so they do not have to be explicitly memory-managed:
541 they are deallocated (and therefore can no longer be used) when the
542 result-set is destroyed.
543
544 See the description of the C<Record> class in the ZOOM Abstract
545 API at
546 http://zoom.z3950.org/api/zoom-current.html#3.5
547
548 =head3 Methods
549
550 =head4 render()
551
552  print $rec->render()
553
554 Returns a human-readable representation of the record.  Beyond that,
555 no promises are made: careful programs should not make assumptions
556 about the format of the returned string.
557
558 This method is useful mostly for debugging.
559
560 =head4 raw()
561
562  use MARC::Record
563  $raw = $rec->raw();
564  $marc = new_from_usmarc MARC::Record($raw);
565
566 Returns an opaque blob of data that is the raw form of the record.
567 Exactly what this is, and what you can do with it, varies depending on
568 the record-syntax.  For example, XML records will be returned as,
569 well, XML; MARC records will be returned as ISO 2709-encoded blocks
570 that can be decoded by software such as the fine C<Marc::Record>
571 module; GRS-1 record will be ... gosh, what an interesting question.
572 But no-one uses GRS-1 any more, do they?
573
574 =head4 clone() / destroy()
575
576  $rec = $rs->record($i);
577  $newrec = $rec->clone();
578  $rs->destroy();
579  print $newrec->render();
580  $newrec->destroy();
581
582 Usually, it's convenient that Record objects are owned by their
583 ResultSets and go away when the ResultSet is destroyed; but
584 occasionally you need a Record to outlive its parent and destroy it
585 later, explicitly.  To do this, C<clone()> the record, keep the new
586 Record object that is returned, and C<destroy()> it when it's no
587 longer needed.  This is B<only> situation in which a Record needs to
588 be destroyed.
589
590 =head2 ZOOM::Exception
591
592 In general, method calls throw an exception (of class
593 C<ZOOM::Exception>) if anything goes wrong, so you don't need to test
594 for success after each call.  Exceptions are caught by enclosing the
595 main code in an C<eval{}> block and checking C<$@> on exit from that
596 block, as in the code-sample above.
597
598 There are a small number of exceptions to this rule: the three
599 record-fetching methods in the C<ZOOM::ResultSet> class,
600 C<record()>,
601 C<record_immediate()>,
602 and
603 C<records()>
604 can all return undefined values for legitimate reasons, under
605 circumstances that do not merit throwing an exception.  For this
606 reason, the return values of these methods should be checked.  See the
607 individual methods' documentation for details.
608
609 An exception carries the following pieces of information:
610
611 =over 4
612
613 =item error-code
614
615 A numeric code that specifies the type of error.  This can be checked
616 for equality with known values, so that intelligent applications can
617 take appropriate action.
618
619 =item error-message
620
621 A human-readable message corresponding with the code.  This can be
622 shown to users, but its value should not be tested, as it could vary
623 in different versions or under different locales.
624
625 =item additional information [optional]
626
627 A string containing information specific to the error-code.  For
628 example, when the error-code is the BIB-1 diagnostic 109 ("Database
629 unavailable"), the additional information is the name of the database
630 that the application tried to use.  For some error-codes, there is no
631 additional information at all; for some others, the additional
632 information is undefined and may just be an human-readable string.
633
634 =item diagnostic set [optional]
635
636 A short string specifying the diagnostic set from which the error-code
637 was drawn: for example, C<ZOOM> for a ZOOM-specific error such as
638 C<ZOOM::Error::MEMORY> ("out of memory"), and C<BIB-1> for a Z39.50
639 error-code drawn from the BIB-1 diagnostic set.
640
641 =back
642
643 In theory, the error-code should be interpreted in the context of the
644 diagnostic set from which it is drawn; in practice, nearly all errors
645 are from either the ZOOM or BIB-1 diagnostic sets, and the codes in
646 those sets have been chosen so as not to overlap, so the diagnostic
647 set can usually be ignored.
648
649 See the description of the C<Exception> class in the ZOOM Abstract
650 API at
651 http://zoom.z3950.org/api/zoom-current.html#3.7
652
653 =head3 Methods
654
655 =head4 new()
656
657  die new ZOOM::Exception($errcode, $errmsg, $addinfo, $diagset);
658
659 Creates and returns a new Exception object with the specified
660 error-code, error-message, additional information and diagnostic set.
661 Applications will not in general need to use this, but may find it
662 useful to simulate ZOOM exceptions.  As is usual with Perl, exceptions
663 are thrown using C<die()>.
664
665 =head4 code() / message() / addinfo() / diagset()
666
667  print "Error ", $@->code(), ": ", $@->message(), "\n";
668  print "(addinfo '", $@->addinfo(), "', set '", $@->diagset(), "')\n";
669
670 These methods, of no arguments, return the exception's error-code,
671 error-message, additional information and diagnostic set respectively.
672
673 =head4 render()
674
675  print $@->render();
676
677 Returns a human-readable rendition of an exception.  The C<"">
678 operator is overloaded on the Exception class, so that an Exception
679 used in a string context is automatically rendered.  Among other
680 consequences, this has the useful result that a ZOOM application that
681 died due to an uncaught exception will emit an informative message
682 before exiting.
683
684 =head2 ZOOM::ScanSet
685
686  $ss = $conn->scan('@attr 1=1003 a');
687  $n = $ss->size();
688  ($term, $occ) = $ss->term($n-1);
689  $rs = $conn->search_pqf('@attr 1=1003 "' . $term . "'");
690  assert($rs->size() == $occ);
691
692 A ScanSet represents a set of candidate search-terms returned from an
693 index scan.  Its sole purpose is to provide access to those term, to
694 the corresponding display terms, and to the occurrence-counts of the
695 terms.
696
697 There is no C<new()> method nor any other explicit constructor.  The
698 only way to create a new ScanSet is by using C<scan()> on a
699 Connection.
700
701 See the description of the C<Scan Set> class in the ZOOM Abstract
702 API at
703 http://zoom.z3950.org/api/zoom-current.html#3.6
704
705 =head3 Methods
706
707 =head4 size()
708
709  print "Found ", $ss->size(), " terms\n";
710
711 Returns the number of terms in the scan set.  In general, this will be
712 the scan-set size requested by the C<number> option in the Connection
713 on which the scan was performed [default 10], but it may be fewer if
714 the scan is close to the end of the index.
715
716 =head4 term() / display_term()
717
718  $ss = $conn->scan('@attr 1=1004 whatever');
719  ($term, $occurrences) = $ss->term(0);
720  ($displayTerm, $occurrences2) = $ss->display_term(0);
721  assert($occurrences == $occurrences2);
722  if (user_likes_the_look_of($displayTerm)) {
723      $rs = $conn->search_pqf('@attr 1=4 "' . $term . '"');
724      assert($rs->size() == $occurrences);
725  }
726
727 These methods return the scanned terms themselves.  C<term()> returns
728 the term is a form suitable for submitting as part of a query, whereas
729 C<display_term()> returns it in a form suitable for displaying to a
730 user.  Both versions also return the number of occurrences of the term
731 in the index, i.e. the number of hits that will be found if the term
732 is subsequently used in a query.
733
734 In most cases, the term and display term will be identical; however,
735 they may be different in cases where punctuation or case is
736 normalised, or where identifiers rather than the original document
737 terms are indexed.
738
739 =head4 option()
740
741  print "scan status is ", $ss->option("scanStatus");
742
743 Allows options to be set into, and read from a ScanSet, just like
744 the Connection class's C<option()> method.  There is no
745 C<option_binary()> method for ScanSet objects.
746
747 ScanSet options are also described, though not particularly
748 informatively, at
749 http://indexdata.com/yaz/doc/zoom.scan.tkl
750
751 =head4 destroy()
752
753  $ss->destroy()
754
755 Destroys a ScanSet object, freeing its resources.  It is an error to
756 reuse a ScanSet that has been C<destroy()>ed.
757
758 =head2 ZOOM::Package
759
760 I<###>
761
762 Package options are listed at
763 http://indexdata.com/yaz/doc/zoom.ext.html
764
765 =head2 ZOOM::Query
766
767 I<###>
768
769 =head2 ZOOM::Options
770
771 I<###>
772
773 =head1 ENUMERATIONS
774
775 The ZOOM module provides two enumerations that list possible return
776 values from particular functions.  They are described in the following
777 sections.
778
779 =head2 ZOOM::Error
780
781  if ($@->code() == ZOOM::Error::QUERY_PQF) {
782      return "your query was not accepted";
783  }
784
785 This class provides a set of manifest constants representing some of
786 the possible error codes that can be raised by the ZOOM module.  The
787 methods that return error-codes are
788 C<ZOOM::Exception::code()>,
789 C<ZOOM::Connection::error_x()>
790 and
791 C<ZOOM::Connection::errcode()>.
792
793 The C<ZOOM::Error> class provides the constants
794 C<NONE>,
795 C<CONNECT>,
796 C<MEMORY>,
797 C<ENCODE>,
798 C<DECODE>,
799 C<CONNECTION_LOST>,
800 C<INIT>,
801 C<INTERNAL>,
802 C<TIMEOUT>,
803 C<UNSUPPORTED_PROTOCOL>,
804 C<UNSUPPORTED_QUERY>,
805 C<INVALID_QUERY>,
806 C<CREATE_QUERY>,
807 C<QUERY_CQL>,
808 C<QUERY_PQF>,
809 C<SORTBY>,
810 C<CLONE>,
811 C<PACKAGE>
812 and
813 C<SCANTERM>,
814 each of which specifies a client-side error.  These codes constitute
815 the C<ZOOM> diagnostic set.
816
817 Since errors may also be diagnosed by the server, and returned to the
818 client, error codes may also take values from the BIB-1 diagnostic set
819 of Z39.50, listed at the Z39.50 Maintenance Agency's web-site at
820 http://www.loc.gov/z3950/agency/defns/bib1diag.html
821
822 All error-codes, whether client-side from the C<ZOOM::Error>
823 enumeration or server-side from the BIB-1 diagnostic set, can be
824 translated into human-readable messages by passing them to the
825 C<ZOOM::diag_str()> utility function.
826
827 =head2 ZOOM::Event
828
829  if ($conn->last_event() == ZOOM::Event::CONNECT) {
830      print "Connected!\n";
831  }
832
833 In applications that need it - mostly complex multiplexing
834 applications - The C<ZOOM::Connection::last_event()> method is used to
835 return an indication of the last event that occurred on a particular
836 connection.  It always returns a value drawn from this enumeration,
837 that is, one of C<NONE>, C<CONNECT>, C<SEND_DATA>, C<RECV_DATA>,
838 C<TIMEOUT>, C<UNKNOWN>, C<SEND_APDU>, C<RECV_APDU>, C<RECV_RECORD> or
839 C<RECV_SEARCH>.
840
841 You almost certainly don't need to know about this.  Frankly, I'm not
842 sure how to use it myself.
843
844 =head1 SEE ALSO
845
846 The ZOOM abstract API,
847 http://zoom.z3950.org/api/zoom-current.html
848
849 The C<Net::Z3950::ZOOM> module, included in the same distribution as this one.
850
851 The C<Net::Z3950> module, which this one supersedes.
852 http://perl.z3950.org/
853
854 The documentation for the ZOOM-C module of the YAZ Toolkit, which this
855 module is built on.  Specifically, its lists of options are useful.
856 http://indexdata.com/yaz/doc/zoom.tkl
857
858 The BIB-1 diagnostic set of Z39.50,
859 http://www.loc.gov/z3950/agency/defns/bib1diag.html
860
861 =head1 AUTHOR
862
863 Mike Taylor, E<lt>mike@indexdata.comE<gt>
864
865 =head1 COPYRIGHT AND LICENCE
866
867 Copyright (C) 2005 by Index Data.
868
869 This library is free software; you can redistribute it and/or modify
870 it under the same terms as Perl itself, either Perl version 5.8.4 or,
871 at your option, any later version of Perl 5 you may have available.
872
873 =cut
874
875 1;