Custom time format for log filter using strftime.
[metaproxy-moved-to-github.git] / doc / book.xml
1 <?xml version="1.0" standalone="no"?>
2 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1//EN"
3     "http://www.oasis-open.org/docbook/xml/4.1/docbookx.dtd" 
4 [
5      <!ENTITY % local SYSTEM "local.ent">
6      %local;
7      <!ENTITY manref SYSTEM "manref.xml">
8      <!ENTITY progref SYSTEM "progref.xml">
9      <!ENTITY % idcommon SYSTEM "common/common.ent">
10      %idcommon;
11      <!-- Next line allows imagedata/@format="PDF" and is taken from 
12          http://lists.oasis-open.org/archives/docbook/200303/msg00163.html
13      -->
14      <!ENTITY % local.notation.class "| PDF">
15      <!-- Next line is necessary for some XML parsers, for reasons I
16           don't understand.  I got this from
17          http://lists.oasis-open.org/archives/docbook/200303/msg00180.html
18      -->
19      <!NOTATION PDF SYSTEM "PDF">
20 ]>
21 <!-- $Id: book.xml,v 1.63 2008-02-27 11:08:49 adam Exp $ -->
22 <book id="metaproxy">
23  <bookinfo>
24   <title>Metaproxy - User's Guide and Reference</title>
25   <authorgroup>
26    <author>
27     <firstname>Adam</firstname><surname>Dickmeiss</surname>
28    </author>
29    <author>
30     <firstname>Marc</firstname><surname>Cromme</surname>
31    </author>
32    <author>
33     <firstname>Mike</firstname><surname>Taylor</surname>
34    </author>
35   </authorgroup>
36   <releaseinfo>&version;</releaseinfo>
37   <copyright>
38    <year>2005-2007</year>
39    <holder>Index Data ApS</holder>
40   </copyright>
41   <abstract>
42    <simpara>
43     This manual is part of Metaproxy version &version;.
44     </simpara>
45    <simpara>
46     Metaproxy is a universal router, proxy and encapsulated
47     metasearcher for information retrieval protocols.  It accepts,
48     processes, interprets and redirects requests from IR clients using
49     standard protocols such as the binary
50     <ulink url="&url.z39.50;">ANSI/NISO Z39.50</ulink>
51     and  the information search and retrieval 
52     web service <ulink url="&url.sru;">SRU</ulink>
53     as well as functioning as a limited
54     <ulink url="&url.http;">HTTP</ulink> server. 
55    </simpara>
56    <simpara>
57     Metaproxy is configured by an XML file which
58     specifies how the software should function in terms of routes that
59     the request packets can take through the proxy, each step on a
60     route being an instantiation of a filter.  Filters come in many
61     types, one for each operation: accepting Z39.50 packets, logging,
62     query transformation, multiplexing, etc.  Further filter-types can
63     be added as loadable modules to extend Metaproxy functionality,
64     using the filter API.
65    </simpara>
66    <simpara>
67     Metaproxy is covered by the GNU General Public License version 2.
68    </simpara>
69    <simpara>
70     <inlinemediaobject>
71      <imageobject>
72       <imagedata fileref="common/id.png" format="PNG"/>
73      </imageobject>
74      <imageobject>
75       <imagedata fileref="common/id.eps" format="EPS"/>
76      </imageobject>
77     </inlinemediaobject>
78    </simpara>
79   </abstract>
80  </bookinfo>
81
82  <chapter id="introduction">
83   <title>Introduction</title>
84   
85   <para>
86    <ulink url="&url.metaproxy;">Metaproxy</ulink>
87    is a stand alone program that acts as a universal router, proxy and
88    encapsulated metasearcher for information retrieval protocols such
89    as <ulink url="&url.z39.50;">Z39.50</ulink> and
90    <ulink url="&url.sru;">SRU</ulink>.
91    To clients, it acts as a server of these protocols: it can be searched,
92    records can be retrieved from it, etc. 
93    To servers, it acts as a client: it searches in them,
94    retrieves records from them, etc.  it satisfies its clients'
95    requests by transforming them, multiplexing them, forwarding them
96    on to zero or more servers, merging the results, transforming
97    them, and delivering them back to the client.  In addition, it
98    acts as a simple <ulink url="&url.http;">HTTP</ulink> server; support
99    for further protocols can be added in a modular fashion, through the
100    creation of new filters.
101   </para>
102   <screen>
103    Anything goes in!
104    Anything goes out!
105    Fish, bananas, cold pyjamas,
106    Mutton, beef and trout!
107         - attributed to Cole Porter.
108   </screen>
109   <para>
110    Metaproxy is a more capable alternative to
111    <ulink url="&url.yazproxy;">YAZ Proxy</ulink>,
112    being more powerful, flexible, configurable and extensible.  Among
113    its many advantages over the older, more pedestrian work are
114    support for multiplexing (encapsulated metasearching), routing by
115    database name, authentication and authorization and serving local
116    files via HTTP.  Equally significant, its modular architecture
117    facilitites the creation of pluggable modules implementing further
118    functionality.
119   </para>
120   <para>
121    This manual will describe how to install Metaproxy
122    before giving an overview of its architecture, then discussing the
123    key concept of a filter in some depth and giving an overview of
124    the various filter types, then discussing the configuration file
125    format.  After this come several optional chapters which may be
126    freely skipped: a detailed discussion of virtual databases and
127    multi-database searching, some notes on writing extensions
128    (additional filter types) and a high-level description of the
129    source code.  Finally comes the reference guide, which contains
130    instructions for invoking the <command>metaproxy</command>
131    program, and detailed information on each type of filter,
132    including examples.
133   </para>
134  </chapter>
135  
136  <chapter id="installation">
137   <title>Installation</title>
138   <para>
139    Metaproxy depends on the following tools/libraries:
140    <variablelist>
141     <varlistentry><term><ulink url="&url.yazplusplus;">YAZ++</ulink></term>
142      <listitem>
143       <para>
144        This is a C++ library based on <ulink url="&url.yaz;">YAZ</ulink>.
145       </para>
146      </listitem>
147     </varlistentry>
148     <varlistentry><term><ulink url="&url.libxslt;">Libxslt</ulink></term>
149      <listitem>
150       <para>This is an XSLT processor - based on 
151        <ulink url="&url.libxml2;">Libxml2</ulink>. Both Libxml2 and
152        Libxslt must be installed with the development components
153        (header files, etc.) as well as the run-time libraries.
154       </para>
155      </listitem>
156     </varlistentry>
157     <varlistentry><term><ulink url="&url.boost;">Boost</ulink></term>
158      <listitem>
159       <para>
160        The popular C++ library. Initial versions of Metaproxy
161        was built with 1.33.0. Version 1.33.1 works too. Metaproxy
162        also compiles with Boost 1.34.1 but the tests do
163        <emphasis>not</emphasis> compile, because the Test API
164        of Boost has changed.
165       </para>
166      </listitem>
167     </varlistentry>
168    </variablelist>
169   </para>
170   <para>
171    In order to compile Metaproxy a modern C++ compiler is
172    required. Boost, in particular, requires the C++ compiler
173    to facilitate the newest features. Refer to Boost
174    <ulink url="&url.boost.compilers.status;">Compiler Status</ulink>
175    for more information.
176   </para>
177   <para>
178    We have successfully built Metaproxy using the compilers
179    <ulink url="&url.gcc;">GCC</ulink> version 4.0 and
180    <ulink url="&url.vstudio;">Microsoft Visual Studio</ulink> 2003/2005.
181   </para>
182
183   <section id="installation.unix">
184    <title>Installation on Unix (from Source)</title>
185    <para>
186     Here is a quick step-by-step guide on how to compile all the
187     tools that Metaproxy uses. Only few systems have none of the required
188     tools binary packages. If, for example, Libxml2/libxslt are already
189     installed as development packages use those (and omit compilation).
190    </para>
191    
192    <para>
193     Libxml2/libxslt:
194    </para>
195    <screen>
196     gunzip -c libxml2-version.tar.gz|tar xf -
197     cd libxml2-version
198     ./configure
199     make
200     su
201     make install
202    </screen>
203    <screen>
204     gunzip -c libxslt-version.tar.gz|tar xf -
205     cd libxslt-version
206     ./configure
207     make
208     su
209     make install
210    </screen>
211    <para>
212     YAZ/YAZ++:
213    </para>
214    <screen>
215     gunzip -c yaz-version.tar.gz|tar xf -
216     cd yaz-version
217     ./configure
218     make
219     su
220     make install
221    </screen>
222    <screen>
223     gunzip -c yazpp-version.tar.gz|tar xf -
224     cd yazpp-version
225     ./configure
226     make
227     su
228     make install
229    </screen>
230    <para>
231     Boost:
232    </para>
233    <screen>
234     gunzip -c boost-version.tar.gz|tar xf -
235     cd boost-version
236     ./configure
237     make
238     su
239     make install
240    </screen>
241    <para>
242     Metaproxy:
243    </para>
244    <screen>
245     gunzip -c metaproxy-version.tar.gz|tar xf -
246     cd metaproxy-version
247     ./configure
248     make
249     su
250     make install
251    </screen>
252   </section>
253
254   <section id="installation.debian">
255    <title>Installation on Debian GNU/Linux</title>
256    <para>
257     All dependencies for Metaproxy are available as 
258     <ulink url="&url.debian;">Debian</ulink>
259     packages for the sarge (stable in 2005) and etch (testing in 2005)
260     distributions.
261    </para>
262    <para>
263     The procedures for Debian based systems, such as
264     <ulink url="&url.ubuntu;">Ubuntu</ulink> is probably similar
265    </para>
266    <para>
267     There is currently no official Debian package for YAZ++.
268     And the official Debian package for YAZ is probably too old.
269     But Index Data bulds "new" versions of those for Debian (i386 only).
270    </para>
271    <para>
272     Update the <filename>/etc/apt/sources.list</filename>
273     to include the Index Data repository.
274     See YAZ' <ulink url="&url.yaz.download.debian;">Download Debian</ulink>
275     for more information.
276    </para>
277    <screen>
278     apt-get install libxslt1-dev
279     apt-get install libyazpp2-dev
280     apt-get install libboost-dev
281     apt-get install libboost-thread-dev
282     apt-get install libboost-test-dev
283    </screen>
284    <para>
285     With these packages installed, the usual configure + make
286     procedure can be used for Metaproxy as outlined in
287     <xref linkend="installation.unix"/>.
288    </para>
289   </section>
290
291   <section id="installation.rpm">
292    <title>Installation on RPM based Linux Systems</title>
293    <para>
294     All external dependencies for Metaproxy are available as 
295     RPM packages, either from your distribution site, or from the 
296     <ulink url="http://fr.rpmfind.net/">RPMfind</ulink> site.
297    </para>
298    <para>
299     For example, an installation of the requires Boost C++ development 
300     libraries on RedHat Fedora C4 and C5 can be done like this:
301     <screen> 
302     wget ftp://fr.rpmfind.net/wlinux/fedora/core/updates/testing/4/SRPMS/boost-1.33.0-3.fc4.src.rpm
303     sudo rpmbuild --buildroot src/ --rebuild -p fc4/boost-1.33.0-3.fc4.src.rpm
304     sudo rpm -U /usr/src/redhat/RPMS/i386/boost-*rpm
305     </screen>
306    </para>
307    <para>
308     The  <ulink url="&url.yaz;">YAZ</ulink> library is needed to
309     compile &metaproxy;, see there
310     for more information on available RPM packages.
311    </para>
312    <para>
313     There is currently no official RPM package for YAZ++.
314     See the <ulink url="&url.yazplusplus;">YAZ++</ulink> pages 
315     for more information on a Unix tarball install.
316    </para>
317    <para>
318     With these packages installed, the usual configure + make
319     procedure can be used for Metaproxy as outlined in
320     <xref linkend="installation.unix"/>.
321    </para>
322   </section>
323
324   <section id="installation.windows">
325    <title>Installation on Windows</title>
326    <para>
327     Metaproxy can be compiled with Microsoft
328     <ulink url="&url.vstudio;">Visual Studio</ulink>.
329     Version 2003 (C 7.1) and 2005 (C 8.0) is known to work.
330    </para>
331    <section id="installation.windows.boost">
332     <title>Boost</title>
333     <para>
334      For Windows, it's easiest to get the precompiled Boost
335      package from <ulink url="&url.boost.windows.download;">here</ulink>.
336      Several versions of the Boost libraries may be selected when
337      installing Boost for windows. Please choose at least the
338      <emphasis>multithreaded</emphasis> (non-DLL) version because
339      the Metaproxy makefile uses that.
340     </para>
341     <para>
342      For more information about installing Boost refer to the
343      <ulink url="&url.boost.getting.started;">getting started</ulink>
344      pages.
345     </para>
346    </section>
347
348    <section id="installation.windows.libxslt">
349     <title>Libxslt</title>
350     <para>
351      <ulink url="&url.libxslt;">Libxslt</ulink> can be downloaded
352      for Windows from
353      <ulink url="&url.libxml2.download.win32;">here</ulink>.
354     </para>
355     <para>
356      Libxslt has other dependencies, but these can all be downloaded
357      from the same site. Get the following package:
358      iconv, zlib, libxml2, libxslt.
359     </para>
360    </section>
361
362    <section id="installation.windows.yaz">
363     <title>YAZ</title>
364     <para>
365      <ulink url="&url.yaz;">YAZ</ulink> can be downloaded
366      for Windows from
367      <ulink url="&url.yaz.download.win32;">here</ulink>.
368     </para>
369    </section>
370
371    <section id="installation.windows.yazplusplus">
372     <title>YAZ++</title>
373     <para>
374      Get <ulink url="&url.yazplusplus;">YAZ++</ulink> as well.
375      Version 1.0.3 or later is required.
376     </para>
377     <para>
378      YAZ++ includes NMAKE makefiles, similar to those found in the
379      YAZ package.
380     </para>
381    </section>
382
383    <section id="installation.windows.metaproxy">
384     <title>Metaproxy</title>
385     <para>
386      Metaproxy is shipped with NMAKE makefiles as well - similar
387      to those found in the YAZ++/YAZ packages. Adjust this Makefile
388      to point to the proper locations of Boost, Libxslt, Libxml2,
389      zlib, iconv, yaz and yazpp.
390     </para>
391
392     <variablelist>
393      <varlistentry><term><literal>DEBUG</literal></term>
394       <listitem><para>
395         If set to 1, the software is
396         compiled with debugging libraries (code generation is
397         multi-threaded debug DLL).
398         If set to 0, the software is compiled with release libraries
399         (code generation is multi-threaded DLL).
400        </para></listitem>
401      </varlistentry>
402
403      <varlistentry>
404       <term><literal>BOOST</literal></term>
405       <listitem>
406        <para>
407         Boost install location
408        </para>
409       </listitem>
410      </varlistentry>
411
412      <varlistentry>
413       <term><literal>BOOST_VERSION</literal></term>
414       <listitem>
415        <para>
416         Boost version (replace . with _).
417        </para>
418       </listitem>
419      </varlistentry>
420
421      <varlistentry>
422       <term><literal>BOOST_TOOLSET</literal></term>
423       <listitem>
424        <para>
425         Boost toolset.
426        </para>
427       </listitem>
428      </varlistentry>
429
430      <varlistentry>
431       <term><literal>LIBXSLT_DIR</literal>,
432        <literal>LIBXML2_DIR</literal> ..</term>
433       <listitem>
434        <para>
435         Specify the locations of Libxslt, libiconv, libxml2 and
436         libxslt.
437        </para>
438       </listitem>
439      </varlistentry>
440       
441     </variablelist>
442     
443     <para>
444      After successful compilation you'll find
445      <literal>metaproxy.exe</literal> in the
446      <literal>bin</literal> directory.
447     </para>
448    </section>
449
450
451   </section>
452  </chapter>
453  
454 <chapter id="yazproxy-comparison">
455  <title>YAZ Proxy Comparison</title>
456  <para>
457   The table below lists facilities either supported by either
458    <ulink url="&url.yazproxy;">YAZ Proxy</ulink> or Metaproxy.
459  </para>
460 <table id="yazproxy-comparison-table">
461  <title>Metaproxy / YAZ Proxy comparison</title>
462  <tgroup cols="3">
463   <thead>
464    <row>
465     <entry>Facility</entry>
466     <entry>Metaproxy</entry>
467     <entry>YAZ Proxy</entry>
468    </row>
469   </thead>
470   <tbody>
471    <row>
472     <entry>Z39.50 server</entry>
473     <entry>Using filter <literal>frontend_net</literal></entry>
474     <entry>Supported</entry>
475    </row>
476    <row>
477     <entry>SRU server</entry>
478     <entry>Supported with filter <literal>sru_z3950</literal></entry>
479     <entry>Supported</entry>
480    </row>
481    <row>
482     <entry>Z39.50 client</entry>
483     <entry>Supported with filter <literal>z3950_client</literal></entry>
484     <entry>Supported</entry>
485    </row>
486    <row>
487     <entry>SRU client</entry>
488     <entry>Unsupported</entry>
489     <entry>Unsupported</entry>
490    </row>
491    <row>
492     <entry>Connection reuse</entry>
493     <entry>Supported with filter <literal>session_shared</literal></entry>
494     <entry>Supported</entry>
495    </row>
496    <row>
497     <entry>Connection share</entry>
498     <entry>Supported with filter <literal>session_shared</literal></entry>
499     <entry>Unsupported</entry>
500    </row>
501    <row>
502     <entry>Result set reuse</entry>
503     <entry>Supported with filter <literal>session_shared</literal></entry>
504     <entry>Within one Z39.50 session / HTTP keep-alive</entry>
505    </row>
506    <row>
507     <entry>Record cache</entry>
508     <entry>Unsupported</entry>
509     <entry>Supported for last result set within one Z39.50/HTTP-keep alive session</entry>
510    </row>
511    <row>
512     <entry>Z39.50 Virtual database, i.e. select any Z39.50 target for database</entry>
513     <entry>Supported with filter <literal>virt_db</literal></entry>
514     <entry>Unsupported</entry>
515    </row>
516    <row>
517     <entry>SRU Virtual database, i.e. select any Z39.50 target for path</entry>
518     <entry>Supported with filter <literal>virt_db</literal>, 
519      <literal>sru_z3950</literal></entry>
520     <entry>Supported</entry>
521    </row>
522    <row>
523     <entry>Multi target search</entry>
524     <entry>Supported with filter <literal>multi</literal> (round-robin)</entry>
525     <entry>Unsupported</entry>
526    </row>
527    <row>
528     <entry>Retrieval and search limits</entry>
529     <entry>Unsupported</entry>
530     <entry>Supported</entry>
531    </row>
532    <row>
533     <entry>Bandwidth limits</entry>
534     <entry>Unsupported</entry>
535     <entry>Supported</entry>
536    </row>
537    <row>
538     <entry>Connect limits</entry>
539     <entry>Unsupported</entry>
540     <entry>Supported</entry>
541    </row>
542    <row>
543     <entry>Retrieval sanity check and conversions</entry>
544     <entry>Supported using filter <literal>record_transform</literal></entry>
545     <entry>Supported</entry>
546    </row>
547    <row>
548     <entry>Query check</entry>
549     <entry>
550      Supported in a limited way using <literal>query_rewrite</literal>
551     </entry>
552     <entry>Supported</entry>
553    </row>
554    <row>
555     <entry>Query rewrite</entry>
556     <entry>Supported with <literal>query_rewrite</literal></entry>
557     <entry>Unsupported</entry>
558    </row>
559    <row>
560     <entry>Session invalidate for -1 hits</entry>
561     <entry>Unsupported</entry>
562     <entry>Supported</entry>
563    </row>
564    <row>
565     <entry>Architecture</entry>
566     <entry>Multi-threaded + select for networked modules such as
567       <literal>frontend_net</literal>)</entry>
568     <entry>Single-threaded using select</entry>
569    </row>
570
571    <row>
572     <entry>Extensability</entry>
573     <entry>Most functionality implemented as loadable modules</entry>
574     <entry>Unsupported and experimental</entry>
575    </row>
576
577    <row>
578     <entry><ulink url="&url.usemarcon;">USEMARCON</ulink></entry>
579     <entry>Unsupported</entry>
580     <entry>Supported</entry>
581    </row>
582
583    <row>
584     <entry>Portability</entry>
585     <entry>
586      Requires YAZ, YAZ++ and modern C++ compiler supporting
587      <ulink url="&url.boost;">Boost</ulink>.
588     </entry>
589     <entry>
590      Requires YAZ and YAZ++.
591      STL is not required so pretty much any C++ compiler out there should work.
592     </entry>
593    </row>
594
595   </tbody>
596  </tgroup>
597 </table>
598 </chapter>
599
600  <chapter id="architecture">
601   <title>The Metaproxy Architecture</title>
602   <para>
603    The Metaproxy architecture is based on three concepts:
604    the <emphasis>package</emphasis>,
605    the <emphasis>route</emphasis>
606    and the <emphasis>filter</emphasis>.
607   </para>
608   <variablelist>
609    <varlistentry>
610     <term>Packages</term>
611     <listitem>
612      <para>
613       A package is request or response, encoded in some protocol,
614       issued by a client, making its way through Metaproxy, send to or
615       received from a server, or sent back to the client.
616      </para>
617      <para>
618       The core of a package is the protocol unit - for example, a
619       Z39.50 Init Request or Search Response, or an SRU searchRetrieve
620       URL or Explain Response.  In addition to this core, a package
621       also carries some extra information added and used by Metaproxy
622       itself.
623      </para>
624      <para>
625       In general, packages are doctored as they pass through
626       Metaproxy.  For example, when the proxy performs authentication
627       and authorization on a Z39.50 Init request, it removes the
628       authentication credentials from the package so that they are not
629       passed onto the back-end server; and when search-response
630       packages are obtained from multiple servers, they are merged
631       into a single unified package that makes its way back to the
632       client.
633      </para>
634     </listitem>
635    </varlistentry>
636    <varlistentry>
637     <term>Routes</term>
638     <listitem>
639      <para>
640       Packages make their way through routes, which can be thought of
641       as programs that operate on the package data-type.  Each
642       incoming package initially makes its way through a default
643       route, but may be switched to a different route based on various
644       considerations.  Routes are made up of sequences of filters (see
645       below).
646      </para>
647     </listitem>
648    </varlistentry>
649    <varlistentry>
650     <term>Filters</term>
651     <listitem>
652      <para>
653       Filters provide the individual instructions within a route, and
654       effect the necessary transformations on packages.  A particular
655       configuration of Metaproxy is essentially a set of filters,
656       described by configuration details and arranged in order in one
657       or more routes.  There are many kinds of filter - about a dozen
658       at the time of writing with more appearing all the time - each
659       performing a specific function and configured by different
660       information.
661      </para>
662      <para>
663       The word ``filter'' is sometimes used rather loosely, in two
664       different ways: it may be used to mean a particular
665       <emphasis>type</emphasis> of filter, as when we speak of ``the
666       auth_simple filter'' or ``the multi filter''; or it may be used
667       to be a specific <emphasis>instance</emphasis> of a filter
668       within a Metaproxy configuration.  For example, a single
669       configuration will often contain multiple instances of the
670       <literal>z3950_client</literal> filter.  In
671       operational terms, of these is a separate filter.  In practice,
672       context always make it clear which sense of the word ``filter''
673       is being used.
674      </para>
675      <para>
676       Extensibility of Metaproxy is primarily through the creation of
677       plugins that provide new filters.  The filter API is small and
678       conceptually simple, but there are many details to master.  See
679       the section below on
680       <link linkend="filters">Filters</link>.
681      </para>
682     </listitem>
683    </varlistentry>
684   </variablelist>
685   <para>
686    Since packages are created and handled by the system itself, and
687    routes are conceptually simple, most of the remainder of this
688    document concentrates on filters.  After a brief overview of the
689    filter types follows, along with some thoughts on possible future
690    directions.
691   </para>
692  </chapter>
693
694
695
696  <chapter id="filters">
697   <title>Filters</title>
698   
699   
700   <section id="filters-introductory-notes">
701    <title>Introductory notes</title>
702    <para>
703     It's useful to think of Metaproxy as an interpreter providing a small
704     number of primitives and operations, but operating on a very
705     complex data type, namely the ``package''.
706    </para>
707    <para>
708     A package represents a Z39.50 or SRU/W request (whether for Init,
709     Search, Scan, etc.)  together with information about where it came
710     from.  Packages are created by front-end filters such as
711     <literal>frontend_net</literal> (see below), which reads them from
712     the network; other front-end filters are possible.  They then pass
713     along a route consisting of a sequence of filters, each of which
714     transforms the package and may also have side-effects such as
715     generating logging.  Eventually, the route will yield a response,
716     which is sent back to the origin.
717    </para>
718    <para>
719     There are many kinds of filter: some that are defined statically
720     as part of Metaproxy, and others may be provided by third parties
721     and dynamically loaded.  They all conform to the same simple API
722     of essentially two methods: <function>configure()</function> is
723     called at startup time, and is passed an XML DOM tree representing that
724     part of the configuration file that pertains to this filter
725     instance: it is expected to walk that tree extracting relevant
726     information; and <function>process()</function> is called every
727     time the filter has to processes a package.
728    </para>
729    <para>
730     While all filters provide the same API, there are different modes
731     of functionality.  Some filters are sources: they create
732     packages
733     (<literal>frontend_net</literal>);
734     others are sinks: they consume packages and return a result
735     (<literal>backend_test</literal>,
736     <literal>bounce</literal>,
737     <literal>http_file</literal>, 
738     <literal>z3950_client</literal>);
739     the others are true filters, that read, process and pass on the
740     packages they are fed
741     (<literal>auth_simple</literal>,
742     <literal>log</literal>,
743     <literal>multi</literal>,
744     <literal>query_rewrite</literal>,
745     <literal>record_transform</literal>,
746     <literal>session_shared</literal>,
747     <literal>sru_z3950</literal>,
748     <literal>template</literal>,
749     <literal>virt_db</literal>).
750    </para>
751  </section>
752   
753   
754   <section id="overview.filter.types">
755    <title>Overview of filter types</title>
756    <para>
757     We now briefly consider each of the types of filter supported by
758     the core Metaproxy binary.  This overview is intended to give a
759     flavor of the available functionality; more detailed information
760     about each type of filter is included below in
761     <xref linkend="reference"/>.
762    </para>
763    <para>
764     The filters are here named by the string that is used as the
765     <literal>type</literal> attribute of a
766     <literal>&lt;filter&gt;</literal> element in the configuration
767     file to request them, with the name of the class that implements
768     them in parentheses.  (The classname is not needed for normal
769     configuration and use of Metaproxy; it is useful only to
770     developers.)
771    </para>
772    <para>
773     The filters are here listed in alphabetical order:
774    </para>
775    
776 <!--
777
778 ### New filters:
779
780 New virt_db-alike that does inteligent peer choice, explain merging,
781 adds FD&N to explain.  Keeps init responses (like "virt_db Classic"),
782 makes routing choices based on local explain knowledge.  Ref IDDI
783 paper.
784
785 Filter to convert Explain Classic to ZeeRex.
786
787 CQL2PQF (which needs augmented ZeeRex) - MARC for Talis.
788
789 SRU2Z39.50 (ditto).
790
791 Figure out what additional information we need in:
792         ZeeRex (check against D3.1)
793         Init request (e.g. loop detection)
794         Query package (e.g. number of hops)
795         Query response (e.g. record source)
796
797 -->
798
799    <section id="auth_simple">
800     <title><literal>auth_simple</literal>
801      (mp::filter::AuthSimple)</title>
802     <para>
803      Simple authentication and authorization.  The configuration
804      specifies the name of a file that is the user register, which
805      lists <varname>username</varname>:<varname>password</varname>
806      pairs, one per line, colon separated. When a session begins, it
807      is rejected unless username and passsword are supplied, and match
808      a pair in the register.  The configuration file may also specific
809      the name of another file that is the target register: this lists
810      lists <varname>username</varname>:<varname>dbname</varname>,<varname>dbname</varname>...
811      sets, one per line, with multiple database names separated by
812      commas.  When a search is processed, it is rejected unless the
813      database to be searched is one of those listed as available to
814      the user.
815     </para>
816    </section>
817    
818    <section id="backend_test">
819     <title><literal>backend_test</literal>
820     (mp::filter::Backend_test)</title>
821     <para>
822      A partial sink that provides dummy responses in the manner of the
823      <literal>yaz-ztest</literal> Z39.50 server.  This is useful only
824      for testing.  Seriously, you don't need this.  Pretend you didn't
825      even read this section.
826     </para>
827    </section>
828    
829    <section id="bounce">
830     <title><literal>bounce</literal>
831     (mp::filter::Bounce)</title>
832     <para>
833      A sink that swallows <emphasis>all packages</emphasis>, 
834      and returns them almost unprocessed.
835      It never sends any package of any type further down the row, but
836      sets Z39.50 packages to Z_Close, and HTTP_Request packages to
837      HTTP_Response err code 400 packages, and adds a suitable bounce
838      message. 
839      The bounce filter is usually added at end of each filter chain route
840      to prevent infinite hanging of for example HTTP
841      requests packages when only the Z39.50 client partial sink 
842      filter is found in the
843      route.  
844     </para>
845    </section>
846    
847    <section id="cql_rpn">
848     <title><literal>cql_rpn</literal>
849     (mp::filter::CQLtoRPN)</title>
850     <para>
851      A query language transforming filter which catches Z39.50 
852      <literal>searchRequest</literal>
853      packages containing <literal>CQL</literal> queries, transforms
854      those to <literal>RPN</literal> queries,
855      and sends the <literal>searchRequests</literal> on to the next
856      filters. It is among other things useful in a SRU context. 
857     </para>
858    </section>
859    
860    <section id="frontend_net">
861     <title><literal>frontend_net</literal>
862      (mp::filter::FrontendNet)</title>
863     <para>
864      A source that accepts Z39.50 connections from a port
865      specified in the configuration, reads protocol units, and
866      feeds them into the next filter in the route.  When the result is
867      received, it is returned to the original origin.
868     </para>
869    </section>
870
871    <section id="http_file">
872     <title><literal>http_file</literal>
873      (mp::filter::HttpFile)</title>
874     <para>
875      A partial sink which swallows only 
876      <literal>HTTP_Request</literal> packages, and 
877      returns the contents of files from the local
878      filesystem in response to HTTP requests.  
879      It lets Z39.50 packages and all other forthcoming package types
880      pass untouched. 
881      (Yes, Virginia, this
882      does mean that Metaproxy is also a Web-server in its spare time.  So
883      far it does not contain either an email-reader or a Lisp
884      interpreter, but that day is surely coming.)
885     </para>
886    </section>
887    
888    <section id="load_balance">
889     <title><literal>load_balance</literal>
890      (mp::filter::LoadBalance)</title>
891     <para>
892      Performs load balancing for incoming Z39.50 init requests.
893      It is used together with the <literal>virt_db</literal> filter,
894      but unlike the <literal>multi</literal> filter it does send an
895      entire session to only one of the virtual backends. The 
896      <literal>load_balance</literal> filter is assuming that
897      all backend targets have equal content, and chooses the backend
898      with least load cost for a new session.
899     <warning>
900      <para>
901       This filter is experimental and yet not mature for heavy load
902       production sites.
903      </para>
904     </warning>
905    </para>
906    </section>
907       
908    <section id="log">
909     <title><literal>log</literal>
910      (mp::filter::Log)</title>
911     <para>
912      Writes logging information to standard output, and passes on
913      the package unchanged. A log file name can be specified, as well
914      as multiple different logging formats.
915    </para>
916    </section>
917
918    <section id="multi">
919    <title><literal>multi</literal>
920      (mp::filter::Multi)</title>
921     <para>
922      Performs multi-database searching.
923      See
924      <link linkend="multidb">the extended discussion</link>
925      of virtual databases and multi-database searching below.
926     </para>
927    </section>
928    
929    <section id="query_rewrite">
930    <title><literal>query_rewrite</literal>
931      (mp::filter::QueryRewrite)</title>
932     <para>
933      Rewrites Z39.50 <literal>Type-1</literal> 
934      and <literal>Type-101</literal> (``<literal>RPN</literal>'') 
935      queries by a
936      three-step process: the query is transliterated from Z39.50
937      packet structures into an XML representation; that XML
938      representation is transformed by an XSLT stylesheet; and the
939      resulting XML is transliterated back into the Z39.50 packet
940      structure.
941     </para>
942    </section>
943    
944    
945    <section id="record_transform">
946     <title><literal>record_transform</literal>
947     (mp::filter::RecordTransform)</title>
948     <para>
949      This filter acts only on Z3950 present requests, and let all
950      other types of packages and requests pass untouched. It's use is
951      twofold: blocking Z3950  present requests, which the backend
952      server does not understand and can not honor, and transforming
953      the present syntax and elementset name according to the rules
954      specified, to fetch only existing record formats, and transform
955      them on the fly to requested record syntaxes.
956     </para>
957    </section>
958
959    <section id="session_shared">
960     <title><literal>session_shared</literal>
961      (mp::filter::SessionShared)</title>
962     <para>
963      This filter implements global sharing of
964      result sets (i.e. between threads and therefore between
965      clients), yielding performance improvements by clever resource
966      pooling. 
967     </para>
968    </section>
969
970    <section id="sru_z3950">
971     <title><literal>sru_z3950</literal>
972     (mp::filter::SRUtoZ3950)</title>
973     <para>
974      This filter transforms valid
975      SRU GET/POST/SOAP searchRetrieve requests to Z3950 init, search,
976      and present requests, and wraps the
977      received hit counts and XML records into suitable SRU response
978      messages.
979      The <literal>sru_z3950</literal> filter  processes also  SRU
980      GET/POST/SOAP explain requests, returning
981      either the absolute minimum required by the standard, or a  full 
982      pre-defined ZeeReX explain record.
983      See the 
984      <ulink url="&url.zeerex.explain;">ZeeReX Explain</ulink>
985      standard pages and the 
986      <ulink url="&url.sru.explain;">SRU Explain</ulink> pages
987      for more information on the correct explain syntax.
988      SRU scan requests are not supported yet.
989     </para>
990    </section>
991    
992    <section id="template">
993     <title><literal>template</literal>
994      (mp::filter::Template)</title>
995     <para>
996      Does nothing at all, merely passing the packet on.  (Maybe it
997      should be called <literal>nop</literal> or
998      <literal>passthrough</literal>?)  This exists not to be used, but
999      to be copied - to become the skeleton of new filters as they are
1000      written.  As with <literal>backend_test</literal>, this is not
1001      intended for civilians.
1002     </para>
1003    </section>
1004    
1005    <section id="virt_db">
1006     <title><literal>virt_db</literal>
1007      (mp::filter::VirtualDB)</title>
1008     <para>
1009      Performs virtual database selection: based on the name of the
1010      database in the search request, a server is selected, and its
1011      address added to the request in a <literal>VAL_PROXY</literal>
1012      otherInfo packet.  It will subsequently be used by a
1013      <literal>z3950_client</literal> filter.
1014      See
1015      <link linkend="multidb">the extended discussion</link>
1016      of virtual databases and multi-database searching below.
1017     </para>
1018    </section>
1019    
1020    <section id="z3950_client">
1021     <title><literal>z3950_client</literal>
1022      (mp::filter::Z3950Client)</title>
1023     <para>
1024      A partial sink which swallows only Z39.50 packages.
1025      It performs Z39.50 searching and retrieval by proxying the
1026      packages that are passed to it.  Init requests are sent to the
1027      address specified in the <literal>VAL_PROXY</literal> otherInfo
1028      attached to the request: this may have been specified by client,
1029      or generated by a <literal>virt_db</literal> filter earlier in
1030      the route.  Subsequent requests are sent to the same address,
1031      which is remembered at Init time in a Session object.
1032      HTTP_Request packages and all other forthcoming package types
1033      are passed untouched. 
1034     </para>
1035   </section>
1036
1037
1038    <section id="zeerex_explain">
1039     <title><literal>zeerex_explain</literal>
1040      (mp::filter::ZeerexExplain)</title>
1041     <para>
1042      This filter acts as a sink for
1043      Z39.50 explain requests, returning a static ZeeReX
1044      Explain XML record from the config section. All other packages
1045      are passed through.
1046      See the 
1047      <ulink url="&url.zeerex.explain;">ZeeReX Explain</ulink>
1048      standard pages
1049      for more information on the correct explain syntax.
1050     </para>
1051     <warning>
1052      <para>
1053       This filter is not yet completed.
1054      </para>
1055     </warning>
1056    </section>
1057    
1058
1059   </section>
1060   
1061   
1062   <section id="future.directions">
1063    <title>Future directions</title>
1064   <para>
1065     Some other filters that do not yet exist, but which would be
1066     useful, are briefly described.  These may be added in future
1067     releases (or may be created by third parties, as loadable
1068     modules).
1069    </para>
1070
1071    <variablelist>
1072     <varlistentry>
1073      <term><literal>frontend_cli</literal> (source)</term>
1074     <listitem>
1075       <para>
1076        Command-line interface for generating requests.
1077       </para>
1078      </listitem>
1079     </varlistentry>
1080     <varlistentry>
1081      <term><literal>sru_client</literal> (sink)</term>
1082      <listitem>
1083       <para>
1084        SRU/GET and SRU/SOAP searching and retrieval.
1085       </para>
1086      </listitem>
1087     </varlistentry>
1088     <varlistentry>
1089      <term><literal>opensearch_client</literal> (sink)</term>
1090      <listitem>
1091       <para>
1092        A9 OpenSearch searching and retrieval.
1093       </para>
1094      </listitem>
1095     </varlistentry>
1096    </variablelist>
1097   </section>
1098  </chapter>
1099  
1100  
1101  
1102  <chapter id="configuration">
1103   <title>Configuration: the Metaproxy configuration file format</title>
1104   
1105   
1106   <section id="configuration-introductory-notes">
1107    <title>Introductory notes</title>
1108    <para>
1109     If Metaproxy is an interpreter providing operations on packages, then
1110     its configuration file can be thought of as a program for that
1111     interpreter.  Configuration is by means of a single XML file, the name
1112     of which is supplied as the sole command-line argument to the
1113     <command>metaproxy</command> program.  (See
1114     <xref linkend="reference"/> below for more information on invoking
1115     Metaproxy.)
1116    </para>
1117   </section>
1118   
1119   <section id="overview.xml.structure">
1120    <title>Overview of the config file XML structure</title>
1121    <para>
1122     All elements and attributes are in the namespace
1123     <ulink url="http://indexdata.com/metaproxy"/>.
1124      This is most easily achieved by setting the default namespace on
1125      the top-level element, as here:
1126    </para>
1127    <screen>
1128     &lt;metaproxy xmlns="http://indexdata.com/metaproxy" version="1.0"&gt;
1129    </screen>
1130    <para>
1131     The top-level element is &lt;metaproxy&gt;.  This contains a
1132     &lt;start&gt; element, a &lt;filters&gt; element and a
1133     &lt;routes&gt; element, in that order.  &lt;filters&gt; is
1134     optional; the other two are mandatory.  All three are
1135     non-repeatable.
1136    </para>
1137   <para>
1138     The &lt;start&gt; element is empty, but carries a
1139     <literal>route</literal> attribute, whose value is the name of
1140     route at which to start running - analogous to the name of the
1141     start production in a formal grammar.
1142    </para>
1143   <para>
1144     If present, &lt;filters&gt; contains zero or more &lt;filter&gt;
1145     elements.  Each filter carries a <literal>type</literal> attribute
1146     which specifies what kind of filter is being defined
1147     (<literal>frontend_net</literal>, <literal>log</literal>, etc.)
1148     and contain various elements that provide suitable configuration
1149     for a filter of its type.  The filter-specific elements are
1150     described in
1151     <xref linkend="reference"/>.
1152     Filters defined in this part of the file must carry an
1153     <literal>id</literal> attribute so that they can be referenced
1154     from elsewhere.
1155    </para>
1156    <para>
1157     &lt;routes&gt; contains one or more &lt;route&gt; elements, each
1158     of which must carry an <literal>id</literal> element.  One of the
1159     routes must have the ID value that was specified as the start
1160     route in the &lt;start&gt; element's <literal>route</literal>
1161     attribute.  Each route contains zero or more &lt;filter&gt;
1162     elements.  These are of two types.  They may be empty, but carry a
1163     <literal>refid</literal> attribute whose value is the same as the
1164     <literal>id</literal> of a filter previously defined in the
1165     &lt;filters&gt; section.  Alternatively, a route within a filter
1166     may omit the <literal>refid</literal> attribute, but contain
1167     configuration elements similar to those used for filters defined
1168     in the &lt;filters&gt; section.  (In other words, each filter in a
1169     route may be included either by reference or by physical
1170     inclusion.)
1171    </para>
1172   </section>
1173
1174
1175   <section id="example.configuration">
1176    <title>An example configuration</title>
1177    <para>
1178     The following is a small, but complete, Metaproxy configuration
1179     file (included in the distribution as
1180     <literal>metaproxy/etc/config1.xml</literal>).
1181     This file defines a very simple configuration that simply proxies
1182     to whatever back-end server the client requests, but logs each
1183     request and response.  This can be useful for debugging complex
1184     client-server dialogues.
1185    </para>
1186    <screen><![CDATA[<?xml version="1.0"?>
1187 <metaproxy xmlns="http://indexdata.com/metaproxy" version="1.0">
1188   <start route="start"/>
1189   <filters>
1190     <filter id="frontend" type="frontend_net">
1191       <port>@:9000</port>
1192     </filter>
1193     <filter id="backend" type="z3950_client">
1194     </filter>
1195   </filters>
1196   <routes>  
1197     <route id="start">
1198       <filter refid="frontend"/>
1199       <filter type="log"/>
1200       <filter refid="backend"/>
1201       <filter type="bounce"/>
1202     </route>
1203   </routes>
1204 </metaproxy>
1205 ]]></screen>
1206    <para>
1207     It works by defining a single route, called
1208     <literal>start</literal>, which consists of a sequence of four
1209     filters.  The first and last of these are included by reference:
1210     their <literal>&lt;filter&gt;</literal> elements have
1211     <literal>refid</literal> attributes that refer to filters defined
1212     within the prior <literal>&lt;filters&gt;</literal> section.  The
1213     middle filter is included inline in the route.
1214    </para>
1215    <para>
1216     The four filters in the route are as follows: first, a
1217     <literal>frontend_net</literal> filter accepts Z39.50 requests
1218     from any host on port 9000; then these requests are passed through
1219     a <literal>log</literal> filter that emits a message for each
1220     request; they are then fed into a <literal>z3950_client</literal>
1221     filter, which forwards all Z39.50 requests to the client-specified
1222     back-end Z39.509 server. Those Z39.50 packages are returned by the
1223     <literal>z3950_client</literal> filter, with the response data
1224     filled by the external Z39.50 server targeted.
1225     All non-Z39.50 packages are passed through to the
1226     <literal>bounce</literal> filter, which definitely bounces
1227     everything, including fish, bananas, cold pyjamas,
1228     mutton, beef and trout packages.
1229     When the response arrives, it is handed
1230     back to the <literal>log</literal> filter, which emits another
1231     message; and then to the <literal>frontend_net</literal> filter, 
1232     which returns the response to the client.
1233    </para>
1234   </section>
1235
1236   <section id="config-file-modularity">
1237    <title>Config file modularity</title>
1238    <para>
1239     Metaproxy XML configuration snippets can be reused by other
1240     filters using the <literal>XInclude</literal> standard, as seen in
1241     the <literal>/etc/config-sru-to-z3950.xml</literal> example SRU 
1242     configuration.
1243    <screen><![CDATA[
1244     <filter id="sru" type="sru_z3950">
1245       <database name="Default">
1246        <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
1247                     href="explain.xml"/>
1248       </database>
1249     </filter>
1250 ]]></screen>
1251     </para>
1252   </section>
1253
1254   <section id="config-file-syntax-check">
1255    <title>Config file syntax checking</title>
1256    <para>
1257     The distribution contains RelaxNG Compact and XML syntax checking
1258     files, as well as XML Schema files. These are found in the
1259     distribution paths 
1260    <screen>
1261     xml/schema/metaproxy.rnc
1262     xml/schema/metaproxy.rng
1263     xml/schema/metaproxy.xsd
1264    </screen>
1265     and can be used to verify or debug the XML structure of
1266     configuration files. For example, using the utility
1267     <filename>xmllint</filename>, syntax checking is done like this:
1268    <screen>
1269     xmllint --noout --schema xml/schema/metaproxy.xsd etc/config-local.xml 
1270     xmllint --noout --relaxng xml/schema/metaproxy.rng etc/config-local.xml 
1271    </screen>
1272     (A recent version of <literal>libxml2</literal> is required, as
1273     support for XML Schemas is a relatively recent addition.)
1274    </para>
1275    <para>
1276     You can of course use any other RelaxNG or XML Schema compliant tool
1277     you wish.
1278    </para>
1279    </section>
1280  </chapter>
1281
1282
1283
1284  <chapter id="multidb">
1285   <title>Virtual databases and multi-database searching</title>
1286
1287
1288   <section id="multidb-introductory-notes">
1289    <title>Introductory notes</title>
1290    <para>
1291     Two of Metaproxy's filters are concerned with multiple-database
1292     operations.  Of these, <literal>virt_db</literal> can work alone
1293     to control the routing of searches to one of a number of servers,
1294     while <literal>multi</literal> can work together with
1295     <literal>virt_db</literal> to perform multi-database searching, merging
1296     the results into a unified result-set - ``metasearch in a box''.
1297    </para>
1298    <para>
1299     The interaction between
1300     these two filters is necessarily complex: it reflects the real,
1301     irreducible complexity of multi-database searching in a protocol such
1302     as Z39.50 that separates initialization from searching, and in
1303     which the database to be searched is not known at initialization
1304     time.
1305    </para>
1306    <para>
1307     It's possible to use these filters without understanding the
1308     details of their functioning and the interaction between them; the
1309     next two sections of this chapter are ``HOW-TO'' guides for doing
1310     just that.  However, debugging complex configurations will require
1311     a deeper understanding, which the last two sections of this
1312     chapters attempt to provide.
1313    </para>
1314   </section>
1315
1316
1317   <section id="multidb.virt_db">
1318    <title>Virtual databases with the <literal>virt_db</literal> filter</title>
1319    <para>
1320     Working alone, the purpose of the
1321     <literal>virt_db</literal>
1322     filter is to route search requests to one of a selection of
1323     back-end databases.  In this way, a single Z39.50 endpoint
1324     (running Metaproxy) can provide access to several different
1325     underlying services, including those that would otherwise be
1326     inaccessible due to firewalls.  In many useful configurations, the
1327     back-end databases are local to the Metaproxy installation, but
1328     the software does not enforce this, and any valid Z39.50 servers
1329     may be used as back-ends.
1330    </para>
1331    <para>
1332     For example, a <literal>virt_db</literal>
1333     filter could be set up so that searches in the virtual database
1334     ``lc'' are forwarded to the Library of Congress bibliographic
1335     catalogue server, and searches in the virtual database ``marc''
1336     are forwarded to the toy database of MARC records that Index Data
1337     hosts for testing purposes.  A <literal>virt_db</literal>
1338     configuration to make this switch would look like this:
1339    </para>
1340    <screen><![CDATA[<filter type="virt_db">
1341   <virtual>
1342     <database>lc</database>
1343     <target>z3950.loc.gov:7090/voyager</target>
1344   </virtual>
1345   <virtual>
1346     <database>marc</database>
1347     <target>indexdata.com/marc</target>
1348   </virtual>
1349 </filter>]]></screen>
1350    <para>
1351     As well as being useful in it own right, this filter also provides
1352     the foundation for multi-database searching.
1353    </para>
1354   </section>
1355
1356
1357   <section id="multidb.multi">
1358    <title>Multi-database search with the <literal>multi</literal> filter</title>
1359    <para>
1360     To arrange for Metaproxy to broadcast searches to multiple back-end
1361     servers, the configuration needs to include two components: a
1362     <literal>virt_db</literal>
1363     filter that specifies multiple
1364     <literal>&lt;target&gt;</literal>
1365     elements, and a subsequent
1366     <literal>multi</literal>
1367     filter.  Here, for example, is a complete configuration that
1368     broadcasts searches to both the Library of Congress catalogue and
1369     Index Data's tiny testing database of MARC records:
1370    </para>
1371    <screen><![CDATA[<?xml version="1.0"?>
1372 <metaproxy xmlns="http://indexdata.com/metaproxy" version="1.0">
1373   <start route="start"/>
1374   <routes>
1375     <route id="start">
1376       <filter type="frontend_net">
1377         <threads>10</threads>
1378         <port>@:9000</port>
1379       </filter>
1380       <filter type="virt_db">
1381         <virtual>
1382           <database>lc</database>
1383           <target>z3950.loc.gov:7090/voyager</target>
1384         </virtual>
1385         <virtual>
1386           <database>marc</database>
1387           <target>indexdata.com/marc</target>
1388         </virtual>
1389         <virtual>
1390           <database>all</database>
1391           <target>z3950.loc.gov:7090/voyager</target>
1392           <target>indexdata.com/marc</target>
1393         </virtual>
1394       </filter>
1395       <filter type="multi"/>
1396       <filter type="z3950_client">
1397         <timeout>30</timeout>
1398       </filter>
1399       <filter type="bounce"/>
1400     </route>
1401   </routes>
1402 </metaproxy>]]></screen>
1403    <para>
1404     (Using a
1405     <literal>virt_db</literal>
1406     filter that specifies multiple
1407     <literal>&lt;target&gt;</literal>
1408     elements but without a subsequent
1409     <literal>multi</literal>
1410     filter yields surprising and undesirable results, as will be
1411     described below.  Don't do that.)
1412    </para>
1413    <para>
1414     Metaproxy can be invoked with this configuration as follows:
1415    </para>
1416    <screen>../src/metaproxy --config config-simple-multi.xml</screen>
1417    <para>
1418     And thereafter, Z39.50 clients can connect to the running server
1419     (on port 9000, as specified in the configuration) and search in
1420     any of the databases
1421     <literal>lc</literal> (the Library of Congress catalogue),
1422     <literal>marc</literal> (Index Data's test database of MARC records)
1423     or
1424     <literal>all</literal> (both of these).  As an example, a session
1425     using the YAZ command-line client <literal>yaz-client</literal> is
1426     here included (edited for brevity and clarity):
1427    </para>
1428    <screen><![CDATA[$ yaz-client @:9000
1429 Connecting...OK.
1430 Z> base lc
1431 Z> find computer
1432 Search was a success.
1433 Number of hits: 10000, setno 1
1434 Elapsed: 5.521070
1435 Z> base marc
1436 Z> find computer
1437 Search was a success.
1438 Number of hits: 10, setno 3
1439 Elapsed: 0.060187
1440 Z> base all
1441 Z> find computer
1442 Search was a success.
1443 Number of hits: 10010, setno 4
1444 Elapsed: 2.237648
1445 Z> show 1
1446 [marc]Record type: USmarc
1447 001    11224466
1448 003 DLC
1449 005 00000000000000.0
1450 008 910710c19910701nju           00010 eng
1451 010    $a 11224466
1452 040    $a DLC $c DLC
1453 050 00 $a 123-xyz
1454 100 10 $a Jack Collins
1455 245 10 $a How to program a computer
1456 260 1  $a Penguin
1457 263    $a 8710
1458 300    $a p. cm.
1459 Elapsed: 0.119612
1460 Z> show 2
1461 [VOYAGER]Record type: USmarc
1462 001 13339105
1463 005 20041229102447.0
1464 008 030910s2004    caua          000 0 eng
1465 035    $a (DLC)  2003112666
1466 906    $a 7 $b cbc $c orignew $d 4 $e epcn $f 20 $g y-gencatlg
1467 925 0  $a acquire $b 1 shelf copy $x policy default
1468 955    $a pc10 2003-09-10 $a pv12 2004-06-23 to SSCD; $h sj05 2004-11-30 $e sj05 2004-11-30 to Shelf.
1469 010    $a   2003112666
1470 020    $a 0761542892
1471 040    $a DLC $c DLC $d DLC
1472 050 00 $a MLCM 2004/03312 (G)
1473 245 10 $a 007, everything or nothing : $b Prima's official strategy guide / $c created by Kaizen Media Group.
1474 246 3  $a Double-O-seven, everything or nothing
1475 246 30 $a Prima's official strategy guide
1476 260    $a Roseville, CA : $b Prima Games, $c c2004.
1477 300    $a 161 p. : $b col. ill. ; $c 28 cm.
1478 500    $a "Platforms: Nintendo GameCube, Macintosh, PC, PlayStation 2 computer entertainment system, Xbox"--P. [4] of cover.
1479 650  0 $a Video games.
1480 710 2  $a Kaizen Media Group.
1481 856 42 $3 Publisher description $u http://www.loc.gov/catdir/description/random052/2003112666.html
1482 Elapsed: 0.150623
1483 Z>
1484 ]]></screen>
1485    <para>
1486     As can be seen, the first record in the result set is from the
1487     Index Data test database, and the second from the Library of
1488     Congress database.  The result-set continues alternating records
1489     round-robin style until the point where one of the databases'
1490     records are exhausted.
1491    </para>
1492    <para>
1493     This example uses only two back-end databases; more may be used.
1494     There is no limitation imposed on the number of databases that may
1495     be metasearched in this way: issues of resource usage and
1496     administrative complexity dictate the practical limits.
1497    </para>
1498    <para>
1499     What happens when one of the databases doesn't respond?  By default,
1500     the entire multi-database search fails, and the appropriate
1501     diagnostic is returned to the client.  This is usually appropriate
1502     during development, when technicians need maximum information, but
1503     can be inconvenient in deployment, when users typically don't want
1504     to be bothered with problems of this kind and prefer just to get
1505     the records from the databases that are available.  To obtain this
1506     latter behavior add an empty
1507     <literal>&lt;hideunavailable&gt;</literal>
1508     element inside the
1509     <literal>multi</literal> filter:
1510    </para>
1511    <screen><![CDATA[      <filter type="multi">
1512         <hideunavailable/>
1513       </filter>]]></screen>
1514    <para>
1515     Under this regime, an error is reported to the client only if
1516     <emphasis>all</emphasis> the databases in a multi-database search
1517     are unavailable.
1518    </para>
1519   </section>
1520
1521
1522   <section id="multidb.what">
1523    <title>What's going on?</title>
1524    <warning>
1525     <title>Lark's vomit</title>
1526     <para>
1527      This section goes into a level of technical detail that is
1528      probably not necessary in order to configure and use Metaproxy.
1529      It is provided only for those who like to know how things work.
1530      You should feel free to skip on to the next section if this one
1531      doesn't seem like fun.
1532     </para>
1533    </warning>
1534    <para>
1535     Hold on tight - this may get a little hairy.
1536    </para>
1537    <para>
1538     In the general course of things, a Z39.50 Init request may carry
1539     with it an otherInfo packet of type <literal>VAL_PROXY</literal>,
1540     whose value indicates the address of a Z39.50 server to which the
1541     ultimate connection is to be made.  (This otherInfo packet is
1542     supported by YAZ-based Z39.50 clients and servers, but has not yet
1543     been ratified by the Maintenance Agency and so is not widely used
1544     in non-Index Data software.  We're working on it.)
1545     The <literal>VAL_PROXY</literal> packet functions
1546     analogously to the absoluteURI-style Request-URI used with the GET
1547     method when a web browser asks a proxy to forward its request: see
1548     the
1549     <ulink url="http://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html#sec5.1.2"
1550            >Request-URI</ulink>
1551     section of
1552     <ulink url="http://www.w3.org/Protocols/rfc2616/rfc2616.html"
1553            >the HTTP 1.1 specification</ulink>.
1554    </para>
1555    <para>
1556     Within Metaproxy, Search requests that are part of the same
1557     session as an Init request that carries a
1558     <literal>VAL_PROXY</literal> otherInfo are also annotated with the
1559     same information.  The role of the <literal>virt_db</literal>
1560     filter is to rewrite this otherInfo packet dependent on the
1561     virtual database that the client wants to search.
1562    </para>
1563    <para>
1564     When Metaproxy receives a Z39.50 Init request from a client, it
1565     doesn't immediately forward that request to the back-end server.
1566     Why not?  Because it doesn't know <emphasis>which</emphasis>
1567     back-end server to forward it to until the client sends a Search
1568     request that specifies the database that it wants to search in.
1569     Instead, it just treasures the Init request up in its heart; and,
1570     later, the first time the client does a search on one of the
1571     specified virtual databases, a connection is forged to the
1572     appropriate server and the Init request is forwarded to it.  If,
1573     later in the session, the same client searches in a different
1574     virtual database, then a connection is forged to the server that
1575     hosts it, and the same cached Init request is forwarded there,
1576     too.
1577    </para>
1578    <para>
1579     All of this clever Init-delaying is done by the
1580     <literal>frontend_net</literal> filter.  The
1581     <literal>virt_db</literal> filter knows nothing about it; in
1582     fact, because the Init request that is received from the client
1583     doesn't get forwarded until a Search request is received, the
1584     <literal>virt_db</literal> filter (and the
1585     <literal>z3950_client</literal> filter behind it) doesn't even get
1586     invoked at Init time.  The <emphasis>only</emphasis> thing that a
1587     <literal>virt_db</literal> filter ever does is rewrite the
1588     <literal>VAL_PROXY</literal> otherInfo in the requests that pass
1589     through it.
1590    </para>
1591    <para>
1592     It is possible for a <literal>virt_db</literal> filter to contain
1593     multiple
1594     <literal>&lt;target&gt;</literal>
1595     elements.  What does this mean?  Only that the filter will add
1596     multiple <literal>VAL_PROXY</literal> otherInfo packets to the
1597     Search requests that pass through it.  That's because the virtual
1598     DB filter is dumb, and does exactly what it's told - no more, no
1599     less.
1600     If a Search request with multiple <literal>VAL_PROXY</literal>
1601     otherInfo packets reaches a <literal>z3950_client</literal>
1602     filter, this is an error.  That filter doesn't know how to deal
1603     with multiple targets, so it will either just pick one and search
1604     in it, or (better) fail with an error message.
1605    </para>
1606    <para>
1607     The <literal>multi</literal> filter comes to the rescue!  This is
1608     the only filter that knows how to deal with multiple
1609     <literal>VAL_PROXY</literal> otherInfo packets, and it does so by
1610     making multiple copies of the entire Search request: one for each
1611     <literal>VAL_PROXY</literal>.  Each of these new copies is then
1612     passed down through the remaining filters in the route.  (The
1613     copies are handled in parallel though the
1614     spawning of new threads.)  Since the copies each have only one
1615     <literal>VAL_PROXY</literal> otherInfo, they can be handled by the
1616     <literal>z3950_client</literal> filter, which happily deals with
1617     each one individually.  When the results of the individual
1618     searches come back up to the <literal>multi</literal> filter, it
1619     merges them into a single Search response, which is what
1620     eventually makes it back to the client.
1621    </para>
1622   </section>
1623
1624
1625   <section id="multidb.picture">
1626    <title>A picture is worth a thousand words (but only five hundred on 64-bit architectures)</title>
1627    <simpara>
1628     <inlinemediaobject>
1629      <imageobject>
1630       <imagedata fileref="multi.pdf" format="PDF" scale="50"/>
1631      </imageobject>
1632      <imageobject>
1633       <imagedata fileref="multi.png" format="PNG"/>
1634      </imageobject>
1635      <textobject>
1636       <!-- Fall back if none of the images can be used -->
1637       <phrase>
1638        [Here there should be a diagram showing the progress of
1639        packages through the filters during a simple virtual-database
1640        search and a multi-database search, but is seems that your
1641        tool chain has not been able to include the diagram in this
1642        document.]
1643       </phrase>
1644      </textobject>
1645 <!-- ### This used to work with an older version of DocBook
1646      <caption>
1647       <para>Caption: progress of packages through filters.</para>
1648      </caption>
1649 -->
1650     </inlinemediaobject>
1651    </simpara>
1652   </section>
1653  </chapter>
1654
1655
1656  <chapter id="sru-server">
1657   <title>Combined SRU webservice and Z39.50 server configuration</title>
1658   <para>
1659    Metaproxy can act as 
1660    <ulink url="&url.sru;">SRU</ulink> and 
1661    web service server, which translates web service requests to 
1662    <ulink url="&url.z39.50;">ANSI/NISO Z39.50</ulink> packages and
1663    sends them off to common available targets.
1664   </para>
1665   <para>
1666   A typical setup for this operation needs a filter route including the
1667   following modules: 
1668   </para>
1669    
1670   <table id="sru-server-table-config" frame="top">
1671    <title>SRU/Z39.50 Server Filter Route Configuration</title>
1672    <tgroup cols="3">
1673     <thead>
1674      <row>
1675       <entry>Filter</entry>
1676       <entry>Importance</entry>
1677       <entry>Purpose</entry>
1678      </row>
1679     </thead>
1680     
1681     <tbody>
1682      <row>
1683       <entry><literal>frontend_net</literal></entry>
1684       <entry>required</entry>
1685       <entry>Accepting HTTP connections and passing them to following
1686       filters. Since this filter also accepts Z39.50 connections, the
1687       server works as SRU and Z39.50 server on the same port.</entry>
1688      </row>
1689      <row>
1690       <entry><literal>sru_z3950</literal></entry>
1691       <entry>required</entry>
1692       <entry>Accepting SRU GET/POST/SOAP explain and
1693        searchRetrieve requests for the the configured databases.
1694        Explain requests are directly served from the static XML configuration.
1695        SearchRetrieve requests are
1696        transformed  to Z39.50 search and present packages.
1697        All other HTTP and Z39.50 packages are passed unaltered.</entry>
1698      </row>
1699      <row>
1700       <entry><literal>http_file</literal></entry>
1701       <entry>optional</entry>
1702       <entry>Serving HTTP requests from the filesystem. This is only
1703       needed if the server should serve XSLT stylesheets, static HTML
1704       files or Java Script for thin browser based clients.
1705        Z39.50 packages are passed unaltered.</entry>
1706      </row>
1707      <row>
1708       <entry><literal>cql_rpn</literal></entry>
1709       <entry>required</entry>
1710       <entry>Usually, Z39.50 servers do not talk CQL, hence the
1711       translation of the CQL query language to RPN is mandatory in
1712       most cases. Affects only  Z39.50 search packages.</entry>
1713      </row>
1714      <row>
1715       <entry><literal>record_transform</literal></entry>
1716       <entry>optional</entry>
1717       <entry>Some Z39.50 backend targets can not present XML record
1718       syntaxes in common wanted element sets. using this filter, one
1719       can transform binary MARC records to MARCXML records, and
1720       further transform those to any needed XML schema/format by XSLT
1721       transformations. Changes only  Z39.50 present packages.</entry>
1722      </row>
1723      <row>
1724       <entry><literal>session_shared</literal></entry>
1725       <entry>optional</entry>
1726       <entry>The stateless nature of web services requires frequent
1727       re-searching of the same targets for display of paged result set
1728       records. This might be an unacceptable burden for the accessed
1729       backend Z39.50 targets, and this mosule can be added for
1730       efficient backend target resource pooling.</entry>
1731      </row>
1732      <row>
1733       <entry><literal>z3950_client</literal></entry>
1734       <entry>required</entry>
1735       <entry>Finally, a Z39.50 package sink is needed in the filter
1736       chain to provide the response packages. The Z39.50 client module
1737       is used to access external targets over the network, but any
1738       coming local Z39.50 package sink could be used instead of.</entry>
1739      </row>
1740      <row>
1741       <entry><literal>bounce</literal></entry>
1742       <entry>required</entry>
1743       <entry>Any Metaproxy package arriving here did not do so by
1744       purpose, and is bounced back with connection closure. this
1745       prevents inifinite package hanging inside the SRU server.</entry>
1746      </row>
1747     </tbody>
1748    </tgroup>
1749   </table>
1750   <para> 
1751    A typical minimal example <ulink url="&url.sru;">SRU</ulink>
1752    server configuration file is found in the tarball distribution at 
1753    <literal>etc/config-sru-to-z3950.xml</literal>.
1754   </para> 
1755   <para>
1756    Off course, any other metaproxy modules can be integrated into a
1757    SRU server solution, including, but not limited to, load balancing, 
1758    multiple target querying 
1759    (see  <xref linkend="multidb"/>), and complex RPN query rewrites. 
1760   </para>
1761
1762
1763  </chapter>
1764
1765  <!--
1766  <chapter id="extensions">
1767   <title>Writing extensions for Metaproxy</title>
1768   <para>### To be written</para>
1769  </chapter>
1770  -->
1771
1772
1773
1774  <chapter id="classes">
1775   <title>Classes in the Metaproxy source code</title>
1776
1777
1778   <section id="classes-introductory-notes">
1779    <title>Introductory notes</title>
1780    <para>
1781     <emphasis>Stop!  Do not read this!</emphasis>
1782     You won't enjoy it at all.  You should just skip ahead to
1783     <xref linkend="reference"/>,
1784     which tells
1785     <!-- The remainder of this paragraph is lifted verbatim from
1786     Douglas Adams' _Hitch Hiker's Guide to the Galaxy_, chapter 8 -->
1787     you things you really need to know, like the fact that the
1788     fabulously beautiful planet Bethselamin is now so worried about
1789     the cumulative erosion by ten billion visiting tourists a year
1790     that any net imbalance between the amount you eat and the amount
1791     you excrete whilst on the planet is surgically removed from your
1792     bodyweight when you leave: so every time you go to the lavatory it
1793     is vitally important to get a receipt.
1794    </para>
1795    <para>
1796     This chapter contains documentation of the Metaproxy source code, and is
1797     of interest only to maintainers and developers.  If you need to
1798     change Metaproxy's behavior or write a new filter, then you will most
1799     likely find this chapter helpful.  Otherwise it's a waste of your
1800     good time.  Seriously: go and watch a film or something.
1801     <citetitle>This is Spinal Tap</citetitle> is particularly good.
1802    </para>
1803    <para>
1804     Still here?  OK, let's continue.
1805    </para>
1806    <para>
1807     In general, classes seem to be named big-endianly, so that
1808     <literal>FactoryFilter</literal> is not a filter that filters
1809     factories, but a factory that produces filters; and
1810     <literal>FactoryStatic</literal> is a factory for the statically
1811     registered filters (as opposed to those that are dynamically
1812     loaded).
1813    </para>
1814   </section>
1815
1816   <section id="individual.classes">
1817    <title>Individual classes</title>
1818    <para>
1819     The classes making up the Metaproxy application are here listed by
1820     class-name, with the names of the source files that define them in
1821     parentheses.
1822    </para>
1823
1824    <section id="class-FactoryFilter">
1825     <title><literal>mp::FactoryFilter</literal>
1826      (<filename>factory_filter.cpp</filename>)</title>
1827     <para>
1828      A factory class that exists primarily to provide the
1829      <literal>create()</literal> method, which takes the name of a
1830      filter class as its argument and returns a new filter of that
1831      type.  To enable this, the factory must first be populated by
1832      calling <literal>add_creator()</literal> for static filters (this
1833      is done by the <literal>FactoryStatic</literal> class, see below)
1834      and <literal>add_creator_dyn()</literal> for filters loaded
1835      dynamically.
1836     </para>
1837    </section>
1838
1839    <section id="class-FactoryStatic">
1840     <title><literal>mp::FactoryStatic</literal>
1841      (<filename>factory_static.cpp</filename>)</title>
1842     <para>
1843      A subclass of <literal>FactoryFilter</literal> which is
1844      responsible for registering all the statically defined filter
1845      types.  It does this by knowing about all those filters'
1846      structures, which are listed in its constructor.  Merely
1847      instantiating this class registers all the static classes.  It is
1848      for the benefit of this class that <literal>struct
1849       metaproxy_1_filter_struct</literal> exists, and that all the filter
1850      classes provide a static object of that type.
1851     </para>
1852    </section>
1853
1854    <section id="class-filter-Base">
1855     <title><literal>mp::filter::Base</literal>
1856      (<filename>filter.cpp</filename>)</title>
1857     <para>
1858      The virtual base class of all filters.  The filter API is, on the
1859      surface at least, extremely simple: two methods.
1860      <literal>configure()</literal> is passed an XML DOM tree representing
1861      that part of the configuration file that pertains to this filter
1862      instance, and is expected to walk that tree extracting relevant
1863      information.  And <literal>process()</literal> processes a
1864      package (see below).  That surface simplicity is a bit
1865      misleading, as <literal>process()</literal> needs to know a lot
1866      about the <literal>Package</literal> class in order to do
1867      anything useful.
1868     </para>
1869    </section>
1870
1871    <section id="class-AuthSimple">
1872     <title><literal>mp::filter::AuthSimple</literal>,
1873      <literal>Backend_test</literal>, etc.
1874      (<filename>filter_auth_simple.cpp</filename>,
1875      <filename>filter_backend_test.cpp</filename>, etc.)</title>
1876     <para>
1877      Individual filters.  Each of these is implemented by a header and
1878      a source file, named <filename>filter_*.hpp</filename> and
1879      <filename>filter_*.cpp</filename> respectively.  All the header
1880      files should be pretty much identical, in that they declare the
1881      class, including a private <literal>Rep</literal> class and a
1882      member pointer to it, and the two public methods.
1883     </para>
1884     <para>
1885      The source file for each filter needs to supply:
1886     </para>
1887     <itemizedlist>
1888      <listitem>
1889       <para>
1890        A definition of the private <literal>Rep</literal> class.
1891       </para>
1892      </listitem>
1893      <listitem>
1894       <para>
1895        Some boilerplate constructors and destructors.
1896       </para>
1897      </listitem>
1898      <listitem>
1899       <para>
1900        A <literal>configure()</literal> method that uses the
1901        appropriate XML fragment.
1902       </para>
1903      </listitem>
1904      <listitem>
1905       <para>
1906        Most important, the <literal>process()</literal> method that
1907        does all the actual work.
1908       </para>
1909      </listitem>
1910     </itemizedlist>
1911    </section>
1912
1913    <section id="class-Package">
1914     <title><literal>mp::Package</literal>
1915      (<filename>package.cpp</filename>)</title>
1916     <para>
1917      Represents a package on its way through the series of filters
1918      that make up a route.  This is essentially a Z39.50 or SRU APDU
1919      together with information about where it came from, which is
1920      modified as it passes through the various filters.
1921     </para>
1922    </section>
1923
1924    <section id="class-Pipe">
1925     <title><literal>mp::Pipe</literal>
1926      (<filename>pipe.cpp</filename>)</title>
1927     <para>
1928      This class provides a compatibility layer so that we have an IPC
1929      mechanism that works the same under Unix and Windows.  It's not
1930      particularly exciting.
1931     </para>
1932    </section>
1933
1934    <section id="class-RouterChain">
1935     <title><literal>mp::RouterChain</literal>
1936      (<filename>router_chain.cpp</filename>)</title>
1937     <para>
1938      ### to be written
1939     </para>
1940    </section>
1941
1942    <section id="class-RouterFleXML">
1943     <title><literal>mp::RouterFleXML</literal>
1944      (<filename>router_flexml.cpp</filename>)</title>
1945     <para>
1946      ### to be written
1947     </para>
1948    </section>
1949
1950    <section id="class-Session">
1951     <title><literal>mp::Session</literal>
1952      (<filename>session.cpp</filename>)</title>
1953     <para>
1954      ### to be written
1955     </para>
1956    </section>
1957
1958    <section id="class-ThreadPoolSocketObserver">
1959     <title><literal>mp::ThreadPoolSocketObserver</literal>
1960      (<filename>thread_pool_observer.cpp</filename>)</title>
1961     <para>
1962      ### to be written
1963     </para>
1964    </section>
1965
1966    <section id="class-util">
1967     <title><literal>mp::util</literal>
1968      (<filename>util.cpp</filename>)</title>
1969     <para>
1970      A namespace of various small utility functions and classes,
1971      collected together for convenience.  Most importantly, includes
1972      the <literal>mp::util::odr</literal> class, a wrapper for YAZ's
1973      ODR facilities.
1974     </para>
1975    </section>
1976
1977    <section id="class-xml">
1978     <title><literal>mp::xml</literal>
1979      (<filename>xmlutil.cpp</filename>)</title>
1980     <para>
1981      A namespace of various XML utility functions and classes,
1982      collected together for convenience.
1983     </para>
1984    </section>
1985   </section>
1986
1987
1988   <section id="other.source.files">
1989    <title>Other Source Files</title>
1990    <para>
1991     In addition to the Metaproxy source files that define the classes
1992     described above, there are a few additional files which are
1993     briefly described here:
1994    </para>
1995    <variablelist>
1996     <varlistentry>
1997      <term><literal>metaproxy_prog.cpp</literal></term>
1998      <listitem>
1999       <para>
2000        The main function of the <command>metaproxy</command> program.
2001       </para>
2002      </listitem>
2003     </varlistentry>
2004     <varlistentry>
2005      <term><literal>ex_router_flexml.cpp</literal></term>
2006      <listitem>
2007       <para>
2008        Identical to <literal>metaproxy_prog.cpp</literal>: it's not clear why.
2009       </para>
2010      </listitem>
2011     </varlistentry>
2012     <varlistentry>
2013      <term><literal>test_*.cpp</literal></term>
2014      <listitem>
2015       <para>
2016        Unit-tests for various modules.
2017       </para>
2018      </listitem>
2019     </varlistentry>
2020    </variablelist>
2021    <para>
2022     ### Still to be described:
2023     <literal>ex_filter_frontend_net.cpp</literal>,
2024     <literal>filter_dl.cpp</literal>,
2025     <literal>plainfile.cpp</literal>,
2026     <literal>tstdl.cpp</literal>.
2027    </para>
2028   </section>
2029  </chapter>
2030  
2031  
2032  <reference id="reference">
2033   <title>Reference</title>
2034    <partintro id="reference-introduction">
2035     <para>
2036      The material in this chapter is drawn directly from the individual
2037      manual entries.  In particular, the Metaproxy invocation section is
2038      available using <command>man metaproxy</command>, and the section
2039      on each individual filter is available using the name of the filter
2040      as the argument to the <command>man</command> command.
2041     </para>
2042    </partintro>
2043    &manref;
2044  </reference>
2045
2046 <appendix id="license">
2047  <title>License</title>
2048
2049   <para>
2050    Metaproxy, Copyright &copy; 1995-2007 Index Data ApS.
2051  </para>
2052
2053   <para>
2054    Metaproxy is free software; you can redistribute it and/or modify it under
2055    the terms of the GNU General Public License as published by the Free
2056    Software Foundation; either version 2, or (at your option) any later
2057    version.
2058    </para>
2059
2060   <para>
2061    Metaproxy is distributed in the hope that it will be useful, but WITHOUT ANY
2062    WARRANTY; without even the implied warranty of MERCHANTABILITY or
2063    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
2064    for more details.
2065   </para>
2066   
2067   <para>
2068    You should have received a copy of the GNU General Public License
2069    along with Metaproxy; see the file LICENSE.  If not, write to the
2070    Free Software Foundation, 
2071    51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
2072    </para>
2073   
2074   <sect1 id="gpl">
2075    <title>GNU General Public License</title>
2076    <screen>
2077                     GNU GENERAL PUBLIC LICENSE
2078                        Version 2, June 1991
2079
2080  Copyright (C) 1989, 1991 Free Software Foundation, Inc.
2081                        51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
2082 w Everyone is permitted to copy and distribute verbatim copies
2083  of this license document, but changing it is not allowed.
2084
2085                             Preamble
2086
2087   The licenses for most software are designed to take away your
2088 freedom to share and change it.  By contrast, the GNU General Public
2089 License is intended to guarantee your freedom to share and change free
2090 software--to make sure the software is free for all its users.  This
2091 General Public License applies to most of the Free Software
2092 Foundation's software and to any other program whose authors commit to
2093 using it.  (Some other Free Software Foundation software is covered by
2094 the GNU Library General Public License instead.)  You can apply it to
2095 your programs, too.
2096
2097   When we speak of free software, we are referring to freedom, not
2098 price.  Our General Public Licenses are designed to make sure that you
2099 have the freedom to distribute copies of free software (and charge for
2100 this service if you wish), that you receive source code or can get it
2101 if you want it, that you can change the software or use pieces of it
2102 in new free programs; and that you know you can do these things.
2103
2104   To protect your rights, we need to make restrictions that forbid
2105 anyone to deny you these rights or to ask you to surrender the rights.
2106 These restrictions translate to certain responsibilities for you if you
2107 distribute copies of the software, or if you modify it.
2108
2109   For example, if you distribute copies of such a program, whether
2110 gratis or for a fee, you must give the recipients all the rights that
2111 you have.  You must make sure that they, too, receive or can get the
2112 source code.  And you must show them these terms so they know their
2113 rights.
2114
2115   We protect your rights with two steps: (1) copyright the software, and
2116 (2) offer you this license which gives you legal permission to copy,
2117 distribute and/or modify the software.
2118
2119   Also, for each author's protection and ours, we want to make certain
2120 that everyone understands that there is no warranty for this free
2121 software.  If the software is modified by someone else and passed on, we
2122 want its recipients to know that what they have is not the original, so
2123 that any problems introduced by others will not reflect on the original
2124 authors' reputations.
2125
2126   Finally, any free program is threatened constantly by software
2127 patents.  We wish to avoid the danger that redistributors of a free
2128 program will individually obtain patent licenses, in effect making the
2129 program proprietary.  To prevent this, we have made it clear that any
2130 patent must be licensed for everyone's free use or not licensed at all.
2131
2132   The precise terms and conditions for copying, distribution and
2133 modification follow.
2134
2135                     GNU GENERAL PUBLIC LICENSE
2136    TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
2137
2138   0. This License applies to any program or other work which contains
2139 a notice placed by the copyright holder saying it may be distributed
2140 under the terms of this General Public License.  The "Program", below,
2141 refers to any such program or work, and a "work based on the Program"
2142 means either the Program or any derivative work under copyright law:
2143 that is to say, a work containing the Program or a portion of it,
2144 either verbatim or with modifications and/or translated into another
2145 language.  (Hereinafter, translation is included without limitation in
2146 the term "modification".)  Each licensee is addressed as "you".
2147
2148 Activities other than copying, distribution and modification are not
2149 covered by this License; they are outside its scope.  The act of
2150 running the Program is not restricted, and the output from the Program
2151 is covered only if its contents constitute a work based on the
2152 Program (independent of having been made by running the Program).
2153 Whether that is true depends on what the Program does.
2154
2155   1. You may copy and distribute verbatim copies of the Program's
2156 source code as you receive it, in any medium, provided that you
2157 conspicuously and appropriately publish on each copy an appropriate
2158 copyright notice and disclaimer of warranty; keep intact all the
2159 notices that refer to this License and to the absence of any warranty;
2160 and give any other recipients of the Program a copy of this License
2161 along with the Program.
2162
2163 You may charge a fee for the physical act of transferring a copy, and
2164 you may at your option offer warranty protection in exchange for a fee.
2165
2166   2. You may modify your copy or copies of the Program or any portion
2167 of it, thus forming a work based on the Program, and copy and
2168 distribute such modifications or work under the terms of Section 1
2169 above, provided that you also meet all of these conditions:
2170
2171     a) You must cause the modified files to carry prominent notices
2172     stating that you changed the files and the date of any change.
2173
2174     b) You must cause any work that you distribute or publish, that in
2175     whole or in part contains or is derived from the Program or any
2176     part thereof, to be licensed as a whole at no charge to all third
2177     parties under the terms of this License.
2178
2179     c) If the modified program normally reads commands interactively
2180     when run, you must cause it, when started running for such
2181     interactive use in the most ordinary way, to print or display an
2182     announcement including an appropriate copyright notice and a
2183     notice that there is no warranty (or else, saying that you provide
2184     a warranty) and that users may redistribute the program under
2185     these conditions, and telling the user how to view a copy of this
2186     License.  (Exception: if the Program itself is interactive but
2187     does not normally print such an announcement, your work based on
2188     the Program is not required to print an announcement.)
2189
2190 These requirements apply to the modified work as a whole.  If
2191 identifiable sections of that work are not derived from the Program,
2192 and can be reasonably considered independent and separate works in
2193 themselves, then this License, and its terms, do not apply to those
2194 sections when you distribute them as separate works.  But when you
2195 distribute the same sections as part of a whole which is a work based
2196 on the Program, the distribution of the whole must be on the terms of
2197 this License, whose permissions for other licensees extend to the
2198 entire whole, and thus to each and every part regardless of who wrote it.
2199
2200 Thus, it is not the intent of this section to claim rights or contest
2201 your rights to work written entirely by you; rather, the intent is to
2202 exercise the right to control the distribution of derivative or
2203 collective works based on the Program.
2204
2205 In addition, mere aggregation of another work not based on the Program
2206 with the Program (or with a work based on the Program) on a volume of
2207 a storage or distribution medium does not bring the other work under
2208 the scope of this License.
2209
2210   3. You may copy and distribute the Program (or a work based on it,
2211 under Section 2) in object code or executable form under the terms of
2212 Sections 1 and 2 above provided that you also do one of the following:
2213
2214     a) Accompany it with the complete corresponding machine-readable
2215     source code, which must be distributed under the terms of Sections
2216     1 and 2 above on a medium customarily used for software interchange; or,
2217
2218     b) Accompany it with a written offer, valid for at least three
2219     years, to give any third party, for a charge no more than your
2220     cost of physically performing source distribution, a complete
2221     machine-readable copy of the corresponding source code, to be
2222     distributed under the terms of Sections 1 and 2 above on a medium
2223     customarily used for software interchange; or,
2224
2225     c) Accompany it with the information you received as to the offer
2226     to distribute corresponding source code.  (This alternative is
2227     allowed only for noncommercial distribution and only if you
2228     received the program in object code or executable form with such
2229     an offer, in accord with Subsection b above.)
2230
2231 The source code for a work means the preferred form of the work for
2232 making modifications to it.  For an executable work, complete source
2233 code means all the source code for all modules it contains, plus any
2234 associated interface definition files, plus the scripts used to
2235 control compilation and installation of the executable.  However, as a
2236 special exception, the source code distributed need not include
2237 anything that is normally distributed (in either source or binary
2238 form) with the major components (compiler, kernel, and so on) of the
2239 operating system on which the executable runs, unless that component
2240 itself accompanies the executable.
2241
2242 If distribution of executable or object code is made by offering
2243 access to copy from a designated place, then offering equivalent
2244 access to copy the source code from the same place counts as
2245 distribution of the source code, even though third parties are not
2246 compelled to copy the source along with the object code.
2247
2248   4. You may not copy, modify, sublicense, or distribute the Program
2249 except as expressly provided under this License.  Any attempt
2250 otherwise to copy, modify, sublicense or distribute the Program is
2251 void, and will automatically terminate your rights under this License.
2252 However, parties who have received copies, or rights, from you under
2253 this License will not have their licenses terminated so long as such
2254 parties remain in full compliance.
2255
2256   5. You are not required to accept this License, since you have not
2257 signed it.  However, nothing else grants you permission to modify or
2258 distribute the Program or its derivative works.  These actions are
2259 prohibited by law if you do not accept this License.  Therefore, by
2260 modifying or distributing the Program (or any work based on the
2261 Program), you indicate your acceptance of this License to do so, and
2262 all its terms and conditions for copying, distributing or modifying
2263 the Program or works based on it.
2264
2265   6. Each time you redistribute the Program (or any work based on the
2266 Program), the recipient automatically receives a license from the
2267 original licensor to copy, distribute or modify the Program subject to
2268 these terms and conditions.  You may not impose any further
2269 restrictions on the recipients' exercise of the rights granted herein.
2270 You are not responsible for enforcing compliance by third parties to
2271 this License.
2272
2273   7. If, as a consequence of a court judgment or allegation of patent
2274 infringement or for any other reason (not limited to patent issues),
2275 conditions are imposed on you (whether by court order, agreement or
2276 otherwise) that contradict the conditions of this License, they do not
2277 excuse you from the conditions of this License.  If you cannot
2278 distribute so as to satisfy simultaneously your obligations under this
2279 License and any other pertinent obligations, then as a consequence you
2280 may not distribute the Program at all.  For example, if a patent
2281 license would not permit royalty-free redistribution of the Program by
2282 all those who receive copies directly or indirectly through you, then
2283 the only way you could satisfy both it and this License would be to
2284 refrain entirely from distribution of the Program.
2285
2286 If any portion of this section is held invalid or unenforceable under
2287 any particular circumstance, the balance of the section is intended to
2288 apply and the section as a whole is intended to apply in other
2289 circumstances.
2290
2291 It is not the purpose of this section to induce you to infringe any
2292 patents or other property right claims or to contest validity of any
2293 such claims; this section has the sole purpose of protecting the
2294 integrity of the free software distribution system, which is
2295 implemented by public license practices.  Many people have made
2296 generous contributions to the wide range of software distributed
2297 through that system in reliance on consistent application of that
2298 system; it is up to the author/donor to decide if he or she is willing
2299 to distribute software through any other system and a licensee cannot
2300 impose that choice.
2301
2302 This section is intended to make thoroughly clear what is believed to
2303 be a consequence of the rest of this License.
2304
2305   8. If the distribution and/or use of the Program is restricted in
2306 certain countries either by patents or by copyrighted interfaces, the
2307 original copyright holder who places the Program under this License
2308 may add an explicit geographical distribution limitation excluding
2309 those countries, so that distribution is permitted only in or among
2310 countries not thus excluded.  In such case, this License incorporates
2311 the limitation as if written in the body of this License.
2312
2313   9. The Free Software Foundation may publish revised and/or new versions
2314 of the General Public License from time to time.  Such new versions will
2315 be similar in spirit to the present version, but may differ in detail to
2316 address new problems or concerns.
2317
2318 Each version is given a distinguishing version number.  If the Program
2319 specifies a version number of this License which applies to it and "any
2320 later version", you have the option of following the terms and conditions
2321 either of that version or of any later version published by the Free
2322 Software Foundation.  If the Program does not specify a version number of
2323 this License, you may choose any version ever published by the Free Software
2324 Foundation.
2325
2326   10. If you wish to incorporate parts of the Program into other free
2327 programs whose distribution conditions are different, write to the author
2328 to ask for permission.  For software which is copyrighted by the Free
2329 Software Foundation, write to the Free Software Foundation; we sometimes
2330 make exceptions for this.  Our decision will be guided by the two goals
2331 of preserving the free status of all derivatives of our free software and
2332 of promoting the sharing and reuse of software generally.
2333
2334                             NO WARRANTY
2335
2336   11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
2337 FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
2338 OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
2339 PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
2340 OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
2341 MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
2342 TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
2343 PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
2344 REPAIR OR CORRECTION.
2345
2346   12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
2347 WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
2348 REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
2349 INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
2350 OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
2351 TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
2352 YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
2353 PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
2354 POSSIBILITY OF SUCH DAMAGES.
2355
2356                      END OF TERMS AND CONDITIONS
2357
2358    </screen> 
2359   </sect1>
2360  </appendix>
2361 </book>
2362
2363  <!-- Keep this comment at the end of the file
2364  Local variables:
2365  mode: sgml
2366  sgml-omittag:t
2367  sgml-shorttag:t
2368  sgml-minimize-attributes:nil
2369  sgml-always-quote-attributes:t
2370  sgml-indent-step:1
2371  sgml-indent-data:t
2372  sgml-parent-document: nil
2373  sgml-local-catalogs: nil
2374  sgml-namecase-general:t
2375  End:
2376  -->