More on regular expressions in grs.regx filters.
[idzebra-moved-to-github.git] / doc / recordmodel-grs.xml
1  <chapter id="grs">
2   <!-- $Id: recordmodel-grs.xml,v 1.5 2006-10-11 12:37:23 adam Exp $ -->
3   <title>GRS Record Model and Filter Modules</title>
4
5   <para>
6    The record model described in this chapter applies to the fundamental,
7    structured
8    record type <literal>grs</literal>, introduced in
9    <xref linkend="componentmodulesgrs"/>.
10   </para>
11
12
13   <section id="grs-filters">
14    <title>GRS Record Filters</title>
15    <para>
16     Many basic subtypes of the <emphasis>grs</emphasis> type are
17     currently available:
18    </para>
19
20    <para>
21     <variablelist>
22      <varlistentry>
23       <term><literal>grs.sgml</literal></term>
24       <listitem>
25        <para>
26         This is the canonical input format
27         described <xref linkend="grs-canonical-format"/>. It is using
28         simple SGML-like syntax. 
29        </para>
30       </listitem>
31      </varlistentry>
32      <varlistentry>
33       <term><literal>grs.marc.</literal><replaceable>type</replaceable></term>
34       <listitem>
35        <para>
36         This allows Zebra to read
37         records in the ISO2709 (MARC) encoding standard. 
38         Last parameter <replaceable>type</replaceable> names the
39         <literal>.abs</literal> file (see below)
40         which describes the specific MARC structure of the input record as
41         well as the indexing rules.
42        </para>
43        <para>The <literal>grs.marc</literal> uses an internal represtantion
44         which is not XML conformant. In particular MARC tags are
45         presented as elements with the same name. And XML elements
46         may not start with digits. Therefore this filter is only
47         suitable for systems returning GRS-1 and MARC records. For XML
48         use <literal>grs.marcxml</literal> filter instead (see below).
49        </para>
50        <para>
51          The loadable <literal>grs.marc</literal> filter module
52          is packaged in the GNU/Debian package
53         <literal>libidzebra2.0-mod-grs-marc</literal>
54        </para>
55       </listitem>
56      </varlistentry>
57      <varlistentry>
58       <term><literal>grs.marcxml.</literal><replaceable>type</replaceable></term>
59       <listitem>
60        <para>
61         This allows Zebra to read ISO2709 encoded records.
62         Last parameter <replaceable>type</replaceable> names the
63         <literal>.abs</literal> file (see below)
64         which describes the specific MARC structure of the input record as
65         well as the indexing rules.
66        </para>
67        <para>
68         The internal representation for <literal>grs.marcxml</literal>
69         is the same as for <ulink url="&url.marcxml;">MARCXML</ulink>.
70         It slightly more complicated to work with than 
71         <literal>grs.marc</literal> but XML conformant.
72        </para>
73        <para>
74         The loadable <literal>grs.marcxml</literal> filter module
75         is also contained in the GNU/Debian package
76         <literal>libidzebra2.0-mod-grs-marc</literal>
77        </para>
78       </listitem>
79      </varlistentry>
80      <varlistentry>
81       <term><literal>grs.xml</literal></term>
82       <listitem>
83        <para>
84         This filter reads XML records and uses
85         <ulink url="http://expat.sourceforge.net/">Expat</ulink> to
86         parse them and convert them into IDZebra's internal 
87         <literal>grs</literal> record model.
88         Only one record per file is supported, due to the fact XML does
89         not allow two documents to "follow" each other (there is no way
90         to know when a document is finished).
91         This filter is only available if Zebra is compiled with EXPAT support.
92        </para>
93        <para>
94         The loadable <literal>grs.xml</literal> filter module
95         is packagged in the GNU/Debian package
96         <literal>libidzebra2.0-mod-grs-xml</literal>
97         </para>
98       </listitem>
99      </varlistentry>
100      <varlistentry>
101       <term><literal>grs.regx.</literal><replaceable>filter</replaceable></term>
102       <listitem>
103        <para>
104         This enables a user-supplied Regular Expressions input
105         filter described in <xref linkend="grs-regx-tcl"/>.
106        </para>
107        <para>
108         The loadable <literal>grs.regx</literal> filter module
109         is packaged in the GNU/Debian package
110         <literal>libidzebra2.0-mod-grs-regx</literal>
111        </para>
112       </listitem>
113      </varlistentry>
114      <varlistentry>
115       <term><literal>grs.tcl.</literal><replaceable>filter</replaceable></term>
116       <listitem>
117        <para>
118         Similar to grs.regx but using Tcl for rules, described in 
119         <xref linkend="grs-regx-tcl"/>.
120        </para>
121        <para>
122         The loadable <literal>grs.tcl</literal> filter module
123         is also packaged in the GNU/Debian package
124         <literal>libidzebra2.0-mod-grs-regx</literal>
125        </para>
126       </listitem>
127      </varlistentry>
128
129     </variablelist>
130    </para>
131
132    <section id="grs-canonical-format">
133     <title>GRS Canonical Input Format</title>
134
135     <para>
136      Although input data can take any form, it is sometimes useful to
137      describe the record processing capabilities of the system in terms of
138      a single, canonical input format that gives access to the full
139      spectrum of structure and flexibility in the system. In Zebra, this
140      canonical format is an "SGML-like" syntax.
141     </para>
142
143     <para>
144      To use the canonical format specify <literal>grs.sgml</literal> as
145      the record type.
146     </para>
147
148     <para>
149      Consider a record describing an information resource (such a record is
150      sometimes known as a <emphasis>locator record</emphasis>).
151      It might contain a field describing the distributor of the
152      information resource, which might in turn be partitioned into
153      various fields providing details about the distributor, like this:
154     </para>
155
156     <para>
157
158      <screen>
159       &#60;Distributor&#62;
160         &#60;Name&#62; USGS/WRD &#60;/Name&#62;
161         &#60;Organization&#62; USGS/WRD &#60;/Organization&#62;
162         &#60;Street-Address&#62;
163           U.S. GEOLOGICAL SURVEY, 505 MARQUETTE, NW
164         &#60;/Street-Address&#62;
165         &#60;City&#62; ALBUQUERQUE &#60;/City&#62;
166         &#60;State&#62; NM &#60;/State&#62;
167         &#60;Zip-Code&#62; 87102 &#60;/Zip-Code&#62;
168         &#60;Country&#62; USA &#60;/Country&#62;
169         &#60;Telephone&#62; (505) 766-5560 &#60;/Telephone&#62;
170       &#60;/Distributor&#62;
171      </screen>
172
173     </para>
174
175     <!-- There is no indentation in the example above!  -H
176     -note-
177      -para-
178       The indentation used above is used to illustrate how Zebra
179       interprets the mark-up. The indentation, in itself, has no
180       significance to the parser for the canonical input format, which
181       discards superfluous whitespace.
182      -/para-
183     -/note-
184     -->
185
186     <para>
187      The keywords surrounded by &lt;...&gt; are
188      <emphasis>tags</emphasis>, while the sections of text
189      in between are the <emphasis>data elements</emphasis>.
190      A data element is characterized by its location in the tree
191      that is made up by the nested elements.
192      Each element is terminated by a closing tag - beginning
193      with <literal>&#60;</literal>/, and containing the same symbolic
194      tag-name as the corresponding opening tag.
195      The general closing tag - <literal>&lt;/&gt;</literal> -
196      terminates the element started by the last opening tag. The
197      structuring of elements is significant.
198      The element <emphasis>Telephone</emphasis>,
199      for instance, may be indexed and presented to the client differently,
200      depending on whether it appears inside the
201      <emphasis>Distributor</emphasis> element, or some other,
202      structured data element such a <emphasis>Supplier</emphasis> element.
203     </para>
204
205     <section id="grs-record-root">
206      <title>Record Root</title>
207
208      <para>
209       The first tag in a record describes the root node of the tree that
210       makes up the total record. In the canonical input format, the root tag
211       should contain the name of the schema that lends context to the
212       elements of the record
213       (see <xref linkend="grs-internal-representation"/>).
214       The following is a GILS record that
215       contains only a single element (strictly speaking, that makes it an
216       illegal GILS record, since the GILS profile includes several mandatory
217       elements - Zebra does not validate the contents of a record against
218       the Z39.50 profile, however - it merely attempts to match up elements
219       of a local representation with the given schema):
220      </para>
221
222      <para>
223
224       <screen>
225        &#60;gils&#62;
226           &#60;title&#62;Zen and the Art of Motorcycle Maintenance&#60;/title&#62;
227        &#60;/gils&#62;
228       </screen>
229
230      </para>
231
232     </section>
233
234     <section id="grs-variants">
235      <title>Variants</title>
236
237      <para>
238       Zebra allows you to provide individual data elements in a number of
239       <emphasis>variant forms</emphasis>. Examples of variant forms are
240       textual data elements which might appear in different languages, and
241       images which may appear in different formats or layouts.
242       The variant system in Zebra is essentially a representation of
243       the variant mechanism of Z39.50-1995.
244      </para>
245
246      <para>
247       The following is an example of a title element which occurs in two
248       different languages.
249      </para>
250
251      <para>
252
253       <screen>
254        &#60;title&#62;
255        &#60;var lang lang "eng"&#62;
256        Zen and the Art of Motorcycle Maintenance&#60;/&#62;
257        &#60;var lang lang "dan"&#62;
258        Zen og Kunsten at Vedligeholde en Motorcykel&#60;/&#62;
259        &#60;/title&#62;
260       </screen>
261
262      </para>
263
264      <para>
265       The syntax of the <emphasis>variant element</emphasis> is
266       <literal>&lt;var class type value&gt;</literal>.
267       The available values for the <emphasis>class</emphasis> and
268       <emphasis>type</emphasis> fields are given by the variant set
269       that is associated with the current schema
270       (see <xref linkend="grs-variants"/>).
271      </para>
272
273      <para>
274       Variant elements are terminated by the general end-tag &#60;/&#62;, by
275       the variant end-tag &#60;/var&#62;, by the appearance of another variant
276       tag with the same <emphasis>class</emphasis> and
277       <emphasis>value</emphasis> settings, or by the
278       appearance of another, normal tag. In other words, the end-tags for
279       the variants used in the example above could have been omitted.
280      </para>
281
282      <para>
283       Variant elements can be nested. The element
284      </para>
285
286      <para>
287
288       <screen>
289        &#60;title&#62;
290        &#60;var lang lang "eng"&#62;&#60;var body iana "text/plain"&#62;
291        Zen and the Art of Motorcycle Maintenance
292        &#60;/title&#62;
293       </screen>
294
295      </para>
296
297      <para>
298       Associates two variant components to the variant list for the title
299       element.
300      </para>
301
302      <para>
303       Given the nesting rules described above, we could write
304      </para>
305
306      <para>
307
308       <screen>
309        &#60;title&#62;
310        &#60;var body iana "text/plain&#62;
311        &#60;var lang lang "eng"&#62;
312        Zen and the Art of Motorcycle Maintenance
313        &#60;var lang lang "dan"&#62;
314        Zen og Kunsten at Vedligeholde en Motorcykel
315        &#60;/title&#62;
316       </screen>
317
318      </para>
319
320      <para>
321       The title element above comes in two variants. Both have the IANA body
322       type "text/plain", but one is in English, and the other in
323       Danish. The client, using the element selection mechanism of Z39.50,
324       can retrieve information about the available variant forms of data
325       elements, or it can select specific variants based on the requirements
326       of the end-user.
327      </para>
328
329     </section>
330
331    </section>
332
333    <section id="grs-regx-tcl">
334     <title>GRS REGX And TCL Input Filters</title>
335
336     <para>
337      In order to handle general input formats, Zebra allows the
338      operator to define filters which read individual records in their
339      native format and produce an internal representation that the system
340      can work with.
341     </para>
342
343     <para>
344      Input filters are ASCII files, generally with the suffix
345      <literal>.flt</literal>.
346      The system looks for the files in the directories given in the
347      <emphasis>profilePath</emphasis> setting in the
348      <literal>zebra.cfg</literal> files.
349      The record type for the filter is
350      <literal>grs.regx.</literal><emphasis>filter-filename</emphasis>
351      (fundamental type <literal>grs</literal>, file read
352      type <literal>regx</literal>, argument
353      <emphasis>filter-filename</emphasis>).
354     </para>
355     
356     <para>
357      Generally, an input filter consists of a sequence of rules, where each
358      rule consists of a sequence of expressions, followed by an action. The
359      expressions are evaluated against the contents of the input record,
360      and the actions normally contribute to the generation of an internal
361      representation of the record.
362     </para>
363     
364     <para>
365      An expression can be either of the following:
366     </para>
367
368     <para>
369      <variablelist>
370
371       <varlistentry>
372        <term><literal>INIT</literal></term>
373        <listitem>
374         <para>
375          The action associated with this expression is evaluated
376          exactly once in the lifetime of the application, before any records
377          are read. It can be used in conjunction with an action that
378          initializes tables or other resources that are used in the processing
379          of input records.
380         </para>
381        </listitem>
382       </varlistentry>
383       <varlistentry>
384        <term><literal>BEGIN</literal></term>
385        <listitem>
386         <para>
387          Matches the beginning of the record. It can be used to
388          initialize variables, etc. Typically, the
389          <emphasis>BEGIN</emphasis> rule is also used
390          to establish the root node of the record.
391         </para>
392        </listitem>
393       </varlistentry>
394       <varlistentry>
395        <term><literal>END</literal></term>
396        <listitem>
397         <para>
398          Matches the end of the record - when all of the contents
399          of the record has been processed.
400         </para>
401        </listitem>
402       </varlistentry>
403       <varlistentry>
404        <term>
405         <literal>/</literal><replaceable>reg</replaceable><literal>/</literal>
406        </term>
407        <listitem>
408         <para>
409          Matches regular expression pattern <replaceable>reg</replaceable>
410          from the input record. The operators supported are the same
411          as for regular expression queries. Refer to 
412          <xref linkend="querymodel-regular"/>.
413         </para>
414        </listitem>
415       </varlistentry>
416       <varlistentry>
417        <term><literal>BODY</literal></term>
418        <listitem>
419         <para>
420          This keyword may only be used between two patterns.
421          It matches everything between (not including) those patterns.
422         </para>
423        </listitem>
424       </varlistentry>
425       <varlistentry>
426        <term><literal>FINISH</literal></term>
427        <listitem>
428         <para>
429          The expression associated with this pattern is evaluated
430          once, before the application terminates. It can be used to release
431          system resources - typically ones allocated in the
432          <emphasis>INIT</emphasis> step.
433         </para>
434        </listitem>
435       </varlistentry>
436      </variablelist>
437     </para>
438
439     <para>
440      An action is surrounded by curly braces ({...}), and
441      consists of a sequence of statements. Statements may be separated
442      by newlines or semicolons (;).
443      Within actions, the strings that matched the expressions
444      immediately preceding the action can be referred to as
445      $0, $1, $2, etc.
446     </para>
447
448     <para>
449      The available statements are:
450     </para>
451
452     <para>
453      <variablelist>
454
455       <varlistentry>
456        <term>begin <replaceable>type [parameter ... ]</replaceable></term>
457        <listitem>
458         <para>
459          Begin a new
460          data element. The <replaceable>type</replaceable> is one of
461          the following:
462          <variablelist>
463           
464           <varlistentry>
465            <term>record</term>
466            <listitem>
467             <para>
468              Begin a new record. The following parameter should be the
469              name of the schema that describes the structure of the record, eg.
470              <literal>gils</literal> or <literal>wais</literal> (see below).
471              The <literal>begin record</literal> call should precede
472              any other use of the <replaceable>begin</replaceable> statement.
473             </para>
474            </listitem>
475           </varlistentry>
476           <varlistentry>
477            <term>element</term>
478            <listitem>
479             <para>
480              Begin a new tagged element. The parameter is the
481              name of the tag. If the tag is not matched anywhere in the tagsets
482              referenced by the current schema, it is treated as a local string
483              tag.
484             </para>
485            </listitem>
486           </varlistentry>
487           <varlistentry>
488            <term>variant</term>
489            <listitem>
490             <para>
491              Begin a new node in a variant tree. The parameters are
492              <replaceable>class type value</replaceable>.
493             </para>
494            </listitem>
495           </varlistentry>
496          </variablelist>
497         </para>
498        </listitem>
499       </varlistentry>
500       <varlistentry>
501        <term>data <replaceable>parameter</replaceable></term>
502        <listitem>
503         <para>
504          Create a data element. The concatenated arguments make
505          up the value of the data element.
506          The option <literal>-text</literal> signals that
507          the layout (whitespace) of the data should be retained for
508          transmission.
509          The option <literal>-element</literal>
510          <replaceable>tag</replaceable> wraps the data up in
511          the <replaceable>tag</replaceable>.
512          The use of the <literal>-element</literal> option is equivalent to
513          preceding the command with a <replaceable>begin
514           element</replaceable> command, and following
515          it with the <replaceable>end</replaceable> command.
516         </para>
517        </listitem>
518       </varlistentry>
519       <varlistentry>
520        <term>end <replaceable>[type]</replaceable></term>
521        <listitem>
522         <para>
523          Close a tagged element. If no parameter is given,
524          the last element on the stack is terminated.
525          The first parameter, if any, is a type name, similar
526          to the <replaceable>begin</replaceable> statement.
527          For the <replaceable>element</replaceable> type, a tag
528          name can be provided to terminate a specific tag.
529         </para>
530        </listitem>
531       </varlistentry>
532
533       <varlistentry>
534        <term>unread <replaceable>no</replaceable></term>
535        <listitem>
536         <para>
537          Move the input pointer to the offset of first character that
538          match rule given by <replaceable>no</replaceable>.
539          The first rule from left-to-right is numbered zero,
540          the second rule is named 1 and so on.
541         </para>
542        </listitem>
543       </varlistentry>
544
545      </variablelist>
546     </para>
547
548     <para>
549      The following input filter reads a Usenet news file, producing a
550      record in the WAIS schema. Note that the body of a news posting is
551      separated from the list of headers by a blank line (or rather a
552      sequence of two newline characters.
553     </para>
554
555     <para>
556
557      <screen>
558       BEGIN                { begin record wais }
559
560       /^From:/ BODY /$/    { data -element name $1 }
561       /^Subject:/ BODY /$/ { data -element title $1 }
562       /^Date:/ BODY /$/    { data -element lastModified $1 }
563       /\n\n/ BODY END      {
564          begin element bodyOfDisplay
565          begin variant body iana "text/plain"
566          data -text $1
567          end record
568       }
569      </screen>
570
571     </para>
572
573     <para>
574      If Zebra is compiled with support for Tcl enabled, the statements
575      described above are supplemented with a complete
576      scripting environment, including control structures (conditional
577      expressions and loop constructs), and powerful string manipulation
578      mechanisms for modifying the elements of a record.
579     </para>
580
581    </section>
582
583   </section>
584
585   <section id="grs-internal-representation">
586    <title>GRS Internal Record Representation</title>
587
588    <para>
589     When records are manipulated by the system, they're represented in a
590     tree-structure, with data elements at the leaf nodes, and tags or
591     variant components at the non-leaf nodes. The root-node identifies the
592     schema that lends context to the tagging and structuring of the
593     record. Imagine a simple record, consisting of a 'title' element and
594     an 'author' element:
595    </para>
596
597    <para>
598
599     <screen>
600      ROOT 
601         TITLE     "Zen and the Art of Motorcycle Maintenance"
602         AUTHOR    "Robert Pirsig"
603     </screen>
604
605    </para>
606
607    <para>
608     A slightly more complex record would have the author element consist
609     of two elements, a surname and a first name:
610    </para>
611
612    <para>
613
614     <screen>
615      ROOT  
616         TITLE  "Zen and the Art of Motorcycle Maintenance"
617         AUTHOR
618            FIRST-NAME "Robert"
619            SURNAME    "Pirsig"
620     </screen>
621
622    </para>
623
624    <para>
625     The root of the record will refer to the record schema that describes
626     the structuring of this particular record. The schema defines the
627     element tags (TITLE, FIRST-NAME, etc.) that may occur in the record, as
628     well as the structuring (SURNAME should appear below AUTHOR, etc.). In
629     addition, the schema establishes element set names that are used by
630     the client to request a subset of the elements of a given record. The
631     schema may also establish rules for converting the record to a
632     different schema, by stating, for each element, a mapping to a
633     different tag path.
634    </para>
635
636    <section id="grs-tagged-elements">
637     <title>Tagged Elements</title>
638
639     <para>
640      A data element is characterized by its tag, and its position in the
641      structure of the record. For instance, while the tag "telephone
642      number" may be used different places in a record, we may need to
643      distinguish between these occurrences, both for searching and
644      presentation purposes. For instance, while the phone numbers for the
645      "customer" and the "service provider" are both
646      representatives for the same type of resource (a telephone number), it
647      is essential that they be kept separate. The record schema provides
648      the structure of the record, and names each data element (defined by
649      the sequence of tags - the tag path - by which the element can be
650      reached from the root of the record).
651     </para>
652
653    </section>
654
655    <section id="grs-variant-details">
656     <title>Variants</title>
657
658     <para>
659      The children of a tag node may be either more tag nodes, a data node
660      (possibly accompanied by tag nodes),
661      or a tree of variant nodes. The children of  variant nodes are either
662      more variant nodes or a data node (possibly accompanied by more
663      variant nodes). Each leaf node, which is normally a
664      data node, corresponds to a <emphasis>variant form</emphasis> of the
665      tagged element identified by the tag which parents the variant tree.
666      The following title element occurs in two different languages:
667     </para>
668
669     <para>
670
671      <screen>
672       VARIANT LANG=ENG  "War and Peace"
673       TITLE
674       VARIANT LANG=DAN  "Krig og Fred"
675      </screen>
676
677     </para>
678
679     <para>
680      Which of the two elements are transmitted to the client by the server
681      depends on the specifications provided by the client, if any.
682     </para>
683     
684     <para>
685      In practice, each variant node is associated with a triple of class,
686      type, value, corresponding to the variant mechanism of Z39.50.
687     </para>
688     
689    </section>
690    
691    <section id="grs-data-elements">
692     <title>Data Elements</title>
693     
694     <para>
695      Data nodes have no children (they are always leaf nodes in the record
696      tree).
697     </para>
698     
699     <!--
700     FIXME! Documentation needs extension here about types of nodes - numerical,
701     textual, etc., plus the various types of inclusion notes.
702    </para>
703     -->
704     
705    </section>
706    
707   </section>
708   
709   <section id="grs-conf">
710    <title>GRS Record Model Configuration</title>
711    
712    <para>
713     The following sections describe the configuration files that govern
714     the internal management of <literal>grs</literal> records. 
715     The system searches for the files
716     in the directories specified by the <emphasis>profilePath</emphasis>
717     setting in the <literal>zebra.cfg</literal> file.
718    </para>
719
720    <section id="grs-abstract-syntax">
721     <title>The Abstract Syntax</title>
722
723     <para>
724      The abstract syntax definition (also known as an Abstract Record
725      Structure, or ARS) is the focal point of the
726      record schema description. For a given schema, the ABS file may state any
727      or all of the following:
728     </para>
729
730     <!--
731      FIXME - Need a diagram here, or a simple explanation how it all hangs together -H
732     -->
733
734     <para>
735
736      <itemizedlist>
737       <listitem>
738
739        <para>
740         The object identifier of the Z39.50 schema associated
741         with the ARS, so that it can be referred to by the client.
742        </para>
743       </listitem>
744
745       <listitem>
746        <para>
747         The attribute set (which can possibly be a compound of multiple
748         sets) which applies in the profile. This is used when indexing and
749         searching the records belonging to the given profile.
750        </para>
751       </listitem>
752
753       <listitem>
754        <para>
755         The tag set (again, this can consist of several different sets).
756         This is used when reading the records from a file, to recognize the
757         different tags, and when transmitting the record to the client -
758         mapping the tags to their numerical representation, if they are
759         known.
760        </para>
761       </listitem>
762       
763       <listitem>
764        <para>
765         The variant set which is used in the profile. This provides a
766         vocabulary for specifying the <emphasis>forms</emphasis> of
767         data that appear inside the records.
768        </para>
769       </listitem>
770
771       <listitem>
772        <para>
773         Element set names, which are a shorthand way for the client to
774         ask for a subset of the data elements contained in a record. Element
775         set names, in the retrieval module, are mapped to <emphasis>element
776          specifications</emphasis>, which contain information equivalent to the
777         <emphasis>Espec-1</emphasis> syntax of Z39.50.
778        </para>
779       </listitem>
780
781       <listitem>
782        <para>
783         Map tables, which may specify mappings to
784         <emphasis>other</emphasis> database profiles, if desired.
785        </para>
786       </listitem>
787
788       <listitem>
789        <para>
790         Possibly, a set of rules describing the mapping of elements to a
791         MARC representation.
792
793        </para>
794       </listitem>
795
796       <listitem>      
797        <para>
798         A list of element descriptions (this is the actual ARS of the
799         schema, in Z39.50 terms), which lists the ways in which the various
800         tags can be used and organized hierarchically.
801        </para>
802       </listitem>
803
804      </itemizedlist>
805
806     </para>
807
808     <para>
809      Several of the entries above simply refer to other files, which
810      describe the given objects.
811     </para>
812
813    </section>
814
815    <section id="grs-configuration-files">
816     <title>The Configuration Files</title>
817
818     <para>
819      This section describes the syntax and use of the various tables which
820      are used by the retrieval module.
821     </para>
822
823     <para>
824      The number of different file types may appear daunting at first, but
825      each type corresponds fairly clearly to a single aspect of the Z39.50
826      retrieval facilities. Further, the average database administrator,
827      who is simply reusing an existing profile for which tables already
828      exist, shouldn't have to worry too much about the contents of these tables.
829     </para>
830
831     <para>
832      Generally, the files are simple ASCII files, which can be maintained
833      using any text editor. Blank lines, and lines beginning with a (#) are
834      ignored. Any characters on a line followed by a (#) are also ignored.
835      All other lines contain <emphasis>directives</emphasis>, which provide
836      some setting or value to the system.
837      Generally, settings are characterized by a single
838      keyword, identifying the setting, followed by a number of parameters.
839      Some settings are repeatable (r), while others may occur only once in a
840      file. Some settings are optional (o), while others again are
841      mandatory (m).
842     </para>
843     
844    </section>
845    
846    <section id="abs-file">
847     <title>The Abstract Syntax (.abs) Files</title>
848     
849     <para>
850      The name of this file type is slightly misleading in Z39.50 terms,
851      since, apart from the actual abstract syntax of the profile, it also
852      includes most of the other definitions that go into a database
853      profile.
854     </para>
855     
856     <para>
857      When a record in the canonical, SGML-like format is read from a file
858      or from the database, the first tag of the file should reference the
859      profile that governs the layout of the record. If the first tag of the
860      record is, say, <literal>&lt;gils&gt;</literal>, the system will look
861      for the profile definition in the file <literal>gils.abs</literal>.
862      Profile definitions are cached, so they only have to be read once
863      during the lifespan of the current process. 
864     </para>
865
866     <para>
867      When writing your own input filters, the
868      <emphasis>record-begin</emphasis> command
869      introduces the profile, and should always be called first thing when
870      introducing a new record.
871     </para>
872     
873     <para>
874      The file may contain the following directives:
875     </para>
876     
877     <para>
878      <variablelist>
879       
880       <varlistentry>
881        <term>name <replaceable>symbolic-name</replaceable></term>
882        <listitem>
883         <para>
884          (m) This provides a shorthand name or
885          description for the profile. Mostly useful for diagnostic purposes.
886         </para>
887        </listitem>
888       </varlistentry>
889       <varlistentry>
890        <term>reference <replaceable>OID-name</replaceable></term>
891        <listitem>
892         <para>
893          (m) The reference name of the OID for the profile.
894          The reference names can be found in the <emphasis>util</emphasis>
895          module of YAZ.
896         </para>
897        </listitem>
898       </varlistentry>
899       <varlistentry>
900        <term>attset <replaceable>filename</replaceable></term>
901        <listitem>
902         <para>
903          (m) The attribute set that is used for
904          indexing and searching records belonging to this profile.
905         </para>
906        </listitem>
907       </varlistentry>
908       <varlistentry>
909        <term>tagset <replaceable>filename</replaceable></term>
910        <listitem>
911         <para>
912          (o) The tag set (if any) that describe
913          that fields of the records.
914         </para>
915        </listitem>
916       </varlistentry>
917       <varlistentry>
918        <term>varset <replaceable>filename</replaceable></term>
919        <listitem>
920         <para>
921          (o) The variant set used in the profile.
922         </para>
923        </listitem>
924       </varlistentry>
925       <varlistentry>
926        <term>maptab <replaceable>filename</replaceable></term>
927        <listitem>
928         <para>
929          (o,r) This points to a
930          conversion table that might be used if the client asks for the record
931          in a different schema from the native one.
932         </para>
933        </listitem>
934       </varlistentry>
935       <varlistentry>
936        <term>marc <replaceable>filename</replaceable></term>
937        <listitem>
938         <para>
939          (o) Points to a file containing parameters
940          for representing the record contents in the ISO2709 syntax.
941          Read the description of the MARC representation facility below.
942         </para>
943        </listitem>
944       </varlistentry>
945       <varlistentry>
946        <term>esetname <replaceable>name filename</replaceable></term>
947        <listitem>
948         <para>
949          (o,r) Associates the
950          given element set name with an element selection file. If an (@) is
951          given in place of the filename, this corresponds to a null mapping for
952          the given element set name.
953         </para>
954        </listitem>
955       </varlistentry>
956       <varlistentry>
957        <term>all <replaceable>tags</replaceable></term>
958        <listitem>
959         <para>
960          (o) This directive specifies a list of attributes
961          which should be appended to the attribute list given for each
962          element. The effect is to make every single element in the abstract
963          syntax searchable by way of the given attributes. This directive
964          provides an efficient way of supporting free-text searching across all
965          elements. However, it does increase the size of the index
966          significantly. The attributes can be qualified with a structure, as in
967          the <replaceable>elm</replaceable> directive below.
968         </para>
969        </listitem>
970       </varlistentry>
971       <varlistentry>
972        <term>elm <replaceable>path name attributes</replaceable></term>
973        <listitem>
974         <para>
975          (o,r) Adds an element to the abstract record syntax of the schema.
976          The <replaceable>path</replaceable> follows the
977          syntax which is suggested by the Z39.50 document - that is, a sequence
978          of tags separated by slashes (&#x2f;). Each tag is given as a
979          comma-separated pair of tag type and -value surrounded by parenthesis.
980          The <replaceable>name</replaceable> is the name of the element, and
981          the <replaceable>attributes</replaceable>
982          specifies which attributes to use when indexing the element in a
983          comma-separated list.
984          A <literal>!</literal> in place of the attribute name is equivalent
985          to specifying an attribute name identical to the element name.
986          A <literal>-</literal> in place of the attribute name
987          specifies that no indexing is to take place for the given element.
988          The attributes can be qualified with <replaceable>field
989           types</replaceable> to specify which
990          character set should govern the indexing procedure for that field.
991          The same data element may be indexed into several different
992          fields, using different character set definitions.
993          See the <xref linkend="fields-and-charsets"/>.
994          The default field type is <literal>w</literal> for
995          <emphasis>word</emphasis>.
996         </para>
997        </listitem>
998       </varlistentry>
999       
1000       <varlistentry>
1001        <term>xelm <replaceable>xpath attributes</replaceable></term>
1002        <listitem>
1003         <para>
1004          Specifies indexing for record nodes given by
1005          <replaceable>xpath</replaceable>. Unlike directive
1006          elm, this directive allows you to index attribute
1007          contents. The <replaceable>xpath</replaceable> uses
1008          a syntax similar to XPath. The <replaceable>attributes</replaceable>
1009          have same syntax and meaning as directive elm, except that operator
1010          ! refers to the nodes selected by <replaceable>xpath</replaceable>.
1011          <!--
1012          xelm   /         !:w                 default index
1013          xelm   //        !:w                 additional index
1014          xelm   /gils/title/@att    myatt:w   index attribute @att in myatt
1015          xelm   title/@att          myatt:w   same meaning.
1016          -->
1017         </para>
1018        </listitem>
1019       </varlistentry>
1020       <varlistentry>
1021        <term>melm <replaceable>field$subfield attributes</replaceable></term>
1022        <listitem>
1023         <para>
1024          This directive is specifically for MARC-formatted records,
1025          ingested either in the form of MARCXML documents, or in the
1026          ISO2709/Z39.2 format using the grs.marcxml input filter. You can
1027          specify indexing rules for any subfield, or you can leave off the
1028          <replaceable>$subfield</replaceable> part and specify default rules
1029          for all subfields of the given field (note: default rules should come
1030          after any subfield-specific rules in the configuration file). The
1031          <replaceable>attributes</replaceable> have the same syntax and meaning
1032          as for the 'elm' directive above.
1033         </para>
1034        </listitem>
1035       </varlistentry>
1036       <varlistentry>
1037        <term>encoding <replaceable>encodingname</replaceable></term>
1038        <listitem>
1039         <para>
1040          This directive specifies character encoding for external records.
1041          For records such as XML that specifies encoding within the
1042          file via a header this directive is ignored.
1043          If neither this directive is given, nor an encoding is set
1044          within external records, ISO-8859-1 encoding is assumed.
1045          </para>
1046        </listitem>
1047       </varlistentry>
1048       <varlistentry>
1049        <term>xpath <literal>enable</literal>/<literal>disable</literal></term>
1050        <listitem>
1051         <para>
1052          If this directive is followed by <literal>enable</literal>,
1053          then extra indexing is performed to allow for XPath-like queries.
1054          If this directive is not specified - equivalent to 
1055          <literal>disable</literal> - no extra XPath-indexing is performed.
1056         </para>
1057        </listitem>
1058       </varlistentry>
1059
1060       <!-- Adam's version 
1061       <varlistentry>
1062        <term>systag <replaceable>systemtag</replaceable> <replaceable>element</replaceable></term>
1063        <listitem>
1064         <para>
1065          This directive maps system information to an element during
1066          retrieval. This information is dynamically created. The
1067          following system tags are defined
1068          <variablelist>
1069           <varlistentry>
1070            <term>size</term>
1071            <listitem>
1072             <para>
1073              Size of record in bytes. By default this
1074              is mapped to element <literal>size</literal>.
1075             </para>
1076            </listitem>
1077           </varlistentry>
1078
1079           <varlistentry>
1080            <term>rank</term>
1081            <listitem>
1082             <para>
1083              Score/rank of record. By default this
1084              is mapped to element <literal>rank</literal>.
1085              If no score was calculated for the record (non-ranked
1086              searched) search this directive is ignored.
1087             </para>
1088            </listitem>
1089           </varlistentry>
1090           
1091           <varlistentry>
1092            <term>sysno</term>
1093            <listitem> 
1094             <para>
1095              Zebra's system number (record ID) for the
1096              record. By default this is mapped to element
1097              <literal>localControlNumber</literal>.
1098             </para>
1099            </listitem>
1100           </varlistentry>
1101          </variablelist>
1102          If you do not want a particular system tag to be applied,
1103          then set the resulting element to something undefined in the
1104          abs file (such as <literal>none</literal>).
1105         </para>
1106        </listitem>
1107       </varlistentry>
1108       -->
1109
1110       <!-- Mike's version -->
1111       <varlistentry>
1112        <term>
1113         systag
1114         <replaceable>systemTag</replaceable>
1115         <replaceable>actualTag</replaceable>
1116        </term>
1117        <listitem>
1118         <para>
1119          Specifies what information, if any, Zebra should
1120          automatically include in retrieval records for the 
1121          ``system fields'' that it supports.
1122          <replaceable>systemTag</replaceable> may
1123          be any of the following:
1124          <variablelist>
1125           <varlistentry>
1126            <term><literal>rank</literal></term>
1127            <listitem><para>
1128             An integer indicating the relevance-ranking score
1129             assigned to the record.
1130            </para></listitem>
1131           </varlistentry>
1132           <varlistentry>
1133            <term><literal>sysno</literal></term>
1134            <listitem><para>
1135             An automatically generated identifier for the record,
1136             unique within this database.  It is represented by the
1137             <literal>&lt;localControlNumber&gt;</literal> element in
1138             XML and the <literal>(1,14)</literal> tag in GRS-1.
1139            </para></listitem>
1140           </varlistentry>
1141           <varlistentry>
1142            <term><literal>size</literal></term>
1143            <listitem><para>
1144             The size, in bytes, of the retrieved record.
1145            </para></listitem>
1146           </varlistentry>
1147          </variablelist>
1148         </para>
1149         <para>
1150          The <replaceable>actualTag</replaceable> parameter may be
1151          <literal>none</literal> to indicate that the named element
1152          should be omitted from retrieval records.
1153         </para>
1154        </listitem>
1155       </varlistentry>
1156      </variablelist>
1157     </para>
1158     
1159     <note>
1160      <para>
1161       The mechanism for controlling indexing is not adequate for
1162       complex databases, and will probably be moved into a separate
1163       configuration table eventually.
1164      </para>
1165     </note>
1166     
1167     <para>
1168      The following is an excerpt from the abstract syntax file for the GILS
1169      profile.
1170     </para>
1171
1172     <para>
1173
1174      <screen>
1175       name gils
1176       reference GILS-schema
1177       attset gils.att
1178       tagset gils.tag
1179       varset var1.var
1180
1181       maptab gils-usmarc.map
1182
1183       # Element set names
1184
1185       esetname VARIANT gils-variant.est  # for WAIS-compliance
1186       esetname B gils-b.est
1187       esetname G gils-g.est
1188       esetname F @
1189
1190       elm (1,10)               rank                        -
1191       elm (1,12)               url                         -
1192       elm (1,14)               localControlNumber     Local-number
1193       elm (1,16)               dateOfLastModification Date/time-last-modified
1194       elm (2,1)                title                       w:!,p:!
1195       elm (4,1)                controlIdentifier      Identifier-standard
1196       elm (2,6)                abstract               Abstract
1197       elm (4,51)               purpose                     !
1198       elm (4,52)               originator                  - 
1199       elm (4,53)               accessConstraints           !
1200       elm (4,54)               useConstraints              !
1201       elm (4,70)               availability                -
1202       elm (4,70)/(4,90)        distributor                 -
1203       elm (4,70)/(4,90)/(2,7)  distributorName             !
1204       elm (4,70)/(4,90)/(2,10) distributorOrganization     !
1205       elm (4,70)/(4,90)/(4,2)  distributorStreetAddress    !
1206       elm (4,70)/(4,90)/(4,3)  distributorCity             !
1207      </screen>
1208
1209     </para>
1210
1211    </section>
1212
1213    <section id="attset-files">
1214     <title>The Attribute Set (.att) Files</title>
1215
1216     <para>
1217      This file type describes the <replaceable>Use</replaceable> elements of
1218      an attribute set. 
1219      It contains the following directives. 
1220     </para>
1221     
1222     <para>
1223      <variablelist>
1224       <varlistentry>
1225        <term>name <replaceable>symbolic-name</replaceable></term>
1226        <listitem>
1227         <para>
1228          (m) This provides a shorthand name or
1229          description for the attribute set.
1230          Mostly useful for diagnostic purposes.
1231         </para>
1232        </listitem></varlistentry>
1233       <varlistentry>
1234        <term>reference <replaceable>OID-name</replaceable></term>
1235        <listitem>
1236         <para>
1237          (m) The reference name of the OID for
1238          the attribute set.
1239          The reference names can be found in the <replaceable>util</replaceable>
1240          module of <replaceable>YAZ</replaceable>.
1241         </para>
1242        </listitem></varlistentry>
1243       <varlistentry>
1244        <term>include <replaceable>filename</replaceable></term>
1245        <listitem>
1246         <para>
1247          (o,r) This directive is used to
1248          include another attribute set as a part of the current one. This is
1249          used when a new attribute set is defined as an extension to another
1250          set. For instance, many new attribute sets are defined as extensions
1251          to the <replaceable>bib-1</replaceable> set.
1252          This is an important feature of the retrieval
1253          system of Z39.50, as it ensures the highest possible level of
1254          interoperability, as those access points of your database which are
1255          derived from the external set (say, bib-1) can be used even by clients
1256          who are unaware of the new set.
1257         </para>
1258        </listitem></varlistentry>
1259       <varlistentry>
1260        <term>att
1261         <replaceable>att-value att-name [local-value]</replaceable></term>
1262        <listitem>
1263         <para>
1264          (o,r) This
1265          repeatable directive introduces a new attribute to the set. The
1266          attribute value is stored in the index (unless a
1267          <replaceable>local-value</replaceable> is
1268          given, in which case this is stored). The name is used to refer to the
1269          attribute from the <replaceable>abstract syntax</replaceable>. 
1270         </para>
1271        </listitem></varlistentry>
1272      </variablelist>
1273     </para>
1274
1275     <para>
1276      This is an excerpt from the GILS attribute set definition.
1277      Notice how the file describing the <emphasis>bib-1</emphasis>
1278      attribute set is referenced.
1279     </para>
1280
1281     <para>
1282
1283      <screen>
1284       name gils
1285       reference GILS-attset
1286       include bib1.att
1287
1288       att 2001          distributorName
1289       att 2002          indextermsControlled
1290       att 2003          purpose
1291       att 2004          accessConstraints
1292       att 2005          useConstraints
1293      </screen>
1294
1295     </para>
1296
1297    </section>
1298
1299    <section id="grs-tag-files">
1300     <title>The Tag Set (.tag) Files</title>
1301
1302     <para>
1303      This file type defines the tagset of the profile, possibly by
1304      referencing other tag sets (most tag sets, for instance, will include
1305      tagsetG and tagsetM from the Z39.50 specification. The file may
1306      contain the following directives.
1307     </para>
1308
1309     <para>
1310      <variablelist>
1311
1312       <varlistentry>
1313        <term>name <emphasis>symbolic-name</emphasis></term>
1314        <listitem>
1315         <para>
1316          (m) This provides a shorthand name or
1317          description for the tag set. Mostly useful for diagnostic purposes.
1318         </para>
1319        </listitem></varlistentry>
1320       <varlistentry>
1321        <term>reference <emphasis>OID-name</emphasis></term>
1322        <listitem>
1323         <para>
1324          (o) The reference name of the OID for the tag set.
1325          The reference names can be found in the <emphasis>util</emphasis>
1326          module of <emphasis>YAZ</emphasis>.
1327          The directive is optional, since not all tag sets
1328          are registered outside of their schema.
1329         </para>
1330        </listitem></varlistentry>
1331       <varlistentry>
1332        <term>type <emphasis>integer</emphasis></term>
1333        <listitem>
1334         <para>
1335          (m) The type number of the tagset within the schema
1336          profile (note: this specification really should belong to the .abs
1337          file. This will be fixed in a future release).
1338         </para>
1339        </listitem></varlistentry>
1340       <varlistentry>
1341        <term>include <emphasis>filename</emphasis></term>
1342        <listitem>
1343         <para>
1344          (o,r) This directive is used
1345          to include the definitions of other tag sets into the current one.
1346         </para>
1347        </listitem></varlistentry>
1348       <varlistentry>
1349        <term>tag <emphasis>number names type</emphasis></term>
1350        <listitem>
1351         <para>
1352          (o,r) Introduces a new tag to the set.
1353          The <emphasis>number</emphasis> is the tag number as used
1354          in the protocol (there is currently no mechanism for
1355          specifying string tags at this point, but this would be quick
1356          work to add).
1357          The <emphasis>names</emphasis> parameter is a list of names
1358          by which the tag should be recognized in the input file format.
1359          The names should be separated by slashes (/).
1360          The <emphasis>type</emphasis> is the recommended data type of
1361          the tag.
1362          It should be one of the following:
1363
1364          <itemizedlist>
1365           <listitem>
1366            <para>
1367             structured
1368            </para>
1369           </listitem>
1370
1371           <listitem>
1372            <para>
1373             string
1374            </para>
1375           </listitem>
1376
1377           <listitem>
1378            <para>
1379             numeric
1380            </para>
1381           </listitem>
1382
1383           <listitem>
1384            <para>
1385             bool
1386            </para>
1387           </listitem>
1388
1389           <listitem>
1390            <para>
1391             oid
1392            </para>
1393           </listitem>
1394
1395           <listitem>
1396            <para>
1397             generalizedtime
1398            </para>
1399           </listitem>
1400
1401           <listitem>
1402            <para>
1403             intunit
1404            </para>
1405           </listitem>
1406
1407           <listitem>
1408            <para>
1409             int
1410            </para>
1411           </listitem>
1412
1413           <listitem>
1414            <para>
1415             octetstring
1416            </para>
1417           </listitem>
1418
1419           <listitem>
1420            <para>
1421             null
1422            </para>
1423           </listitem>
1424
1425          </itemizedlist>
1426
1427         </para>
1428        </listitem></varlistentry>
1429      </variablelist>
1430     </para>
1431
1432     <para>
1433      The following is an excerpt from the TagsetG definition file.
1434     </para>
1435
1436     <para>
1437      <screen>
1438       name tagsetg
1439       reference TagsetG
1440       type 2
1441
1442       tag       1       title           string
1443       tag       2       author          string
1444       tag       3       publicationPlace string
1445       tag       4       publicationDate string
1446       tag       5       documentId      string
1447       tag       6       abstract        string
1448       tag       7       name            string
1449       tag       8       date            generalizedtime
1450       tag       9       bodyOfDisplay   string
1451       tag       10      organization    string
1452      </screen>
1453     </para>
1454
1455    </section>
1456
1457    <section id="grs-var-files">
1458     <title>The Variant Set (.var) Files</title>
1459
1460     <para>
1461      The variant set file is a straightforward representation of the
1462      variant set definitions associated with the protocol. At present, only
1463      the <emphasis>Variant-1</emphasis> set is known.
1464     </para>
1465
1466     <para>
1467      These are the directives allowed in the file.
1468     </para>
1469
1470     <para>
1471      <variablelist>
1472
1473       <varlistentry>
1474        <term>name <emphasis>symbolic-name</emphasis></term>
1475        <listitem>
1476         <para>
1477          (m) This provides a shorthand name or
1478          description for the variant set. Mostly useful for diagnostic purposes.
1479         </para>
1480        </listitem></varlistentry>
1481       <varlistentry>
1482        <term>reference <emphasis>OID-name</emphasis></term>
1483        <listitem>
1484         <para>
1485          (o) The reference name of the OID for
1486          the variant set, if one is required. The reference names can be found
1487          in the <emphasis>util</emphasis> module of <emphasis>YAZ</emphasis>.
1488         </para>
1489        </listitem></varlistentry>
1490       <varlistentry>
1491        <term>class <emphasis>integer class-name</emphasis></term>
1492        <listitem>
1493         <para>
1494          (m,r) Introduces a new
1495          class to the variant set.
1496         </para>
1497        </listitem></varlistentry>
1498       <varlistentry>
1499        <term>type <emphasis>integer type-name datatype</emphasis></term>
1500        <listitem>
1501         <para>
1502          (m,r) Addes a
1503          new type to the current class (the one introduced by the most recent
1504          <emphasis>class</emphasis> directive).
1505          The type names belong to the same name space as the one used
1506          in the tag set definition file.
1507         </para>
1508        </listitem></varlistentry>
1509      </variablelist>
1510     </para>
1511
1512     <para>
1513      The following is an excerpt from the file describing the variant set
1514      <emphasis>Variant-1</emphasis>.
1515     </para>
1516
1517     <para>
1518
1519      <screen>
1520       name variant-1
1521       reference Variant-1
1522
1523       class 1 variantId
1524
1525       type      1       variantId               octetstring
1526
1527       class 2 body
1528
1529       type      1       iana                    string
1530       type      2       z39.50                  string
1531       type      3       other                   string
1532      </screen>
1533
1534     </para>
1535
1536    </section>
1537
1538    <section id="grs-est-files">
1539     <title>The Element Set (.est) Files</title>
1540
1541     <para>
1542      The element set specification files describe a selection of a subset
1543      of the elements of a database record. The element selection mechanism
1544      is equivalent to the one supplied by the <emphasis>Espec-1</emphasis>
1545      syntax of the Z39.50 specification.
1546      In fact, the internal representation of an element set
1547      specification is identical to the <emphasis>Espec-1</emphasis> structure,
1548      and we'll refer you to the description of that structure for most of
1549      the detailed semantics of the directives below.
1550     </para>
1551
1552     <note>
1553      <para>
1554       Not all of the Espec-1 functionality has been implemented yet.
1555       The fields that are mentioned below all work as expected, unless
1556       otherwise is noted.
1557      </para>
1558     </note>
1559     
1560     <para>
1561      The directives available in the element set file are as follows:
1562     </para>
1563
1564     <para>
1565      <variablelist>
1566       <varlistentry>
1567        <term>defaultVariantSetId <emphasis>OID-name</emphasis></term>
1568        <listitem>
1569         <para>
1570          (o) If variants are used in
1571          the following, this should provide the name of the variantset used
1572          (it's not currently possible to specify a different set in the
1573          individual variant request). In almost all cases (certainly all
1574          profiles known to us), the name
1575          <literal>Variant-1</literal> should be given here.
1576         </para>
1577        </listitem></varlistentry>
1578       <varlistentry>
1579        <term>defaultVariantRequest <emphasis>variant-request</emphasis></term>
1580        <listitem>
1581         <para>
1582          (o) This directive
1583          provides a default variant request for
1584          use when the individual element requests (see below) do not contain a
1585          variant request. Variant requests consist of a blank-separated list of
1586          variant components. A variant compont is a comma-separated,
1587          parenthesized triple of variant class, type, and value (the two former
1588          values being represented as integers). The value can currently only be
1589          entered as a string (this will change to depend on the definition of
1590          the variant in question). The special value (@) is interpreted as a
1591          null value, however.
1592         </para>
1593        </listitem></varlistentry>
1594       <varlistentry>
1595        <term>simpleElement
1596         <emphasis>path ['variant' variant-request]</emphasis></term>
1597        <listitem>
1598         <para>
1599          (o,r) This corresponds to a simple element request
1600          in <emphasis>Espec-1</emphasis>.
1601          The path consists of a sequence of tag-selectors, where each of
1602          these can consist of either:
1603         </para>
1604
1605         <para>
1606          <itemizedlist>
1607           <listitem>
1608            <para>
1609             A simple tag, consisting of a comma-separated type-value pair in
1610             parenthesis, possibly followed by a colon (:) followed by an
1611             occurrences-specification (see below). The tag-value can be a number
1612             or a string. If the first character is an apostrophe ('), this
1613             forces the value to be interpreted as a string, even if it
1614             appears to be numerical.
1615            </para>
1616           </listitem>
1617
1618           <listitem>
1619            <para>
1620             A WildThing, represented as a question mark (?), possibly
1621             followed by a colon (:) followed by an occurrences
1622             specification (see below).
1623            </para>
1624           </listitem>
1625
1626           <listitem>
1627            <para>
1628             A WildPath, represented as an asterisk (*). Note that the last
1629             element of the path should not be a wildPath (wildpaths don't
1630             work in this version).
1631            </para>
1632           </listitem>
1633
1634          </itemizedlist>
1635
1636         </para>
1637
1638         <para>
1639          The occurrences-specification can be either the string
1640          <literal>all</literal>, the string <literal>last</literal>, or
1641          an explicit value-range. The value-range is represented as
1642          an integer (the starting point), possibly followed by a
1643          plus (+) and a second integer (the number of elements, default
1644          being one).
1645         </para>
1646
1647         <para>
1648          The variant-request has the same syntax as the defaultVariantRequest
1649          above. Note that it may sometimes be useful to give an empty variant
1650          request, simply to disable the default for a specific set of fields
1651          (we aren't certain if this is proper <emphasis>Espec-1</emphasis>,
1652          but it works in this implementation).
1653         </para>
1654        </listitem></varlistentry>
1655      </variablelist>
1656     </para>
1657
1658     <para>
1659      The following is an example of an element specification belonging to
1660      the GILS profile.
1661     </para>
1662
1663     <para>
1664
1665      <screen>
1666       simpleelement (1,10)
1667       simpleelement (1,12)
1668       simpleelement (2,1)
1669       simpleelement (1,14)
1670       simpleelement (4,1)
1671       simpleelement (4,52)
1672      </screen>
1673
1674     </para>
1675
1676    </section>
1677
1678    <section id="schema-mapping">
1679     <title>The Schema Mapping (.map) Files</title>
1680
1681     <para>
1682      Sometimes, the client might want to receive a database record in
1683      a schema that differs from the native schema of the record. For
1684      instance, a client might only know how to process WAIS records, while
1685      the database record is represented in a more specific schema, such as
1686      GILS. In this module, a mapping of data to one of the MARC formats is
1687      also thought of as a schema mapping (mapping the elements of the
1688      record into fields consistent with the given MARC specification, prior
1689      to actually converting the data to the ISO2709). This use of the
1690      object identifier for USMARC as a schema identifier represents an
1691      overloading of the OID which might not be entirely proper. However,
1692      it represents the dual role of schema and record syntax which
1693      is assumed by the MARC family in Z39.50.
1694     </para>
1695
1696     <!--
1697      <emphasis>NOTE: FIXME! The schema-mapping functions are so far limited to a
1698       straightforward mapping of elements. This should be extended with
1699       mechanisms for conversions of the element contents, and conditional
1700       mappings of elements based on the record contents.</emphasis>
1701     -->
1702
1703     <para>
1704      These are the directives of the schema mapping file format:
1705     </para>
1706
1707     <para>
1708      <variablelist>
1709
1710       <varlistentry>
1711        <term>targetName <emphasis>name</emphasis></term>
1712        <listitem>
1713         <para>
1714          (m) A symbolic name for the target schema
1715          of the table. Useful mostly for diagnostic purposes.
1716         </para>
1717        </listitem></varlistentry>
1718       <varlistentry>
1719        <term>targetRef <emphasis>OID-name</emphasis></term>
1720        <listitem>
1721         <para>
1722          (m) An OID name for the target schema.
1723          This is used, for instance, by a server receiving a request to present
1724          a record in a different schema from the native one.
1725          The name, again, is found in the <emphasis>oid</emphasis>
1726          module of <emphasis>YAZ</emphasis>.
1727         </para>
1728        </listitem></varlistentry>
1729       <varlistentry>
1730        <term>map <emphasis>element-name target-path</emphasis></term>
1731        <listitem>
1732         <para>
1733          (o,r) Adds
1734          an element mapping rule to the table.
1735         </para>
1736        </listitem></varlistentry>
1737      </variablelist>
1738     </para>
1739
1740    </section>
1741
1742    <section id="grs-mar-files">
1743     <title>The MARC (ISO2709) Representation (.mar) Files</title>
1744
1745     <para>
1746      This file provides rules for representing a record in the ISO2709
1747      format. The rules pertain mostly to the values of the constant-length
1748      header of the record.
1749     </para>
1750
1751     <!--
1752      NOTE: FIXME! This will be described better. We're in the process of
1753       re-evaluating and most likely changing the way that MARC records are
1754       handled by the system.</emphasis>
1755     -->
1756
1757    </section>
1758   </section>
1759
1760   <section id="grs-exchange-formats">
1761    <title>GRS Exchange Formats</title>
1762
1763    <para>
1764     Converting records from the internal structure to an exchange format
1765     is largely an automatic process. Currently, the following exchange
1766     formats are supported:
1767    </para>
1768
1769    <para>
1770     <itemizedlist>
1771      <listitem>
1772       <para>
1773        GRS-1. The internal representation is based on GRS-1/XML, so the
1774        conversion here is straightforward. The system will create
1775        applied variant and supported variant lists as required, if a record
1776        contains variant information.
1777       </para>
1778      </listitem>
1779
1780      <listitem>
1781       <para>
1782        XML. The internal representation is based on GRS-1/XML so
1783        the mapping is trivial. Note that XML schemas, preprocessing
1784        instructions and comments are not part of the internal representation
1785        and therefore will never be part of a generated XML record.
1786        Future versions of the Zebra will support that.
1787       </para>
1788      </listitem>
1789
1790      <listitem>
1791       <para>
1792        SUTRS. Again, the mapping is fairly straightforward. Indentation
1793        is used to show the hierarchical structure of the record. All
1794        "GRS" type records support both the GRS-1 and SUTRS
1795        representations.
1796        <!-- FIXME - What is SUTRS - should be expanded here -->
1797       </para>
1798      </listitem>
1799
1800      <listitem>
1801       <para>
1802        ISO2709-based formats (USMARC, etc.). Only records with a
1803        two-level structure (corresponding to fields and subfields) can be
1804        directly mapped to ISO2709. For records with a different structuring
1805        (eg., GILS), the representation in a structure like USMARC involves a
1806        schema-mapping (see <xref linkend="schema-mapping"/>), to an
1807        "implied" USMARC schema (implied,
1808        because there is no formal schema which specifies the use of the
1809        USMARC fields outside of ISO2709). The resultant, two-level record is
1810        then mapped directly from the internal representation to ISO2709. See
1811        the GILS schema definition files for a detailed example of this
1812        approach.
1813       </para>
1814      </listitem>
1815
1816      <listitem>
1817       <para>
1818        Explain. This representation is only available for records
1819        belonging to the Explain schema.
1820       </para>
1821      </listitem>
1822
1823      <listitem>
1824       <para>
1825        Summary. This ASN-1 based structure is only available for records
1826        belonging to the Summary schema - or schema which provide a mapping
1827        to this schema (see the description of the schema mapping facility
1828        above).
1829       </para>
1830      </listitem>
1831
1832      <!-- FIXME - Is this used anywhere ? -H -->  
1833      <listitem>
1834       <para>
1835        SOIF. Support for this syntax is experimental, and is currently
1836        keyed to a private Index Data OID (1.2.840.10003.5.1000.81.2). All
1837        abstract syntaxes can be mapped to the SOIF format, although nested
1838        elements are represented by concatenation of the tag names at each
1839        level.
1840       </para>
1841      </listitem>
1842    
1843     </itemizedlist>
1844    </para>
1845   </section>
1846   
1847   <section id="grs-extended-marc-indexing">
1848    <title>Extended indexing of MARC records</title>
1849    
1850    <para>Extended indexing of MARC records will help you if you need index a
1851     combination of subfields, or index only a part of the whole field,
1852     or use during indexing process embedded fields of MARC record.
1853    </para>
1854    
1855    <para>Extended indexing of MARC records additionally allows:
1856     <itemizedlist>
1857      
1858      <listitem>
1859       <para>to index data in LEADER of MARC record</para>
1860      </listitem>
1861      
1862      <listitem>
1863       <para>to index data in control fields (with fixed length)</para>
1864      </listitem>
1865      
1866      <listitem>
1867       <para>to use during indexing the values of indicators</para>
1868      </listitem>
1869      
1870      <listitem>
1871       <para>to index linked fields for UNIMARC based formats</para>
1872      </listitem>
1873      
1874     </itemizedlist>
1875    </para>
1876    
1877    <note><para>In compare with simple indexing process the extended indexing
1878      may increase (about 2-3 times) the time of indexing process for MARC
1879      records.</para></note>
1880    
1881    <section id="formula">
1882     <title>The index-formula</title>
1883     
1884     <para>At the beginning, we have to define the term
1885      <emphasis>index-formula</emphasis> for MARC records. This term helps
1886      to understand the notation of extended indexing of MARC records by Zebra.
1887      Our definition is based on the document
1888      <ulink url="http://www.rba.ru/rusmarc/soft/Z39-50.htm">"The table
1889       of conformity for Z39.50 use attributes and RUSMARC fields"</ulink>.
1890      The document is available only in russian language.</para>
1891     
1892     <para>
1893      The <emphasis>index-formula</emphasis> is the combination of
1894      subfields presented in such way:
1895     </para>
1896     
1897     <screen>
1898      71-00$a, $g, $h ($c){.$b ($c)} , (1)
1899     </screen>
1900     
1901     <para>
1902      We know that Zebra supports a Bib-1 attribute - right truncation.
1903      In this case, the <emphasis>index-formula</emphasis> (1) consists from 
1904      forms, defined in the same way as (1)</para>
1905     
1906     <screen>
1907      71-00$a, $g, $h
1908      71-00$a, $g
1909      71-00$a
1910     </screen>
1911     
1912     <note>
1913      <para>The original MARC record may be without some elements, which included in <emphasis>index-formula</emphasis>.
1914      </para>
1915     </note>
1916     
1917     <para>This notation includes such operands as:
1918      <variablelist>
1919       
1920       <varlistentry>
1921        <term>#</term>
1922        <listitem><para>It means whitespace character.</para></listitem>
1923       </varlistentry>
1924       
1925       <varlistentry>
1926        <term>-</term>
1927        <listitem><para>The position may contain any value, defined by
1928          MARC format.
1929          For example, <emphasis>index-formula</emphasis></para>
1930         
1931         <screen>
1932          70-#1$a, $g , (2)
1933         </screen>
1934         
1935         <para>includes</para> 
1936         
1937         <screen>
1938          700#1$a, $g
1939          701#1$a, $g
1940          702#1$a, $g
1941         </screen>
1942         
1943        </listitem>
1944       </varlistentry>
1945       
1946       <varlistentry>
1947        <term>{...}</term>
1948        <listitem>
1949         <para>The repeatable elements are defined in figure-brackets {}.
1950          For example,
1951          <emphasis>index-formula</emphasis></para>
1952         
1953         <screen>
1954          71-00$a, $g, $h ($c){.$b ($c)} , (3)
1955         </screen>
1956         
1957         <para>includes</para>
1958         
1959         <screen>
1960          71-00$a, $g, $h ($c). $b ($c)
1961          71-00$a, $g, $h ($c). $b ($c). $b ($c)
1962          71-00$a, $g, $h ($c). $b ($c). $b ($c). $b ($c)
1963         </screen>
1964         
1965        </listitem>
1966       </varlistentry>
1967      </variablelist>
1968      
1969      <note>
1970       <para>
1971        All another operands are the same as accepted in MARC world.
1972       </para>
1973      </note>
1974     </para>
1975    </section>
1976    
1977    <section id="notation">
1978     <title>Notation of <emphasis>index-formula</emphasis> for Zebra</title>
1979     
1980     
1981     <para>Extended indexing overloads <literal>path</literal> of
1982      <literal>elm</literal> definition in abstract syntax file of Zebra
1983      (<literal>.abs</literal> file). It means that names beginning with
1984      <literal>"mc-"</literal> are interpreted by Zebra as
1985      <emphasis>index-formula</emphasis>. The database index is created and
1986      linked with <emphasis>access point</emphasis> (Bib-1 use attribute)
1987      according to this formula.</para>
1988     
1989     <para>For example, <emphasis>index-formula</emphasis></para>
1990     
1991     <screen>
1992      71-00$a, $g, $h ($c){.$b ($c)} , (4)
1993     </screen>
1994     
1995     <para>in <literal>.abs</literal> file looks like:</para>
1996     
1997     <screen>
1998      mc-71.00_$a,_$g,_$h_(_$c_){.$b_(_$c_)}
1999     </screen>
2000     
2001     
2002     <para>The notation of <emphasis>index-formula</emphasis> uses the operands:
2003      <variablelist>
2004       
2005       <varlistentry>
2006        <term>_</term>
2007        <listitem><para>It means whitespace character.</para></listitem>
2008       </varlistentry>
2009       
2010       <varlistentry>
2011        <term>.</term>
2012        <listitem><para>The position may contain any value, defined by
2013          MARC format. For example,
2014          <emphasis>index-formula</emphasis></para>
2015         
2016         <screen>
2017          70-#1$a, $g , (5)
2018         </screen>
2019         
2020         <para>matches <literal>mc-70._1_$a,_$g_</literal> and includes</para>
2021         
2022         <screen>
2023          700_1_$a,_$g_
2024          701_1_$a,_$g_
2025          702_1_$a,_$g_
2026         </screen>
2027        </listitem>
2028       </varlistentry>
2029       
2030       <varlistentry>
2031        <term>{...}</term>
2032        <listitem><para>The repeatable elements are defined in
2033          figure-brackets {}. For example,
2034          <emphasis>index-formula</emphasis></para>
2035         
2036         <screen>
2037          71#00$a, $g, $h ($c) {.$b ($c)} , (6)
2038         </screen>
2039         
2040         <para>matches 
2041          <literal>mc-71.00_$a,_$g,_$h_(_$c_){.$b_(_$c_)}</literal> and
2042          includes</para>
2043         
2044         <screen>
2045          71.00_$a,_$g,_$h_(_$c_).$b_(_$c_)
2046          71.00_$a,_$g,_$h_(_$c_).$b_(_$c_).$b_(_$c_)
2047          71.00_$a,_$g,_$h_(_$c_).$b_(_$c_).$b_(_$c_).$b_(_$c_)
2048         </screen>
2049        </listitem>
2050       </varlistentry>
2051       
2052       <varlistentry>
2053        <term>&#60;...&#62;</term>
2054        <listitem><para>Embedded <emphasis>index-formula</emphasis> (for
2055          linked fields) is between &#60;&#62;. For example,
2056          <emphasis>index-formula</emphasis>
2057         </para>
2058         
2059         <screen>
2060          4--#-$170-#1$a, $g ($c) , (7)
2061         </screen>
2062         
2063         <para>matches
2064          <literal>mc-4.._._$1&#60;70._1_$a,_$g_(_$c_)&#62;_</literal> and
2065          includes</para>
2066         
2067         <screen>
2068          463_._$1&#60;70._1_$a,_$g_(_$c_)&#62;_
2069         </screen>
2070         
2071        </listitem>
2072       </varlistentry>
2073      </variablelist>
2074     </para>
2075     
2076     <note>
2077      <para>All another operands are the same as accepted in MARC world.</para>
2078     </note>
2079     
2080     <section id="grs-examples">
2081      <title>Examples</title>
2082      
2083      <para>
2084       <orderedlist>
2085        
2086        <listitem>
2087         
2088         <para>indexing LEADER</para>
2089         
2090         <para>You need to use keyword "ldr" to index leader. For example,
2091          indexing data from 6th and 7th position of LEADER</para>
2092         
2093         <screen>
2094          elm mc-ldr[6] Record-type !
2095          elm mc-ldr[7] Bib-level   !
2096         </screen>
2097         
2098        </listitem>
2099        
2100        <listitem>
2101         
2102         <para>indexing data from control fields</para>
2103         
2104         <para>indexing date (the time added to database)</para>
2105         
2106         <screen>
2107          elm mc-008[0-5] Date/time-added-to-db !        
2108         </screen>
2109         
2110         <para>or for RUSMARC (this data included in 100th field)</para>
2111         
2112         <screen>
2113          elm mc-100___$a[0-7]_ Date/time-added-to-db !
2114         </screen>
2115         
2116        </listitem>
2117        
2118        <listitem>
2119         
2120         <para>using indicators while indexing</para>
2121
2122         <para>For RUSMARC <emphasis>index-formula</emphasis>
2123          <literal>70-#1$a, $g</literal> matches</para>
2124         
2125         <screen>
2126          elm 70._1_$a,_$g_ Author !:w,!:p
2127         </screen>
2128         
2129         <para>When Zebra finds a field according to 
2130          <literal>"70."</literal> pattern it checks the indicators. In this
2131          case the value of first indicator doesn't mater, but the value of
2132          second one must be whitespace, in another case a field is not 
2133          indexed.</para>
2134        </listitem>
2135        
2136        <listitem>
2137         
2138         <para>indexing embedded (linked) fields for UNIMARC based
2139          formats</para>
2140         
2141         <para>For RUSMARC <emphasis>index-formula</emphasis> 
2142          <literal>4--#-$170-#1$a, $g ($c)</literal> matches</para>
2143         
2144         <screen><![CDATA[
2145          elm mc-4.._._$1<70._1_$a,_$g_(_$c_)>_ Author !:w,!:p
2146          ]]></screen>
2147         
2148         <para>Data are extracted from record if the field matches to
2149          <literal>"4.._."</literal> pattern and data in linked field
2150          match to embedded
2151          <emphasis>index-formula</emphasis>
2152          <literal>70._1_$a,_$g_(_$c_)</literal>.</para>
2153         
2154        </listitem>
2155        
2156       </orderedlist>
2157      </para>
2158      
2159      
2160     </section>
2161    </section>
2162
2163   </section>
2164   
2165  </chapter>
2166  <!-- Keep this comment at the end of the file
2167  Local variables:
2168  mode: sgml
2169  sgml-omittag:t
2170  sgml-shorttag:t
2171  sgml-minimize-attributes:nil
2172  sgml-always-quote-attributes:t
2173  sgml-indent-step:1
2174  sgml-indent-data:t
2175  sgml-parent-document: "zebra.xml"
2176  sgml-local-catalogs: nil
2177  sgml-namecase-general:t
2178  End:
2179  -->