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