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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- This file documents version 0.3.8 of ffe, a flat file extractor.
Copyright (C) 2014 Timo Savinen
Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice
are preserved on all copies.
Permission is granted to copy and distribute modified versions of this
manual under the conditions for verbatim copying, provided that the entire
resulting derived work is distributed under the terms of a permission
notice identical to this one.
Permission is granted to copy and distribute translations of this manual
into another language, under the above conditions for modified versions. -->
<!-- Created by GNU Texinfo 6.3, http://www.gnu.org/software/texinfo/ -->
<head>
<title>ffe - flat file extractor</title>
<meta name="description" content="ffe - flat file extractor">
<meta name="keywords" content="ffe - flat file extractor">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="#Top" rel="start" title="Top">
<link href="#SEC_Contents" rel="contents" title="Table of Contents">
<link href="dir.html#Top" rel="up" title="(dir)">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.indentedblock {margin-right: 0em}
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smalllisp {margin-left: 3.2em}
kbd {font-style: oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: inherit; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: inherit; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nolinebreak {white-space: nowrap}
span.roman {font-family: initial; font-weight: normal}
span.sansserif {font-family: sans-serif; font-weight: normal}
ul.no-bullet {list-style: none}
body {
margin: 1%;
padding: 0 5%;
background: white;
font-family: serif;
text-align: justify;
}
h1,h2,h3,h4,h5 {
padding: 0.5em 0 0 0;
font-weight: bold;
font-family: sans-serif;
}
h1 {
padding: 0.5em 0 0.5em 1em;
color: white;
background: #575;
}
pre {
margin: 0;
padding: 0.5em 0.5em 0.5em 0;
}
pre.example {
padding: 0;
margin: 0;
background: #eee;
}
pre.verbatim, .menu {
border: solid 1px gray;
background: white;
padding-bottom: 1em;
}
div.node {
background: #ccc;
margin: 0;
padding: 0 1.5em;
font-weight: lighter;
color: #000;
text-align: right;
}
.node a {
color: #770000;
}
.node a:visited {
color: #550000;
}
dd, li {
padding-top: 0.1em;
padding-bottom: 0.1em;
}
samp {
font: inherit;
}
code {
font-size: inherit;
font-weight: bold;
}
pre, code {
font-family: monospace;
}
.command, .file {
font-family: monospace;
}
div.node hr {
display:none;
}
-->
</style>
</head>
<body lang="en">
<h1 class="settitle" align="center">ffe - flat file extractor</h1>
<a name="Top"></a>
<a name="ffe"></a>
<h1 class="top">ffe</h1>
<p>This file documents version 0.3.8 of <code>ffe</code>, a flat file extractor.
</p>
<p>Copyright © 2014 Timo Savinen
</p>
<blockquote>
<p>Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice
are preserved on all copies.
</p>
<p>Permission is granted to copy and distribute modified versions of this
manual under the conditions for verbatim copying, provided that the entire
resulting derived work is distributed under the terms of a permission
notice identical to this one.
</p>
<p>Permission is granted to copy and distribute translations of this manual
into another language, under the above conditions for modified versions.
</p></blockquote>
<hr>
<a name="Overview"></a>
<a name="Preliminary-information"></a>
<h2 class="chapter">1 Preliminary information</h2>
<a name="index-greetings"></a>
<a name="index-overview"></a>
<p>The <code>ffe</code> is a program to extract fields from text and binary flat files and to print them in different
formats. The input file structure and printing definitions are specified in a configuration file, which
is always required. Default configuration file is <samp>~/.fferc</samp> (<samp>ffe.rc</samp> in windows).
</p>
<p><code>ffe</code> is a command line tool developed for GNU/Linux and UNIX systems. <code>ffe</code> can read from
standard input and write to standard output, so it can be used as a part of a pipeline.
</p>
<p>There is also binary distribution for windows.
</p>
<hr>
<a name="Samples"></a>
<a name="Samples-using-ffe"></a>
<h2 class="chapter">2 Samples using <code>ffe</code></h2>
<a name="index-sample"></a>
<p>One example of using <code>ffe</code> for printing personnel information in XML format from fixed length flat file:
</p>
<div class="example">
<pre class="example">$ cat personnel
john Ripper 23
Scott Tiger 45
Mary Moore 41
$
</pre></div>
<p>A file <samp>personnel</samp> contains three fixed length fields: ‘<samp>FirstName</samp>’, ‘<samp>LastName</samp>’ and ‘<samp>Age</samp>’,
their respective lengths are 9,13 and 2.
</p>
<p>In order to print data above in XML, following configuration file must be available:
</p>
<div class="example">
<pre class="example">$cat personnel.fferc
structure personel {
type fixed
output xml
record person {
field FirstName 9
field LastName 13
field Age 2
}
}
output xml {
file_header "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n"
data "<%n>%t</%n>\n"
record_header "<%r>\n"
record_trailer "</%r>\n"
indent " "
}
$
</pre></div>
<p>Using ffe:
</p>
<div class="example">
<pre class="example">$ffe -c personnel.fferc personnel
<?xml version="1.0" encoding="ISO-8859-1"?>
<person>
<FirstName>john</FirstName>
<LastName>Ripper</LastName>
<Age>23</Age>
</person>
<person>
<FirstName>Scott</FirstName>
<LastName>Tiger</LastName>
<Age>45</Age>
</person>
<person>
<FirstName>Mary</FirstName>
<LastName>Moore</LastName>
<Age>41</Age>
</person>
$
</pre></div>
<hr>
<a name="Invoking-ffe"></a>
<a name="How-to-run-ffe"></a>
<h2 class="chapter">3 How to run <code>ffe</code></h2>
<a name="index-running-ffe"></a>
<a name="index-using"></a>
<p><code>ffe</code> is a command line tool. Normally <code>ffe</code> can be invoked as:
</p>
<p><code>ffe -o OUTPUTFILE INPUTFILE…</code>
</p>
<p><code>ffe</code> uses the definitions from the configuration file and tries to guess the input file
structure.
</p>
<p>If the structure cannot be guessed the option <samp>-s</samp> must be used.
</p>
<hr>
<a name="Invocation"></a>
<a name="Program-invocation"></a>
<h3 class="section">3.1 Program invocation</h3>
<a name="index-options"></a>
<p>The format for running the <code>ffe</code> program is:
</p>
<div class="example">
<pre class="example">ffe <var>option</var> …
</pre></div>
<p><code>ffe</code> supports the following options:
</p>
<dl compact="compact">
<dt><code>-c <var>file</var></code></dt>
<dt><code>--configuration=<var>file</var></code></dt>
<dd><p>Configuration is read from <var>file</var>, instead of <samp>~/.fferc</samp> (<samp>ffe.rc</samp> in windows).
</p>
</dd>
<dt><code>-s <var>structure</var></code></dt>
<dt><code>--structure=<var>structure</var></code></dt>
<dd><p>Use structure <var>structure</var> for input file, suppresses guessing.
</p>
</dd>
<dt><code>-p <var>output</var></code></dt>
<dt><code>--print=<var>output</var></code></dt>
<dd><p>Use output format <var>output</var> for printing. If not given, then the record or structure related
output format is used. Printing can be suppressed using format <var>no</var>. Original data is printed using format <var>raw</var>.
</p>
</dd>
<dt><code>-o <var>file</var></code></dt>
<dt><code>--output=<var>file</var></code></dt>
<dd><p>Write output to <var>file</var> instead of standard output.
</p>
</dd>
<dt><code>-f <var>list</var></code></dt>
<dt><code>--field-list=<var>list</var></code></dt>
<dd><p>Print only fields and constants listed in the comma separated list <var>list</var>. Order of names in
<var>list</var> specifies also the printing order.
</p>
</dd>
<dt><code>-e <var>expression</var></code></dt>
<dt><code>--expression=<var>expression</var></code></dt>
<dd><p>Print only those records for which the <var>expression</var> evaluates to true.
</p>
</dd>
<dt><code>-a</code></dt>
<dt><code>--and</code></dt>
<dd><p>Expressions are combined with logical and, default is logical or.
Note that if the same field and operator appear several time in expressions they are always compared with logical or.
</p>
</dd>
<dt><code>-X</code></dt>
<dt><code>--casecmp</code></dt>
<dd><p>Expressions are evaluated using case insensitive comparison
</p>
</dd>
<dt><code>-v</code></dt>
<dt><code>--invert-match</code></dt>
<dd><p>Print only those records which don’t match the expression.
</p>
</dd>
<dt><code>-l</code></dt>
<dt><code>--loose</code></dt>
<dd><p>Normally <code>ffe</code> stops when it encounters an input line or binary block which doesn’t match any of
the records in selected structure. Defining this option causes <code>ffe</code> continue despite the error.
Note that invalid lines are reported only for text input. In case of binary input next valid block is silently searched.
</p>
</dd>
<dt><code>-r</code></dt>
<dt><code>--replace=<var>field</var>=<var>value</var></code></dt>
<dd><p>Replace <var>field</var>s contents with <var>value</var> in output. <var>value</var> can contain same directives as output option <code>data</code>.
</p>
</dd>
<dt><code>-d</code></dt>
<dt><code>--debug</code></dt>
<dd><p>All invalid input lines are written to <samp>ffe_error_<pid>.log</samp>, where <samp><pid></samp> is the process ID.
</p>
</dd>
<dt><code>-I</code></dt>
<dt><code>--info</code></dt>
<dd><p>Show structure information in the configuration file and exit successfully. For every structure following information in shown:
<br>
Structures: Name, type and maximum record length.
<br>
Records: Name and length
<br>
Fields: Name, position and length. First position is number one.
</p>
</dd>
<dt><code>-?</code></dt>
<dt><code>--help</code></dt>
<dd><p>Print an informative help message describing the options and then exit
successfully.
</p>
</dd>
<dt><code>-V</code></dt>
<dt><code>--version</code></dt>
<dd><p>Print the version number of <code>ffe</code> and then exit successfully.
</p></dd>
</dl>
<p>All remaining options are names of input files, if no input files are specified or <code>-</code> is given, then the standard input is read.
</p>
<a name="Expressions-_0028option-_002de_002c-_002d_002dexpression_0029"></a>
<h4 class="subheading">Expressions (option <samp>-e</samp>, <samp>--expression</samp>)</h4>
<p>Expression can be used to select specific records comparing field values.
Expression has syntax <var>field</var><strong>x</strong><var>value</var>, where <strong>x</strong> is the comparison operator.
Expression is used to compare field’s contents to <var>value</var> and if comparison is successful
the record is printed. Several expressions can be given and at least one must evaluate to true in
order to print a record. If option <samp>-a</samp> is given all expressions must evaluate to true.
</p>
<p>If <var>value</var> starts with string <code>file:</code> then the rest of <var>value</var> is considered as a file name.
Every line in file is used as <var>value</var> in comparison. Comparison evaluates true if one or more values matches, so this makes possible use several different values in comparison. <strong>Note</strong>: The file size is limited by available memory because the file contents is loaded to memory.
</p>
<p>When comparing binary fields the <var>value</var> must have the representation which can be shown using the <code>%d</code> output directive. Note that the printing option <var>hex-caps</var> takes effect in comparison.
</p>
<p>Expression notation:
</p>
<dl compact="compact">
<dt><var>field<strong>=</strong>value</var></dt>
<dd><p>Field <var>field</var> is equal to <var>value</var>.
</p>
</dd>
<dt><var>field<strong>^</strong>value</var></dt>
<dd><p>Field <var>field</var> starts with <var>value</var>.
</p>
</dd>
<dt><var>field<strong>~</strong>value</var></dt>
<dd><p>Field <var>field</var> contains <var>value</var>.
</p>
</dd>
<dt><var>field<strong>!</strong>value</var></dt>
<dd><p>Field <var>field</var> is not equal to <var>value</var>.
</p>
</dd>
<dt><var>field<strong>?</strong>value</var></dt>
<dd><p>Field <var>field</var> matches the regular expression <var>value</var>.
<code>ffe</code> supports POSIX extended regular expressions.
</p></dd>
</dl>
<hr>
<a name="Configuration"></a>
<a name="Configuration-1"></a>
<h3 class="section">3.2 Configuration</h3>
<a name="index-configuration"></a>
<p><code>ffe</code> uses configuration file in order to read the input file and print the output.
</p>
<p>Configuration file for <code>ffe</code> is a text file. The file may contain empty lines.
Commands are case sensitive. Comments begin with the <code>#</code>-character and end at the end of the line.
The <code>string</code> definitions can be enclosed in double quotation <code>"</code> characters.
<code>char</code> is a single character. <code>string</code> and <code>char</code> can contain following escape codes:
<code>\a</code>, <code>\b</code>, <code>\t</code>, <code>\n</code>, <code>\v</code>, <code>\f</code>, <code>\r</code>, <code>\"</code> and <code>\#</code>.
A backslash can be escaped as <code>\\</code>.
</p>
<p>Configuration has two main parts: the structure, which specifies the input file structure and
the output, which specifies how the input data is formatted for output.
</p>
<a name="Common-syntax"></a>
<h4 class="subheading">Common syntax</h4>
<p>Common syntax for configuration file is:
</p>
<div class="example">
<pre class="example">#comment
`command`
const <var>name</var> <var>value</var>
filter <var>name</var> <var>value</var>
…
structure <var>name</var> {
<i>option value</i> …
…
record <var>name</var> {
<i>option value</i> …
…
}
record <var>name</var> {
<i>option value</i> …
…
}
…
}
structure <var>name</var> {
…
}
…
output <var>name</var> {
<i>option value</i> …
…
}
output <var>name</var> {
…
}
…
lookup <var>name</var> {
<i>option value</i> …
…
}
lookup <var>name</var> {
…
}
…
</pre></div>
<a name="Structure"></a>
<h4 class="subheading">Structure</h4>
<p>Keyword <code>structure</code> is used to specify the input file content. An input file can contain several
types of records (lines or binary blocks). E.g. file can have a header, data and trailer record types. Records
must be distinguishable from each other, this can be achieved defining different ’keys’
(<code>id</code> in record definition) or having different line lengths (for fixed length) or different count
of fields (for separated structure) for different records.
</p>
<p>If binary structure has several records, then all records must have at least one key (<code>id</code>), because binary blocks can
be distinguished only by using keys.
</p>
<p>The structure notation:
<br>
</p>
<div class="example">
<pre class="example">structure <var>name</var> {
<i>option value</i> …
…
}
</pre></div>
<p>A structure can contain following options:
</p>
<dl compact="compact">
<dt><code>type fixed|binary|separated [<var>char</var>] [*]</code></dt>
<dd><p>The fields in the input are fixed length fields (text or binary) or text fields separated by <var>char</var>. If * is given,
multiple sequential separators are considered as one. Default separator is comma.
</p>
</dd>
<dt><code>quoted [<var>char</var>]</code></dt>
<dd><p>Fields may be quoted with char, default quotation mark is the double quotation mark ’"’.
A quotation mark is assumed to be escaped as \<var>char</var> or doubling the mark as <var>charchar</var> in input.
Non escaped quotation marks are not preserved in output.
</p>
</dd>
<dt><code>header first|all|no</code></dt>
<dd><p>Controls the occurrence of the header line. Default is no. If set as <em>first</em> or <em>all</em>, the first line
of the first input file is considered as header line containing the names of the fields. <em>first</em>
means that only the first file has a header, <em>all</em> means means that all files have a header,
although the names are still taken from the header of the first file. Header line is handled
according the record definition, meaning that the name positions, separators etc. are the same as
for the fields. Binary files cannot have a header.
</p>
</dd>
<dt><code>output <var>name</var>|no|raw</code></dt>
<dd><p>All records belonging to this structure are printed according output format name.
Default is to use output named as ‘<samp>default</samp>’. ‘<samp>no</samp>’ prints nothing and ‘<samp>raw</samp>’ prints only the original data.
</p>
</dd>
<dt><code>record <var>name</var> {<i>options</i> …}</code></dt>
<dd><p>Specifies one record for a structure. A structure can contain several record types.
</p></dd>
</dl>
<a name="Record"></a>
<h4 class="subheading">Record</h4>
<p>A record specifies one type of input line or binary block in a file. Different records can be distinguished using
the <code>id</code> option or different line lengths or field counts. In multi-record binary structure every record must have at least one <code>id</code> because binary records do not have a special end of record marker as text lines have.
</p>
<p>The record notation:
<br>
</p>
<div class="example">
<pre class="example">record <var>name</var> {
<i>option value</i> …
…
}
</pre></div>
<p>A record can contain following options:
</p>
<dl compact="compact">
<dt><code>id <var>position</var> <var>string</var></code></dt>
<dt><code>rid <var>position</var> <var>regexp</var></code></dt>
<dd><p>Identifies a record in the input file. Records are identified by the <var>string</var> or by the regular expression <var>regexp</var> in input record position
<var>position</var>. For fixed length and binary input the position is the byte position of input record and for
separated input the <var>position</var> is the <var>position</var>’th field of the input record. Positions starts always from one.
</p>
<p>A record definition can contain several id’s, then all id’s must match the input line
(<code>id</code>’s are <em>and-ed</em>).
</p>
<p>Non printable characters can be escaped as ‘<samp>\xnn</samp>’, where ‘<samp>nn</samp>’ is characters hexadecimal value.
</p>
</dd>
<dt><code>field <var>name</var>|FILLER|* [<var>length</var>]|* [<var>lookup</var>]|* [<var>output</var>]|* [<var>filter</var>]|* [<var>conversion</var>]</code></dt>
<dd><p>Defines a field in a text input structure. <var>length</var> is mandatory for fixed length input structure.
</p>
<p>The last field of a fixed length input structure can have a <em>*</em> in place of <var>length</var>. That means that the last field
has no exact length specified and it gets the remainder of the input line after all other fields. This allows a
fixed record to have arbitrary long last field.
</p>
<p>Length is also used for printing the fields in fixed length format (directive <code>%D</code> in output definitions).
</p>
<p>If <em>*</em> is given instead of the name, then the <var>name</var> will be the ordinal number of the field,
or if the <code>header</code> option has value <em>first</em> or <em>all</em>, then the name of the field will be taken from
the header line (first line of the input).
</p>
<p>If <var>lookup</var> is given then the fields contents is used to make a lookup in lookup table <var>lookup</var>.
If <var>length</var> is not needed (separated format) but lookup is needed, use asterisk (*) in place of length definition.
</p>
<p>If <var>output</var> is given the field will be printed using output definition <var>output</var>. If <var>length</var> and/or <var>lookup</var> are not needed use asterisk in place of them. Use asterisk (*) if not needed.
</p>
<p>If <var>filter</var> is given the raw contents of the field is filtered through a program defined by <var>filter</var> and the output of the program is printed as field contents.
</p>
<p>If <var>conversion</var> is given it should contain a single printf style conversion specification, which will be used in printing. Conversion specification must start with <code>%</code> and the last character must be from set <code>diuoxXfeEgGcs</code>.
</p>
<p>If field is named as <code>FILLER</code>, the field will not appear in output.
</p>
<p>The order of fields in configuration file is essential, it specifies the field order in a record.
</p></dd>
<dt><code>field <var>name</var>|FILLER|* <var>length</var>|<var>type</var> [<var>lookup</var>]|* [<var>output</var>]|* [<var>filter</var>]|* [<var>conversion</var>]</code></dt>
<dd><p>Defines a field in a binary structure. All other features are same as for text structure fields except the <var>type</var> parameter.
</p>
<p><var>type</var> specifies the field length and type and can have the following values:
</p>
<dl compact="compact">
<dt><code>char</code></dt>
<dd><p>Printable character.
</p></dd>
<dt><code>short</code></dt>
<dd><p>Short integer having current system length and byte order.
</p></dd>
<dt><code>int</code></dt>
<dd><p>Integer having current system length and byte order.
</p></dd>
<dt><code>long</code></dt>
<dd><p>Long integer having current system length and byte order.
</p></dd>
<dt><code>llong</code></dt>
<dd><p>Long long integer having current system length and byte order.
</p></dd>
<dt><code>ushort</code></dt>
<dd><p>Unsigned short integer having current system length and byte order.
</p></dd>
<dt><code>uint</code></dt>
<dd><p>Unsigned integer having current system length and byte order.
</p></dd>
<dt><code>ulong</code></dt>
<dd><p>Unsigned long integer having current system length and byte order.
</p></dd>
<dt><code>ullong</code></dt>
<dd><p>Unsigned long long integer having current system length and byte order.
</p></dd>
<dt><code>int8</code></dt>
<dd><p>8 bit integer.
</p></dd>
<dt><code>int16_be</code></dt>
<dd><p>Big endian 16 bit integer.
</p></dd>
<dt><code>int32_be</code></dt>
<dd><p>Big endian 32 bit integer.
</p></dd>
<dt><code>int64_be</code></dt>
<dd><p>Big endian 64 bit integer.
</p></dd>
<dt><code>int16_le</code></dt>
<dd><p>Little endian 16 bit integer.
</p></dd>
<dt><code>int32_le</code></dt>
<dd><p>Little endian 32 bit integer.
</p></dd>
<dt><code>int64_le</code></dt>
<dd><p>Little endian 64 bit integer.
</p></dd>
<dt><code>uint8</code></dt>
<dd><p>Unsigned 8 bit integer.
</p></dd>
<dt><code>uint16_be</code></dt>
<dd><p>Unsigned big endian 16 bit integer.
</p></dd>
<dt><code>uint32_be</code></dt>
<dd><p>Unsigned big endian 32 bit integer.
</p></dd>
<dt><code>uint64_be</code></dt>
<dd><p>Unsigned big endian 64 bit integer.
</p></dd>
<dt><code>uint16_le</code></dt>
<dd><p>Unsigned little endian 16 bit integer.
</p></dd>
<dt><code>uint32_le</code></dt>
<dd><p>Unsigned little endian 32 bit integer.
</p></dd>
<dt><code>uint64_le</code></dt>
<dd><p>Unsigned little endian 64 bit integer.
</p></dd>
<dt><code>float</code></dt>
<dd><p>Float having current system length and byte order.
</p></dd>
<dt><code>float_be</code></dt>
<dd><p>Float having current system length and big endian byte order.
</p></dd>
<dt><code>float_le</code></dt>
<dd><p>Float having current system length and little endian byte order.
</p></dd>
<dt><code>double</code></dt>
<dd><p>Double having current system length and byte order.
</p></dd>
<dt><code>double_be</code></dt>
<dd><p>Double having current system length and big endian byte order.
</p></dd>
<dt><code>double_le</code></dt>
<dd><p>Double having current system length and little endian byte order.
</p></dd>
<dt><code>bcd_be_<var>len</var></code></dt>
<dd><p>Bcd number having length <var>len</var> and nybbles in big endian order.
</p></dd>
<dt><code>bcd_le_<var>len</var></code></dt>
<dd><p>Bcd number having length <var>len</var> and nybbles in little endian order.
</p></dd>
<dt><code>hex_be_<var>len</var></code></dt>
<dd><p>Hexadecimal data in big endian order having length <var>len</var>.
</p></dd>
<dt><code>hex_le_<var>len</var></code></dt>
<dd><p>Hexadecimal data in little endian order having length <var>len</var>.
</p></dd>
</dl>
<p>If <var>length</var> is given instead of the <var>type</var>, then the field is assumed to be a printable string having length <var>length</var>. String is printed until <var>length</var> characters are printed or NULL character is found.
</p>
<p>Bcd number (<code>bcd_be_<var>len</var></code> and <code>bcd_le_<var>len</var></code>) is printed until <var>len</var> bytes are read or a nybble having hexadecimal value <code>f</code> is found.
Bcd number having big endian order is printed in order: most significant nybble first and least significant nybble second and bcd number having little endian order is printed in order: least significant nybble first and most significant nybble second. Bytes are always read in big endian order.
</p>
<p>Hexadecimal data (<code>hex_be_<var>len</var></code> and <code>hex_le_<var>len</var></code>) is printed as hexadecimal values. Big endian data is printed starting from lower address and little endian data starting from upper address.
</p>
</dd>
<dt><code>field-count <var>number</var></code></dt>
<dd><p>Same effect as having "<code>field *</code>" <var>number</var> times. This can be used in separated structure instead of
writing sequential "<code>field *</code>" definitions. Several <code>field-count</code>s can be used in the same record and
they can be mixed with <code>field</code>.
</p></dd>
<dt><code>fields-from <var>record</var></code></dt>
<dd><p>Fields in this record are the same as in record <var>record</var>. <code>field</code> and <code>fields-from</code> are mutually
exclusive.
</p></dd>
<dt><code>output <var>name</var>|no|raw</code></dt>
<dd><p>This record is printed according to output format <var>name</var>. Default is to use output format specified in structure.
</p></dd>
<dt><code>level <var>number</var> [<var>element_name</var>|*] [<var>group_name</var>]</code></dt>
<dd><p>Levels can be used to print the file in hierarchical multi-level nested form document.
<var>number</var> is the level of the record, starting from number one (highest level),
<var>element_name</var> is the name for the record, <var>group_name</var>
is used to group records in the same and lower levels. Only <var>number</var> is mandatory.
Use * instead of the element name if group name is needed.
</p></dd>
<dt><code>record-length strict|minimum</code></dt>
<dd><dl compact="compact">
<dt><code>strict</code></dt>
<dd><p>Input record length (fixed format) or field count (separated format) must match the record definition in order to get it processed. This is the default value.
</p></dd>
<dt><code>minimum</code></dt>
<dd><p>Input record length or field count can be the same or longer as defined for the record. The rest of the input line is ignored.
</p></dd>
</dl>
</dd>
<dt><code>variable-length <var>record_length</var> <var>variable_length_field</var> <var>adjust</var></code></dt>
<dd><p><var>record_length</var> and <var>variable_length_field</var> are the names of two fields in the record and <var>adjust</var> is a signed integer.
Record length is read from field <var>record_length</var>. <var>record_length</var> is assumed to be an integer type for binary structures or contain only decimal numbers in fixed length structure.
<var>record_length</var> is assumed to contain the total length of the record.
<var>variable_length_field</var> is the field having variable length. The length of <var>variable_length_field</var> is calculated by subtracting the total length of the all other fields from the length read from <var>record_length</var>.
<br>
The length given by keyword <var>field</var> for <var>variable_length_field</var> is ignored. After calculating the length it is adjusted by <var>adjust</var>. <var>adjust</var> can be used in cases where the length read from <var>variable_length_field</var> does not contain the total length of the record. variable-length can be used with binary or fixed lengths structures only.
</p></dd>
</dl>
<a name="Output"></a>
<h4 class="subheading">Output</h4>
<p>Keyword <code>output</code> specifies a output format for formatting the input data for output. Formatting
is controlled using options and printf style directives. An output definition is independent
from structure, so one output format can be used with different input file formats.
</p>
<p>The output notation:
<br>
</p>
<div class="example">
<pre class="example">output <var>name</var> {
<i>option value</i> …
…
}
</pre></div>
<p>Actual formatting and printing is controlled using <em>pictures</em> in output options. Pictures can contain
following printf style directives:
</p>
<dl compact="compact">
<dt><code>%f</code></dt>
<dd><p>Name of the input file.
</p></dd>
<dt><code>%s</code></dt>
<dd><p>Name of the current structure.
</p></dd>
<dt><code>%r</code></dt>
<dd><p>Name of the current record.
</p></dd>
<dt><code>%o</code></dt>
<dd><p>Input record number in current file.
</p></dd>
<dt><code>%O</code></dt>
<dd><p>Input record number starting from the first file.
</p></dd>
<dt><code>%i</code></dt>
<dd><p>Byte offset of the current record in the current file. Starts from zero.
</p></dd>
<dt><code>%I</code></dt>
<dd><p>Byte offset of the current record starting from the first file. Starts from zero.
</p></dd>
<dt><code>%n</code></dt>
<dd><p>Field name.
</p></dd>
<dt><code>%t</code></dt>
<dd><p>Field contents, without leading and trailing white-spaces.
</p></dd>
<dt><code>%d</code></dt>
<dd><p>Field contents. Binary integer is printed as a decimal value. Floating point number is printed in the style <code>[-]ddd.ddd</code>, where the number of digits after the decimal-point character is 6. Bcd number is printed as a decimal number and hexadecimal data as consecutive hexadecimal values.
</p></dd>
<dt><code>%D</code></dt>
<dd><p>Field contents, right padded to the field length (requires length definition for the field).
</p></dd>
<dt><code>%C</code></dt>
<dd><p>Field contents, right padded to the field length (requires length definition for the field). Contents is cut if the input field
is longer than output length.
</p></dd>
<dt><code>%x</code></dt>
<dd><p>Unsigned hexadecimal value of a binary integer. Other fields are printed as directive <code>%d</code> would be used.
</p></dd>
<dt><code>%l</code></dt>
<dd><p>Lookup value which has been found using current field as a search key.
</p></dd>
<dt><code>%L</code></dt>
<dd><p>Lookup value, right padded to the field length.
</p></dd>
<dt><code>%p</code></dt>
<dd><p>Fields start position in a record. For fixed and binary structure this is field’s byte position in the input line
and for separated structure this is the ordinal number of the field. Starts from one.
</p></dd>
<dt><code>%h</code></dt>
<dd><p>Hexadecimal dump of a field. Byte values are printed as consecutive <code>xnn</code> values, where the <code>nn</code> is the hexadecimal value of a byte. Data is printed before any endian conversion.
</p></dd>
<dt><code>%e</code></dt>
<dd><p>Does not print anything, causes still the "field empty" check to be performed.
Can be used when only the names of non-empty fields should be printed.
</p></dd>
<dt><code>%g</code></dt>
<dd><p>Group name given by the keyword <code>group_name</code> in record definition.
</p></dd>
<dt><code>%m</code></dt>
<dd><p>Element name given by the keyword <code>element_name</code> in record definition.
</p></dd>
<dt><code>%%</code></dt>
<dd><p>Percent sign.
</p></dd>
</dl>
<p>Output options:
</p><dl compact="compact">
<dt><code>file_header <var>picture</var></code></dt>
<dd><p><var>picture</var> is printed once before file contents.
</p></dd>
<dt><code>file_trailer <var>picture</var></code></dt>
<dd><p><var>picture</var> is printed once after file contents.
</p></dd>
<dt><code>header <var>picture</var></code></dt>
<dd><p>If given, then the header line describing the field names is printed before records.
Every field name is printed according the <var>picture</var> using the same separator and field length as
given for the fields. Picture can contain only <code>%n</code> directive.
</p></dd>
<dt><code>data <var>picture</var></code></dt>
<dd><p>Field contents is printed according <var>picture</var>.
</p></dd>
<dt><code>lookup <var>picture</var></code></dt>
<dd><p>If current field is related to lookup table, then this <var>picture</var> is used instead of picture from <code>data</code>.
This makes possible to use different picture when the field is related to a lookup table. Default is to use the picture from <code>data</code>.
</p></dd>
<dt><code>separator <var>string</var></code></dt>
<dd><p>All fields are terminated by <var>string</var>, except the last field of the record.
Default is not to print separator.
</p></dd>
<dt><code>record_header <var>picture</var></code></dt>
<dd><p><var>picture</var> is printed before the record content. Default is not to print the record header.
</p></dd>
<dt><code>record_trailer <var>picture</var></code></dt>
<dd><p><var>picture</var> is printed after the record content. Default is newline.
</p></dd>
<dt><code>justify left|right|<var>char</var></code></dt>
<dd><p>The output from the <code>data</code> option is left or right justified.
<var>char</var> justifies output according the first occurrence of <var>char</var>
in the data picture. Default is left.
</p></dd>
<dt><code>indent <var>string</var></code></dt>
<dd><p>Record contents is intended by <var>string</var>.
Field contents is intended by two times the string. Default is not to indent.
If file contents is printed in hierarchical form (keyword <code>level</code> in record definition) then
contents is indented according the level of a record.
</p></dd>
<dt><code>field-list <var>name1</var>,<var>name2</var>,…</code></dt>
<dd><p>Only fields and constants named as <var>name1</var>,<var>name2</var>,… are printed, same effect as has option <samp>-f</samp>.
Default is print all fields and no constants. Fields and constants are also printed in the same order as they are listed.
</p></dd>
<dt><code>no-data-print yes|no</code></dt>
<dd><p>If <code>field-list</code> is given and and this is set as no and none of the fields in <code>field-list</code>
does not belong to the current record, then the <code>record_header</code> and <code>record_trailer</code> are not printed.
Default is yes.
</p></dd>
<dt><code>field-empty-print yes|no</code></dt>
<dd><p>When set as no, nothing is printed for the fields which consist entirely of characters from <code>empty-chars</code>.
If none of the fields of a record are printed, then the printing of <code>record_trailer</code> is also suppressed.
Default is yes.
</p></dd>
<dt><code>empty-chars <var>string</var></code></dt>
<dd><p><var>string</var> specifies a set of characters which consist an "empty" field. Default is
" \f\n\r\t\v"<!-- /@w --> (space, form-feed, newline, carriage return, horizontal tab and vertical tab).
</p></dd>
<dt><code>output-file <var>file</var></code></dt>
<dd><p>Output is written to <var>file</var> instead of the default output (standard output or given by <samp>-o, --output</samp>).
If - is given the output is written to standard output.
</p></dd>
<dt><code>group_header <var>picture</var></code></dt>
<dd><p>If a record has a level and a group name defined,
<var>picture</var> is printed before the first record in a group or if the group name has changed in the same level.
<strong>Note</strong>: Level related pictures can contain printing directives <code>%g</code> and <code>%n</code> only.
</p></dd>
<dt><code>group_trailer <var>picture</var></code></dt>
<dd><p>If a record has a level and a group name defined,
<var>picture</var> is printed after the records in lower levels are printed or if the group name has changed in the
same level or if a higher level record is found.
</p></dd>
<dt><code>element_header <var>picture</var></code></dt>
<dd><p>If a record has a level and a element name defined, <var>picture</var> is printed before the records contents.
</p></dd>
<dt><code>element_trailer <var>picture</var></code></dt>
<dd><p>If a record has a level and a element name defined, <var>picture</var> is printed after the records contents or after
the following lower level records.
</p></dd>
<dt><code>hex-caps yes|no</code></dt>
<dd><p>Print hexadecimal numbers in capital letters. Default is no.
</p></dd>
</dl>
<a name="Lookup"></a>
<h4 class="subheading">Lookup</h4>
<p>Keyword <code>lookup</code> specifies a lookup table which can be searched using field contents. Found values can
be printed using output directives <code>%l</code> and <code>%L</code>.
</p>
<p>The lookup table notation:
<br>
</p>
<div class="example">
<pre class="example">lookup <var>name</var> {
<i>option value</i> …
…
}
</pre></div>
<p>Lookup options:
</p><dl compact="compact">
<dt><code>search exact | longest</code></dt>
<dd><p>Search method for this table. Either exact or longest match is used when searching the table. Default is <code>exact</code>.
</p></dd>
<dt><code>pair <var>key</var> <var>value</var></code></dt>
<dd><p>Defines a key/value pair for the lookup table. In case of binary file <var>key</var> must have the same representation as
can be shown using the <code>%d</code> printing directive.
</p></dd>
<dt><code>file <var>name</var> [<var>separator</var>]</code></dt>
<dd><p>Data for the lookup table is read from file <var>name</var>. Each line in file <var>name</var> is considered as a key/value pair
separated by a single character <var>separator</var>. Default separator is semicolon. Lines without separator are silently omitted.
<strong>Note</strong>: The file size is limited by available memory because the file contents is loaded to memory.
</p></dd>
<dt><code>default-value <var>value</var></code></dt>
<dd><p>If searching the lookup table is unsuccessful then <var>value</var> is used in printing. Default is empty string.
</p></dd>
</dl>
<a name="Constants"></a>
<h4 class="subheading">Constants</h4>
<p>Keyword <code>const</code> specifies one name/value pair which can be used as an additional output field.
Constants can be used only in field lists (option <samp>-f,--field-list</samp>, or output option <code>field-list</code>).
</p>
<p>Constants can be used to add fields to output which do not appear in input. E.g. new fields for
separated output or adding spaces after a fixed length field (changing the field length).
</p>
<p>Note that <var>value</var> is printed as it is for every record. It cannot be changed record by record.
</p>
<p>If a constant has the same name as one of the input fields, the value <var>value</var> is printed instead of
the input field contents.
</p>
<p>The constant notation:
<br>
</p>
<div class="example">
<pre class="example">const <var>name</var> <var>value</var>
</pre></div>
<p>When <var>name</var> appears in field list it is treated as one of the input fields having contents <var>value</var>.
</p>
<a name="Filter"></a>
<h4 class="subheading">Filter</h4>
<p>Keyword <code>filter</code> defines a command that can be used to format field raw contents. Command must read the standard input
and write to standard output and it must not block. Field raw contents is filtered through the command and the output is printed as
field contents.
</p>
<p>The filter notation:
<br>
</p><div class="example">
<pre class="example">filter <var>name</var> <var>command</var>
</pre></div>
<p><var>name</var> is referred in field definition. <var>command</var> is the shell command to be executed.
</p>
<a name="Anonymization"></a>
<h4 class="subheading">Anonymization</h4>
<p>Keyword <code>anonymize</code> defines a set of fields which will be anonymized by using command line option <samp>-A,--anonymize</samp>
is given. Ffe uses non-reversible anonymization methods and preserves the original field length.
</p>
<p>Notation:
<br>
</p><div class="example">
<pre class="example">anonymize <var>name</var> {
<i>method</i> …
…
}
</pre></div>
<p>The anonymization will be done if command line option <samp>-A,--anonymize</samp> is given with <var>name</var>.
Anonymize options:
</p><dl compact="compact">
<dt><code>method <var>field</var> <var>method</var> <var>start</var> <var>length</var> <var>parameter</var></code></dt>
<dd><p>All fields named as <var>field</var> in the current structure will be anonymized using method <var>method</var>.
As default the whole field is anonymized. Some parts of the field can be left non-anonymized using
<var>start</var> and <var>length</var>. <var>start</var> is the byte position where the anonymization starts, first byte is number 1.
If <var>start</var> is negative the anonymization starts from the end of the field.
If <var>length</var> is given then <var>length</var> number of bytes is anonymized after start position, default value 0 means the rest of the field.
Only <var>field</var> and <var>method</var> are mandatory.
<br>
<br>
Values for <var>method</var>:
</p><dl compact="compact">
<dt><code>MASK</code></dt>
<dd><p>Field will be masked with character ’0’. Different character can be given with <var>parameter</var>.
</p></dd>
<dt><code>RANDOM</code></dt>
<dt><code>NRANDOM</code></dt>
<dd><p>Field will be filled with randomly selected bytes.
</p></dd>
<dt><code>HASH</code></dt>
<dt><code>NHASH</code></dt>
<dd><p>Field will be filled with data from hash calculated from the original field.
This method yields always the same result with same input. The hash length in bytes can be given with <var>parameter</var>.
Default hash length is 16, valid values for hash length are 16, 32 and 64.
</p></dd>
</dl>
<p>Methods RANDOM and HASH use characters <code>0-9,A-Z,a-z</code> and space for text fields. Methods NRANDOM and NHASH use only characters <code>0-9</code>.
For binary fields all byte values are used. BCD coded fields are always filled with BCD values <code>0-9</code>.
</p></dd>
</dl>
<a name="Command-Substitution"></a>
<h4 class="subheading">Command Substitution</h4>
<p>Command Substitution allows the output of a command to replace parts of the configuration file. Syntax for
command substitution is:
<br>
<br>
‘<code>command</code>‘
<br>
<br>
The <code>command</code> is executed and the ‘<code>command</code>‘ is substituted with the standard output of
the command, with any trailing newlines deleted. Command substitutions may not be nested.
</p>
<p>Before executing the <code>command</code> <code>ffe</code> sets following environment variables:
</p><dl compact="compact">
<dt><code>FFE_STRUCTURE</code></dt>
<dd><p>The name of the structure from <samp>-s,--structure</samp>.
</p></dd>
<dt><code>FFE_OUTPUT</code></dt>
<dd><p>The name of the output file from <samp>-o,--output</samp>.
</p></dd>
<dt><code>FFE_FORMAT</code></dt>
<dd><p>The name of the output format from <samp>-p,--print</samp>.
</p></dd>
<dt><code>FFE_FIRST_FILE</code></dt>
<dd><p>The name of the first input file.
</p></dd>
<dt><code>FFE_FILES</code></dt>
<dd><p>A space-separated list of all input files.
</p></dd>
</dl>
<p>If variable is already set it will not be replaced.
</p>
<a name="Input-Preprocessor"></a>
<h4 class="subheading">Input Preprocessor</h4>
<p>It is possible to define an input preprosessor for <code>ffe</code>. An input preprocessor is simply an executable program
which writes the contents of the input file to standard output which will be read by <code>ffe</code>. If the input preprosessor
does not write any characters on its standard output, then <code>ffe</code> uses the original file.
</p>
<p>To set up an input preprocessor, set the <code>FFEOPEN</code> environment variable to a command line which will invoke your input preprocessor.
This command line should include one occurrence of the string <code>%s</code>,
which will be replaced by the input filename when the input preprocessor command is invoked.
</p>
<p>The input preprocessor is not used if <code>ffe</code> is reading standard input.
</p>
<p>Convenient way is to use <code>lesspipe</code> (or <code>lesspipe.sh</code>), which is available in many UNIX-systems, for example
<br>
</p><div class="example">
<pre class="example">export FFEOPEN="/usr/bin/lesspipe %s"
</pre></div>
<p>Using the example above is it possible to give a zipped input file to <code>ffe</code>, then the input processor will unzip the
file before it is processed by <code>ffe</code>.
</p>
<hr>
<a name="Guessing"></a>
<a name="Guessing-1"></a>
<h3 class="section">3.3 Guessing</h3>
<a name="index-guess"></a>
<p>If <samp>-s</samp> is not given, <code>ffe</code> tries to guess the input structure.
</p>
<p>When guessing binary data <code>ffe</code> reads the first block of input data and tries to match the structure definitions
from configuration file to that block. The input block size is the maximum binary block size found in configuration file.
</p>
<p>When guessing text data <code>ffe</code> reads the first 10 000 lines or 1 MB of input data and tries to match the structure definitions
from configuration file to input stream. If all lines match one and only one structure, the structure is used
for reading the input file.
</p>
<p>Guessing uses following execution cycle:
</p>
<ol>
<li> A input line or a binary block is read
</li><li> All record <code>id</code>’s are compared to the input data, if all <code>id</code>’s of a record match
the input date and the
records line length matches the total length (or total count for separated structure) of the fields,
the record is considered to match the input line. If there are no <code>id</code>’s,
only the line length or field count is checked. In case of binary data only <code>id</code>’s are used in matching.
</li><li> In case of text data: If all lines match at least one of the records in a particular structure, the structure is considered as selected.
There must be only one structure matching all lines used for guessing.
<p>In case of binary data: If the first block matches at least one record of a structure, the structure is considered as selected. Only one structure must match.
</p>
</li></ol>
<hr>
<a name="Limits"></a>
<a name="Limitations"></a>
<h3 class="section">3.4 Limitations</h3>
<a name="index-big-files"></a>
<a name="index-limits"></a>
<p>At least in GNU/Linux <code>ffe</code> should be able to handle big files (> 4 GB), other
systems are not tested.
</p>
<p>Regular expression can be used in operator <strong>?</strong> in option <samp>-e</samp>, <samp>--expression</samp> and in record key word <code>rid</code> only in systems where
regular expression functions (regcomp, regexec, …) are available.
</p>
<hr>
<a name="ffe-configuration"></a>
<a name="How-ffe-works"></a>
<h2 class="chapter">4 How <code>ffe</code> works</h2>
<p>Following examples use two different input files:
</p><a name="Fixed-length-example"></a>
<h4 class="subheading">Fixed length example</h4>
<p>Fixed length personnel file with header and trailer, line (record) is identified by the
first byte (H = Header, E = Employee, B = Boss, T = trailer).
</p><div class="example">
<pre class="example">$cat personnel.fix
H2006-02-25
EJohn Ripper 23
BScott Tiger 45
EMary Moore 41
ERidge Forrester 31
T0004
$
</pre></div>
<p>Structure for reading file above. Note that record ‘<samp>boss</samp>’ reuses fields from ‘<samp>employee</samp>’. Age will be printed three numbers long with padded zeros.
</p>
<div class="example">
<pre class="example">structure personel_fix {
type fixed
record header {
id 1 H
field type 1
field date 10
}
record employee {
id 1 E
field EmpType 1
field FirstName 9
field LastName 13
field Age 2 * * * "%03d"
}
record boss {
id 1 B
fields-from employee
}
record trailer {
id 1 T
field type 1
field count 4
}
}
</pre></div>
<a name="Separated-example"></a>
<h4 class="subheading">Separated example</h4>
<p>Same file as above, but now separated by comma.
</p>
<div class="example">
<pre class="example">$cat personnel.sep
H,2006-02-25
E,john,Ripper,23
B,Scott,Tiger,45
E,Mary,Moore,41
E,Ridge,Forrester,31
T,0004
$
</pre></div>
<p>Structure for reading file above. Note that the field lengths are not needed in separated format. Length
is need if the separated data is to be printed in fixed length format.
</p>
<div class="example">
<pre class="example">structure personel_sep {
type separated ,
record header {
id 1 H
field type
field date
}
record employee {
id 1 E
field type
field FirstName
field LastName
field Age
}
record boss {
id 1 B
fields-from employee
}
record trailer {
id 1 T
field type
field count
}
}
</pre></div>
<a name="Printing-in-XML-format"></a>
<h4 class="subheading">Printing in XML format</h4>
<p>Data in examples above can be printed in XML using output definition like:
</p>
<div class="example">
<pre class="example">output xml {
file_header "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
data "<%n>%t</%n>\n"
record_header "<%r>\n"
record_trailer "</%r>\n"
indent " "
}
</pre></div>
<p>Example output using command (assuming definitions above are saved in ~/.fferc)
</p>
<p><code>ffe -p xml personnel.sep</code>
</p>
<div class="example">
<pre class="example"><?xml version="1.0" encoding="UTF-8"?>
<header>
<type>H</type>
<date>2006-02-25</date>
</header>
<employee>
<type>E</type>
<FirstName>john</FirstName>
<LastName>Ripper</LastName>
<Age>23</Age>
</employee>
<boss>
<type>B</type>
<FirstName>Scott</FirstName>
<LastName>Tiger</LastName>
<Age>45</Age>
</boss>
<employee>
<type>E</type>
<FirstName>Mary</FirstName>
<LastName>Moore</LastName>
<Age>41</Age>
</employee>
<employee>
<type>E</type>
<FirstName>Ridge</FirstName>
<LastName>Forrester</LastName>
<Age>31</Age>
</employee>
<trailer>
<type>T</type>
<count>0004</count>
</trailer>
</pre></div>
<a name="Printing-sql-commands"></a>
<h4 class="subheading">Printing sql commands</h4>
<p>Data in examples above can be loaded to database by generated sql commands. Note that the header and trailer
are not loaded, because only fields ‘<samp>FirstName</samp>’,‘<samp>LastName</samp>’ and ‘<samp>Age</samp>’ are printed and ‘<samp>no-data-print</samp>’
is set as no. This prevents the ‘<samp>record_header</samp>’ and ‘<samp>record_trailer</samp>’ to be printed for file header and trailer.
</p>
<div class="example">
<pre class="example">output sql {
file_header "delete table boss;\ndelete table employee;\n"
record_header "insert into %r values("
data "'%t'"
separator ","
record_trailer ");\n"
file_trailer "commit\nquit\n"
no-data-print no
field-list FirstName,LastName,Age
}
</pre></div>
<p>Output from command
</p>
<p><code>ffe -p sql personnel.sep</code>
</p>
<div class="example">
<pre class="example">delete table boss;
delete table employee;
insert into employee values('john','Ripper','23');
insert into boss values('Scott','Tiger','45');
insert into employee values('Mary','Moore','41');
insert into employee values('Ridge','Forrester','31');
commit
quit
</pre></div>
<a name="Human-readable-output"></a>
<h4 class="subheading">Human readable output</h4>
<p>This output format shows the fields in format suitable for displaying in screen or printing.
</p>
<div class="example">
<pre class="example">output nice {
record_header "%s - %r - %f - %o\n"
data "%n=%t\n"
justify =
indent " "
}
</pre></div>
<p>Output from command
</p>
<p><code>ffe -p nice personnel.fix</code>
</p><div class="example">
<pre class="example"> personel - header - personnel.fix - 1
type=H
date=2006-02-25
personel - employee - personnel.fix - 2
EmpType=E
FirstName=John
LastName=Ripper
Age=023
personel - boss - personnel.fix - 3
EmpType=B
FirstName=Scott
LastName=Tiger
Age=045
personel - employee - personnel.fix - 4
EmpType=E
FirstName=Mary
LastName=Moore
Age=041
personel - employee - personnel.fix - 5
EmpType=E
FirstName=Ridge
LastName=Forrester
Age=031
personel - trailer - personnel.fix - 6
type=T
count=0004
</pre></div>
<a name="HTML-table"></a>
<h4 class="subheading">HTML table</h4>
<p>Personnel data can be displayed as HTML table using output like:
</p>
<div class="example">
<pre class="example">output html {
file_header "<html>\n<head>\n</head>\n<body>\n<table border=\"1\">\n<tr>\n"
header "<th>%n</th>\n"
record_header "<tr>\n"
data "<td>%t</td>\n"
file_trailer "</table>\n</body>\n</html>\n"
no-data-print no
}
</pre></div>
<p>Output from command
</p>
<p><code>ffe -p html -f FirstName,LastName,Age personnel.fix</code>
</p><div class="example">
<pre class="example"><html>
<head>
</head>
<body>
<table border="1">
<tr>
<th>FirstName</th>
<th>LastName</th>
<th>Age</th>
<tr>
<td>John</td>
<td>Ripper</td>
<td>023</td>
<tr>
<td>Scott</td>
<td>Tiger</td>
<td>045</td>
<tr>
<td>Mary</td>
<td>Moore</td>
<td>041</td>
<tr>
<td>Ridge</td>
<td>Forrester</td>
<td>031</td>
</table>
</body>
</html>
</pre></div>
<a name="Using-expression"></a>
<h4 class="subheading">Using expression</h4>
<p>Printing only Scott’s record using expression with previous example:
</p>
<p><code>ffe -p html -f FirstName,LastName,Age -e FirstName^Scott personnel.fix</code>
</p><div class="example">
<pre class="example"><html>
<head>
</head>
<body>
<table border="1">
<tr>
<th>FirstName</th>
<th>LastName</th>
<th>Age</th>
<tr>
<td>Scott</td>
<td>Tiger</td>
<td>045</td>
</table>
</body>
</html>
</pre></div>
<a name="Using-replace"></a>
<h4 class="subheading">Using replace</h4>
<p>Make all bosses and write a new personnel file printing the fields in fixed length format
using directive <code>%D</code>:
</p>
<p>Output definition:
</p><div class="example">
<pre class="example">output fixed
{
data "%D"
}
</pre></div>
<p>Write a new file:
</p><div class="example">
<pre class="example">$ffe -p fixed -r EmpType=B -o personnel.fix.new personnel.fix
$cat personnel.fix.new
H2006-02-25
BJohn Ripper 023
BScott Tiger 045
BMary Moore 041
BRidge Forrester 031
T0004
$
</pre></div>
<a name="Using-constant"></a>
<h4 class="subheading">Using constant</h4>
<p>The length of the fields FirstName and LastName in fixed length format will be made two bytes longer.
This will be done by printing a constant after those two fields.
We use dots instead of spaces in order to make change more visible.
</p>
<p>Because we do not want to change header and trailer we need specially crafted configuration file.
Employee and boss records will be printed using new output <var>fixed2</var> and other records will be printed using
output <var>default</var>.
</p>
<p>New definition file <samp>new_fixed.rc</samp>:
</p><div class="example">
<pre class="example">const 2dots ".."
structure personel_fix {
type fixed
record header {
id 1 H
field type 1
field date 10
}
record employee {
id 1 E
field EmpType 1
field FirstName 9
field LastName 13
field Age 2
output fixed2
}
record boss {
id 1 B
fields-from employee
output fixed2
}
record trailer {
id 1 T
field type 1
field count 4
}
}
output default
{
data "%D"
}
output fixed2
{
data "%D"
field-list Emptype,FirstName,2dots,LastName,2dots,Age
}
</pre></div>
<p>Print new flat file:
</p><div class="example">
<pre class="example">$ ffe -c new_fixed.rc personel_fix
H2006-02-25
EJohn ..Ripper ..023
BScott ..Tiger ..045
EMary ..Moore ..041
ERidge ..Forrester ..031
T0004
$
</pre></div>
<a name="Using-lookup-table"></a>
<h4 class="subheading">Using lookup table</h4>
<p>Lookup table is used to explain the EmpTypes contents in output format <code>nice</code>:
</p>
<p>Lookup definition:
</p><div class="example">
<pre class="example">lookup Type
{
search exact
pair H Header
pair B "He is a Boss!"
pair E "Not a Boss!"
pair T Trailer
default-value "Unknown record type!"
}
</pre></div>
<p>Mapping the EmpType field to lookup:
</p><div class="example">
<pre class="example">structure personel_fix {
type fixed
record header {
id 1 H
field type 1
field date 10
}
record employee {
id 1 E
field EmpType 1 Type
field FirstName 9
field LastName 13
field Age 2
}
record boss {
id 1 B
fields-from employee
}
record trailer {
id 1 T
field type 1
field count 4
}
}
</pre></div>
<p>Adding the lookup option to output definition <code>nice</code>.
</p><div class="example">
<pre class="example">output nice {
record_header "%s - %r - %f - %o\n"
data "%n=%t\n"
lookup "%n=%t (%l)\n"
justify =
indent " "
}
</pre></div>
<p>Running ffe:
</p><div class="example">
<pre class="example"> $ffe -p nice personnel.fix
personel_fix - header - personel_fix - 1
type=H
date=2006-02-25
personel_fix - employee - personel_fix - 2
EmpType=E (Not a Boss!)
FirstName=John
LastName=Ripper
Age=023
personel_fix - boss - personel_fix - 3
EmpType=B (He is a Boss!)
FirstName=Scott
LastName=Tiger
Age=045
personel_fix - employee - personel_fix - 4
EmpType=E (Not a Boss!)
FirstName=Mary
LastName=Moore
Age=041
personel_fix - employee - personel_fix - 5
EmpType=E (Not a Boss!)
FirstName=Ridge
LastName=Forrester
Age=031
personel_fix - trailer - personel_fix - 6
type=T
count=0004
</pre></div>
<a name="External-lookup-file"></a>
<h4 class="subheading">External lookup file</h4>
<p>In previous example the lookup data could be read from external file like:
</p>
<div class="example">
<pre class="example">$cat lookupdata
H;Header
B;He is a Boss!
E;Not a Boss!
T;Trailer
$
</pre></div>
<p>Lookup definition using file above:
</p><div class="example">
<pre class="example">lookup Type
{
search exact
file lookupdata
default-value "Unknown record type!"
}
</pre></div>
<a name="Making-universal-csv-reader-using-command-substitution"></a>
<h4 class="subheading">Making universal csv reader using command substitution</h4>
<p>Command substitution can be used to make a configuration for reading any csv file.
The number of fields will be read from the first file using awk.
Input file names and date are printed in the file header:
</p>
<div class="example">
<pre class="example">structure csv {
type separated ,
header first
record csv {
field-count `awk "-F," 'FNR == 1 {print NF;exit;}' $FFE_FIRST_FILE`
}
}
output default {
file_header "Files: `echo $FFE_FILES`\n`date`\n"
data "%n=%d\n"
justify =
}
</pre></div>
<a name="Reading-binary-data"></a>
<h4 class="subheading">Reading binary data</h4>
<p>A binary block having a 3 byte text (ABC) in 5 bytes long space, one byte integer (35), a 32 bit integer (12345678), a double (345.385), a 3 byte bcd number (45112) and a 4 byte hexadecimal data (f15a9188) can be read using following configuration:
</p>
<div class="example">
<pre class="example">structure bin_data
{
type binary
record b
{
field text 5
field byte_int int8
field integer int
field number double
field bcd_number bcd_be_3
field hex hex_be_4
}
}
output default
{
data "%n = %d (%h)\n"
}
</pre></div>
<p>The <code>%h</code> directive gives a hex dump of the input data.
</p>
<p>Hexadecimal dump of the data:
</p><div class="example">
<pre class="example">$ od -t x1 example_bin
0000000 41 42 43 00 08 23 4e 61 bc 00 5c 8f c2 f5 28 96
0000020 75 40 45 11 2f f1 5a 91 88
0000031
</pre></div>
<p>Using ffe:
</p><div class="example">
<pre class="example">$ffe -c example_bin.fferc -s bin_data example_bin
text = ABC (x41x42x43x00x08)
byte_int = 35 (x23)
integer = 12345678 (x4ex61xbcx00)
number = 345.385000 (x5cx8fxc2xf5x28x96x75x40)
bcd_number = 45112 (x45x11x2f)
hex = f15a9188 (xf1x5ax91x88)
</pre></div>
<p>Note that the text has only 3 characters before NULL byte. Because this example was made in little endian
machine, same result can be achieved with different configuration:
</p><div class="example">
<pre class="example">structure bin_data
{
type binary
record b
{
field text 5
field byte_int int8
field integer int32_le
field number double_le
field bcd_number bcd_be_3
field hex hex_be_4
}
}
</pre></div>
<p>This configuration is more portable in case the same data is to be read in a different architecture because endianess of integer and double are explicit given.
</p>
<p>If the bcd number is read with <code>bcd_le_3</code> it would look as
</p><div class="example">
<pre class="example">bcd_number = 5411 (x45x11x2f)
</pre></div>
<p>Note that nybbles are swapped and last byte is handled as <code>f2</code> (<code>f</code> stops the printing) causing only first two bytes to be printed.
</p>
<p>and if hexadecimal data is read with <code>hex_le_4</code> it would look as
</p><div class="example">
<pre class="example">hex = 88915af1 (xf1x5ax91x88)
</pre></div>
<p>Bytes are printed starting from the end of the data.
</p>
<a name="Printing-nested-XML"></a>
<h4 class="subheading">Printing nested XML</h4>
<p>The keyword <code>level</code> in record definition can be used to print data in multi-level nested form. In this
example a parent row is in level one and a child row is in level two. Children after a parent row belongs
to the parent before child rows, so they are enclosed in a parent element.
</p>
<p>Example data:
</p><div class="example">
<pre class="example">P,John Smith,3
C,Kathren,6,Blue
C,Jimmy,4,Red
C,Peter,2,Green
P,Margaret Eelers,2
C,Aden,16,White
C,Amanda,20,Black
</pre></div>
<p>A parent row consists of ID (P), parent name, and the count of the children. A child row consists of id (C), child name, age and favorite color.
</p>
<p>This can be printed in nested XML using rc file:
</p><div class="example">
<pre class="example">structure family
{
type separated ,
record parent
{
id 1 P
field FILLER
field Name
field Child_count
level 1 parent
}
record child
{
id 1 C
field FILLER
field Name
field Age
field FavoriteColor
level 2 child children
}
}
output nested_xml
{
file_header "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
data "<%n>%t</%n>\n"
indent " "
record_trailer ""
group_header "<%g>\n"
group_trailer "</%g>\n"
element_header "<%m>\n"
element_trailer "</%m>\n"
}
</pre></div>
<p>Output:
</p>
<div class="example">
<pre class="example"><?xml version="1.0" encoding="UTF-8"?>
<parent>
<Name>John Smith</Name>
<Child_count>3</Child_count>
<children>
<child>
<Name>Kathren</Name>
<Age>6</Age>
<FavoriteColor>Blue</FavoriteColor>
</child>
<child>
<Name>Jimmy</Name>
<Age>4</Age>
<FavoriteColor>Red</FavoriteColor>
</child>
<child>
<Name>Peter</Name>
<Age>2</Age>
<FavoriteColor>Green</FavoriteColor>
</child>
</children>
</parent>
<parent>
<Name>Margaret Eelers</Name>
<Child_count>2</Child_count>
<children>
<child>
<Name>Aden</Name>
<Age>16</Age>
<FavoriteColor>White</FavoriteColor>
</child>
<child>
<Name>Amanda</Name>
<Age>20</Age>
<FavoriteColor>Black</FavoriteColor>
</child>
</children>
</parent>
</pre></div>
<a name="Some-examples-put-in-a-single-file"></a>
<h4 class="subheading">Some examples put in a single file</h4>
<div class="example">
<pre class="example">structure personel_fix {
type fixed
record header {
id 1 H
field type 1
field date 10
}
record employee {
id 1 E
field EmpType 1 Type
field FirstName 9
field LastName 13
field Age 2
}
record boss {
id 1 B
fields-from employee
}
record trailer {
id 1 T
field type 1
field count 4
}
}
structure personel_sep {
type separated ,
record header {
id 1 H
field type
field date
}
record employee {
id 1 E
field type
field FirstName
field LastName
field Age
}
record boss {
id 1 B
fields-from employee
}
record trailer {
id 1 T
field type
field count
}
}
structure bin_data
{
type binary
record b
{
field text 5
field byte_int int8
field integer int32_le
field number double_le
field bcd_number bcd_be_3
field hex hex_be_4
}
}
output xml {
file_header "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
data "<%n>%t</%n>\n"
record_header "<%r>\n"
record_trailer "</%r>\n"
indent " "
}
output sql {
file_header "delete table boss;\ndelete table employee;\n"
record_header "insert into %r values("
data "'%t'"
separator ","
record_trailer ");\n"
file_trailer "commit\nquit\n"
no-data-print no
field-list FirstName,LastName,Age
}
output nice {
record_header "%s - %r - %f - %o\n"
data "%n=%t\n"
lookup "%n=%t (%l)\n"
justify =
indent " "
}
output html {
file_header "<html>\n<head>\n</head>\n<body>\n<table border=\"1\">\n<tr>\n"
header "<th>%n</th>\n"
record_header "<tr>\n"
data "<td>%t</td>\n"
file_trailer "</table>\n</body>\n</html>\n"
no-data-print no
}
output fixed
{
data "%D"
}
lookup Type
{
search exact
pair H Header
pair B "He is a Boss!"
pair E "Not a Boss!"
pair T Trailer
default-value "Unknown record type!"
}
</pre></div>
<a name="Anonymization-1"></a>
<h4 class="subheading">Anonymization</h4>
<p>Anonymize fields FirstName, LastName and Age for personnel data:
</p><div class="example">
<pre class="example">anonymize personnel
{
method FirstName HASH 2
method LastName HASH 2
method Age NRANDOM
}
</pre></div>
<p>Data before anonymization:
</p><div class="example">
<pre class="example">$cat personnel.fix
H2006-02-25
EJohn Ripper 23
BScott Tiger 45
EMary Moore 41
ERidge Forrester 31
T0004
</pre></div>
<p>Anonymize the data to new file <samp>personnel_anon.fix</samp> (using the default configuration file <samp>~/.fferc</samp> and raw output):
</p>
<div class="example">
<pre class="example">ffe -A personnel -praw -o personnel_anon.fix personnel.fix
</pre></div>
<p>Anonymized data:
</p><div class="example">
<pre class="example">$cat personnel_anon.fix
H2006-02-25
EJQIQ9C5oBR2rDU0qiSTv7E62
BSqUcsYzSTTNTuTraspsG4154
EMTsXkHltVMsV8qmK1tkgq 00
ER1e90zv1dFjP4 xgflVGQF87
T0004
$ffe -pnice personnel_anon.fix
personel - header - personnel_anon.fix - 1
type=H
date=2006-02-25
personel - employee - personnel_anon.fix - 2
EmpType=E
FirstName=JQIQ9C5oB
LastName=R2rDU0qiSTv7E
Age=62
personel - boss - personnel_anon.fix - 3
EmpType=B
FirstName=SqUcsYzST
LastName=TNTuTraspsG41
Age=54
personel - employee - personnel_anon.fix - 4
EmpType=E
FirstName=MTsXkHltV
LastName=MsV8qmK1tkgq
Age=00
personel - employee - personnel_anon.fix - 5
EmpType=E
FirstName=R1e90zv1d
LastName=FjP4 xgflVGQF
Age=87
personel - trailer - personnel_anon.fix - 6
type=T
count=0004
</pre></div>
<p>FirstName and LastName have preserved the first letter because anonymization started from the second byte. Age is a two digit random number.
Name fields will get the same anonymized value for each run, but Age will have a random value for each run.
</p>
<a name="Using-ffe-to-test-file-integrity"></a>
<h4 class="subheading">Using <code>ffe</code> to test file integrity</h4>
<p><code>ffe</code> can be used to check flat file integrity, because <code>ffe</code>
checks for all lines the line length and id’s for fixed length structure
and field count and id’s for separated structure.
</p>
<p>Integrity can be checked using command
</p>
<p><code>ffe -p no -l inputfiles…</code>
</p>
<p>Because option <samp>-p</samp> has value <code>no</code> nothing is printed to output except the error messages.
Option <samp>-l</samp> causes all erroneous lines to be reported, not just the first one.
</p>
<p>Example output:
</p>
<div class="example">
<pre class="example">ffe: Invalid input line in file 'inputfileB', line 14550
ffe: Invalid input line in file 'inputfileD', line 12
</pre></div>
<hr>
<a name="Problems"></a>
<a name="Reporting-Bugs"></a>
<h2 class="chapter">5 Reporting Bugs</h2>
<a name="index-bugs"></a>
<a name="index-problems"></a>
<p>If you find a bug in <code>ffe</code>, please send electronic mail to
<a href="mailto:tjsa@iki.fi">tjsa@iki.fi</a>. Include the version number, which you can find by
running ‘<samp>ffe <span class="nolinebreak">--version</span></samp>’<!-- /@w -->. Also include in your message the
output that the program produced and the output you expected.
</p>
<p>If you have other questions, comments or suggestions about
<code>ffe</code>, contact the author via electronic mail to
<a href="mailto:tjsa@iki.fi">tjsa@iki.fi</a>. The author will try to help you out, although he
may not have time to fix your problems.
</p>
<a name="SEC_Contents"></a>
<h2 class="contents-heading">Table of Contents</h2>
<div class="contents">
<ul class="no-bullet">
<li><a name="toc-Preliminary-information" href="#Overview">1 Preliminary information</a></li>
<li><a name="toc-Samples-using-ffe" href="#Samples">2 Samples using <code>ffe</code></a></li>
<li><a name="toc-How-to-run-ffe" href="#Invoking-ffe">3 How to run <code>ffe</code></a>
<ul class="no-bullet">
<li><a name="toc-Program-invocation" href="#Invocation">3.1 Program invocation</a></li>
<li><a name="toc-Configuration-1" href="#Configuration">3.2 Configuration</a></li>
<li><a name="toc-Guessing-1" href="#Guessing">3.3 Guessing</a></li>
<li><a name="toc-Limitations" href="#Limits">3.4 Limitations</a></li>
</ul></li>
<li><a name="toc-How-ffe-works" href="#ffe-configuration">4 How <code>ffe</code> works</a></li>
<li><a name="toc-Reporting-Bugs" href="#Problems">5 Reporting Bugs</a></li>
</ul>
</div>
<hr>
</body>
</html>
|