Typos.
[ZOOM-Perl-moved-to-github.git] / lib / ZOOM.pod
1 # $Id: ZOOM.pod,v 1.14 2005-12-13 11:26:19 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 =over 4
251
252 =item *
253
254 Connection options are listed at
255 http://indexdata.com/yaz/doc/zoom.tkl#zoom.connections
256
257 =item *
258
259 ScanSet options are listed at
260 http://indexdata.com/yaz/doc/zoom.scan.tkl
261 I<### move this observation down to the appropriate place>
262
263 =item *
264
265 Package options are listed at
266 http://indexdata.com/yaz/doc/zoom.ext.html
267 I<### move this observation down to the appropriate place>
268
269 =back
270
271 These options are set and fetched using the C<option()> method, which
272 may be called with either one or two arguments.  In the two-argument
273 form, the option named by the first argument is set to the value of
274 the second argument, and its old value is returned.  In the
275 one-argument form, the value of the specified option is returned.
276
277 For historical reasons, option values are not binary-clean, so that a
278 value containing a NUL byte will be returned in truncated form.  The
279 C<option_binary()> method behaves identically to C<option()> except
280 that it is binary-clean, so that values containing NUL bytes are set
281 and returned correctly.
282
283 =head4 search() / search_pqf()
284
285  $rs = $conn->search(new ZOOM::Query::CQL('title=dinosaur'));
286  # The next two lines are equivalent
287  $rs = $conn->search(new ZOOM::Query::PQF('@attr 1=4 dinosaur'));
288  $rs = $conn->search_pqf('@attr 1=4 dinosaur');
289
290 The principal purpose of a search-and-retrieve protocol is searching
291 (and, er, retrieval), so the principal method used on a Connection
292 object is C<search()>.  It accepts a single argument, a C<ZOOM::Query>
293 object (or, more precisely, an object of a subclass of this class);
294 and it creates and returns a new ResultSet object representing the set
295 of records resulting from the search.
296
297 Since queries using PQF (Prefix Query Format) are so common, we make
298 them a special case by providing a C<search_prefix()> method.  This is
299 identical to C<search()> except that it accepts a string containing
300 the query rather than an object, thereby obviating the need to create
301 a C<ZOOM::Query::PQF> object.  See the documentation of that class for
302 information about PQF.
303
304 =head4 scan()
305
306 Many Z39.50 servers allow you to browse their indexes to find terms to
307 search for.  This is done using the C<scan> method, which creates and
308 returns a new ScanSet object representing the set of terms resulting
309 from the scan.
310
311 C<scan()> takes a single argument, but it has to work hard: it
312 specifies both what index to scan for terms, and where in the index to
313 start scanning.  What's more, the specification of what index to scan
314 includes multiple facets, such as what database fields it's an index
315 of (author, subject, title, etc.) and whether to scan for whole fields
316 or single words (e.g. the title ``I<The Empire Strikes Back>'', or the
317 four words ``Back'', ``Empire'', ``Strikes'' and ``The'', interleaved
318 with words from other titles in the same index.
319
320 All of this is done by using a single term from the PQF query as the
321 C<scan()> argument.  (At present, only PQF is supported, although
322 there is no reason in principle why CQL and other query syntaxes
323 should not be supported in future).  The attributes associated with
324 the term indicate which index is to be used, and the term itself
325 indicates the point in the index at which to start the scan.  For
326 example, if the argument is C<@attr 1=4 fish>, then
327
328 =over 4
329
330 =item @attr 1=4
331
332 This is the BIB-1 attribute with type 1 (meaning access-point, which
333 specifies an index), and type 4 (which means ``title'').  So the scan
334 is in the title index.
335
336 =item fish
337
338 Start the scan from the lexicographically earliest term that is equal
339 to or falls after ``fish''.
340
341 =back
342
343 The argument C<@attr 1=4 @attr 6=3 fish> would behave similarly; but
344 the BIB-1 attribute 6=3 mean completeness=``complete field'', so the
345 scan would be for complete titles rather than for words occurring in
346 titles.
347
348 This takes a bit of getting used to.
349
350 The behaviour is C<scan()> is affected by the following options, which
351 may be set on the Connection through which the scan is done:
352
353 =over 4
354
355 =item number [default: 10]
356
357 Indicates how many terms should be returned in the ScanSet.  The
358 number actually returned may be less, if the start-point is near the
359 end of the index, but will not be greater.
360
361 =item position [default: 1]
362
363 A 1-based index specifying where in the returned list of terms the
364 seed-term should appear.  By default it should be the first term
365 returned, but C<position> may be set, for example, to zero (requesting
366 the next terms I<after> the seed-term), or to the same value as
367 C<number> (requesting the index terms I<before> the seed term).
368
369 =item stepSize [default: 0]
370
371 An integer indicating how many indexed terms are to be skipped between
372 each one returned in the ScanSet.  By default, no terms are skipped,
373 but overriding this can be useful to get a high-level overview of the
374 index.
375
376 =back
377
378 =head4 package()
379
380  $p = $conn->package();
381  $o = new ZOOM::Options();
382  $o->option(databaseName => "newdb");
383  $p = $conn->package($o);
384
385 Creates and returns a new C<ZOOM::Package>, to be used in invoking an
386 Extended Service.  An options block may optionally be passed in.  See
387 the C<ZOOM::Package> documentation.
388
389 =head4 destroy()
390
391  $conn->destroy()
392
393 Destroys a Connection object, tearing down any low-level connection
394 associated with it and freeing its resources.  It is an error to reuse
395 a Connection that has been C<destroy()>ed.
396
397 =head2 ZOOM::ResultSet
398
399  $rs = $conn->search_pqf('@attr 1=4 mineral');
400  $n = $rs->size();
401  for $i (1 .. $n) {
402      $rec = $rs->record($i-1);
403      print $rec->render();
404  }
405
406 A ResultSet object represents the set of zero or more records
407 resulting from a search, and is the means whereby these records can be
408 retrieved.  A ResultSet object may maintain client side cache or some,
409 less, none, all or more of the server's records: in general, this is
410 supposed to an implementaton detail of no interest to a typical
411 application, although more sophisticated applications do have
412 facilities for messing with the cache.  Most applications will only
413 need the C<size()>, C<record()> and C<sort()> methods.
414
415 There is no C<new()> method nor any other explicit constructor.  The
416 only way to create a new ResultSet is by using C<search()> (or
417 C<search_prefix()>) on a Connection.
418
419 See the description of the C<Result Set> class in the ZOOM Abstract
420 API at
421 http://zoom.z3950.org/api/zoom-current.html#3.4
422
423 =head3 Methods
424
425 =head4 option()
426
427  $conn->option(elementSetName => "f");
428
429 Allows options to be set into, and read from a ResultSet, just like
430 the Connection class's C<option()> method.  There is no
431 C<option_binary()> method for ResultSet objects.
432
433 ResultSet options are listed at
434 http://indexdata.com/yaz/doc/zoom.resultsets.tkl
435
436 =head4 size()
437
438  print "Found ", $rs->size(), " records\n";
439
440 Returns the number of records in the result set.
441
442 =head4 record(), record_immediate()
443
444  $rec = $rs->record(0);
445  $rec2 = $rs->record_immediate(0);
446  $rec3 = $rs->record_immediate(1)
447      or print "second record wasn't in cache\n";
448
449 The C<record()> method returns a C<ZOOM::Record> object representing
450 a record from result-set, whose position is indicated by the argument
451 passed in.  This is a zero-based index, so that legitimate values
452 range from zero to C<$rs->size()-1>.
453
454 The C<record_immediate()> API is identical, but it never invokes a
455 network operation, merely returning the record from the ResultSet's
456 cache if it's already there, or an undefined value otherwise.  So if
457 you use this method, B<you must always check the return value>.
458
459 =head4 records()
460
461  $rs->records(0, 10, 0);
462  for $i (0..10) {
463      print $rs->record_immediate($i)->render();
464  }
465
466  @nextseven = $rs->records(10, 7, 1);
467
468 The C<record_immediate()> method only fetches records from the cache,
469 whereas C<record()> fetches them from the server if they have not
470 already been cached; but the ZOOM module has to guess what the most
471 efficient strategy for this is.  It might fetch each record, alone
472 when asked for: that's optimal in an application that's only
473 interested in the top hit from each search, but pessimal for one that
474 wants to display a whole list of results.  Conversely, the software's
475 strategy might be always to ask for blocks of a twenty records:
476 that's great for assembling long lists of things, but wasteful when
477 only one record is wanted.  The problem is that the ZOOM module can't
478 tell, when you call C<$rs->record()>, what your intention is.
479
480 But you can tell it.  The C<records()> method fetches a sequence of
481 records, all in one go.  It takes three arguments: the first is the
482 zero-based index of the first record in the sequence, the second is
483 the number of records to fetch, and the third is a boolean indication
484 of whether or not to return the retrieved records as well as adding
485 them to the cache.  (You can always pass 1 for this if you like, and
486 Perl will discard the unused return value, but there is a small
487 efficiency gain to be had by passing 0.)
488
489 Once the records have been retrieved from the server
490 (i.e. C<records()> has completed without throwing an exception), they
491 can be fetched much more efficiently using C<record()> - or
492 C<record_immediate()>, which is then guaranteed to succeed.
493
494 =head4 cache_reset()
495
496  $rs->cache_reset()
497
498 Resets the ResultSet's record cache, so that subsequent invocations of
499 C<record_immediate()> will fail.  I struggle to imagine a real
500 scenario where you'd want to do this.
501
502 =head4 sort()
503
504  if ($rs->sort("yaz", "1=4 >i 1=21 >s") < 0) {
505      die "sort failed";
506  }
507
508 Sorts the ResultSet in place (discarding any cached records, as they
509 will in general be sorted into a different position).  There are two
510 arguments: the first is a string indicating the type of the
511 sort-specification, and the second is the specification itself.
512
513 The C<sort()> method returns 0 on success, or -1 if the
514 sort-specification is invalid.
515
516 At present, the only supported sort-specification type is C<yaz>.
517 Such a specification consists of a space-separated sequence of keys,
518 each of which itself consists of two space-separated words (so that
519 the total number of words in the sort-specification is even).  The two
520 words making up each key are a field and a set of flags.  The field
521 can take one of two forms: if it contains an C<=> sign, then it is a
522 BIB-1 I<type>=I<value> pair specifying which field to sort
523 (e.g. C<1=4> for a title sort); otherwise it is sent for the server to
524 interpret as best it can.  The word of flags is made up from one or
525 more of the following: C<s> for case sensitive, C<i> for case
526 insensitive; C<<> for ascending order and C<E<gt>> for descending
527 order.
528
529 For example, the sort-specification in the code-fragment above will
530 sort the records in C<$rs> case-insensitively in descending order of
531 title, with records having equivalent titles sorted case-sensitively
532 in ascending order of subject.  (The BIB-1 access points 4 and 21
533 represent title and subject respectively.)
534  
535 =head4 destroy()
536
537  $rs->destroy()
538
539 Destroys a ResultSet object, freeing its resources.  It is an error to
540 reuse a ResultSet that has been C<destroy()>ed.
541
542 =head2 ZOOM::Record
543
544  $rec = $rs->record($i);
545  print $rec->render();
546  $raw = $rec->raw();
547  $marc = new_from_usmarc MARC::Record($raw);
548  print "Record title is: ", $marc->title(), "\n";
549
550 A Record object represents a record that has been retrived from the
551 server.
552
553 There is no C<new()> method nor any other explicit constructor.  The
554 only way to create a new Record is by using C<record()> (or
555 C<record_immediate()>, or C<records()>) on a ResultSet.
556
557 In general, records are ``owned'' by their result-sets that they were
558 retrieved from, so they do not have to be explicitly memory-managed:
559 they are deallocated (and therefore can no longer be used) when the
560 result-set is destroyed.
561
562 See the description of the C<Record> class in the ZOOM Abstract
563 API at
564 http://zoom.z3950.org/api/zoom-current.html#3.5
565
566 =head3 Methods
567
568 =head4 render()
569
570  print $rec->render()
571
572 Returns a human-readable representation of the record.  Beyond that,
573 no promises are made: careful programs should not make assumptions
574 about the format of the returned string.
575
576 This method is useful mostly for debugging.
577
578 =head4 raw()
579
580  use MARC::Record
581  $raw = $rec->raw();
582  $marc = new_from_usmarc MARC::Record($raw);
583
584 Returns an opaque blob of data that is the raw form of the record.
585 Exactly what this is, and what you can do with it, varies depending on
586 the record-syntax.  For example, XML records will be returned as,
587 well, XML; MARC records will be returned as ISO 2709-encoded blocks
588 that can be decoded by software such as the fine C<Marc::Record>
589 module; GRS-1 record will be ... gosh, what an interesting question.
590 But no-one uses GRS-1 any more, do they?
591
592 =head4 clone() / destroy()
593
594  $rec = $rs->record($i);
595  $newrec = $rec->clone();
596  $rs->destroy();
597  print $newrec->render();
598  $newrec->destroy();
599
600 Usually, it's convenient that Record objects are owned by their
601 ResultSets and go away when the ResultSet is destroyed; but
602 occasionally you need a Record to outlive its parent and destroy it
603 later, explicitly.  To do this, C<clone()> the record, keep the new
604 Record object that is returned, and C<destroy()> it when it's no
605 longer needed.  This is B<only> situation in which a Record needs to
606 be destroyed.
607
608 =head2 ZOOM::Exception
609
610 In general, method calls throw an exception (of class
611 C<ZOOM::Exception>) if anything goes wrong, so you don't need to test
612 for success after each call.  Exceptions are caught by enclosing the
613 main code in an C<eval{}> block and checking C<$@> on exit from that
614 block, as in the code-sample above.
615
616 There are a small number of exceptions to this rule: the three
617 record-fetching methods in the C<ZOOM::ResultSet> class,
618 C<record()>,
619 C<record_immediate()>,
620 and
621 C<records()>
622 can all return undefined values for legitimate reasons, under
623 circumstances that do not merit throwing an exception.  For this
624 reason, the return values of these methods should be checked.  See the
625 individual methods' documentation for details.
626
627 An exception carries the following pieces of information:
628
629 =over 4
630
631 =item error-code
632
633 A numeric code that specifies the type of error.  This can be checked
634 for equality with known values, so that intelligent applications can
635 take appropriate action.
636
637 =item error-message
638
639 A human-readable message corresponding with the code.  This can be
640 shown to users, but its value should not be tested, as it could vary
641 in different versions or under different locales.
642
643 =item additional information [optional]
644
645 A string containing information specific to the error-code.  For
646 example, when the error-code is the BIB-1 diagnostic 109 ("Database
647 unavailable"), the additional information is the name of the database
648 that the application tried to use.  For some error-codes, there is no
649 additional information at all; for some others, the additional
650 information is undefined and may just be an human-readable string.
651
652 =item diagnostic set [optional]
653
654 A short string specifying the diagnostic set from which the error-code
655 was drawn: for example, C<ZOOM> for a ZOOM-specific error such as
656 C<ZOOM::Error::MEMORY> ("out of memory"), and C<BIB-1> for a Z39.50
657 error-code drawn from the BIB-1 diagnostic set.
658
659 =back
660
661 In theory, the error-code should be interpreted in the context of the
662 diagnostic set from which it is drawn; in practice, nearly all errors
663 are from either the ZOOM or BIB-1 diagnostic sets, and the codes in
664 those sets have been chosen so as not to overlap, so the diagnostic
665 set can usually be ignored.
666
667 See the description of the C<Exception> class in the ZOOM Abstract
668 API at
669 http://zoom.z3950.org/api/zoom-current.html#3.7
670
671 =head3 Methods
672
673 =head4 new()
674
675  die new ZOOM::Exception($errcode, $errmsg, $addinfo, $diagset);
676
677 Creates and returns a new Exception object with the specified
678 error-code, error-message, additional information and diagnostic set.
679 Applications will not in general need to use this, but may find it
680 useful to simulate ZOOM exceptions.  As is usual with Perl, exceptions
681 are thrown using C<die()>.
682
683 =head4 code() / message() / addinfo() / diagset()
684
685  print "Error ", $@->code(), ": ", $@->message(), "\n";
686  print "(addinfo '", $@->addinfo(), "', set '", $@->diagset(), "')\n";
687
688 These methods, of no arguments, return the exception's error-code,
689 error-message, additional information and diagnostic set respectively.
690
691 =head4 render()
692
693  print $@->render();
694
695 Returns a human-readable rendition of an exception.  The C<"">
696 operator is overloaded on the Exception class, so that an Exception
697 used in a string context is automatically rendered.  Among other
698 consequences, this has the useful result that a ZOOM application that
699 died due to an uncaught exception will emit an informative message
700 before exiting.
701
702 =head2 ZOOM::ScanSet
703
704  $ss = $conn->scan('@attr 1=1003 a');
705  $n = $ss->size();
706  ($term, $occ) = $ss->term($n-1);
707  $rs = $conn->search_pqf('@attr 1=1003 "' . $term . "'");
708  assert($rs->size() == $occ);
709
710 A ScanSet represents a set of candidate search-terms returned from an
711 index scan.  Its sole purpose is to provide access to those term, to
712 the corresponding display terms, and to the occurrence-counts of the
713 terms.
714
715 There is no C<new()> method nor any other explicit constructor.  The
716 only way to create a new ScanSet is by using C<scan()> on a
717 Connection.
718
719 See the description of the C<Scan Set> class in the ZOOM Abstract
720 API at
721 http://zoom.z3950.org/api/zoom-current.html#3.6
722
723 =head3 Methods
724
725 =head4 size()
726
727  print "Found ", $ss->size(), " terms\n";
728
729 Returns the number of terms in the scan set.
730 ### describe option that affects this.
731
732 =head4 term() / display_term()
733
734 I<###>
735
736 =head4 option()
737
738 I<###>
739
740 =head4 destroy()
741
742 I<###>
743
744 =head2 ZOOM::Package
745
746 I<###>
747
748 =head2 ZOOM::Query
749
750 I<###>
751
752 =head2 ZOOM::Options
753
754 I<###>
755
756 =head1 ENUMERATIONS
757
758 The ZOOM module provides two enumerations that list possible return
759 values from particular functions.  They are described in the following
760 sections.
761
762 =head2 ZOOM::Error
763
764  if ($@->code() == ZOOM::Error::QUERY_PQF) {
765      return "your query was not accepted";
766  }
767
768 This class provides a set of manifest constants representing some of
769 the possible error codes that can be raised by the ZOOM module.  The
770 methods that return error-codes are
771 C<ZOOM::Exception::code()>,
772 C<ZOOM::Connection::error_x()>
773 and
774 C<ZOOM::Connection::errcode()>.
775
776 The C<ZOOM::Error> class provides the constants
777 C<NONE>,
778 C<CONNECT>,
779 C<MEMORY>,
780 C<ENCODE>,
781 C<DECODE>,
782 C<CONNECTION_LOST>,
783 C<INIT>,
784 C<INTERNAL>,
785 C<TIMEOUT>,
786 C<UNSUPPORTED_PROTOCOL>,
787 C<UNSUPPORTED_QUERY>,
788 C<INVALID_QUERY>,
789 C<CREATE_QUERY>,
790 C<QUERY_CQL>,
791 C<QUERY_PQF>,
792 C<SORTBY>,
793 C<CLONE>,
794 C<PACKAGE>
795 and
796 C<SCANTERM>,
797 each of which specifies a client-side error.  These codes constitute
798 the C<ZOOM> diagnostic set.
799
800 Since errors may also be diagnosed by the server, and returned to the
801 client, error codes may also take values from the BIB-1 diagnostic set
802 of Z39.50, listed at the Z39.50 Maintenance Agency's web-site at
803 http://www.loc.gov/z3950/agency/defns/bib1diag.html
804
805 All error-codes, whether client-side from the C<ZOOM::Error>
806 enumeration or server-side from the BIB-1 diagnostic set, can be
807 translated into human-readable messages by passing them to the
808 C<ZOOM::diag_str()> utility function.
809
810 =head2 ZOOM::Event
811
812  if ($conn->last_event() == ZOOM::Event::CONNECT) {
813      print "Connected!\n";
814  }
815
816 In applications that need it - mostly complex multiplexing
817 applications - The C<ZOOM::Connection::last_event()> method is used to
818 return an indication of the last event that occurred on a particular
819 connection.  It always returns a value drawn from this enumeration,
820 that is, one of C<NONE>, C<CONNECT>, C<SEND_DATA>, C<RECV_DATA>,
821 C<TIMEOUT>, C<UNKNOWN>, C<SEND_APDU>, C<RECV_APDU>, C<RECV_RECORD> or
822 C<RECV_SEARCH>.
823
824 You almost certainly don't need to know about this.  Frankly, I'm not
825 sure how to use it myself.
826
827 =head1 SEE ALSO
828
829 The ZOOM abstract API,
830 http://zoom.z3950.org/api/zoom-current.html
831
832 The C<Net::Z3950::ZOOM> module, included in the same distribution as this one.
833
834 The C<Net::Z3950> module, which this one supersedes.
835 http://perl.z3950.org/
836
837 The documentation for the ZOOM-C module of the YAZ Toolkit, which this
838 module is built on.  Specifically, its lists of options are useful.
839 http://indexdata.com/yaz/doc/zoom.tkl
840
841 The BIB-1 diagnostic set of Z39.50,
842 http://www.loc.gov/z3950/agency/defns/bib1diag.html
843
844 =head1 AUTHOR
845
846 Mike Taylor, E<lt>mike@indexdata.comE<gt>
847
848 =head1 COPYRIGHT AND LICENCE
849
850 Copyright (C) 2005 by Index Data.
851
852 This library is free software; you can redistribute it and/or modify
853 it under the same terms as Perl itself, either Perl version 5.8.4 or,
854 at your option, any later version of Perl 5 you may have available.
855
856 =cut
857
858 1;