Removed material about Object identifiers for YAZ 2.
[yaz-moved-to-github.git] / doc / tools.xml
1 <!-- $Id: tools.xml,v 1.64 2007-10-16 10:45:53 adam Exp $ -->
2  <chapter id="tools"><title>Supporting Tools</title>
3   
4   <para>
5    In support of the service API - primarily the ASN module, which
6    provides the pro-grammatic interface to the Z39.50 APDUs, &yaz; contains
7    a collection of tools that support the development of applications.
8   </para>
9
10   <sect1 id="tools.query"><title>Query Syntax Parsers</title>
11
12    <para>
13     Since the type-1 (RPN) query structure has no direct, useful string
14     representation, every origin application needs to provide some form of
15     mapping from a local query notation or representation to a
16     <token>Z_RPNQuery</token> structure. Some programmers will prefer to
17     construct the query manually, perhaps using
18     <function>odr_malloc()</function> to simplify memory management.
19     The &yaz; distribution includes three separate, query-generating tools
20     that may be of use to you.
21    </para>
22
23    <sect2 id="PQF"><title>Prefix Query Format</title>
24
25     <para>
26      Since RPN or reverse polish notation is really just a fancy way of
27      describing a suffix notation format (operator follows operands), it
28      would seem that the confusion is total when we now introduce a prefix
29      notation for RPN. The reason is one of simple laziness - it's somewhat
30      simpler to interpret a prefix format, and this utility was designed
31      for maximum simplicity, to provide a baseline representation for use
32      in simple test applications and scripting environments (like Tcl). The
33      demonstration client included with YAZ uses the PQF.
34     </para>
35
36     <note>
37      <para>
38       The PQF have been adopted by other parties developing Z39.50
39       software. It is often referred to as Prefix Query Notation
40       - PQN.
41      </para>
42     </note>
43     <para>
44      The PQF is defined by the pquery module in the YAZ library. 
45      There are two sets of function that have similar behavior. First
46      set operates on a PQF parser handle, second set doesn't. First set
47      set of functions are more flexible than the second set. Second set
48      is obsolete and is only provided to ensure backwards compatibility.
49     </para>
50     <para>
51      First set of functions all operate on a PQF parser handle:
52     </para>
53     <synopsis>
54      #include &lt;yaz/pquery.h&gt;
55
56      YAZ_PQF_Parser yaz_pqf_create (void);
57
58      void yaz_pqf_destroy (YAZ_PQF_Parser p);
59
60      Z_RPNQuery *yaz_pqf_parse (YAZ_PQF_Parser p, ODR o, const char *qbuf);
61
62      Z_AttributesPlusTerm *yaz_pqf_scan (YAZ_PQF_Parser p, ODR o,
63                           Odr_oid **attributeSetId, const char *qbuf);
64
65
66      int yaz_pqf_error (YAZ_PQF_Parser p, const char **msg, size_t *off);
67     </synopsis>
68     <para>
69      A PQF parser is created and destructed by functions
70      <function>yaz_pqf_create</function> and
71      <function>yaz_pqf_destroy</function> respectively.
72      Function <function>yaz_pqf_parse</function> parses query given
73      by string <literal>qbuf</literal>. If parsing was successful,
74      a Z39.50 RPN Query is returned which is created using ODR stream
75      <literal>o</literal>. If parsing failed, a NULL pointer is
76      returned.
77      Function <function>yaz_pqf_scan</function> takes a scan query in 
78      <literal>qbuf</literal>. If parsing was successful, the function
79      returns attributes plus term pointer and modifies
80      <literal>attributeSetId</literal> to hold attribute set for the
81      scan request - both allocated using ODR stream <literal>o</literal>.
82      If parsing failed, yaz_pqf_scan returns a NULL pointer.
83      Error information for bad queries can be obtained by a call to
84      <function>yaz_pqf_error</function> which returns an error code and
85      modifies <literal>*msg</literal> to point to an error description,
86      and modifies <literal>*off</literal> to the offset within last
87      query were parsing failed.
88     </para>
89     <para>
90      The second set of functions are declared as follows:
91     </para>
92     <synopsis>
93      #include &lt;yaz/pquery.h&gt;
94
95      Z_RPNQuery *p_query_rpn (ODR o, oid_proto proto, const char *qbuf);
96
97      Z_AttributesPlusTerm *p_query_scan (ODR o, oid_proto proto,
98                              Odr_oid **attributeSetP, const char *qbuf);
99
100      int p_query_attset (const char *arg);
101     </synopsis>
102     <para>
103      The function <function>p_query_rpn()</function> takes as arguments an
104       &odr; stream (see section <link linkend="odr">The ODR Module</link>)
105      to provide a memory source (the structure created is released on
106      the next call to <function>odr_reset()</function> on the stream), a
107      protocol identifier (one of the constants <token>PROTO_Z3950</token> and
108      <token>PROTO_SR</token>), an attribute set reference, and
109      finally a null-terminated string holding the query string.
110     </para>
111     <para>
112      If the parse went well, <function>p_query_rpn()</function> returns a
113      pointer to a <literal>Z_RPNQuery</literal> structure which can be
114      placed directly into a <literal>Z_SearchRequest</literal>. 
115      If parsing failed, due to syntax error, a NULL pointer is returned.
116     </para>
117     <para>
118      The <literal>p_query_attset</literal> specifies which attribute set
119      to use if the query doesn't specify one by the
120      <literal>@attrset</literal> operator.
121      The <literal>p_query_attset</literal> returns 0 if the argument is a
122      valid attribute set specifier; otherwise the function returns -1.
123     </para>
124
125     <para>
126      The grammar of the PQF is as follows:
127     </para>
128
129     <literallayout>
130      query ::= top-set query-struct.
131
132      top-set ::= [ '@attrset' string ]
133
134      query-struct ::= attr-spec | simple | complex | '@term' term-type query
135
136      attr-spec ::= '@attr' [ string ] string query-struct
137
138      complex ::= operator query-struct query-struct.
139
140      operator ::= '@and' | '@or' | '@not' | '@prox' proximity.
141
142      simple ::= result-set | term.
143
144      result-set ::= '@set' string.
145
146      term ::= string.
147
148      proximity ::= exclusion distance ordered relation which-code unit-code.
149
150      exclusion ::= '1' | '0' | 'void'.
151
152      distance ::= integer.
153
154      ordered ::= '1' | '0'.
155
156      relation ::= integer.
157
158      which-code ::= 'known' | 'private' | integer.
159
160      unit-code ::= integer.
161
162      term-type ::= 'general' | 'numeric' | 'string' | 'oid' | 'datetime' | 'null'.
163     </literallayout>
164
165     <para>
166      You will note that the syntax above is a fairly faithful
167      representation of RPN, except for the Attribute, which has been
168      moved a step away from the term, allowing you to associate one or more
169      attributes with an entire query structure. The parser will
170      automatically apply the given attributes to each term as required.
171     </para>
172
173     <para>
174      The @attr operator is followed by an attribute specification 
175      (<literal>attr-spec</literal> above). The specification consists
176      of an optional attribute set, an attribute type-value pair and
177      a sub-query. The attribute type-value pair is packed in one string:
178      an attribute type, an equals sign, and an attribute value, like this:
179      <literal>@attr 1=1003</literal>.
180      The type is always an integer but the value may be either an
181      integer or a string (if it doesn't start with a digit character).
182      A string attribute-value is encoded as a Type-1 ``complex''
183      attribute with the list of values containing the single string
184      specified, and including no semantic indicators.
185     </para>
186
187     <para>
188      Version 3 of the Z39.50 specification defines various encoding of terms.
189      Use <literal>@term </literal> <replaceable>type</replaceable>
190      <replaceable>string</replaceable>,
191      where type is one of: <literal>general</literal>,
192      <literal>numeric</literal> or <literal>string</literal>
193      (for InternationalString).
194      If no term type has been given, the <literal>general</literal> form
195      is used.  This is the only encoding allowed in both versions 2 and 3
196      of the Z39.50 standard.
197     </para>
198     
199     <sect3 id="PQF-prox">
200       <title>Using Proximity Operators with PQF</title>
201       <note>
202         <para>
203           This is an advanced topic, describing how to construct
204           queries that make very specific requirements on the
205           relative location of their operands.
206           You may wish to skip this section and go straight to
207           <link linkend="pqf-examples">the example PQF queries</link>.
208         </para>
209         <para>
210           <warning>
211             <para>
212               Most Z39.50 servers do not support proximity searching, or
213               support only a small subset of the full functionality that
214               can be expressed using the PQF proximity operator.  Be
215               aware that the ability to <emphasis>express</emphasis> a
216               query in PQF is no guarantee that any given server will
217               be able to <emphasis>execute</emphasis> it.
218             </para>
219           </warning>
220         </para>
221       </note>
222       <para>
223         The proximity operator <literal>@prox</literal> is a special
224         and more restrictive version of the conjunction operator
225         <literal>@and</literal>.  Its semantics are described in 
226         section 3.7.2 (Proximity) of Z39.50 the standard itself, which
227         can be read on-line at
228         <ulink url="&url.z39.50.proximity;"/>
229       </para>
230       <para>
231         In PQF, the proximity operation is represented by a sequence
232         of the form
233         <screen>
234 @prox <replaceable>exclusion</replaceable> <replaceable>distance</replaceable> <replaceable>ordered</replaceable> <replaceable>relation</replaceable> <replaceable>which-code</replaceable> <replaceable>unit-code</replaceable>
235         </screen>
236         in which the meanings of the parameters are as described in in
237         the standard, and they can take the following values:
238         <itemizedlist>
239           <listitem><formalpara><title>exclusion</title><para>
240             0 = false (i.e. the proximity condition specified by the
241             remaining parameters must be satisfied) or
242             1 = true (the proximity condition specified by the
243             remaining parameters must <emphasis>not</emphasis> be
244             satisifed).
245           </para></formalpara></listitem>
246           <listitem><formalpara><title>distance</title><para>
247             An integer specifying the difference between the locations
248             of the operands: e.g. two adjacent words would have
249             distance=1 since their locations differ by one unit.
250           </para></formalpara></listitem>
251           <listitem><formalpara><title>ordered</title><para>
252             1 = ordered (the operands must occur in the order the
253             query specifies them) or
254             0 = unordered (they may appear in either order).
255           </para></formalpara></listitem>
256           <listitem><formalpara><title>relation</title><para>
257             Recognised values are
258             1 (lessThan),
259             2 (lessThanOrEqual),
260             3 (equal),
261             4 (greaterThanOrEqual),
262             5 (greaterThan) and
263             6 (notEqual).
264           </para></formalpara></listitem>
265           <listitem><formalpara><title>which-code</title><para>
266             <literal>known</literal>
267             or
268             <literal>k</literal>
269             (the unit-code parameter is taken from the well-known list
270             of alternatives described in below) or
271             <literal>private</literal>
272             or
273             <literal>p</literal>
274             (the unit-code paramater has semantics specific to an
275             out-of-band agreement such as a profile).
276           </para></formalpara></listitem>
277           <listitem><formalpara><title>unit-code</title><para>
278             If the which-code parameter is <literal>known</literal>
279             then the recognised values are
280             1 (character),
281             2 (word),
282             3 (sentence),
283             4 (paragraph),
284             5 (section),
285             6 (chapter),
286             7 (document),
287             8 (element),
288             9 (subelement),
289             10 (elementType) and
290             11 (byte).
291             If which-code is <literal>private</literal> then the
292             acceptable values are determined by the profile.
293           </para></formalpara></listitem>
294         </itemizedlist>
295         (The numeric values of the relation and well-known unit-code
296         parameters are taken straight from
297         <ulink url="&url.z39.50.proximity.asn1;"
298         >the ASN.1</ulink> of the proximity structure in the standard.)
299       </para>
300     </sect3>
301
302     <sect3 id="pqf-examples"><title>PQF queries</title>
303
304      <example id="example.pqf.simple.terms">
305       <title>PQF queries using simple terms</title>
306       <para>
307        <screen>
308         dylan
309
310         "bob dylan"
311        </screen>
312       </para>
313      </example>
314      <example id="pqf.example.pqf.boolean.operators">
315       <title>PQF boolean operators</title>
316       <para>
317        <screen>
318         @or "dylan" "zimmerman"
319
320         @and @or dylan zimmerman when
321
322         @and when @or dylan zimmerman
323        </screen>
324       </para>
325      </example>
326      <example id="example.pqf.result.sets">
327       <title>PQF references to result sets</title>
328       <para>
329        <screen>
330         @set Result-1
331
332         @and @set seta @set setb
333        </screen>
334       </para>
335      </example>
336      <example id="example.pqf.attributes">
337       <title>Attributes for terms</title>
338       <para>
339        <screen>
340         @attr 1=4 computer
341
342         @attr 1=4 @attr 4=1 "self portrait"
343
344         @attrset exp1 @attr 1=1 CategoryList
345
346         @attr gils 1=2008 Copenhagen
347
348         @attr 1=/book/title computer
349        </screen>
350       </para>
351      </example>
352      <example id="example.pqf.proximity">
353       <title>PQF Proximity queries</title>
354       <para>
355        <screen>
356         @prox 0 3 1 2 k 2 dylan zimmerman
357        </screen>
358        <note><para>
359          Here the parameters 0, 3, 1, 2, k and 2 represent exclusion,
360          distance, ordered, relation, which-code and unit-code, in that
361          order.  So:
362          <itemizedlist>
363           <listitem><para>
364             exclusion = 0: the proximity condition must hold
365            </para></listitem>
366           <listitem><para>
367             distance = 3: the terms must be three units apart
368            </para></listitem>
369           <listitem><para>
370             ordered = 1: they must occur in the order they are specified
371            </para></listitem>
372           <listitem><para>
373             relation = 2: lessThanOrEqual (to the distance of 3 units)
374            </para></listitem>
375           <listitem><para>
376             which-code is ``known'', so the standard unit-codes are used
377            </para></listitem>
378           <listitem><para>
379             unit-code = 2: word.
380            </para></listitem>
381          </itemizedlist>
382          So the whole proximity query means that the words
383          <literal>dylan</literal> and <literal>zimmerman</literal> must
384          both occur in the record, in that order, differing in position
385          by three or fewer words (i.e. with two or fewer words between
386          them.)  The query would find ``Bob Dylan, aka. Robert
387          Zimmerman'', but not ``Bob Dylan, born as Robert Zimmerman''
388          since the distance in this case is four.
389         </para></note>
390       </para>
391      </example>
392      <example id="example.pqf.search.term.type">
393       <title>PQF specification of search term type</title>
394       <para>
395        <screen>
396         @term string "a UTF-8 string, maybe?"
397        </screen>
398       </para>
399      </example>
400      <example id="example.pqf.mixed.queries">
401       <title>PQF mixed queries</title>
402       <para>
403        <screen>
404         @or @and bob dylan @set Result-1
405         
406         @attr 4=1 @and @attr 1=1 "bob dylan" @attr 1=4 "slow train coming"
407         
408         @and @attr 2=4 @attr gils 1=2038 -114 @attr 2=2 @attr gils 1=2039 -109
409       </screen>
410        <note>
411         <para>
412          The last of these examples is a spatial search: in
413          <ulink url="http://www.gils.net/prof_v2.html#sec_7_4"
414           >the GILS attribute set</ulink>,
415          access point
416          2038 indicates West Bounding Coordinate and
417          2030 indicates East Bounding Coordinate,
418          so the query is for areas extending from -114 degrees
419          to no more than -109 degrees.
420         </para>
421        </note>
422       </para>
423      </example>
424     </sect3>
425    </sect2>
426    <sect2 id="CCL"><title>CCL</title>
427
428     <para>
429      Not all users enjoy typing in prefix query structures and numerical
430      attribute values, even in a minimalistic test client. In the library
431      world, the more intuitive Common Command Language - CCL (ISO 8777)
432      has enjoyed some popularity - especially before the widespread
433      availability of graphical interfaces. It is still useful in
434      applications where you for some reason or other need to provide a
435      symbolic language for expressing boolean query structures.
436     </para>
437
438     <para>
439      The EUROPAGATE research project working under the Libraries programme
440      of the European Commission's DG XIII has, amongst other useful tools,
441      implemented a general-purpose CCL parser which produces an output
442      structure that can be trivially converted to the internal RPN
443      representation of &yaz; (The <literal>Z_RPNQuery</literal> structure).
444      Since the CCL utility - along with the rest of the software
445      produced by EUROPAGATE - is made freely available on a liberal
446      license, it is included as a supplement to &yaz;.
447     </para>
448
449     <sect3 id="ccl.syntax">
450      <title>CCL Syntax</title>
451
452      <para>
453       The CCL parser obeys the following grammar for the FIND argument.
454       The syntax is annotated by in the lines prefixed by
455       <literal>--</literal>.
456      </para>
457
458      <screen>
459       CCL-Find ::= CCL-Find Op Elements
460                 | Elements.
461
462       Op ::= "and" | "or" | "not"
463       -- The above means that Elements are separated by boolean operators.
464
465       Elements ::= '(' CCL-Find ')'
466                 | Set
467                 | Terms
468                 | Qualifiers Relation Terms
469                 | Qualifiers Relation '(' CCL-Find ')'
470                 | Qualifiers '=' string '-' string
471       -- Elements is either a recursive definition, a result set reference, a
472       -- list of terms, qualifiers followed by terms, qualifiers followed
473       -- by a recursive definition or qualifiers in a range (lower - upper).
474
475       Set ::= 'set' = string
476       -- Reference to a result set
477
478       Terms ::= Terms Prox Term
479              | Term
480       -- Proximity of terms.
481
482       Term ::= Term string
483             | string
484       -- This basically means that a term may include a blank
485
486       Qualifiers ::= Qualifiers ',' string
487                   | string
488       -- Qualifiers is a list of strings separated by comma
489
490       Relation ::= '=' | '>=' | '&lt;=' | '&lt;>' | '>' | '&lt;'
491       -- Relational operators. This really doesn't follow the ISO8777
492       -- standard.
493
494       Prox ::= '%' | '!'
495       -- Proximity operator
496
497      </screen>
498      
499      <example id="example.ccl.queries">
500       <title>CCL queries</title>
501       <para>
502        The following queries are all valid:
503       </para>
504       
505       <screen>
506        dylan
507        
508        "bob dylan"
509        
510        dylan or zimmerman
511        
512        set=1
513        
514        (dylan and bob) or set=1
515        
516       </screen>
517       <para>
518        Assuming that the qualifiers <literal>ti</literal>,
519        <literal>au</literal>
520        and <literal>date</literal> are defined we may use:
521       </para>
522       
523       <screen>
524        ti=self portrait
525        
526        au=(bob dylan and slow train coming)
527
528        date>1980 and (ti=((self portrait)))
529        
530       </screen>
531      </example>
532      
533     </sect3>
534     <sect3 id="ccl.qualifiers">
535      <title>CCL Qualifiers</title>
536      
537      <para>
538       Qualifiers are used to direct the search to a particular searchable
539       index, such as title (ti) and author indexes (au). The CCL standard
540       itself doesn't specify a particular set of qualifiers, but it does
541       suggest a few short-hand notations. You can customize the CCL parser
542       to support a particular set of qualifiers to reflect the current target
543       profile. Traditionally, a qualifier would map to a particular
544       use-attribute within the BIB-1 attribute set. It is also
545       possible to set other attributes, such as the structure
546       attribute.
547      </para>
548
549      <para>
550       A  CCL profile is a set of predefined CCL qualifiers that may be
551       read from a file or set in the CCL API.
552       The YAZ client reads its CCL qualifiers from a file named
553       <filename>default.bib</filename>. There are four types of
554       lines in a CCL profile: qualifier specification,
555       qualifier alias, comments and directives.
556      </para>
557      <sect4 id="ccl.qualifier.specification">
558       <title>Qualifier specification</title>
559       <para>
560        A qualifier specification is of the form:
561       </para>
562       
563       <para>
564        <replaceable>qualifier-name</replaceable>  
565        [<replaceable>attributeset</replaceable><literal>,</literal>]<replaceable>type</replaceable><literal>=</literal><replaceable>val</replaceable>
566        [<replaceable>attributeset</replaceable><literal>,</literal>]<replaceable>type</replaceable><literal>=</literal><replaceable>val</replaceable> ...      
567       </para>
568       
569       <para>
570        where <replaceable>qualifier-name</replaceable> is the name of the
571        qualifier to be used (eg. <literal>ti</literal>),
572        <replaceable>type</replaceable> is attribute type in the attribute
573        set (Bib-1 is used if no attribute set is given) and
574        <replaceable>val</replaceable> is attribute value.
575        The <replaceable>type</replaceable> can be specified as an
576        integer or as it be specified either as a single-letter:
577        <literal>u</literal> for use, 
578        <literal>r</literal> for relation,<literal>p</literal> for position,
579        <literal>s</literal> for structure,<literal>t</literal> for truncation
580        or <literal>c</literal> for completeness.
581        The attributes for the special qualifier name <literal>term</literal>
582        are used when no CCL qualifier is given in a query.
583        <table id="ccl.common.bib1.attributes">
584         <title>Common Bib-1 attributes</title>
585         <tgroup cols="2">
586          <colspec colwidth="2*" colname="type"></colspec>
587          <colspec colwidth="9*" colname="description"></colspec>
588          <thead>
589           <row>
590            <entry>Type</entry>
591            <entry>Description</entry>
592           </row>
593          </thead>
594          <tbody>
595           <row>
596            <entry><literal>u=</literal><replaceable>value</replaceable></entry>
597            <entry>
598             Use attribute (1). Common use attributes are
599             1 Personal-name, 4 Title, 7 ISBN, 8 ISSN, 30 Date,
600             62 Subject, 1003 Author), 1016 Any. Specify value
601             as an integer.
602            </entry>
603           </row>
604
605           <row>
606            <entry><literal>r=</literal><replaceable>value</replaceable></entry>
607            <entry>
608             Relation attribute (2). Common values are
609             1 &lt;, 2 &lt;=, 3 =, 4 &gt;=, 5 &gt;, 6 &lt;&gt;,
610             100 phonetic, 101 stem, 102 relevance, 103 always matches.
611            </entry>
612           </row>
613
614           <row>
615            <entry><literal>p=</literal><replaceable>value</replaceable></entry>
616            <entry>
617             Position attribute (3). Values: 1 first in field, 2
618             first in any subfield, 3 any position in field.
619            </entry>
620           </row>
621
622           <row>
623            <entry><literal>s=</literal><replaceable>value</replaceable></entry>
624            <entry>
625             Structure attribute (4). Values: 1 phrase, 2 word,
626             3 key, 4 year, 5 date, 6 word list, 100 date (un),
627             101 name (norm), 102 name (un), 103 structure, 104 urx,
628             105 free-form-text, 106 document-text, 107 local-number,
629             108 string, 109 numeric string.
630            </entry>
631           </row>
632
633           <row>
634            <entry><literal>t=</literal><replaceable>value</replaceable></entry>
635            <entry>
636             Truncation attribute (5). Values: 1 right, 2 left,
637             3 left&amp; right, 100 none, 101 process #, 102 regular-1,
638             103 regular-2, 104 CCL.
639            </entry>
640           </row>
641
642           <row>
643            <entry><literal>c=</literal><replaceable>value</replaceable></entry>
644            <entry>
645             Completeness attribute (6). Values: 1 incomplete subfield,
646             2 complete subfield, 3 complete field.
647            </entry>
648           </row>
649
650          </tbody>
651          </tgroup>
652         </table>
653       </para>
654       <para>
655        Refer to the complete
656        <ulink url="&url.z39.50.attset.bib1;">list of Bib-1 attributes</ulink>
657       </para>
658       <para>
659        It is also possible to specify non-numeric attribute values, 
660        which are used in combination with certain types.
661        The special combinations are:
662        
663        <table id="ccl.special.attribute.combos">
664         <title>Special attribute combos</title>
665         <tgroup cols="2">
666          <colspec colwidth="2*" colname="name"></colspec>
667          <colspec colwidth="9*" colname="description"></colspec>
668          <thead>
669           <row>
670            <entry>Name</entry>
671            <entry>Description</entry>
672           </row>
673          </thead>
674          <tbody>
675           <row>
676            <entry><literal>s=pw</literal></entry><entry>
677             The structure is set to either word or phrase depending
678             on the number of tokens in a term (phrase-word).
679            </entry>
680           </row>
681           <row>
682            <entry><literal>s=al</literal></entry><entry>
683             Each token in the term is ANDed. (and-list).
684             This does not set the structure at all.
685            </entry>
686           </row>
687           
688           <row><entry><literal>s=ol</literal></entry><entry>
689             Each token in the term is ORed. (or-list).
690             This does not set the structure at all.
691            </entry>
692           </row>
693           
694           <row><entry><literal>r=o</literal></entry><entry>
695             Allows ranges and the operators greather-than, less-than, ...
696             equals.
697             This sets Bib-1 relation attribute accordingly (relation
698             ordered). A query construct is only treated as a range if
699             dash is used and that is surrounded by white-space. So
700             <literal>-1980</literal> is treated as term 
701             <literal>"-1980"</literal> not <literal>&lt;= 1980</literal>.
702             If <literal>- 1980</literal> is used, however, that is
703             treated as a range.
704            </entry>
705           </row>
706           
707           <row><entry><literal>r=r</literal></entry><entry>
708             Similar to <literal>r=o</literal> but assumes that terms
709             are non-negative (not prefixed with <literal>-</literal>).
710             Thus, a dash will always be treated as a range.
711             The construct <literal>1980-1990</literal> is
712             treated as a range with <literal>r=r</literal> but as a
713             single term <literal>"1980-1990"</literal> with
714             <literal>r=o</literal>. The special attribute
715             <literal>r=r</literal> is available in YAZ 2.0.24 or later.
716            </entry>
717           </row>
718           
719           <row><entry><literal>t=l</literal></entry><entry>
720             Allows term to be left-truncated.
721             If term is of the form <literal>?x</literal>, the resulting
722             Type-1 term is <literal>x</literal> and truncation is left.
723            </entry>
724           </row>
725           
726           <row><entry><literal>t=r</literal></entry><entry>
727             Allows term to be right-truncated.
728             If term is of the form <literal>x?</literal>, the resulting
729             Type-1 term is <literal>x</literal> and truncation is right.
730            </entry>
731           </row>
732           
733           <row><entry><literal>t=n</literal></entry><entry>
734             If term is does not include <literal>?</literal>, the
735             truncation attribute is set to none (100).
736            </entry>
737           </row>
738           
739           <row><entry><literal>t=b</literal></entry><entry>
740             Allows term to be both left&amp;right truncated.
741             If term is of the form <literal>?x?</literal>, the
742             resulting term is <literal>x</literal> and trunctation is
743             set to both left&amp;right.
744            </entry>
745           </row>
746          </tbody>
747         </tgroup>
748        </table>
749       </para>
750       <example id="example.ccl.profile"><title>CCL profile</title>
751        <para>
752         Consider the following definition:
753        </para>
754        
755        <screen>
756         ti       u=4 s=1
757         au       u=1 s=1
758         term     s=105
759         ranked   r=102
760         date     u=30 r=o
761       </screen>
762        <para>
763         <literal>ti</literal> and <literal>au</literal> both set 
764         structure attribute to phrase (s=1).
765         <literal>ti</literal>
766         sets the use-attribute to 4. <literal>au</literal> sets the
767         use-attribute to 1.
768         When no qualifiers are used in the query the structure-attribute is
769         set to free-form-text (105) (rule for <literal>term</literal>).
770         The <literal>date</literal> sets the relation attribute to
771         the relation used in the CCL query and sets the use attribute
772         to 30 (Bib-1 Date).
773        </para>
774        <para>
775         You can combine attributes. To Search for "ranked title" you
776         can do 
777         <screen>
778          ti,ranked=knuth computer
779         </screen>
780         which will set relation=ranked, use=title, structure=phrase.
781        </para>
782        <para>
783         Query
784         <screen>
785          date > 1980
786         </screen>
787         is a valid query. But
788         <screen>
789          ti > 1980
790         </screen>
791         is invalid.
792        </para>
793       </example>
794      </sect4>
795      <sect4 id="ccl.qualifier.alias">
796       <title>Qualifier alias</title>
797       <para>
798        A qualifier alias is of the form:
799       </para>
800       <para>
801        <replaceable>q</replaceable>  
802        <replaceable>q1</replaceable> <replaceable>q2</replaceable> ..
803       </para>
804       <para>
805        which declares <replaceable>q</replaceable> to
806        be an alias for <replaceable>q1</replaceable>, 
807        <replaceable>q2</replaceable>... such that the CCL
808        query <replaceable>q=x</replaceable> is equivalent to
809        <replaceable>q1=x or q2=x or ...</replaceable>.
810       </para>
811      </sect4>
812
813      <sect4 id="ccl.comments">
814       <title>Comments</title>
815       <para>
816        Lines with white space or lines that begin with
817        character <literal>#</literal> are treated as comments.
818       </para>
819      </sect4>
820
821      <sect4 id="ccl.directives">
822       <title>Directives</title>
823       <para>
824        Directive specifications takes the form
825       </para>
826       <para><literal>@</literal><replaceable>directive</replaceable> <replaceable>value</replaceable>
827       </para>
828       <table id="ccl.directives.table">
829        <title>CCL directives</title>
830        <tgroup cols="3">
831         <colspec colwidth="2*" colname="name"></colspec>
832         <colspec colwidth="8*" colname="description"></colspec>
833         <colspec colwidth="1*" colname="default"></colspec>
834         <thead>
835          <row>
836           <entry>Name</entry>
837           <entry>Description</entry>
838           <entry>Default</entry>
839          </row>
840         </thead>
841         <tbody>
842          <row>
843           <entry>truncation</entry>
844           <entry>Truncation character</entry>
845           <entry><literal>?</literal></entry>
846          </row>
847          <row>
848           <entry>field</entry>
849           <entry>Specifies how multiple fields are to be
850            combined. There are two modes: <literal>or</literal>:
851            multiple qualifier fields are ORed,
852            <literal>merge</literal>: attributes for the qualifier
853            fields are merged and assigned to one term.
854            </entry>
855           <entry><literal>merge</literal></entry>
856          </row>
857          <row>
858           <entry>case</entry>
859           <entry>Specificies if CCL operatores and qualifiers should be
860            compared with case sensitivity or not. Specify 0 for
861            case sensitive; 1 for case insensitive.</entry>
862           <entry><literal>0</literal></entry>
863          </row>
864
865          <row>
866           <entry>and</entry>
867           <entry>Specifies token for CCL operator AND.</entry>
868           <entry><literal>and</literal></entry>
869          </row>
870
871          <row>
872           <entry>or</entry>
873           <entry>Specifies token for CCL operator OR.</entry>
874           <entry><literal>or</literal></entry>
875          </row>
876
877          <row>
878           <entry>not</entry>
879           <entry>Specifies token for CCL operator NOT.</entry>
880           <entry><literal>not</literal></entry>
881          </row>
882
883          <row>
884           <entry>set</entry>
885           <entry>Specifies token for CCL operator SET.</entry>
886           <entry><literal>set</literal></entry>
887          </row>
888         </tbody>
889         </tgroup>
890       </table>
891      </sect4>
892     </sect3>
893     <sect3 id="ccl.api">
894      <title>CCL API</title>
895      <para>
896       All public definitions can be found in the header file
897       <filename>ccl.h</filename>. A profile identifier is of type
898       <literal>CCL_bibset</literal>. A profile must be created with the call
899       to the function <function>ccl_qual_mk</function> which returns a profile
900       handle of type <literal>CCL_bibset</literal>.
901      </para>
902
903      <para>
904       To read a file containing qualifier definitions the function
905       <function>ccl_qual_file</function> may be convenient. This function
906       takes an already opened <literal>FILE</literal> handle pointer as
907       argument along with a <literal>CCL_bibset</literal> handle.
908      </para>
909
910      <para>
911       To parse a simple string with a FIND query use the function
912      </para>
913      <screen>
914 struct ccl_rpn_node *ccl_find_str (CCL_bibset bibset, const char *str,
915                                    int *error, int *pos);
916      </screen>
917      <para>
918       which takes the CCL profile (<literal>bibset</literal>) and query
919       (<literal>str</literal>) as input. Upon successful completion the RPN
920       tree is returned. If an error occur, such as a syntax error, the integer
921       pointed to by <literal>error</literal> holds the error code and
922       <literal>pos</literal> holds the offset inside query string in which
923       the parsing failed.
924      </para>
925
926      <para>
927       An English representation of the error may be obtained by calling
928       the <literal>ccl_err_msg</literal> function. The error codes are
929       listed in <filename>ccl.h</filename>.
930      </para>
931
932      <para>
933       To convert the CCL RPN tree (type
934       <literal>struct ccl_rpn_node *</literal>)
935       to the Z_RPNQuery of YAZ the function <function>ccl_rpn_query</function>
936       must be used. This function which is part of YAZ is implemented in
937       <filename>yaz-ccl.c</filename>.
938       After calling this function the CCL RPN tree is probably no longer
939       needed. The <literal>ccl_rpn_delete</literal> destroys the CCL RPN tree.
940      </para>
941
942      <para>
943       A CCL profile may be destroyed by calling the
944       <function>ccl_qual_rm</function> function.
945      </para>
946
947      <para>
948       The token names for the CCL operators may be changed by setting the
949       globals (all type <literal>char *</literal>)
950       <literal>ccl_token_and</literal>, <literal>ccl_token_or</literal>,
951       <literal>ccl_token_not</literal> and <literal>ccl_token_set</literal>.
952       An operator may have aliases, i.e. there may be more than one name for
953       the operator. To do this, separate each alias with a space character.
954      </para>
955     </sect3>
956    </sect2>
957    <sect2 id="cql"><title>CQL</title>
958     <para>
959      <ulink url="&url.cql;">CQL</ulink>
960       - Common Query Language - was defined for the
961      <ulink url="&url.sru;">SRU</ulink> protocol.
962      In many ways CQL has a similar syntax to CCL.
963      The objective of CQL is different. Where CCL aims to be
964      an end-user language, CQL is <emphasis>the</emphasis> protocol
965      query language for SRU.
966     </para>
967     <tip>
968      <para>
969       If you are new to CQL, read the 
970       <ulink url="&url.cql.intro;">Gentle Introduction</ulink>.
971      </para>
972     </tip>
973     <para>
974      The CQL parser in &yaz; provides the following:
975      <itemizedlist>
976       <listitem>
977        <para>
978         It parses and validates a CQL query.
979        </para>
980       </listitem>
981       <listitem>
982        <para>
983         It generates a C structure that allows you to convert
984         a CQL query to some other query language, such as SQL.
985        </para>
986       </listitem>
987       <listitem>
988        <para>
989         The parser converts a valid CQL query to PQF, thus providing a
990         way to use CQL for both SRU servers and Z39.50 targets at the
991         same time.
992        </para>
993       </listitem>
994       <listitem>
995        <para>
996         The parser converts CQL to
997         <ulink url="&url.xcql;">XCQL</ulink>.
998         XCQL is an XML representation of CQL.
999         XCQL is part of the SRU specification. However, since SRU
1000         supports CQL only, we don't expect XCQL to be widely used.
1001         Furthermore, CQL has the advantage over XCQL that it is
1002         easy to read.
1003        </para>
1004       </listitem>
1005      </itemizedlist>
1006     </para>
1007     <sect3 id="cql.parsing"><title>CQL parsing</title>
1008      <para>
1009       A CQL parser is represented by the <literal>CQL_parser</literal>
1010       handle. Its contents should be considered &yaz; internal (private).
1011       <synopsis>
1012 #include &lt;yaz/cql.h&gt;
1013
1014 typedef struct cql_parser *CQL_parser;
1015
1016 CQL_parser cql_parser_create(void);
1017 void cql_parser_destroy(CQL_parser cp);
1018       </synopsis>
1019      A parser is created by <function>cql_parser_create</function> and
1020      is destroyed by <function>cql_parser_destroy</function>.
1021      </para>
1022      <para>
1023       To parse a CQL query string, the following function
1024       is provided:
1025       <synopsis>
1026 int cql_parser_string(CQL_parser cp, const char *str);
1027       </synopsis>
1028       A CQL query is parsed by the <function>cql_parser_string</function>
1029       which takes a query <parameter>str</parameter>.
1030       If the query was valid (no syntax errors), then zero is returned;
1031       otherwise -1 is returned to indicate a syntax error.
1032      </para>
1033      <para>
1034       <synopsis>
1035 int cql_parser_stream(CQL_parser cp,
1036                       int (*getbyte)(void *client_data),
1037                       void (*ungetbyte)(int b, void *client_data),
1038                       void *client_data);
1039
1040 int cql_parser_stdio(CQL_parser cp, FILE *f);
1041       </synopsis>
1042       The functions <function>cql_parser_stream</function> and
1043       <function>cql_parser_stdio</function> parses a CQL query
1044       - just like <function>cql_parser_string</function>.
1045       The only difference is that the CQL query can be
1046       fed to the parser in different ways.
1047       The <function>cql_parser_stream</function> uses a generic
1048       byte stream as input. The <function>cql_parser_stdio</function>
1049       uses a <literal>FILE</literal> handle which is opened for reading.
1050      </para>
1051     </sect3>
1052     
1053     <sect3 id="cql.tree"><title>CQL tree</title>
1054      <para>
1055       The the query string is valid, the CQL parser
1056       generates a tree representing the structure of the
1057       CQL query.
1058      </para>
1059      <para>
1060       <synopsis>
1061 struct cql_node *cql_parser_result(CQL_parser cp);
1062       </synopsis>
1063       <function>cql_parser_result</function> returns the
1064       a pointer to the root node of the resulting tree.
1065      </para>
1066      <para>
1067       Each node in a CQL tree is represented by a 
1068       <literal>struct cql_node</literal>.
1069       It is defined as follows:
1070       <synopsis>
1071 #define CQL_NODE_ST 1
1072 #define CQL_NODE_BOOL 2
1073 struct cql_node {
1074     int which;
1075     union {
1076         struct {
1077             char *index;
1078             char *index_uri;
1079             char *term;
1080             char *relation;
1081             char *relation_uri;
1082             struct cql_node *modifiers;
1083         } st;
1084         struct {
1085             char *value;
1086             struct cql_node *left;
1087             struct cql_node *right;
1088             struct cql_node *modifiers;
1089         } boolean;
1090     } u;
1091 };
1092       </synopsis>
1093       There are two node types: search term (ST) and boolean (BOOL).
1094       A modifier is treated as a search term too.
1095      </para>
1096      <para>
1097       The search term node has five members:
1098       <itemizedlist>
1099        <listitem>
1100         <para>
1101          <literal>index</literal>: index for search term.
1102          If an index is unspecified for a search term,
1103          <literal>index</literal> will be NULL.
1104         </para>
1105        </listitem>
1106        <listitem>
1107         <para>
1108          <literal>index_uri</literal>: index URi for search term
1109          or NULL if none could be resolved for the index.
1110         </para>
1111        </listitem>
1112        <listitem>
1113         <para>
1114          <literal>term</literal>: the search term itself.
1115         </para>
1116        </listitem>
1117        <listitem>
1118         <para>
1119          <literal>relation</literal>: relation for search term.
1120         </para>
1121        </listitem>
1122        <listitem>
1123         <para>
1124          <literal>relation_uri</literal>: relation URI for search term.
1125         </para>
1126        </listitem>
1127        <listitem>
1128         <para>
1129          <literal>modifiers</literal>: relation modifiers for search
1130          term. The <literal>modifiers</literal> list itself of cql_nodes
1131          each of type <literal>ST</literal>.
1132         </para>
1133        </listitem>
1134       </itemizedlist>
1135      </para>
1136
1137      <para>
1138       The boolean node represents both <literal>and</literal>,
1139       <literal>or</literal>, not as well as
1140       proximity.
1141       <itemizedlist>
1142        <listitem>
1143         <para>
1144          <literal>left</literal> and <literal>right</literal>: left
1145          - and right operand respectively.
1146         </para>
1147        </listitem>
1148        <listitem>
1149         <para>
1150          <literal>modifiers</literal>: proximity arguments.
1151         </para>
1152        </listitem>
1153       </itemizedlist>
1154      </para>
1155
1156     </sect3>
1157     <sect3 id="cql.to.pqf"><title>CQL to PQF conversion</title>
1158      <para>
1159       Conversion to PQF (and Z39.50 RPN) is tricky by the fact
1160       that the resulting RPN depends on the Z39.50 target
1161       capabilities (combinations of supported attributes). 
1162       In addition, the CQL and SRU operates on index prefixes
1163       (URI or strings), whereas the RPN uses Object Identifiers
1164       for attribute sets.
1165      </para>
1166      <para>
1167       The CQL library of &yaz; defines a <literal>cql_transform_t</literal>
1168       type. It represents a particular mapping between CQL and RPN.
1169       This handle is created and destroyed by the functions:
1170      <synopsis>
1171 cql_transform_t cql_transform_open_FILE (FILE *f);
1172 cql_transform_t cql_transform_open_fname(const char *fname);
1173 void cql_transform_close(cql_transform_t ct);
1174       </synopsis>
1175       The first two functions create a tranformation handle from
1176       either an already open FILE or from a filename respectively.
1177      </para>
1178      <para>
1179       The handle is destroyed by <function>cql_transform_close</function> 
1180       in which case no further reference of the handle is allowed.
1181      </para>
1182      <para>
1183       When a <literal>cql_transform_t</literal> handle has been created
1184       you can convert to RPN.
1185       <synopsis>
1186 int cql_transform_buf(cql_transform_t ct,
1187                       struct cql_node *cn, char *out, int max);
1188       </synopsis>
1189       This function converts the CQL tree <literal>cn</literal> 
1190       using handle <literal>ct</literal>.
1191       For the resulting PQF, you supply a buffer <literal>out</literal>
1192       which must be able to hold at at least <literal>max</literal>
1193       characters.
1194      </para>
1195      <para>
1196       If conversion failed, <function>cql_transform_buf</function>
1197       returns a non-zero SRU error code; otherwise zero is returned
1198       (conversion successful).  The meanings of the numeric error
1199       codes are listed in the SRU specifications at
1200       <ulink url="&url.sru.diagnostics.list;"/>
1201      </para>
1202      <para>
1203       If conversion fails, more information can be obtained by calling
1204       <synopsis>
1205 int cql_transform_error(cql_transform_t ct, char **addinfop);
1206       </synopsis>
1207       This function returns the most recently returned numeric
1208       error-code and sets the string-pointer at
1209       <literal>*addinfop</literal> to point to a string containing
1210       additional information about the error that occurred: for
1211       example, if the error code is 15 (``Illegal or unsupported context
1212       set''), the additional information is the name of the requested
1213       context set that was not recognised.
1214      </para>
1215      <para>
1216       The SRU error-codes may be translated into brief human-readable
1217       error messages using
1218       <synopsis>
1219 const char *cql_strerror(int code);
1220       </synopsis>
1221      </para>
1222      <para>
1223       If you wish to be able to produce a PQF result in a different
1224       way, there are two alternatives.
1225       <synopsis>
1226 void cql_transform_pr(cql_transform_t ct,
1227                       struct cql_node *cn,
1228                       void (*pr)(const char *buf, void *client_data),
1229                       void *client_data);
1230
1231 int cql_transform_FILE(cql_transform_t ct,
1232                        struct cql_node *cn, FILE *f);
1233       </synopsis>
1234       The former function produces output to a user-defined
1235       output stream. The latter writes the result to an already
1236       open <literal>FILE</literal>.
1237      </para>
1238     </sect3>
1239     <sect3 id="cql.to.rpn">
1240      <title>Specification of CQL to RPN mappings</title>
1241      <para>
1242       The file supplied to functions 
1243       <function>cql_transform_open_FILE</function>,
1244       <function>cql_transform_open_fname</function> follows
1245       a structure found in many Unix utilities.
1246       It consists of mapping specifications - one per line.
1247       Lines starting with <literal>#</literal> are ignored (comments).
1248      </para>
1249      <para>
1250       Each line is of the form
1251       <literallayout>
1252        <replaceable>CQL pattern</replaceable><literal> = </literal> <replaceable> RPN equivalent</replaceable>
1253       </literallayout>
1254      </para>
1255      <para>
1256       An RPN pattern is a simple attribute list. Each attribute pair
1257       takes the form:
1258       <literallayout>
1259        [<replaceable>set</replaceable>] <replaceable>type</replaceable><literal>=</literal><replaceable>value</replaceable>
1260       </literallayout>
1261       The attribute <replaceable>set</replaceable> is optional.
1262       The <replaceable>type</replaceable> is the attribute type,
1263       <replaceable>value</replaceable> the attribute value.
1264      </para>
1265      <para>
1266       The character <literal>*</literal> (asterisk) has special meaning
1267       when used in the RPN pattern.
1268       Each occurrence of <literal>*</literal> is substituted with the
1269       CQL matching name (index, relation, qualifier etc).
1270       This facility can be used to copy a CQL name verbatim to the RPN result.
1271      </para>
1272      <para>
1273       The following CQL patterns are recognized:
1274       <variablelist>
1275        <varlistentry><term>
1276          <literal>index.</literal><replaceable>set</replaceable><literal>.</literal><replaceable>name</replaceable>
1277         </term>
1278         <listitem>
1279          <para>
1280           This pattern is invoked when a CQL index, such as 
1281           dc.title is converted. <replaceable>set</replaceable>
1282           and <replaceable>name</replaceable> are the context set and index
1283           name respectively.
1284           Typically, the RPN specifies an equivalent use attribute.
1285          </para>
1286          <para>
1287           For terms not bound by an index the pattern
1288           <literal>index.cql.serverChoice</literal> is used.
1289           Here, the prefix <literal>cql</literal> is defined as
1290           <literal>http://www.loc.gov/zing/cql/cql-indexes/v1.0/</literal>.
1291           If this pattern is not defined, the mapping will fail.
1292          </para>
1293          <para>
1294           The pattern, 
1295           <literal>index.</literal><replaceable>set</replaceable><literal>.*</literal>
1296           is used when no other index pattern is matched.
1297         </para>
1298         </listitem>
1299        </varlistentry>
1300        <varlistentry><term>
1301          <literal>qualifier.</literal><replaceable>set</replaceable><literal>.</literal><replaceable>name</replaceable>
1302          (DEPRECATED)
1303         </term>
1304         <listitem>
1305          <para>
1306           For backwards compatibility, this is recognised as a synonym of
1307           <literal>index.</literal><replaceable>set</replaceable><literal>.</literal><replaceable>name</replaceable>
1308          </para>
1309         </listitem>
1310        </varlistentry>
1311        <varlistentry><term>
1312          <literal>relation.</literal><replaceable>relation</replaceable>
1313         </term>
1314         <listitem>
1315          <para>
1316           This pattern specifies how a CQL relation is mapped to RPN.
1317           <replaceable>pattern</replaceable> is name of relation
1318           operator. Since <literal>=</literal> is used as
1319           separator between CQL pattern and RPN, CQL relations
1320           including <literal>=</literal> cannot be
1321           used directly. To avoid a conflict, the names
1322           <literal>ge</literal>,
1323           <literal>eq</literal>,
1324           <literal>le</literal>,
1325           must be used for CQL operators, greater-than-or-equal,
1326           equal, less-than-or-equal respectively.
1327           The RPN pattern is supposed to include a relation attribute.
1328          </para>
1329          <para>
1330           For terms not bound by a relation, the pattern
1331           <literal>relation.scr</literal> is used. If the pattern
1332           is not defined, the mapping will fail.
1333          </para>
1334          <para>
1335           The special pattern, <literal>relation.*</literal> is used
1336           when no other relation pattern is matched.
1337          </para>
1338         </listitem>
1339        </varlistentry>
1340
1341        <varlistentry><term>
1342          <literal>relationModifier.</literal><replaceable>mod</replaceable>
1343         </term>
1344         <listitem>
1345          <para>
1346           This pattern specifies how a CQL relation modifier is mapped to RPN.
1347           The RPN pattern is usually a relation attribute.
1348          </para>
1349         </listitem>
1350        </varlistentry>
1351
1352        <varlistentry><term>
1353          <literal>structure.</literal><replaceable>type</replaceable>
1354         </term>
1355         <listitem>
1356          <para>
1357           This pattern specifies how a CQL structure is mapped to RPN.
1358           Note that this CQL pattern is somewhat to similar to
1359           CQL pattern <literal>relation</literal>. 
1360           The <replaceable>type</replaceable> is a CQL relation.
1361          </para>
1362          <para>
1363           The pattern, <literal>structure.*</literal> is used
1364           when no other structure pattern is matched.
1365           Usually, the RPN equivalent specifies a structure attribute.
1366          </para>
1367         </listitem>
1368        </varlistentry>
1369
1370        <varlistentry><term>
1371          <literal>position.</literal><replaceable>type</replaceable>
1372         </term>
1373         <listitem>
1374          <para>
1375           This pattern specifies how the anchor (position) of
1376           CQL is mapped to RPN.
1377           The <replaceable>type</replaceable> is one
1378           of <literal>first</literal>, <literal>any</literal>,
1379           <literal>last</literal>, <literal>firstAndLast</literal>.
1380          </para>
1381          <para>
1382           The pattern, <literal>position.*</literal> is used
1383           when no other position pattern is matched.
1384          </para>
1385         </listitem>
1386        </varlistentry>
1387
1388        <varlistentry><term>
1389          <literal>set.</literal><replaceable>prefix</replaceable>
1390         </term>
1391         <listitem>
1392          <para>
1393           This specification defines a CQL context set for a given prefix.
1394           The value on the right hand side is the URI for the set - 
1395           <emphasis>not</emphasis> RPN. All prefixes used in
1396           index patterns must be defined this way.
1397          </para>
1398         </listitem>
1399        </varlistentry>
1400
1401        <varlistentry><term>
1402          <literal>set</literal>
1403         </term>
1404         <listitem>
1405          <para>
1406           This specification defines a default CQL context set for index names.
1407           The value on the right hand side is the URI for the set.
1408          </para>
1409         </listitem>
1410        </varlistentry>
1411
1412       </variablelist>
1413      </para>
1414      <example id="example.cql.to.rpn.mapping">
1415       <title>CQL to RPN mapping file</title>
1416       <para>
1417        This simple file defines two context sets, three indexes and three
1418        relations, a position pattern and a default structure.
1419       </para>
1420       <programlisting><![CDATA[
1421        set.cql  = http://www.loc.gov/zing/cql/context-sets/cql/v1.1/
1422        set.dc   = http://www.loc.gov/zing/cql/dc-indexes/v1.0/
1423
1424        index.cql.serverChoice = 1=1016
1425        index.dc.title         = 1=4
1426        index.dc.subject       = 1=21
1427   
1428        relation.<             = 2=1
1429        relation.eq            = 2=3
1430        relation.scr           = 2=3
1431
1432        position.any           = 3=3 6=1
1433
1434        structure.*            = 4=1
1435 ]]>
1436       </programlisting>
1437       <para>
1438        With the mappings above, the CQL query
1439        <screen>
1440         computer
1441        </screen>
1442        is converted to the PQF:
1443        <screen>
1444         @attr 1=1016 @attr 2=3 @attr 4=1 @attr 3=3 @attr 6=1 "computer"
1445        </screen>
1446        by rules <literal>index.cql.serverChoice</literal>,
1447        <literal>relation.scr</literal>, <literal>structure.*</literal>,
1448        <literal>position.any</literal>.
1449       </para>
1450       <para>
1451        CQL query
1452        <screen>
1453         computer^
1454        </screen>
1455        is rejected, since <literal>position.right</literal> is
1456        undefined.
1457       </para>
1458       <para>
1459        CQL query
1460        <screen>
1461         >my = "http://www.loc.gov/zing/cql/dc-indexes/v1.0/" my.title = x
1462        </screen>
1463        is converted to
1464        <screen>
1465         @attr 1=4 @attr 2=3 @attr 4=1 @attr 3=3 @attr 6=1 "x"
1466        </screen>
1467       </para>
1468      </example>
1469      <example id="example.cql.to.rpn.string">
1470       <title>CQL to RPN string attributes</title>
1471       <para>
1472        In this example we allow any index to be passed to RPN as
1473        a use attribute.
1474       </para>
1475       <programlisting><![CDATA[
1476        # Identifiers for prefixes used in this file. (index.*)
1477        set.cql  = info:srw/cql-context-set/1/cql-v1.1
1478        set.rpn  = http://bogus/rpn
1479        set      = http://bogus/rpn
1480
1481        # The default index when none is specified by the query
1482        index.cql.serverChoice     = 1=any
1483
1484        index.rpn.*                = 1=*
1485        relation.eq                = 2=3
1486        structure.*                = 4=1
1487        position.any               = 3=3
1488 ]]>
1489       </programlisting>
1490       <para>
1491        The <literal>http://bogus/rpn</literal> context set is also the default
1492        so we can make queries such as
1493        <screen>
1494         title = a
1495        </screen>
1496        which is converted to
1497        <screen>
1498         @attr 2=3 @attr 4=1 @attr 3=3 @attr 1=title "a"
1499        </screen>
1500       </para>
1501      </example>
1502      <example id="example.cql.to.rpn.bathprofile">
1503       <title>CQL to RPN using Bath Profile</title>
1504       <para>
1505        The file <filename>etc/pqf.properties</filename> has mappings from
1506        the Bath Profile and Dublin Core to RPN.
1507        If YAZ is installed as a package it's usually located
1508        in <filename>/usr/share/yaz/etc</filename> and part of the
1509        development package, such as <literal>libyaz-dev</literal>.
1510       </para>
1511      </example>
1512     </sect3>
1513     <sect3 id="cql.xcql"><title>CQL to XCQL conversion</title>
1514      <para>
1515       Conversion from CQL to XCQL is trivial and does not
1516       require a mapping to be defined.
1517       There three functions to choose from depending on the
1518       way you wish to store the resulting output (XML buffer
1519       containing XCQL).
1520       <synopsis>
1521 int cql_to_xml_buf(struct cql_node *cn, char *out, int max);
1522 void cql_to_xml(struct cql_node *cn, 
1523                 void (*pr)(const char *buf, void *client_data),
1524                 void *client_data);
1525 void cql_to_xml_stdio(struct cql_node *cn, FILE *f);
1526       </synopsis>
1527       Function <function>cql_to_xml_buf</function> converts
1528       to XCQL and stores result in a user supplied buffer of a given
1529       max size.
1530      </para>
1531      <para>
1532       <function>cql_to_xml</function> writes the result in
1533       a user defined output stream.
1534       <function>cql_to_xml_stdio</function> writes to a
1535       a file.
1536      </para>
1537     </sect3>
1538    </sect2>
1539   </sect1>
1540   <sect1 id="tools.oid"><title>Object Identifiers</title>
1541
1542    <para>
1543     The basic YAZ representation of an OID is an array of integers,
1544     terminated with the value -1. This integer is of type 
1545     <literal>Odr_oid</literal>.
1546    </para>
1547    <para>
1548     Fundamental OID operations and the type <literal>Odr_oid</literal>
1549     are defined in <filename>yaz/oid_util.h</filename>.
1550    </para>
1551    <para>
1552     An OID can either be declared as a automatic variable or it can
1553     allocated using the memory utilities or ODR/NMEM. It's
1554     guaranteed that an OID can fit in <literal>OID_SIZE</literal> integers.
1555    </para>
1556    <example id="tools.oid.bib1.1"><title>Create OID on stack</title>
1557     <para>
1558      We can create an OID for the Bib-1 attribute set with:
1559      <screen>
1560       Odr_oid bib1[OID_SIZE];
1561       bib1[0] = 1;
1562       bib1[1] = 2;
1563       bib1[2] = 840;
1564       bib1[3] = 10003;
1565       bib1[4] = 3;
1566       bib1[5] = 1;
1567       bib1[6] = -1;
1568      </screen>
1569     </para>
1570    </example>
1571    <para>
1572     And OID may also be filled from a string-based representation using
1573     dots (.). This is achieved by function
1574     <screen>
1575      int oid_dotstring_to_oid(const char *name, Odr_oid *oid);
1576     </screen>
1577     This functions returns 0 if name could be converted; -1 otherwise.
1578    </para>
1579    <example id="tools.oid.bib1.2"><title>Using oid_oiddotstring_to_oid</title>
1580     <para>
1581      We can fill the Bib-1 attribute set OID easier with:
1582      <screen>
1583       Odr_oid bib1[OID_SIZE];
1584       oid_oiddotstring_to_oid("1.2.840.10003.3.1", bib1);
1585      </screen>
1586    </para>
1587    </example>
1588    <para>
1589     We can also allocate an OID dynamically on a ODR stream with:
1590    <screen>
1591     Odr_oid *odr_getoidbystr(ODR o, const char *str);
1592    </screen>
1593     This creates an OID from string-based representation using dots.
1594     This function take an &odr; stream as parameter. This stream is used to
1595     allocate memory for the data elements, which is released on a
1596     subsequent call to <function>odr_reset()</function> on that stream.
1597    </para>
1598
1599    <example id="tools.oid.bib1.3"><title>Using odr_getoidbystr</title>
1600     <para>
1601      We can create a OID for the Bib-1 attribute set with:
1602      <screen>
1603       Odr_oid *bib1 = odr_getoidbystr(odr, "1.2.840.10003.3.1");
1604      </screen>
1605     </para>
1606    </example>
1607
1608    <para>
1609     The function
1610     <screen>
1611      char *oid_oid_to_dotstring(const Odr_oid *oid, char *oidbuf)
1612     </screen>
1613     does the reverse of <function>oid_oiddotstring_to_oid</function>. It
1614     converts an OID to the string-based representation using dots.
1615     The supplied char buffer <literal>oidbuf</literal> holds the resulting
1616     string and must be at least <literal>OID_STR_MAX</literal> in size.
1617    </para>
1618
1619    <para>
1620     OIDs can be copied with <function>oid_oidcpy</function> which takes
1621     two OID lists as arguments. Alternativly, an OID copy can be allocated
1622     on a ODR stream with:
1623     <screen>
1624      Odr_oid *odr_oiddup(ODR odr, const Odr_oid *o);
1625     </screen>
1626    </para>
1627    
1628    <para>
1629     OIDs can be compared with <function>oid_oidcmp</function> which returns
1630     zero if the two OIDs provided are identical; non-zero otherwise.
1631    </para>
1632  
1633    <sect2 id="tools.oid.database"><title>OID database</title>
1634     <para>
1635      From YAZ version 3 and later, the oident system has been replaced
1636      by an OID database. OID database is a misnomer .. the old odient
1637      system was also a database.
1638     </para>
1639     <para>
1640      The OID database is really just a map between named Object Identifiers
1641      (string) and their OID raw equivalents. Most operations either
1642      convert from string to OID or other way around.
1643     </para>
1644     <para>
1645      Unfortunately, whenever we supply a string we must also specify the 
1646      <emphasis>OID class</emphasis>. The class is necessary because some
1647      strings correspond to multiple OIDs. An example of such a string is
1648      <literal>Bib-1</literal> which may either be an attribute-set 
1649      or a diagnostic-set.
1650     </para>
1651     <para>
1652      Applications using the YAZ database should include 
1653      <filename>yaz/oid_db.h</filename>.
1654     </para>
1655     <para>
1656      A YAZ database handle is of type <literal>yaz_oid_db_t</literal>.
1657      Actually that's a pointer. You need not think deal with that.
1658      YAZ has a built-in database which can be considered "constant" for
1659      most purposes. 
1660      We can get hold that by using function <function>yaz_oid_std</function>.
1661     </para>
1662     <para>
1663      All functions with prefix <function>yaz_string_to_oid</function>
1664      converts from class + string to OID. We have variants of this
1665      operation due to different memory allocation strategies.
1666     </para>
1667     <para>
1668      All functions with prefix
1669      <function>yaz_oid_to_string</function> converts from OID to string
1670      + class.
1671     </para>
1672
1673     <example id="tools.oid.bib1.4"><title>Create OID with YAZ DB</title>
1674      <para>
1675       We can create an OID for the Bib-1 attribute set on the ODR stream
1676       odr with:
1677      <screen>
1678         Odr_oid *bib1 = 
1679          yaz_string_to_oid_odr(yaz_oid_std(), CLASS_ATTSET, "Bib-1", odr);
1680       </screen>
1681       This is more complex than using <function>odr_getoidbystr</function>.
1682       You would only use <function>yaz_string_to_oid_odr</function> when the
1683       string (here Bib-1) is supplied by a user or configuration.
1684      </para>
1685     </example>
1686
1687    </sect2>
1688    <sect2 id="tools.oid.std"><title>Standard OIDs</title>
1689      
1690     <para>
1691      All the object identifers in the standard OID database as returned
1692      by <function>yaz_oid_std</function> can referenced directly in a
1693      program as a constant OID.
1694      Each constant OID is prefixed with <literal>yaz_oid_</literal> -
1695      followed by OID class (lowercase) - then by OID name (normalized and
1696      lowercase).
1697     </para>
1698     <para>
1699      See <xref linkend="list-oids"/> for list of all object identifiers
1700      built into YAZ.
1701      These are declared in <filename>yaz/oid_std.h</filename> but are
1702      included by <filename>yaz/oid_db.h</filename> as well.
1703     </para>
1704
1705     <example id="tools.oid.bib1.5"><title>Use a built-in OID</title>
1706      <para>
1707       We can allocate our own OID filled with the constant OID for
1708       Bib-1 with:
1709       <screen>
1710         Odr_oid *bib1 = odr_oiddup(o, yaz_oid_attset_bib1);
1711       </screen>
1712      </para>
1713     </example>
1714    </sect2>
1715   </sect1>
1716   <sect1 id="tools.nmem"><title>Nibble Memory</title>
1717
1718    <para>
1719     Sometimes when you need to allocate and construct a large,
1720     interconnected complex of structures, it can be a bit of a pain to
1721     release the associated memory again. For the structures describing the
1722     Z39.50 PDUs and related structures, it is convenient to use the
1723     memory-management system of the &odr; subsystem (see
1724     <xref linkend="odr.use"/>). However, in some circumstances
1725     where you might otherwise benefit from using a simple nibble memory
1726     management system, it may be impractical to use
1727     <function>odr_malloc()</function> and <function>odr_reset()</function>.
1728     For this purpose, the memory manager which also supports the &odr;
1729     streams is made available in the NMEM module. The external interface
1730     to this module is given in the <filename>nmem.h</filename> file.
1731    </para>
1732
1733    <para>
1734     The following prototypes are given:
1735    </para>
1736
1737    <screen>
1738     NMEM nmem_create(void);
1739     void nmem_destroy(NMEM n);
1740     void *nmem_malloc(NMEM n, int size);
1741     void nmem_reset(NMEM n);
1742     int nmem_total(NMEM n);
1743     void nmem_init(void);
1744     void nmem_exit(void);
1745    </screen>
1746
1747    <para>
1748     The <function>nmem_create()</function> function returns a pointer to a
1749     memory control handle, which can be released again by
1750     <function>nmem_destroy()</function> when no longer needed.
1751     The function <function>nmem_malloc()</function> allocates a block of
1752     memory of the requested size. A call to <function>nmem_reset()</function>
1753     or <function>nmem_destroy()</function> will release all memory allocated
1754     on the handle since it was created (or since the last call to
1755     <function>nmem_reset()</function>. The function
1756     <function>nmem_total()</function> returns the number of bytes currently
1757     allocated on the handle.
1758    </para>
1759
1760    <para>
1761     The nibble memory pool is shared amongst threads. POSIX
1762     mutex'es and WIN32 Critical sections are introduced to keep the
1763     module thread safe. Function <function>nmem_init()</function>
1764     initializes the nibble memory library and it is called automatically
1765     the first time the <literal>YAZ.DLL</literal> is loaded. &yaz; uses
1766     function <function>DllMain</function> to achieve this. You should
1767     <emphasis>not</emphasis> call <function>nmem_init</function> or
1768     <function>nmem_exit</function> unless you're absolute sure what
1769     you're doing. Note that in previous &yaz; versions you'd have to call
1770     <function>nmem_init</function> yourself. 
1771    </para>
1772
1773   </sect1>
1774
1775   <sect1 id="tools.log"><title>Log</title>
1776   <para>
1777    &yaz; has evolved a fairly complex log system which should be useful both 
1778    for debugging &yaz; itself, debugging applications that use &yaz;, and for
1779    production use of those applications.  
1780   </para>
1781   <para>
1782    The log functions are declared in header <filename>yaz/log.h</filename>
1783     and implemented in <filename>src/log.c</filename>.
1784     Due to name clash with syslog and some math utilities the logging
1785     interface has been modified as of YAZ 2.0.29. The obsolete interface
1786     is still available if in header file <filename>yaz/log.h</filename>.
1787     The key points of the interface are:
1788   </para>
1789   <screen>
1790    void yaz_log(int level, const char *fmt, ...)
1791
1792    void yaz_log_init(int level, const char *prefix, const char *name);
1793    void yaz_log_init_file(const char *fname);
1794    void yaz_log_init_level(int level);
1795    void yaz_log_init_prefix(const char *prefix);
1796    void yaz_log_time_format(const char *fmt);
1797    void yaz_log_init_max_size(int mx);
1798
1799    int yaz_log_mask_str(const char *str);
1800    int yaz_log_module_level(const char *name);
1801   </screen>
1802
1803   <para>
1804    The reason for the whole log module is the <function>yaz_log</function>
1805    function. It takes a bitmask indicating the log levels, a
1806    <literal>printf</literal>-like format string, and a variable number of
1807    arguments to log.
1808   </para>
1809
1810   <para>
1811    The <literal>log level</literal> is a bit mask, that says on which level(s)
1812    the log entry should be made, and optionally set some behaviour of the
1813    logging. In the most simple cases, it can be one of <literal>YLOG_FATAL,
1814    YLOG_DEBUG, YLOG_WARN, YLOG_LOG</literal>. Those can be combined with bits
1815    that modify the way the log entry is written:<literal>YLOG_ERRNO,
1816    YLOG_NOTIME, YLOG_FLUSH</literal>.
1817    Most of the rest of the bits are deprecated, and should not be used. Use
1818    the dynamic log levels instead.
1819   </para>
1820
1821   <para>
1822    Applications that use &yaz;, should not use the LOG_LOG for ordinary
1823    messages, but should make use of the dynamic loglevel system. This consists
1824    of two parts, defining the loglevel and checking it.
1825   </para>
1826
1827   <para>
1828    To define the log levels, the (main) program should pass a string to
1829    <function>yaz_log_mask_str</function> to define which log levels are to be
1830    logged. This string should be a comma-separated list of log level names,
1831    and can contain both hard-coded names and dynamic ones. The log level
1832    calculation starts with <literal>YLOG_DEFAULT_LEVEL</literal> and adds a bit
1833    for each word it meets, unless the word starts with a '-', in which case it 
1834    clears the bit. If the string <literal>'none'</literal> is found,
1835    all bits are cleared. Typically this string comes from the command-line,
1836    often identified by <literal>-v</literal>. The
1837    <function>yaz_log_mask_str</function> returns a log level that should be
1838    passed to <function>yaz_log_init_level</function> for it to take effect.
1839   </para>
1840
1841   <para>
1842    Each module should check what log bits it should be used, by calling 
1843    <function>yaz_log_module_level</function> with a suitable name for the
1844    module. The name is cleared from a preceding path and an extension, if any,
1845    so it is quite possible to use <literal>__FILE__</literal> for it. If the
1846    name has been passed to <function>yaz_log_mask_str</function>, the routine
1847    returns a non-zero bitmask, which should then be used in consequent calls
1848    to yaz_log. (It can also be tested, so as to avoid unnecessary calls to
1849    yaz_log, in time-critical places, or when the log entry would take time 
1850    to construct.) 
1851   </para>
1852
1853   <para>
1854    Yaz uses the following dynamic log levels:
1855    <literal>server, session, request, requestdetail</literal> for the server
1856    functionality.
1857    <literal>zoom</literal> for the zoom client api.
1858    <literal>ztest</literal> for the simple test server.
1859    <literal>malloc, nmem, odr, eventl</literal> for internal debugging of yaz itself.
1860    Of course, any program using yaz is welcome to define as many new ones, as
1861    it needs.
1862   </para>
1863
1864   <para>
1865    By default the log is written to stderr, but this can be changed by a call
1866    to <function>yaz_log_init_file</function> or
1867    <function>yaz_log_init</function>. If the log is directed to a file, the
1868    file size is checked at every write, and if it exceeds the limit given in
1869    <function>yaz_log_init_max_size</function>, the log is rotated. The
1870    rotation keeps one old version (with a <literal>.1</literal> appended to
1871    the name). The size defaults to 1GB. Setting it to zero will disable the
1872    rotation feature.
1873   </para>
1874
1875   <screen>
1876   A typical yaz-log looks like this
1877   13:23:14-23/11 yaz-ztest(1) [session] Starting session from tcp:127.0.0.1 (pid=30968)
1878   13:23:14-23/11 yaz-ztest(1) [request] Init from 'YAZ' (81) (ver 2.0.28) OK
1879   13:23:17-23/11 yaz-ztest(1) [request] Search Z: @attrset Bib-1 foo  OK:7 hits
1880   13:23:22-23/11 yaz-ztest(1) [request] Present: [1] 2+2  OK 2 records returned
1881   13:24:13-23/11 yaz-ztest(1) [request] Close OK
1882   </screen>
1883
1884   <para>
1885    The log entries start with a time stamp. This can be omitted by setting the
1886    <literal>YLOG_NOTIME</literal> bit in the loglevel. This way automatic tests
1887    can be hoped to produce identical log files, that are easy to diff. The
1888    format of the time stamp can be set with
1889    <function>yaz_log_time_format</function>, which takes a format string just
1890    like <function>strftime</function>.
1891   </para>
1892
1893   <para>
1894    Next in a log line comes the prefix, often the name of the program. For
1895    yaz-based servers, it can also contain the session number. Then
1896    comes one or more logbits in square brackets, depending on the logging
1897    level set by <function>yaz_log_init_level</function> and the loglevel
1898    passed to <function>yaz_log_init_level</function>. Finally comes the format
1899    string and additional values passed to <function>yaz_log</function>
1900   </para>
1901
1902   <para>
1903    The log level <literal>YLOG_LOGLVL</literal>, enabled by the string
1904    <literal>loglevel</literal>, will log all the log-level affecting
1905    operations. This can come in handy if you need to know what other log
1906    levels would be useful. Grep the logfile for <literal>[loglevel]</literal>.
1907   </para>
1908
1909   <para>
1910    The log system is almost independent of the rest of &yaz;, the only
1911    important dependence is of <filename>nmem</filename>, and that only for
1912    using the semaphore definition there. 
1913   </para>
1914
1915   <para>
1916    The dynamic log levels and log rotation were introduced in &yaz; 2.0.28. At
1917    the same time, the log bit names were changed from
1918    <literal>LOG_something</literal> to <literal>YLOG_something</literal>, 
1919    to avoid collision with <filename>syslog.h</filename>.
1920   </para>
1921
1922   </sect1>
1923   
1924   <sect1 id="marc"><title>MARC</title>
1925    
1926    <para>
1927     YAZ provides a fast utility that decodes MARC records and
1928     encodes to a varity of output formats. The MARC records must
1929     be encoded in ISO2709.
1930    </para>
1931    <synopsis><![CDATA[
1932     #include <yaz/marcdisp.h>
1933
1934     /* create handler */
1935     yaz_marc_t yaz_marc_create(void);
1936     /* destroy */
1937     void yaz_marc_destroy(yaz_marc_t mt);
1938
1939     /* set XML mode YAZ_MARC_LINE, YAZ_MARC_SIMPLEXML, ... */
1940     void yaz_marc_xml(yaz_marc_t mt, int xmlmode);
1941     #define YAZ_MARC_LINE      0
1942     #define YAZ_MARC_SIMPLEXML 1
1943     #define YAZ_MARC_OAIMARC   2
1944     #define YAZ_MARC_MARCXML   3
1945     #define YAZ_MARC_ISO2709   4
1946     #define YAZ_MARC_XCHANGE   5
1947
1948     /* supply iconv handle for character set conversion .. */
1949     void yaz_marc_iconv(yaz_marc_t mt, yaz_iconv_t cd);
1950
1951     /* set debug level, 0=none, 1=more, 2=even more, .. */
1952     void yaz_marc_debug(yaz_marc_t mt, int level);
1953
1954     /* decode MARC in buf of size bsize. Returns >0 on success; <=0 on failure.
1955     On success, result in *result with size *rsize. */
1956     int yaz_marc_decode_buf (yaz_marc_t mt, const char *buf, int bsize,
1957                              char **result, int *rsize);
1958
1959     /* decode MARC in buf of size bsize. Returns >0 on success; <=0 on failure.
1960        On success, result in WRBUF */
1961     int yaz_marc_decode_wrbuf (yaz_marc_t mt, const char *buf,
1962                                int bsize, WRBUF wrbuf);
1963 ]]>
1964    </synopsis>
1965    <para>
1966     A MARC conversion handle must be created by using
1967     <function>yaz_marc_create</function> and destroyed
1968     by calling <function>yaz_marc_destroy</function>.
1969   </para>
1970    <para>
1971     All other function operate on a <literal>yaz_marc_t</literal> handle.
1972     The output is specified by a call to <function>yaz_marc_xml</function>.
1973     The <literal>xmlmode</literal> must be one of
1974     <variablelist>
1975      <varlistentry>
1976       <term>YAZ_MARC_LINE</term>
1977       <listitem>
1978        <para>
1979         A simple line-by-line format suitable for display but not
1980         recommend for further (machine) processing.
1981        </para>
1982       </listitem>
1983      </varlistentry>
1984
1985      <varlistentry>
1986       <term>YAZ_MARC_MARCXML</term>
1987       <listitem>
1988        <para>
1989         The resulting record is converted to MARCXML.
1990        </para>
1991       </listitem>
1992      </varlistentry>
1993
1994      <varlistentry>
1995       <term>YAZ_MARC_ISO2709</term>
1996       <listitem>
1997        <para>
1998         The resulting record is converted to ISO2709 (MARC).
1999        </para>
2000       </listitem>
2001      </varlistentry>
2002     </variablelist>
2003    </para>
2004    <para>
2005     The actual conversion functions are 
2006     <function>yaz_marc_decode_buf</function> and
2007     <function>yaz_marc_decode_wrbuf</function> which decodes and encodes
2008     a MARC record. The former function operates on simple buffers, the
2009     stores the resulting record in a WRBUF handle (WRBUF is a simple string
2010     type).
2011    </para>
2012    <example id="example.marc.display">
2013     <title>Display of MARC record</title>
2014     <para>
2015      The followint program snippet illustrates how the MARC API may
2016      be used to convert a MARC record to the line-by-line format:
2017      <programlisting><![CDATA[
2018       void print_marc(const char *marc_buf, int marc_buf_size)
2019       {
2020          char *result;      /* for result buf */
2021          int result_len;    /* for size of result */
2022          yaz_marc_t mt = yaz_marc_create();
2023          yaz_marc_xml(mt, YAZ_MARC_LINE);
2024          yaz_marc_decode_buf(mt, marc_buf, marc_buf_size,
2025                              &result, &result_len);
2026          fwrite(result, result_len, 1, stdout);
2027          yaz_marc_destroy(mt);  /* note that result is now freed... */
2028       }
2029 ]]>
2030       </programlisting>
2031     </para>
2032    </example>
2033   </sect1>
2034
2035   <sect1 id="tools.retrieval">
2036    <title>Retrieval Facility</title>
2037    <para>
2038     YAZ version 2.1.20 or later includes a Retrieval facility tool
2039     which allows a SRU/Z39.50 to describe itself and perform record
2040     conversions. The idea is the following:
2041     
2042     <itemizedlist>
2043      <listitem>
2044       <para>
2045        An SRU/Z39.50 client sends a retrieval request which includes
2046        a combination of the following parameters: syntax (format),
2047        schema (or element set name).
2048       </para>
2049      </listitem>
2050
2051      <listitem>
2052       <para>
2053        The retrieval facility is invoked with parameters in a
2054        server/proxy. The retrieval facility matches the parameters a set of
2055        "supported" retrieval types.
2056        If there is no match, the retrieval signals an error
2057        (syntax and / or schema not supported).
2058       </para>
2059      </listitem>
2060
2061      <listitem>
2062       <para>
2063        For a successful match, the backend is invoked with the same
2064        or altered retrieval parameters (syntax, schema). If
2065        a record is received from the backend, it is converted to the
2066        frontend name / syntax.
2067       </para>
2068      </listitem>
2069
2070      <listitem>
2071       <para>
2072        The resulting record is sent back the client and tagged with
2073        the frontend syntax / schema.
2074       </para>
2075      </listitem>
2076
2077     </itemizedlist>
2078    </para>
2079    <para>
2080     The Retrieval facility is driven by an XML configuration. The
2081     configuration is neither Z39.50 ZeeRex or SRU ZeeRex. But it
2082     should be easy to generate both of them from the XML configuration.
2083     (unfortunately the two versions
2084     of ZeeRex differ substantially in this regard).
2085    </para>
2086    <sect2 id="tools.retrieval.format">
2087     <title>Retrieval XML format</title>
2088     <para>
2089      All elements should be covered by namespace 
2090      <literal>http://indexdata.com/yaz</literal> .
2091      The root element node must be <literal>retrievalinfo</literal>.
2092     </para>
2093     <para>
2094      The <literal>retrievalinfo</literal> must include one or
2095      more <literal>retrieval</literal> elements. Each 
2096     <literal>retrieval</literal> defines specific combination of
2097      syntax, name and identifier supported by this retrieval service.
2098     </para>
2099     <para>
2100      The <literal>retrieval</literal> element may include any of the
2101      following attributes:
2102      <variablelist>
2103       <varlistentry><term><literal>syntax</literal> (REQUIRED)</term>
2104        <listitem>
2105         <para>
2106          Defines the record syntax. Possible values is any
2107          of the names defined in YAZ' OID database or a raw
2108          OID in (n.n ... n).
2109         </para>
2110        </listitem>
2111       </varlistentry>
2112       <varlistentry><term><literal>name</literal> (OPTIONAL)</term>
2113        <listitem>
2114         <para>
2115          Defines the name of the retrieval format. This can be
2116          any string. For SRU, the value, is equivalent to schema (short-hand);
2117          for Z39.50 it's equivalent to simple element set name. 
2118         </para>
2119        </listitem>
2120       </varlistentry>
2121       <varlistentry><term><literal>identifier</literal> (OPTIONAL)</term>
2122        <listitem>
2123         <para>
2124          Defines the URI schema name of the retrieval format. This can be
2125          any string. For SRU, the value, is equivalent to URI schema.
2126          For Z39.50, there is no equivalent.
2127         </para>
2128        </listitem>
2129       </varlistentry>
2130      </variablelist>
2131     </para>
2132     <para>
2133      The <literal>retrieval</literal> may include one 
2134      <literal>backend</literal> element. If a <literal>backend</literal>
2135      element is given, it specifies how the records are retrieved by
2136      some backend and how the records are converted from the backend to
2137      the "frontend".
2138     </para>
2139     <para>
2140      The attributes, <literal>name</literal> and <literal>syntax</literal>
2141      may be specified for the <literal>backend</literal> element. These
2142      semantics of these attributes is equivalent to those for the
2143      <literal>retrieval</literal>. However, these values are passed to
2144      the "backend".
2145     </para>
2146     <para>
2147      The <literal>backend</literal> element may includes one or more
2148      conversion instructions (as children elements). The supported
2149      conversions are:
2150      <variablelist>
2151       <varlistentry><term><literal>marc</literal></term>
2152        <listitem>
2153         <para>
2154          The <literal>marc</literal> element specifies a conversion 
2155          to - and from ISO2709 encoded MARC and 
2156          <ulink url="&url.marcxml;">&acro.marcxml;</ulink>/MarcXchange.
2157          The following attributes may be specified:
2158
2159          <variablelist>
2160           <varlistentry><term><literal>inputformat</literal> (REQUIRED)</term>
2161            <listitem>
2162             <para>
2163              Format of input. Supported values are 
2164             <literal>marc</literal> (for ISO2709); and <literal>xml</literal>
2165              for MARCXML/MarcXchange.
2166             </para>
2167            </listitem>
2168           </varlistentry>
2169
2170           <varlistentry><term><literal>outputformat</literal> (REQUIRED)</term>
2171            <listitem>
2172             <para>
2173              Format of output. Supported values are 
2174             <literal>line</literal> (MARC line format); 
2175             <literal>marcxml</literal> (for MARCXML),
2176             <literal>marc</literal> (ISO2709),
2177             <literal>marcxhcange</literal> (for MarcXchange).
2178             </para>
2179            </listitem>
2180           </varlistentry>
2181
2182           <varlistentry><term><literal>inputcharset</literal> (OPTIONAL)</term>
2183            <listitem>
2184             <para>
2185              Encoding of input. For XML input formats, this need not
2186              be given, but for ISO2709 based inputformats, this should
2187              be set to the encoding used. For MARC21 records, a common
2188              inputcharset value  would be <literal>marc-8</literal>.
2189             </para>
2190            </listitem>
2191           </varlistentry>
2192
2193           <varlistentry><term><literal>outputcharset</literal> (OPTIONAL)</term>
2194            <listitem>
2195             <para>
2196              Encoding of output. If outputformat is XML based, it is
2197              strongly recommened to use <literal>utf-8</literal>.
2198             </para>
2199            </listitem>
2200           </varlistentry>
2201
2202          </variablelist>
2203         </para>
2204        </listitem>
2205       </varlistentry>
2206       <varlistentry><term><literal>xslt</literal></term>
2207        <listitem>
2208         <para>
2209          The <literal>xslt</literal> element specifies a conversion
2210          via &acro.xslt;. The following attributes may be specified:
2211
2212          <variablelist>
2213           <varlistentry><term><literal>stylesheet</literal> (REQUIRED)</term>
2214            <listitem>
2215             <para>
2216              Stylesheet file.
2217             </para>
2218            </listitem>
2219           </varlistentry>
2220          </variablelist>
2221
2222         </para>
2223        </listitem>
2224       </varlistentry>
2225      </variablelist>
2226     </para>
2227    </sect2>
2228    <sect2 id="tools.retrieval.examples">
2229     <title>Retrieval Facility Examples</title>
2230     <example id="tools.retrieval.marc21">
2231      <title>MARC21 backend</title>
2232      <para>
2233       A typical way to use the retrieval facility is to enable XML
2234       for servers that only supports ISO2709 encoded MARC21 records.
2235      </para>
2236      <programlisting><![CDATA[
2237      <retrievalinfo>
2238        <retrieval syntax="usmarc" name="F"/>
2239        <retrieval syntax="usmarc" name="B"/>
2240        <retrieval syntax="xml" name="marcxml"
2241                   identifier="info:srw/schema/1/marcxml-v1.1">
2242          <backend syntax="usmarc" name="F">
2243            <marc inputformat="marc" outputformat="marcxml"
2244                  inputcharset="marc-8"/>
2245          </backend>
2246        </retrieval>
2247        <retrieval syntax="xml" name="dc">
2248          <backend syntax="usmarc" name="F">
2249            <marc inputformat="marc" outputformat="marcxml"
2250                  inputcharset="marc-8"/>
2251            <xslt stylesheet="MARC21slim2DC.xsl"/>
2252          </backend>
2253        </retrieval>
2254      </retrievalinfo>
2255 ]]>
2256      </programlisting>
2257      <para>
2258       This means that our frontend supports:
2259       <itemizedlist>
2260        <listitem>
2261         <para>
2262          MARC21 F(ull) records.
2263         </para>
2264        </listitem>
2265        <listitem>
2266         <para>
2267          MARC21 B(rief) records.
2268         </para>
2269        </listitem>
2270
2271        <listitem>
2272         <para>
2273          MARCXML records.
2274         </para>
2275        </listitem>
2276
2277        <listitem>
2278         <para>
2279          Dublin core records.
2280         </para>
2281        </listitem>
2282       </itemizedlist>
2283      </para>
2284     </example>
2285    </sect2>
2286    <sect2 id="tools.retrieval.api">
2287     <title>API</title>
2288     <para>
2289      It should be easy to use the retrieval systems from applications. Refer
2290      to the headers
2291      <filename>yaz/retrieval.h</filename> and 
2292      <filename>yaz/record_conv.h</filename>.
2293     </para>
2294    </sect2>
2295   </sect1>
2296  </chapter>
2297  
2298  <!-- Keep this comment at the end of the file
2299  Local variables:
2300  mode: sgml
2301  sgml-omittag:t
2302  sgml-shorttag:t
2303  sgml-minimize-attributes:nil
2304  sgml-always-quote-attributes:t
2305  sgml-indent-step:1
2306  sgml-indent-data:t
2307  sgml-parent-document: "yaz.xml"
2308  sgml-local-catalogs: nil
2309  sgml-namecase-general:t
2310  End:
2311  -->