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 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392
|
\input texinfo
@c %**start of header
@setfilename liblouis.info
@include version.texi
@settitle Liblouis User's and Programmer's Manual
@dircategory Misc
@direntry
* Liblouis: (liblouis). A braille translator and back-translator
@end direntry
@finalout
@c Macro definitions
@defindex opcode
@c Opcode.
@macro opcode{name, args}
@opcodeindex \name\
@anchor{\name\ opcode}
@item \name\ \args\
@end macro
@macro opcoderef{name}
@code{\name\} opcode (@pxref{\name\ opcode,\name\,@code{\name\}})
@end macro
@c Opcode.
@macro deprecatedopcode{name, args, replacement}
@opcodeindex \name\
@anchor{\name\ opcode}
@item \name\ \args\
This opcode is deprecated. Use the @opcoderef{\replacement\} instead.
@end macro
@copying
This manual is for liblouis (version @value{VERSION}, @value{UPDATED}),
a Braille Translation and Back-Translation Library derived from the
Linux screen reader @acronym{BRLTTY}.
@noindent
Copyright @copyright{} 1999-2006 by the BRLTTY Team.
@noindent
Copyright @copyright{} 2004-2007 ViewPlus Technologies, Inc.
@uref{www.viewplus.com}.
@noindent
Copyright @copyright{} 2007,2009 Abilitiessoft, Inc.
@uref{www.abilitiessoft.com}.
@quotation
This file is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser (or library) General Public License
(LGPL) as published by the Free Software Foundation; either version 3,
or (at your option) any later version.
This file is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser (or Library) General Public License LGPL for more details.
You should have received a copy of the GNU Lesser (or Library) General
Public License (LGPL) along with this program; see the file COPYING.
If not, write to the Free Software Foundation, 51 Franklin Street,
Fifth Floor, Boston, MA 02110-1301, USA.
@end quotation
@end copying
@titlepage
@title Liblouis User's and Programmer's Manual
@subtitle for version @value{VERSION}, @value{UPDATED}
@author by John J. Boyer
@c The following two commands start the copyright page.
@page
@vskip 0pt plus 1filll
@insertcopying
@end titlepage
@c Output the table of contents at the beginning.
@contents
@ifnottex
@node Top, Introduction, (dir), (dir)
@top Liblouis User's and Programmer's Manual
@insertcopying
@end ifnottex
@menu
* Introduction::
* Test Programs::
* How to Write Translation Tables::
* Notes on Back-Translation::
* Programming with liblouis::
* Opcode Index::
* Function Index::
* Program Index::
@detailmenu
--- The Detailed Node Listing ---
Test Programs
* lou_debug::
* lou_checktable::
* lou_allround::
* lou_translate (program)::
* lou_checkhyphens::
How to Write Translation Tables
* Hyphenation Tables::
* Character-Definition Opcodes::
* Braille Indicator Opcodes::
* Emphasis Opcodes::
* Special Symbol Opcodes::
* Special Processing Opcodes::
* Translation Opcodes::
* Character-Class Opcodes::
* Swap Opcodes::
* The Context and Multipass Opcodes::
* The correct Opcode::
* Miscellaneous Opcodes::
* Deprecated Opcodes::
Programming with liblouis
* License::
* Overview::
* Data structure of liblouis tables::
* lou_version::
* lou_translateString::
* lou_translate::
* lou_backTranslateString::
* lou_backTranslate::
* lou_hyphenate::
* lou_compileString::
* lou_dotsToChar::
* lou_charToDots::
* lou_logFile::
* lou_logPrint::
* lou_logEnd::
* lou_setDataPath::
* lou_getDataPath::
* lou_getTable::
* lou_readCharFromFile::
* lou_free::
* Python bindings::
@end detailmenu
@end menu
@node Introduction, Test Programs, Top, Top
@chapter Introduction
Liblouis is an open-source braille translator and back-translator
derived from the translation routines in the BRLTTY screen reader for
Linux. It has, however, gone far beyond these routines. It is named in
honor of Louis Braille. In Linux and Mac OSX it is a shared library,
and in Windows it is a DLL. For installation instructions see the
README file. Please report bugs and oddities to the maintainer,
@email{john.boyer@@abilitiessoft.com}
This documentation is derived from Chapter 7 of the BRLTTY manual, but
it has been extensively rewritten to cover new features.
Please read the following copyright and warranty information. Note
that this information also applies to all source code, tables and
other files in this distribution of liblouis. It applies similarly to
the sister library liblouisxml.
This file is maintained by John J. Boyer
@email{john.boyer@@abilitiessoft.com}.
Persons who wish to program with liblouis but will not be writing
translation tables may want to skip ahead to @ref{Programming with
liblouis}.
@node Test Programs, How to Write Translation Tables, Introduction, Top
@chapter Test Programs
Five test programs are provided as part of the liblouis package. They
are intended for testing liblouis and for debugging tables. None of
them is suitable for braille transcription. An application that can be
used for transcription is @command{xml2brl}, which is part of the
liblouisxml package (@pxref{Top, , Introduction, liblouisxml,
Liblouisxml User's and Programmer's Manual}). The source code of the
test programs can be studied to learn how to use the liblouis library
and they can be used to perform the following functions.
@anchor{common options}
All of these programs recognize the @option{--help} and
@option{--version} options.
@table @option
@item --help
@itemx -h
Print a usage message listing all available options, then exit
successfully.
@item --version
@itemx -v
Print the version number, then exit successfully.
@end table
@menu
* lou_debug::
* lou_checktable::
* lou_allround::
* lou_translate (program)::
* lou_checkhyphens::
@end menu
@node lou_debug, lou_checktable, Test Programs, Test Programs
@section lou_debug
@pindex lou_debug
The lou_debug tool is intended for debugging liblouis translation
tables. The command line for lou_debug is:
@example
lou_debug [OPTIONS] TABLE[,TABLE,...]
@end example
The command line options that are accepted by lou_debug are described
in @ref{common options}.
The table (or comma-separated list of tables) is compiled. If no
errors are found a brief command summary is printed, then the prompt
@samp{Command:}. You can then input one of the command letters and get
output, as described below.
Most of the commands print information in the various arrays of
@code{TranslationTableHeader}. Since these arrays are pointers to
chains of hashed items, the commands first print the hash number, then
the first item, then the next item chained to it, and so on. After
each item there is a prompt indicated by @samp{=>}. You can then press
enter (@kbd{@key{RET}}) to see the next item in the chain or the first
item in the next chain. Or you can press @kbd{h} (for next-(h)ash) to
skip to the next hash chain. You can also press @kbd{e} to exit the
command and go back to the @samp{command:} prompt.
@table @kbd
@item h
Brings up a screen of somewhat more extensive help.
@item f
Display the first forward-translation rule in the first non-empty hash
bucket. The number of the bucket is displayed at the beginning of the
chain. Each rule is identified by the word @samp{Rule:}. The fields
are displayed by phrases consisting of the name of the field, an equal
sign, and its value. The before and after fields are displayed only if
they are nonzero. Special opcodes such as the @opcoderef{correct} and
the multipass opcodes are shown with the code that instructs the
virtual machine that interprets them. If you want to see only the
rules for a particular character string you can type @kbd{p} at the
@samp{command:} prompt. This will take you to the @samp{particular:}
prompt, where you can press @kbd{f} and then type in the string. The
whole hash chain containing the string will be displayed.
@item b
Display back-translation rules. This display is very similar to that
of forward translation rules except that the dot pattern is displayed
before the character string.
@item c
Display character definitions, again within their hash chains.
@item d
Displays single-cell dot definitions. If a character-definition opcode
gives a multi-cell dot pattern, it is displayed among the
back-translation rules.
@item C
Display the character-to-dots map. This is set up by the
character-definition opcodes and can also be influenced by the
@opcoderef{display}.
@item D
Display the dot to character map, which shows which single-cell dot
patterns map to which characters.
@item z
Show the multi-cell dot patterns which have been assigned to the
characters from 0 to 255 to comply with computer braille codes such as
a 6-dot code. Note that the character-definition opcodes should use
8-dot computer braille.
@item p
Bring up a secondary (@samp{particular:}) prompt from which you can
examine particular character strings, dot patterns, etc. The commands
(given in its own command summary) are very similar to those of the
main @samp{command:} prompt, but you can type a character string or
dot pattern. They include @kbd{h}, @kbd{f}, @kbd{b}, @kbd{c}, @kbd{d},
@kbd{C}, @kbd{D}, @kbd{z} and @kbd{x} (to exit this prompt), but not
@kbd{p}, @kbd{i} and @kbd{m}.
@item i
Show braille indicators. This shows the dot patterns for various
opcodes such as the @opcoderef{capsign} and the @opcoderef{numsign}.
It also shows emphasis dot patterns, such as those for the
@c FIXME: the italword opcode should be documented
@c @opcoderef{italword},
@code{italword},
the @opcoderef{firstletterbold}, etc. If a given
opcode has not been used nothing is printed for it.
@item m
Display various miscellaneous information about the table, such as the
number of passes, whether certain opcodes have been used, and whether
there is a hyphenation table.
@item q
Exit the program.
@end table
@node lou_checktable, lou_allround, lou_debug, Test Programs
@section lou_checktable
@pindex lou_checktable
To use this program type the following:
@example
lou_checktable [OPTIONS] TABLE
@end example
Aside from the standard options (@pxref{common options}) lou_checktable
also accepts the following options:
@table @option
@item --quiet
@itemx -q
Do not write to standard error if there are no errors.
@end table
If the table contains errors, appropriate messages will be displayed.
If there are no errors the message @samp{no errors found.} will be
shown.
@node lou_allround, lou_translate (program), lou_checktable, Test Programs
@section lou_allround
@pindex lou_allround
This program tests every capability of the liblouis library. It is
completely interactive. Invoke it as follows:
@example
lou_allround [OPTIONS]
@end example
The command line options that are accepted by lou_debug are described
in @ref{common options}.
You will see a few lines telling you how to use the program. Pressing
one of the letters in parentheses and then enter will take you to a
message asking for more information or for the answer to a yes/no
question. Typing the letter @samp{r} and then @key{RET} will take you
to a screen where you can enter a line to be processed by the library
and then view the results.
@node lou_translate (program), lou_checkhyphens, lou_allround, Test Programs
@section lou_translate
@pindex lou_translate
This program translates whatever is on the standard input unit and
prints it on the standard output unit. It is intended for large-scale
testing of the accuracy of translation and back-translation. The
command line for lou_translate is:
@example
lou_translate [OPTION] TABLE
@end example
Aside from the standard options (@pxref{common options}) this program
also accepts the following options:
@table @option
@item --forward
@itemx -f
Do a forward translation.
@item --backward
@itemx -b
Do a backward translation.
@end table
To use it to translate or back-translate a file use a line like
@example
lou_translate --forward en-us-g2.ctb <liblouis.txt >testtrans
@end example
@node lou_checkhyphens, , lou_translate (program), Test Programs
@section lou_checkhyphens
@pindex lou_checkhyphens
This program checks the accuracy of hyphenation in Braille translation
for both translated and untranslated words. It is completely
interactive. Invoke it as follows:
@example
lou_checkhyphens [OPTIONS]
@end example
The command line options that are accepted by lou_checkhyphens are
described in @ref{common options}.
You will see a few lines telling you how to use the program.
@node How to Write Translation Tables, Notes on Back-Translation, Test Programs, Top
@chapter How to Write Translation Tables
Many translation (contraction) tables have already been made up. They
are included in this distribution in the tables directory and should be
studied as part of the documentation. The most helpful (and normative)
are listed in the following table:
@table @file
@item chardefs.cti
Character definitions for U.S. tables
@item compress.ctb
Remove excessive whitespace
@item en-us-g1.ctb
Uncontracted American English
@item en-us-g2.ctb
Contracted or Grade 2 American English
@item en-us-brf.dis
Make liblouis output conform to BRF standard
@item en-us-comp8.ctb
8-dot computer braille for use in coding examples
@item en-us-comp6.ctb
6-dot computer braille
@item nemeth.ctb
Nemeth Code translation for use with liblouisxml
@item nemeth_edit.ctb
Fixes errors at the boundaries of math and text
@end table
The names used for files containing translation tables are completely
arbitrary. They are not interpreted in any way by the translator.
Contraction tables may be 8-bit ASCII files, 16-bit big-endian Unicode
files or 16-bit little-endian Unicode files. Blank lines are ignored.
Any leading and trailing whitespace (any number of blanks and/or tabs)
is ignored. Lines which begin with a number sign or hatch mark
(@samp{#}) are ignored, i.e. they are comments. If the number sign is
not the first non-blank character in the line, it is treated as an
ordinary character. If the first non-blank character is less-than
(@samp{<}) the line is also treated as a comment. This makes it possible
to mark up tables as xhtml documents. Lines which are not blank or
comments define table entries. The general format of a table entry is:
@example
opcode operands comments
@end example
Table entries may not be split between lines. The opcode is a mnemonic
that specifies what the entry does. The operands may be character
sequences, braille dot patterns or occasionally something else. They
are described for each opcode, please @pxref{Opcode Index}. With some
exceptions, opcodes expect a certain number of operands. Any text on
the line after the last operand is ignored, and may be a comment. A
few opcodes accept a variable number of operands. In this case a
number sign begins a comment unless it is preceded by a backslash
(@samp{\}).
Here are some examples of table entries.
@example
# This is a comment.
always world 456-2456 A word and the dot pattern of its contraction
@end example
Most opcodes have both a "characters" operand and a "dots" operand,
though some have only one and a few have other types.
The characters operand consists of any combination of characters and
escape sequences proceeded and followed by whitespace. Escape
sequences are used to represent difficult characters. They begin with
a backslash (`\`). They are:
@table @kbd
@item \
backslash
@item \f
form feed
@item \n
new line
@item \r
carriage return
@item \s
blank (space)
@item \t
horizontal tab
@item \v
vertical tab
@item \e
"escape" character (hex 1b, dec 27)
@item \xhhhh
4-digit hexadecimal value of a character
@end table
If liblouis has been compiled for 32-bit Unicode the following are
also recognized.
@table @kbd
@item \yhhhhh
5-digit (20 bit) character
@item \zhhhhhhhh
Full 32-bit value.
@end table
The dots operand is a braille dot pattern. The real braille dots, 1
through 8, must be specified with their standard numbers. liblouis
recognizes "virtual dots," which are used for special purposes, such
as distinguishing accent marks. There are seven virtual dots. They are
specified by the number 9 and the letters @samp{a} through @samp{f}.
For a multi-cell dot pattern, the cell specifications must be
separated from one another by a dash (@samp{-}). For example, the
contraction for the English word @samp{lord} (the letter @samp{l}
preceded by dot 5) would be specified as 5-123. A space may be
specified with the special dot number 0.
An opcode which is helpful in writing translation tables is
@code{include}. Its format is:
@example
include filename
@end example
It reads the file indicated by @code{filename} and incorporates or
includes its entries into the table. Included files can include other
files, which can include other files, etc. For an example, see what
files are included by the entry @code{include en-us-g1.ctb} in the table
@file{en-us-g2.ctb}. If the included file is not in the same directory
as the main table, use a full path name for filename. Tables can also be
specified in a table list, in which the table names are separated by
commas and given as a single table name in calls to the translation
functions.
The order of the various types of opcodes or table entries is
important. Character-definition opcodes should come first. However, if
the optional @opcoderef{display} is used it should precede
character-definition opcodes. Braille-indicator opcodes should come
next. Translation opcodes should follow. The @opcoderef{context} is a
translation opcode, even though it is considered along with the
multipass opcodes. These latter should follow the translation opcodes.
The @opcoderef{correct} can be used anywhere after the
character-definition opcodes, but it is probably a good idea to group
all @code{correct} opcodes together. The @opcoderef{include} can be
used anywhere, but the order of entries in the combined table must
conform to the order given above. Within each type of opcode, the
order of entries is generally unimportant. Thus the translation
entries can be grouped alphabetically or in any other order that is
convenient. Hyphenation tables may be specified either with an
@code{include} opcode or as part of a table list. They should come after
everything else. Character-definition opcodes are necessary for
hyphenation tables to work.
@menu
* Hyphenation Tables::
* Character-Definition Opcodes::
* Braille Indicator Opcodes::
* Emphasis Opcodes::
* Special Symbol Opcodes::
* Special Processing Opcodes::
* Translation Opcodes::
* Character-Class Opcodes::
* Swap Opcodes::
* The Context and Multipass Opcodes::
* The correct Opcode::
* Miscellaneous Opcodes::
* Deprecated Opcodes::
@end menu
@node Hyphenation Tables, Character-Definition Opcodes, How to Write Translation Tables, How to Write Translation Tables
@section Hyphenation Tables
Hyphenation tables are necessary to make opcodes such as the
@opcoderef{nocross} function properly. There are no opcodes for
hyphenation table entries because these tables have a special format.
Therefore, they cannot be specified as part of an ordinary table.
Rather, they must be included using the @opcoderef{include} or as part
of a table list. The liblouis hyphenation algorithm was adopted from the
one used by OpenOffice. Note that Hyphenation tables must follow
character definitions and should preferably be the last. For an example
of a hyphenation table, see @file{hyph_en_US.dic}.
@node Character-Definition Opcodes, Braille Indicator Opcodes, Hyphenation Tables, How to Write Translation Tables
@section Character-Definition Opcodes
These opcodes are needed to define attributes such as digit,
punctuation, letter, etc. for all characters and their dot patterns.
liblouis has no built-in character definitions, but such definitions
are essential to the operation of the @opcoderef{context}, the
@opcoderef{correct}, the multipass opcodes and the back-translator. If
the dot pattern is a single cell, it is used to define the mapping
between dot patterns and characters, unless a @opcoderef{display} for
that character-dot-pattern pair has been used previously. If only a
single-cell dot pattern has been given for a character, that dot
pattern is defined with the character's own attributes. If more than
one cell is given and some of them have not previously been defined as
single cells, the undefined cells are entered into the dots table with
the space attribute. This is done for backward compatibility with
old tables, but it may cause problems with the above opcodes or
back-translation. For this reason, every single-cell dot pattern
should be defined before it is used in a multi-cell character
representation. The best way to do this is to use the 8-dot computer
braille representation for the particular braille code. If a character
or dot pattern used in any rule, except those with the @code{display}
opcode, the @opcoderef{repeated} or the @opcoderef{replace}, is not
defined by one of the character-definition opcodes, liblouis will give
an error message and refuse to continue until the problem is fixed. If
the translator or back-translator encounters an undefined character in
its input it produces a succinct error indication in its output, and
the character is treated as a space.
@table @code
@opcode{space, character dots}
Defines a character as a space and also defines the dot pattern as
such. for example:
@example
space \s 0 \s is the escape sequence for blank; 0 means no dots.
@end example
@opcode{punctuation, character dots}
Associates a punctuation mark in the particular language with a
braille representation and defines the character and dot pattern as
punctuation. For example:
@example
punctuation . 46 dot pattern for period in NAB computer braille
@end example
@opcode{digit, character dots}
Associates a digit with a dot pattern and defines the character as a
digit. For example:
@example
digit 0 356 NAB computer braille
@end example
@opcode{uplow, characters dots [@comma{}dots]}
The characters operand must be a pair of letters, of which the first
is uppercase and the second lowercase. The first dots suboperand
indicates the dot pattern for the upper-case letter. It may have more
than one cell. The second dots suboperand must be separated from the
first by a comma and is optional, as indicated by the square brackets.
If present, it indicates the dot pattern for the lower-case letter. It
may also have more than one cell. If the second dots suboperand is not
present the first is used for the lower-case letter as well as the
upper-case letter. This opcode is needed because not all languages
follow a consistent pattern in assigning Unicode codes to upper and
lower case letters. It should be used even for languages that do. The
distinction is important in the forward translator. for example:
@example
uplow Aa 17,1
@end example
@opcode{grouping, name characters dots @comma{}dots}
This opcode is used to indicate pairs of grouping symbols used in
processing mathematical expressions. These symbols are usually
generated by the MathML interpreter in liblouisxml. They are used in
multipass opcodes. The name operand must contain only letters, but
they may be upper- or lower-case. The characters operand must contain
exactly two Unicode characters. The dots operand must contain exactly
two braille cells, separated by a comma. Note that grouping dot
patterns also need to be declared with the @opcoderef{exactdots}. The
characters may need to be declared with the @opcoderef{math}.
@example
grouping mrow \x0001\x0002 1e,2e
grouping mfrac \x0003\x0004 3e,4e
@end example
@opcode{letter, character dots}
Associates a letter in the language with a braille representation and
defines the character as a letter. This is intended for letters which
are neither uppercase nor lowercase.
@opcode{lowercase, character dots}
Associates a character with a dot pattern and defines the character as
a lowercase letter. Both the character and the dot pattern have the
attributes lowercase and letter.
@opcode{uppercase, character dots}
Associates a character with a dot pattern and defines the character as
an uppercase letter. Both the character and the dot pattern have the
attributes uppercase and letter. @code{lowercase} and @code{uppercase}
should be used when a letter has only one case. Otherwise use the
@opcoderef{uplow}.
@opcode{litdigit, digit dots}
Associates a digit with the dot pattern which should be used to
represent it in literary texts. For example:
@example
litdigit 0 245
litdigit 1 1
@end example
@opcode{sign, character dots}
Associates a character with a dot pattern and defines both as a sign.
This opcode should be used for things like at sign (@samp{@@}),
percent (@samp{%}), dollar sign (@samp{$}), etc. Do not use it to
define ordinary punctuation such as period and comma. For example:
@example
sign % 4-25-1234 literary percent sign
@end example
@opcode{math, character dots}
Associates a character and a dot pattern and defines them as a
mathematical symbol. It should be used for less than (@samp{<}),
greater than(@samp{>}), equals(@samp{=}), plus(@samp{+}), etc. For
example:
@example
math + 346 plus
@end example
@end table
@node Braille Indicator Opcodes, Emphasis Opcodes, Character-Definition Opcodes, How to Write Translation Tables
@section Braille Indicator Opcodes
Braille indicators are dot patterns which are inserted into the
braille text to indicate such things as capitalization, italic type,
computer braille, etc. The opcodes which define them are followed only
by a dot pattern, which may be one or more cells.
@table @code
@opcode{capsign, dots}
The dot pattern which indicates capitalization of a single letter. In
English, this is dot 6. For example:
@example
capsign 6
@end example
@opcode{begcaps, dots}
The dot pattern which begins a block of capital letters. For example:
@example
begcaps 6-6
@end example
@opcode{endcaps, dots}
The dot pattern which ends a block of capital letters within a word.
For example:
@example
endcaps 6-3
@end example
@opcode{letsign, dots}
This indicator is needed in Grade 2 to show that a single letter is
not a contraction. It is also used when an abbreviation happens to be
a sequence of letters that is the same as a contraction. For example:
@example
letsign 56
@end example
@opcode{noletsign, letters}
The letters in the operand will not be proceeded by a letter sign.
More than one @code{noletsign} opcode can be used. This is equivalent
to a single entry containing all the letters. In addition, if a single
letter, such as @samp{a} in English, is defined as a @code{word}
(@pxref{word opcode,word,@code{word}}) or @code{largesign}
(@pxref{largesign opcode,largesign,@code{largesign}}), it will be
treated as though it had also been specified in a @code{noletsign}
entry.
@opcode{noletsignbefore, characters}
If any of the characters proceeds a single letter without a space a
letter sign is not used. By default the characters apostrophe
(@samp{'}) and period (@samp{.}) have this property. Use of a
@code{noletsignbefore} entry cancels the defaults. If more than one
@code{noletsignbefore} entry is used, the characters in all entries
are combined.
@opcode{noletsignafter, characters}
If any of the characters follows a single letter without a space a
letter sign is not used. By default the characters apostrophe
(@samp{'}) and period (@samp{.}) have this property. Use of a
@code{noletsignafter} entry cancels the defaults. If more than one
@code{noletsignafter} entry is used the characters in all entries are
combined.
@opcode{numsign, dots}
The translator inserts this indicator before numbers made up of digits
defined with the @opcoderef{litdigit} to show that they are a number
and not letters or some other symbols. For example:
@example
numsign 3456
@end example
@end table
@node Emphasis Opcodes, Special Symbol Opcodes, Braille Indicator Opcodes, How to Write Translation Tables
@section Emphasis Opcodes
These also define braille indicators, but they require more
explanation. There are four sets, for italic, bold, underline and
computer braille. In each of the first three sets there are seven
opcodes, for use before the first word of a phrase, for use before the
last word, for use after the last word, for use before the first
letter (or character) if emphasis starts in the middle of a word, for
use after the last letter (or character) if emphasis ends in the
middle of a word, before a single letter (or character), and to
specify the length of a phrase to which the first-word and
last-word-before indicators apply. This rather elaborate set of
emphasis opcodes was devised to try to meet all contingencies. It is
unlikely that a translation table will contain all of them. The
translator checks for their presence. If they are present, it first
looks to see if the single-letter indicator should be used. Then it
looks at the word (or phrase) indicators and finally at the
multi-letter indicators.
The translator will apply up to two emphasis indicators to each phrase
or string of characters, depending on what the @code{typeform}
parameter in its calling sequence indicates (@pxref{Programming with
liblouis}).
For computer braille there are only two braille indicators, for the
beginning and end of a sequence of characters to be rendered in
computer braille. Such a sequence may also have other emphasis. The
computer braille indicators are applied not only when computer braille
is indicated in the @code{typeform} parameter, but also when a
sequence of characters is determined to be computer braille because it
contains a subsequence defined by the @opcoderef{compbrl} or the
@opcoderef{literal}.
Here are the various emphasis opcodes.
@table @code
@opcode{firstwordital, dots}
This is the braille indicator to be placed before the first word of an
italicized phrase that is longer than the value given in the
@opcoderef{lenitalphrase}. For example:
@example
firstwordital 46-46 English indicator
@end example
@opcode{lastworditalbefore, dots}
This is the braille indicator to be placed before the last word of an
italicized phrase. In addition, if @code{firstwordital} is not used,
this braille indicator is doubled and placed before the first word. Do
not use @code{lastworditalbefore} and @code{lastworditalafter} in the
same table. For example:
@example
lastworditalbefore 4-6
@end example
@opcode{lastworditalafter, dots}
This is the braille indicator to be placed after the last word of an
italicized phrase. Do not use @code{lastworditalbefore} and
@code{lastworditalafter} in the same table. See also the
@opcoderef{lenitalphrase} for more information.
@opcode{firstletterital, dots}
This is the braille indicator to be placed before the first letter (or
character) if italicization begins in the middle of a word.
@opcode{lastletterital, dots}
This is the braille indicator to be placed after the last letter (or
character) when italicization ends in the middle of a word.
@opcode{singleletterital, dots}
This braille indicator is used if only a single letter (or character)
is italicized.
@opcode{lenitalphrase, number}
If @code{lastworditalbefore} is used, an italicized phrase is checked
to see how many words it contains. If this number is less than or
equal to the number given in the @code{lenitalphrase} opcode, the
@code{lastworditalbefore} sign is placed in front of each word. If it
is greater, the @code{firstwordital} indicator is placed before the
first word and the @code{lastworditalbefore} indicator is placed after
the last word. Note that if the @code{firstwordital} opcode is not
used its indicator is made up by doubling the dot pattern given in the
@code{lastworditalbefore} entry. For example:
@example
lenitalphrase 4
@end example
@opcode{firstwordbold, dots}
This is the braille indicator to be placed before the first word of a
bold phrase. For example:
@example
firstwordbold 456-456
@end example
@opcode{lastwordboldbefore, dots}
This is the braille indicator to be placed before the last word of a
bold phrase. In addition, if @code{firstwordbold} is not used, this
braille indicator is doubled and placed before the first word. Do not
use @code{lastwordboldbefore} and @code{lastwordboldafter} in the same
table. For example:
@example
lastwordboldbefore 456
@end example
@opcode{lastwordboldafter, dots}
This is the braille indicator to be placed after the last word of a
bold phrase. Do not use @code{lastwordboldbefore} and
@code{lastwordboldafter} in the same table.
@opcode{firstletterbold, dots}
This is the braille indicator to be placed before the first letter (or
character) if bold emphasis begins in the middle of a word.
@opcode{lastletterbold, dots}
This is the braille indicator to be placed after the last letter (or
character) when bold emphasis ends in the middle of a word.
@opcode{singleletterbold, dots}
This braille indicator is used if only a single letter (or character)
is in boldface.
@opcode{lenboldphrase, number}
If @code{lastwordboldbefore} is used, a bold phrase is checked to see
how many words it contains. If this number is less than or equal to
the number given in the @code{lenboldphrase} opcode, the
@code{lastwordboldbefore} sign is placed in front of each word. If it
is greater, the @code{firstwordbold} indicator is placed before the
first word and the @code{lastwordboldbefore} indicator is placed after
the last word. Note that if the @code{firstwordbold} opcode is not
used its indicator is made up by doubling the dot pattern given in the
@code{lastwordboldbefore} entry.
@opcode{firstwordunder, dots}
This is the braille indicator to be placed before the first word of an
underlined phrase.
@opcode{lastwordunderbefore, dots}
This is the braille indicator to be placed before the last word of an
underlined phrase. In addition, if @code{firstwordunder} is not used,
this braille indicator is doubled and placed before the first word.
@opcode{lastwordunderafter, dots}
This is the braille indicator to be placed after the last word of an
underlined phrase.
@opcode{firstletterunder, dots}
This is the braille indicator to be placed before the first letter (or
character) if underline emphasis begins in the middle of a word.
@opcode{lastletterunder, dots}
This is the braille indicator to be placed after the last letter (or
character) when underline emphasis ends in the middle of a word.
@opcode{singleletterunder, dots}
This braille indicator is used if only a single letter (or character)
is underlined.
@opcode{lenunderphrase, number}
If @code{lastwordunderbefore} is used, an underlined phrase is checked
to see how many words it contains. If this number is less than or
equal to the number given in the @code{lenunderphrase} opcode, the
@code{lastwordunderbefore} sign is placed in front of each word. If it
is greater, the @code{firstwordunder} indicator is placed before the
first word and the @code{lastwordunderbefore} indicator is placed
after the last word. Note that if the @code{firstwordunder} opcode is
not used its indicator is made up by doubling the dot pattern given in
the @code{lastwordunderbefore} entry.
@opcode{begcomp, dots}
This braille indicator is placed before a sequence of characters
translated in computer braille, whether this sequence is indicated in
the @code{typeform} parameter (@pxref{Programming with liblouis}) or
inferred because it contains a subsequence specified by the
@opcoderef{compbrl}.
@opcode{endcomp, dots}
This braille indicator is placed after a sequence of characters
translated in computer braille, whether this sequence is indicated in
the @code{typeform} parameter (@pxref{Programming with liblouis}) or
inferred because it contains a subsequence specified by the
@opcoderef{compbrl}.
@end table
@node Special Symbol Opcodes, Special Processing Opcodes, Emphasis Opcodes, How to Write Translation Tables
@section Special Symbol Opcodes
These opcodes define certain symbols, such as the decimal point, which
require special treatment.
@table @code
@opcode{decpoint, character dots}
This opcode defines the decimal point. The character operand must have
only one character. For example, in @file{en-us-g1.ctb} we have:
@example
decpoint . 46
@end example
@opcode{hyphen, character dots}
This opcode defines the hyphen, that is, the character used in
compound words such as have-nots. The back-translator uses it to
determine the end of individual words.
@end table
@node Special Processing Opcodes, Translation Opcodes, Special Symbol Opcodes, How to Write Translation Tables
@section Special Processing Opcodes
These opcodes cause special processing to be carried out.
@table @code
@opcode{capsnocont,}
This opcode has no operands. If it is specified, words or parts of
words in all caps are not contracted. This is needed for languages
such as Norwegian.
@end table
@node Translation Opcodes, Character-Class Opcodes, Special Processing Opcodes, How to Write Translation Tables
@section Translation Opcodes
These opcodes define the braille representations for character
sequences. Each of them defines an entry within the contraction table.
These entries may be defined in any order except, as noted below, when
they define alternate representations for the same character sequence.
Each of these opcodes specifies a condition under which the
translation is legal, and each also has a characters operand and a
dots operand. The text being translated is processed strictly from
left to right, character by character, with the most eligible entry
for each position being used. If there is more than one eligible entry
for a given position in the text, then the one with the longest
character string is used. If there is more than one eligible entry for
the same character string, then the one defined first is is tested for
legality first. (This is the only case in which the order of the
entries makes a difference.)
The characters operand is a sequence or string of characters preceded
and followed by whitespace. Each character can be entered in the
normal way, or it can be defined as a four-digit hexadecimal number
preceded by @samp{\x}.
The dots operand defines the braille representation for the characters
operand. It may also be specified as an equals sign (@samp{=}). This
means that the the default representation for each character
(@pxref{Character-Definition Opcodes}) within the sequence is to be
used.
In what follows the word @samp{characters} means a sequence of one or
more consecutive letters between spaces and/or punctuation marks.
@table @code
@opcode{noback, opcode ...}
This is an opcode prefix, that is to say, it modifies the operation of
the opcode that follows it on the same line. noback specifies that no
back-translation is to be done using this line.
@example
noback always ;\s; 0
@end example
@opcode{nofor, opcode ...}
This is an opcode prefix which modifies the operation of the opcode
following it on the same line. nofor specifies that forward translation
is not to use the information on this line.
@opcode{compbrl, characters}
If the characters are found within a block of text surrounded by
whitespace the entire block is translated according to the default
braille representations defined by the @ref{Character-Definition
Opcodes}, if 8-dot computer braille is enabled or according to the dot
patterns given in the @opcoderef{comp6}, if 6-dot computer braille is
enabled. For example:
@example
compbrl www translate URLs in computer braille
@end example
@opcode{comp6, character dots}
This opcode specifies the translation of characters in 6-dot computer
braille. It is necessary because the translation of a single character
may require more than one cell. The first operand must be a character
with a decimal representation from 0 to 255 inclusive. The second
operand may specify as many cells as necessary. The opcode is somewhat
of a misnomer, since any dots, not just dots 1 through 6, can be
specified. This even includes virtual dots.
@opcode{nocont, characters}
Like @code{compbrl}, except that the string is uncontracted.
@opcoderef{prepunc} and @opcoderef{postpunc} rules are applied,
however. This is useful for specifying that foreign words should not
be contracted in an entire document.
@opcode{replace, characters @{characters@}}
Replace the first set of characters, no matter where they appear, with
the second. Note that the second operand is @emph{NOT} a dot pattern.
It is also optional. If it is omitted the character(s) in the first
operand will be discarded. This is useful for ignoring characters. It
is possible that the "ignored" characters may still affect the
translation indirectly. Therefore, it is preferable to use
@opcoderef{correct}.
@opcode{always, characters dots}
Replace the characters with the dot pattern no matter where they
appear. Do @emph{NOT} use an entry such as @code{always a 1}. Use the
@code{uplow}, @code{letter}, etc. character definition opcodes
instead. For example:
@example
always world 456-2456 unconditional translation
@end example
@opcode{repeated, characters dots}
Replace the characters with the dot pattern no matter where they
appear. Ignore any consecutive repetitions of the same character
sequence. This is useful for shortening long strings of spaces or
hyphens or periods. For example:
@example
repeated --- 36-36-36 shorten separator lines made with hyphens
@end example
@opcode{repword, characters dots}
When characters are encountered check to see if the word before this
string matches the word after it. If so, replace characters with dots
and eliminate the second word and any word following another occurrence
of characters that is the same. This opcode is used in Malaysian
braille. In this case the rule is:
@example
repword - 123456
@end example
@opcode{largesign, characters dots}
Replace the characters with the dot pattern no matter where they
appear. In addition, if two words defined as large signs follow each
other, remove the space between them. For example, in
@file{en-us-g2.ctb} the words @samp{and} and @samp{the} are both
defined as large signs. Thus, in the phrase @samp{the cat and the dog}
the space would be deleted between @samp{and} and @samp{the}, with the
result @samp{the cat andthe dog}. Of course, @samp{and} and @samp{the}
would be properly contracted. The term @code{largesign} is a bit of
braille jargon that pleases braille experts.
@opcode{word, characters dots}
Replace the characters with the dot pattern if they are a word, that
is, are surrounded by whitespace and/or punctuation.
@opcode{syllable, characters dots}
As its name indicates, this opcode defines a "syllable" which must be
represented by exactly the dot patterns given. Contractions may not
cross the boundaries of this "syllable" either from left or right. The
character string defined by this opcode need not be a lexical
syllable, though it usually will be. The equal sign in the following
example means that the the default representation for each character
within the sequence is to be used (@pxref{Translation Opcodes}):
@example
syllable horse = sawhorse, horseradish
@end example
@opcode{nocross, characters dots}
Replace the characters with the dot pattern if the characters are all
in one syllable (do not cross a syllable boundary). For this opcode to
work, a hyphenation table must be included. If this is not done,
@code{nocross} behaves like the @opcoderef{always}. For example, if
the English Grade 2 table is being used and the appropriate
hyphenation table has been included @code{nocross sh 146} will cause
the @samp{sh} in @samp{monkshood} not to be contracted.
@opcode{joinword, characters dots}
Replace the characters with the dot pattern if they are a word which
is followed by whitespace and a letter. In addition remove the
whitespace. For example, @file{en-us-g2.ctb} has @code{joinword to
235}. This means that if the word @samp{to} is followed by another
word the contraction is to be used and the space is to be omitted. If
these conditions are not met, the word is translated according to any
other opcodes that may apply to it.
@opcode{lowword, characters dots}
Replace the characters with the dot pattern if they are a word
preceded and followed by whitespace. No punctuation either before or
after the word is allowed. The term @code{lowword} derives from the
fact that in English these contractions are written in the lower part
of the cell. For example:
@example
lowword were 2356
@end example
@opcode{contraction, characters}
If you look at @file{en-us-g2.ctb} you will see that some words are
actually contracted into some of their own letters. A famous example
among braille transcribers is @samp{also}, which is contracted as
@samp{al}. But this is also the name of a person. To take another
example, @samp{altogether} is contracted as @samp{alt}, but this is
the abbreviation for the alternate key on a computer keyboard.
Similarly @samp{could} is contracted into @samp{cd}, but this is the
abbreviation for compact disk. To prevent confusion in such cases, the
letter sign (see @opcoderef{letsign}) is placed before such letter
combinations when they actually are abbreviations, not contractions.
The @code{contraction} opcode tells the translator to do this.
@opcode{sufword, characters dots}
Replace the characters with the dot pattern if they are either a word
or at the beginning of a word.
@opcode{prfword, characters dots}
Replace the characters with the dot pattern if they are either a word
or at the end of a word.
@opcode{begword, characters dots}
Replace the characters with the dot pattern if they are at the
beginning of a word.
@opcode{begmidword, characters dots}
Replace the characters with the dot pattern if they are either at the
beginning or in the middle of a word.
@opcode{midword, characters dots}
Replace the characters with the dot pattern if they are in the middle
of a word.
@opcode{midendword, characters dots}
Replace the characters with the dot pattern if they are either in the
middle or at the end of a word.
@opcode{endword, characters dots}
Replace the characters with the dot pattern if they are at the end of
a word.
@opcode{partword, characters dots}
Replace the characters with the dot pattern if the characters are
anywhere in a word, that is, if they are proceeded or followed by a
letter.
@opcode{exactdots, @@dots}
Note that the operand must begin with an at sign (@samp{@@}). The dot
pattern following it is evaluated for validity. If it is valid,
whenever an at sign followed by this dot pattern appears in the source
document it is replaced by the characters corresponding to the dot
pattern in the output. This opcode is intended for use in liblouisxml
semantic-action files to specify exact dot patterns, as in
mathematical codes. For example:
@example
exactdots @@4-46-12356
@end example
will produce the characters with these dot patterns in the output.
@opcode{prepunc, characters dots}
Replace the characters with the dot pattern if they are part of
punctuation at the beginning of a word.
@opcode{postpunc, characters dots}
Replace the characters with the dot pattern if they are part of
punctuation at the end of a word.
@opcode{begnum, characters dots}
Replace the characters with the dot pattern if they are at the
beginning of a number, that is, before all its digits. For example, in
@file{en-us-g1.ctb} we have @code{begnum # 4}.
@opcode{midnum, characters dots}
Replace the characters with the dot pattern if they are in the middle
of a number. For example, @file{en-us-g1.ctb} has @code{midnum . 46}.
This is because the decimal point has a different dot pattern than the
period.
@opcode{endnum, characters dots}
Replace the characters with the dot pattern if they are at the end of
a number. For example @file{en-us-g1.ctb} has @code{endnum th 1456}.
This handles things like @samp{4th}. A letter sign is @emph{NOT}
inserted.
@opcode{joinnum, characters dots}
Replace the characters with the dot pattern. In addition, if
whitespace and a number follows omit the whitespace. This opcode can
be used to join currency symbols to numbers for example:
@example
joinnum \x20AC 15 (EURO SIGN)
joinnum \x0024 145 (DOLLAR SIGN)
joinnum \x00A3 1234 (POUND SIGN)
joinnum \x00A5 13456 (YEN SIGN)
@end example
@end table
@node Character-Class Opcodes, Swap Opcodes, Translation Opcodes, How to Write Translation Tables
@section Character-Class Opcodes
These opcodes define and use character classes. A character class
associates a set of characters with a name. The name then refers to
any character within the class. A character may belong to more than
one class.
The basic character classes correspond to the character definition
opcodes, with the exception of the @opcoderef{uplow}, which defines
characters belonging to the two classes @code{uppercase} and
@code{lowercase}. These classes are:
@table @code
@item space
Whitespace characters such as blank and tab
@item digit
Numeric characters
@item letter
Both uppercase and lowercase alphabetic characters
@item lowercase
Lowercase alphabetic characters
@item uppercase
Uppercase alphabetic characters
@item punctuation
Punctuation marks
@item sign
Signs such as percent (@samp{%})
@item math
Mathematical symbols
@item litdigit
Literary digit
@item undefined
Not properly defined
@end table
The opcodes which define and use character classes are shown below.
For examples see @file{fr-abrege.ctb}.
@table @code
@opcode{class, name characters}
Define a new character class. The characters operand must be specified
as a string. A character class may not be used until it has been
defined.
@opcode{after, class opcode ...}
The specified opcode is further constrained in that the matched
character sequence must be immediately preceded by a character
belonging to the specified class. If this opcode is used more than
once on the same line then the union of the characters in all the
classes is used.
@opcode{before, class opcode ...}
The specified opcode is further constrained in that the matched
character sequence must be immediately followed by a character
belonging to the specified class. If this opcode is used more than
once on the same line then the union of the characters in all the
classes is used.
@end table
@node Swap Opcodes, The Context and Multipass Opcodes, Character-Class Opcodes, How to Write Translation Tables
@section Swap Opcodes
The swap opcodes are needed to tell the @opcoderef{context}, the
@opcoderef{correct} and multipass opcodes which dot patterns to swap
for which characters. There are three, @code{swapcd}, @code{swapdd}
and @code{swapcc}. The first swaps dot patterns for characters. The
second swaps dot patterns for dot patterns and the third swaps
characters for characters. The first is used in the @code{context}
opcode and the second is used in the multipass opcodes. Dot patterns
are separated by commas and may contain more than one cell.
@table @code
@opcode{swapcd, name characters dots@comma{} dots@comma{} dots@comma{} ...}
See above paragraph for explanation. For example:
@example
swapcd dropped 0123456789 356,2,23,...
@end example
@opcode{swapdd, name dots@comma{} dots@comma{} dots ... dotpattern1@comma{} dotpattern2@comma{} dotpattern3@comma{} ...}
The @code{swapdd} opcode defines substitutions for the multipass
opcodes. In the second operand the dot patterns must be single cells,
but in the third operand multi-cell dot patterns are allowed. This is
because multi-cell patterns in the second operand would lead to
ambiguities.
@opcode{swapcc, name characters characters}
The @code{swapcc} opcode swaps characters in its second operand for
characters in the corresponding places in its third operand. It is
intended for use with @code{correct} opcodes and can solve problems
such as formatting phone numbers.
@end table
@node The Context and Multipass Opcodes, The correct Opcode, Swap Opcodes, How to Write Translation Tables
@section The Context and Multipass Opcodes
The @code{context} and multipass opcodes (@code{pass2}, @code{pass3}
and @code{pass4}) provide translation capabilities beyond those of the
basic translation opcodes (@pxref{Translation Opcodes}) discussed
previously. The multipass opcodes cause additional passes to be made
over the string to be translated. The number after the word
@code{pass} indicates in which pass the entry is to be applied. If no
multipass opcodes are given, only the first translation pass is made.
The @code{context} opcode is basically a multipass opcode for the
first pass. It differs slightly from the multipass opcodes per se. The
format of all these opcodes is @code{opcode test action}. The specific
opcodes are invoked as follows:
@table @code
@anchor{context opcode}
@opcodeindex context
@opcodeindex pass2
@opcodeindex pass3
@opcodeindex pass4
@item context test action
@itemx pass2 test action
@itemx pass3 test action
@itemx pass4 test action
@end table
The @code{test} and @code{action} operands have suboperands. Each
suboperand begins with a non-alphanumeric character and ends when
another non-alphanumeric character is encountered. The suboperands and
their initial characters are as follows.
@table @kbd
@item " (double quote)
a string of characters. This string must be terminated by another
double quote. It may contain any characters. If a double quote is
needed within the string, it must be preceded by a backslash
(@samp{\}). If a space is needed, it must be represented by the escape
sequence \s. This suboperand is valid only in the test part of the
@code{context} opcode.
@item @@ (at sign)
a sequence of dot patterns. Cells are separated by hyphens as usual.
This suboperand is not valid in the test part of the context and
correct opcodes.
@item ` (accent mark)
If this is the beginning of the string being translated this suboperand
is true. It is valid only in the test part and must be the first thing
in this operand.
@item ~ (tilde)
If this is the end of the string being translated this suboperand is
true. It is valid only in the test part and must be the last thing in
this operand.
@item $ (dollar sign)
a string of attributes, such as @samp{d} for digit, @samp{l} for
letter, etc. More than one attribute can be given. If you wish to
check characters with any attribute, use the letter @samp{a}. Input
characters are checked to see if they have at least one of the
attributes. The attribute string can be followed by numbers specifying
how many characters are to be checked. If no numbers are given, 1 is
assumed. If two numbers separated by a hyphen are given, the input is
checked to make sure that at least the first number of characters with
the attributes are present, but no more than the second number. If
only one number is present, then exactly that many characters must
have the attributes. A period instead of the numbers indicates an
indefinite number of characters. This suboperand is valid in all test
parts but not in action parts. For the characters which can be used in
attribute strings, see the following table.
@item ! (exclamation point)
reverses the logical meaning of the suboperand which follows. For
example, !$d is true only if the character is @emph{NOT} a digit. This
suboperand is valid in test parts only.
@item % (percent sign)
the name of a class defined by the @opcoderef{class} or the name of a
swap set defined by the swap opcodes (@pxref{Swap Opcodes}). Names may
contain only letters. The letters may be upper or
lower-case. The case matters. Class names may be used in test parts
only. Swap names are valid everywhere.
@item @{ (left brace)
Name: the name of a grouping pair. The left brace indicates that the
first (or left) member of the pair is to be used in matching. If this is
between replacement brackets it must be the only item. This is also
valid in the action part.
@item @} (right brace)
Name: the name of a grouping pair. The right brace indicates that the
second (or right) member is to be used in matching. See the remarks on
the left brace immediately above.
@item / (slash)
Search the input for the expression following the slash and return true
if found. This can be used to set a variable.
@item _ (underscore)
Move backward. If a number follows, move backward that number of
characters. The program never moves backward beyond the beginning of
the input string. This suboperand is valid only in test parts.
@item [ (left bracket)
start replacement here. This suboperand must always be paired with a
right bracket and is valid only in test parts. Multiple pairs of
square brackets in a single expression are not allowed.
@item ] (right bracket)
end replacement here. This suboperand must always be paired with a
left bracket and is valid only in test parts.
@item # (number sign or crosshatch)
test or set a variable. Variables are referred to by numbers 1 to 50,
for example, @code{#1}, @code{#2}, @code{#25}. Variables may be set by
one @code{context} or multipass opcode and tested by another. Thus, an
operation that occurs at one place in a translation can tell an
operation that occurs later about itself. This feature will be used in
math translation, and it may also help to alleviate the need for new
opcodes. This suboperand is valid everywhere.
Variables are set in the action part. To set a variable use an
expression like @code{#1=1}, @code{#2=5}, etc. Variables are also
incremented and decremented in the action part with expressions like
@code{#1+}, @code{#3-}, etc. These operators increment or decrement
the variable by 1.
Variables are tested in the test part with expressions like
@code{#1=2}, @code{#3<4}, @code{#5>6}, etc.
@item * (asterisk)
Copy the characters or dot patterns in the input within the
replacement brackets into the output and discard anything else that
may match. This feature is used, for example, for handling numeric
subscripts in Nemeth. This suboperand is valid only in action parts.
@item ? (question mark)
Valid only in the action part. The characters to be replaced are
simply ignored. That is, they are replaced with nothing. If either
member of a grouping pair is in the replace brackets the other member at
the same level is also removed.
@end table
The characters which can be used in attribute strings are as follows:
@table @kbd
@item a
any attribute
@item d
digit
@item D
literary digit
@item l
letter
@item m
math
@item p
punctuation
@item S
sign
@item s
space
@item U
uppercase
@item u
lowercase
@item w
first user-defined class
@item x
second user-defined class
@item y
third user-defined class
@item z
fourth user-defined class
@end table
The following illustrates the algorithm how text is evaluated with
multipass expressions:
@noindent
Loop over context, pass2, pass3 and pass4 and do the following for each pass:
@enumerate a
@item
Match the text following the cursor against all expressions in the
current pass
@item
If there is no match: shift the cursor one position to the right and
continue the loop
@item
If there is a match: choose the longest match
@item
Do the replacement (everything between square brackets)
@item
Place the cursor after the replaced text
@item
continue loop
@end enumerate
Note that if any multipass opcode or the @opcoderef{correct} is used
and the @code{pass1Only} mode bit (@pxref{lou_translateString}) is not
set, input and output positions may be incorrect.
@node The correct Opcode, Miscellaneous Opcodes, The Context and Multipass Opcodes, How to Write Translation Tables
@section The correct Opcode
@table @code
@opcode{correct, test action}
Because some input (such as that from an OCR program) may contain
systematic errors, it is sometimes advantageous to use a
pre-translation pass to remove them. The errors and their corrections
are specified by the @code{correct} opcode. If there are no
@code{correct} opcodes in a table, the pre-translation pass is not
used. The format of the @code{correct} opcode is very similar to that
of the @opcoderef{context}. The only difference is that in the action
part strings may be used and dot patterns may not be used. Some
examples of @code{correct} opcode entries are:
@example
correct "\\" ? Eliminate backslashes
correct "cornf" "comf" fix a common "scano"
correct "cornm" "comm"
correct "cornp" "comp"
correct "*" ? Get rid of stray asterisks
correct "|" ? ditto for vertical bars
correct "\s?" "?" drop space before question mark
@end example
Note that if the @code{correct} opcode is used and the
@code{pass1Only} mode bit (@pxref{lou_translateString}) is not set,
input and output positions may be incorrect.
@end table
@node Miscellaneous Opcodes, Deprecated Opcodes, The correct Opcode, How to Write Translation Tables
@section Miscellaneous Opcodes
@table @code
@opcode{include, filename}
Read the file indicated by @code{filename} and incorporate or include
its entries into the table. Included files can include other files,
which can include other files, etc. For an example, see what files are
included by the entry include @file{en-us-g1.ctb} in the table
@file{en-us-g2.ctb}. If the included file is not in the same directory
as the main table, use a full path name for filename.
@opcode{locale, characters}
Not implemented, but recognized and ignored for backward
compatibility.
@opcode{undefined, dots}
If this opcode is used in a table any characters which have not been
defined in the table but are encountered in the text will be replaced by
the dot pattern. If this opcode is not used, any undefined characters
are replaced by @code{'\xhhhh'}, where the h's are hexadecimal digits.
@opcode{display, character dots}
Associates dot patterns with the characters which will be sent to a
braille embosser, display or screen font. The character must be in the
range 0-255 and the dots must specify a single cell. Here are some
examples:
@example
display a 1 When the character a is sent to the embosser or display,
it # will produce a dot 1.
@end example
@example
display L 123 When the character L is sent to the display or embosser
# produces dots 1-2-3.
@end example
The @code{display} opcode is optional. It is used when the embosser or
display has a different mapping of characters to dot patterns than
that given in @ref{Character-Definition Opcodes}. If used, display
entries must proceed character-definition entries.
@opcode{multind, dots opcode opcode ...}
The @code{multind} opcode tells the back-translator that a sequence of
braille cells represents more than one braille indicator. For example,
in @file{en-us-g1.ctb} we have @code{multind 56-6 letsign capsign}.
The back-translator can generally handle single braille indicators,
but it cannot apply them when they immediately follow each other. It
recognizes the letter sign if it is followed by a letter and takes
appropriate action. It also recognizes the capital sign if it is
followed by a letter. But when there is a letter sign followed by a
capital sign it fails to recognize the letter sign unless the sequence
has been defined with @code{multind}. A @code{multind} entry may not
contain a comment because liblouis would attempt to interpret it as an
opcode.
@end table
@node Deprecated Opcodes, , Miscellaneous Opcodes, How to Write Translation Tables
@section Deprecated Opcodes
The following opcodes are an early attempt to handle emphasis. They
have been deprecated by more specific opcodes, but are kept for
backward compatibility.
@table @code
@deprecatedopcode{italsign, dots, lastworditalbefore}
@deprecatedopcode{begital, dots, firstletterital}
@deprecatedopcode{endital, dots, lastletterital}
@deprecatedopcode{boldsign, dots, lastwordboldbefore}
@deprecatedopcode{begbold, dots, firstletterbold}
@deprecatedopcode{endbold, dots, lastletterbold}
@deprecatedopcode{undersign, dots, lastwordunderbefore}
@deprecatedopcode{begunder, dots, firstletterunder}
@deprecatedopcode{endunder, dots, lastletterunder}
@deprecatedopcode{literal, characters, compbrl}
@end table
@node Notes on Back-Translation, Programming with liblouis, How to Write Translation Tables, Top
@chapter Notes on Back-Translation
Back-translation is carried out by the function
@code{lou_backTranslateString}. Its calling sequence is described in
@ref{Programming with liblouis}. Tables containing no
@opcoderef{context}, @opcoderef{correct} or multipass opcodes can be
used for both forward and backward translation. If these opcodes are
needed different tables will be required.
@code{lou_backTranslateString} first performs @code{pass4}, if
present, then @code{pass3}, then @code{pass2}, then the
backtranslation, then corrections. Note that this is exactly the
inverse of forward translation.
@node Programming with liblouis, Opcode Index, Notes on Back-Translation, Top
@chapter Programming with liblouis
@menu
* License::
* Overview::
* Data structure of liblouis tables::
* lou_version::
* lou_translateString::
* lou_translate::
* lou_backTranslateString::
* lou_backTranslate::
* lou_hyphenate::
* lou_compileString::
* lou_dotsToChar::
* lou_charToDots::
* lou_logFile::
* lou_logPrint::
* lou_logEnd::
* lou_setDataPath::
* lou_getDataPath::
* lou_getTable::
* lou_readCharFromFile::
* lou_free::
* Python bindings::
@end menu
@node License, Overview, Programming with liblouis, Programming with liblouis
@section License
Liblouis may contain code borrowed from the Linux screen reader BRLTTY,
Copyright @copyright{} 1999-2006 by the BRLTTY Team.
@noindent
Copyright @copyright{} 2004-2007 ViewPlus Technologies, Inc.
@uref{www.viewplus.com}.
@noindent
Copyright @copyright{} 2007,2009 Abilitiessoft, Inc.
@uref{www.abilitiessoft.com}.
Liblouis is free software: you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Liblouis is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with Liblouis. If not, see
@uref{http://www.gnu.org/licenses/}.
@node Overview, Data structure of liblouis tables, License, Programming with liblouis
@section Overview
You use the liblouis library by calling the following functions,
@code{lou_translateString}, @code{lou_backTranslateString},
@code{lou_logFile}, @code{lou_logPrint},
@code{lou_endLog}, @code{lou_getTable},
@code{lou_translate}, @code{lou_backTranslate}, @code{lou_hyphenate},
@code{lou_charToDots},
@code{lou_dotsToChar},
@code{lou_compileString}, @code{lou_readCharFromFile},
@code{lou_version} and @code{lou_free}.
These are described below. The header file, @file{liblouis.h}, also
contains brief descriptions. Liblouis is written in straight C. It has
just three code modules, @file{compileTranslationTable.c},
@file{lou_translateString.c} and @file{lou_backTranslateString.c}. In
addition, there are two header files, @file{liblouis.h}, which defines
the API, and @file{louis.h}, used only internally and by liblouisxml.
The latter includes
@file{liblouis.h}.
Persons who wish to use liblouis from Python may want to skip ahead to
@ref{Python bindings}.
@file{compileTranslationTable.c} keeps track of all translation tables
which an application has used. It is called by the translation,
hyphenation and checking functions when they start. If a table has not
yet been compiled @file{compileTranslationTable.c} checks it for
correctness and compiles it into an efficient internal representation.
The main entry point is @code{lou_getTable}. Since it is the module
that keeps track of memory usage, it also contains the @code{lou_free}
function. In addition, it contains the @code{lou_logFile},
@code{lou_logPrint} and @code{lou_endLog} functions, plus some utility
functions which are
used by the other modules.
By default, liblouis handles all characters internally as 16-bit
unsigned integers. It can be compiled for 32-bit characters as
explained below. The meanings of these integers are not hard-coded.
Rather they are defined by the character-definition opcodes. However,
the standard printable characters, from decimal 32 to 126 are
recognized for the purpose of processing the opcodes. Hence, the
following definition is included in @file{liblouis.h}. It is correct
for computers with at least 32-bit processors.
@example
#define widechar unsigned short int
@end example
To make liblouis handle 32-bit Unicode simply remove the word
@code{short} in the above @code{define}. This will cause the translate and
back-translate functions to expect input in 32-bit form and to deliver
their output in this form. The input to the compiler (tables) is
unaffected except that two new escape sequences for 20-bit and 32-bit
characters are recognized.
Here are the definitions of the eleven liblouis functions and their
parameters. They are given in terms of 16-bit Unicode. If liblouis has
been compiled for 32-bit Unicode simply read 32 instead of 16.
@node Data structure of liblouis tables, lou_version, Overview, Programming with liblouis
@section Data structure of liblouis tables
The data structure @code{TranslationTableHeader} is defined by a
@code{typedef} statement in @file{louis.h}. To find the beginning,
search for the word @samp{header}. As its name implies, this is
actually the table header. Data are placed in the @code{ruleArea}
array, which is the last item defined in this structure. This array is
declared with a length of 1 and is expanded as needed. The table
header consists mostly of arrays of pointers of size @code{HASHNUM}.
These pointers are actually offsets into @code{ruleArea} and point to
chains of items which have been placed in the same hash bucket by a
simple hashing algorithm. @code{HASHNUM} should be a prime and is
currently 1123. The structure of the table was chosen to optimize
speed rather than memory usage.
The first part of the table contains miscellaneous information, such
as the number of passes and whether various opcodes have been used. It
also contains the amount of memory allocated to the table and the
amount actually used.
The next section contains pointers to various braille indicators and
begins with @code{capitalSign}. The rules pointed to contain the
dot pattern for the indicator and an opcode which is used by the
back-translator but does not appear in the list of opcodes. The
braille indicators also include various kinds of emphasis, such as
italic and bold and information about the length of emphasized
phrases. The latter is contained directly in the table item instead of
in a rule.
After the braille indicators comes information about when a letter
sign should be used.
Next is an array of size @code{HASHNUM} which points to character
definitions. These are created by the character-definition opcodes.
Following this is a similar array pointing to definitions of
single-cell dot patterns. This is also created from the
character-definition opcodes. If a character definition contains a
multi-cell dot pattern this is compiled into ordinary forward and
backward rules. If such a multi-cell dot pattern contains a single
cell which has not previously been defined that cell is placed in this
array, but is given the attribute @code{space}.
Next come arrays that map characters to single-cell dot patterns and
dots to characters. These are created from both character-definition
opcodes and display opcodes.
Next is an array of size 256 which maps characters in this range to
dot patterns which may consist of multiple cells. It is used, for
example, to map @samp{@{} to dots 456-246. These mappings are created
@c FIXME: the compdots opcode should be documented
@c by the @opcoderef{compdots}
by the @code{compdots}
or the @opcoderef{comp6}.
Next are two small arrays that held pointers to chains of rules
produced by the @opcoderef{swapcd} and the @opcoderef{swapdd} and by
some multipass, @code{context} and @code{correct} opcodes.
Now we get to an array of size @code{HASHNUM} which points to chains
of rules for forward translation.
Following this is a similar array for back-translation.
Finally is the @code{ruleArea}, an array of variable size to which
various structures are mapped and to which almost everything else
points.
@node lou_version, lou_translateString, Data structure of liblouis tables, Programming with liblouis
@section lou_version
@findex lou_version
@example
char *lou_version ()
@end example
This function returns a pointer to a character string containing the
version of liblouis, plus other information, such as the release date
and perhaps notable changes.
@node lou_translateString, lou_translate, lou_version, Programming with liblouis
@section lou_translateString
@findex lou_translateString
@example
int lou_translateString (
const char * tableList,
const widechar * inbuf,
int *inlen,
widechar *outbuf,
int *outlen,
char *typeform,
char *spacing,
int mode);
@end example
This function takes a string of 16-bit Unicode characters in
@code{inbuf} and translates it into a string of 16-bit characters in
@code{outbuf}. Each 16-bit character produces a particular dot pattern
in one braille cell when sent to an embosser or braille display or to
a screen type font. Which 16-bit character represents which dot pattern
is indicated by the character-definition and display opcodes in the
translation table.
@anchor{translation-tables}
The @code{tableList} parameter points to a list of translation tables
separated by commas. If only one table is given, no comma should be
used after it. It is these tables which control just how the
translation is made, whether in Grade 2, Grade 1, or something else.
liblouis knows where to find all the tables that have been distributed
with it. So you can just give a table name such as @code{en-us-g2.ctb}
and liblouis will load it. You can also give a table name which
includes a path. If this is the first table in a list, all the tables
in the list must be on the same path. You can specify a path on which
liblouis will look for table names by setting the environment variable
@code{LOUIS_TABLEPATH}. This environment variable can contain one or
more paths separated by commas. On receiving a table name liblouis
first checks to see if it can be found on any of these paths. If not,
it then checks to see if it can be found in the current directory, or,
if the first (or only) name in a table list, if it contains a
path name, can be found on that path. If not, it checks to see if it
can be found on the path where the distributed tables have been
installed. If a table has already been loaded and compiled this
path-checking is skipped.
The tables in a list are all compiled into the same internal table.
The list is then regarded as the name of this table. As explained in
@ref{How to Write Translation Tables}, each table is a file which may
be plain text, big-endian Unicode or little-endian Unicode. A table
(or list of tables) is compiled into an internal representation the
first time it is used. Liblouis keeps track of which tables have been
compiled. For this reason, it is essential to call the @code{lou_free}
function at the end of your application to avoid memory leaks. Do
@emph{NOT} call @code{lou_free} after each translation. This will
force liblouis to compile the translation tables each time they are
used, leading to great inefficiency.
Note that both the @code{*inlen} and @code{*outlen} parameters are
pointers to integers. When the function is called, these integers
contain the maximum input and output lengths, respectively. When it
returns, they are set to the actual lengths used.
The @code{typeform} parameter is used to indicate italic type,
boldface type, computer braille, etc. It is a string of characters
with the same length as the input buffer pointed to by @code{*inbuf}.
However, it is used to pass back character-by-character results, so
enough space must be provided to match the @code{*outlen} parameter.
Each character indicates the typeform of the corresponding character
in the input buffer. The values are as follows: 0 plain-text; 1
italic; 2 bold; 4 underline; 8 computer braille. These values can be
added for multiple emphasis. If this parameter is @code{NULL}, no
checking for type forms is done. In addition, if this parameter is not
@code{NULL}, it is set on return to have an 8 at every position
corresponding to a character in @code{outbuf} which was defined to
have a dot representation containing dot 7, dot 8 or both, and to 0
otherwise.
The @code{spacing} parameter is used to indicate differences in
spacing between the input string and the translated output string. It
is also of the same length as the string pointed to by @code{*inbuf}.
If this parameter is @code{NULL}, no spacing information is computed.
The @code{mode} parameter specifies how the translation should be
done. The valid values of mode are listed in @file{liblouis.h}. They
are all powers of 2, so that a combined mode can be specified by
adding up different values.
The function returns 1 if no errors were encountered and 0 if a
complete translation could not be done.
@node lou_translate, lou_backTranslateString, lou_translateString, Programming with liblouis
@section lou_translate
@findex lou_translate
@example
int lou_translate (
const char * tableList,
const widechar * const inbuf,
int *inlen,
widechar * outbuf,
int *outlen,
char *typeform,
char *spacing,
int *outputPos,
int *inputPos,
int *cursorPos,
int mode);
@end example
This function adds the parameters @code{outputPos}, @code{inputPos} and
@code{cursorPos}, to facilitate use in screen reader programs. The
@code{outputPos} parameter must point to an array of integers with at
least @code{inlen} elements. On return, this array will contain the
position in @code{outbuf} corresponding to each input position.
Similarly, @code{inputPos} must point to an array of integers of at
least @code{outlen} elements. On return, this array will contain the
position in @code{inbuf} corresponding to each position in @code{inbuf}.
@code{cursorPos} must point to an integer containing the position of the
cursor in the input. On return, it will contain the cursor position in
the output. Any parameter after @code{outlen} may be @code{NULL}. In
this case, the actions corresponding to it will not be carried out. The
@code{mode} parameter, however, must be present and must be an integer,
not a pointer to an integer. If the @code{compbrlAtCursor} bit is set in
the @code{mode} parameter the space-bounded characters containing the
cursor will be translated in computer braille. If the
@code{compbrlLeftCursor} bit is set only the characters to the left of
the cursor will be in computer braille. This bit overrides
@code{compbrlAtCursor}. The @code{ucBrl} (Unicode Braille) bit is used
by @code{lou_charToDots} and @code{lou_translate}. It causes the dot
patterns to be Unicode Braille rather than the liblouis representation.
@code{lou_dotsToChar} and @code{lou_backTranslate} recognize Unicode
braille automatically.
The @code{otherTrans} mode needs special description. If it is set
liblouis will attempt to call a wrapper for another translator. These
other translators are usually for Asian languages. The calling sequence
is the same as for liblouis itself except that the @code{trantab}
parameter gives the name of the other translator, possibly abbreviated,
followed by a colon, followed by whatever other information the other
translator needs. This is specific for each translator. If no such
information is needed the colon should be omitted. The result of calling
either the translate or back-translate functions with this mode bit set
will be the same as calling without it set. That is, the wrapper for the
other translator simulates a call to liblouis. Note that the wrappers
are not implemented at this time. Setting this mode bit will result in
failure (return value of 0).
@node lou_backTranslateString, lou_backTranslate, lou_translate, Programming with liblouis
@section lou_backTranslateString
@findex lou_backTranslateString
@example
int lou_backTranslateString (
const char * tableList,
const widechar * inbuf,
int *inlen,
widechar *outbuf,
int *outlen,
char *typeform,
char *spacing,
int mode);
@end example
This is exactly the opposite of @code{lou_translateString}.
@code{inbuf} is a string of 16-bit Unicode characters representing
braille. @code{outbuf} will contain a string of 16--bit Unicode
characters. @code{typeform} will indicate any emphasis found in the
input string, while @code{spacing} will indicate any differences in
spacing between the input and output strings. The @code{typeform} and
@code{spacing} parameters may be @code{NULL} if this information is
not needed. @code{mode} again specifies how the back-translation
should be done.
@node lou_backTranslate, lou_hyphenate, lou_backTranslateString, Programming with liblouis
@section lou_backTranslate
@findex lou_backTranslate
@example
int lou_backTranslate (
const char * tableList,
const widechar * inbufx,
int *inlen,
widechar * outbuf,
int *outlen,
char *typeform,
char *spacing,
int *outputPos,
int *inputPos,
int *cursorPos,
int mode);
@end example
This function is exactly the inverse of @code{lou_translate}.
@node lou_hyphenate, lou_compileString, lou_backTranslate, Programming with liblouis
@section lou_hyphenate
@findex lou_hyphenate
@example
int lou_hyphenate (
const char * tableList,
const widechar * const inbuf,
int inlen,
char *hyphens,
int mode);
@end example
This function looks at the characters in @code{inbuf} and if it finds
a sequence of letters attempts to hyphenate it as a word. Note
that lou_hyphenate operates on single words only, and spaces or
punctuation marks between letters are not allowed. Leading and
trailing punctuation marks are ignored. The table named by the
@code{tableList} parameter must contain a hyphenation table. If it does
not, the function does nothing. @code{inlen} is the length of the
character string in @code{inbuf}. @code{hyphens} is an array of
characters and must be of size @code{inlen}. If hyphenation is
successful it will have a 1 at the beginning of each syllable and a 0
elsewhere. If the @code{mode} parameter is 0 @code{inbuf} is assumed
to contain untranslated characters. Any nonzero value means that
@code{inbuf} contains a translation. In this case, it is
back-translated, hyphenation is performed, and it is re-translated so
that the hyphens can be placed correctly. The @code{lou_translate} and
@code{lou_backTranslate} functions are used in this process.
@code{lou_hyphenate} returns 1 if hyphenation was successful and 0
otherwise. In the latter case, the contents of the @code{hyphens}
parameter are undefined. This function was provided for use in
liblouisxml.
@node lou_compileString, lou_dotsToChar, lou_hyphenate, Programming with liblouis
@section lou_compileString
@findex lou_compileString
@example
int lou_compileString (const char *tableList, const char *inString)
@end example
This function enables you to compile a table entry on the fly at
run-time. The new entry is added to @code{tableList} and remains in force
until @code{lou_free} is called. If @code{tableList} has not previously
been loaded it is loaded and compiled. @code{inString} contains the
table entry to be added. It may be anything valid. Error messages
will be produced if it is invalid. The function returns 1 on success and
0 on failure.
@node lou_dotsToChar, lou_charToDots, lou_compileString, Programming with liblouis
@section lou_dotsToChar
@findex lou_dotsToChar
@example
int lou_dotsToChar (const char *tableList, const widechar *inbuf, widechar
*outbuf, int length, int)
@end example
This function takes a widechar string in @code{inbuf} consisting of dot
patterns and converts it to a widechar string in @code{outbuf}
consisting of characters according to the specifications in
@code{tableList}. @code{length} is the length of both @code{inbuf} and
@code{outbuf}. The dot patterns in @code{inbuf} can be in either
liblouis format or Unicode braille. The function returns 1 on success
and 0 on failure.
@node lou_charToDots, lou_logFile, lou_dotsToChar, Programming with liblouis
@section lou_charToDots
@findex lou_charToDots
@example
int lou_charToDots (const char *tableList, const widechar *inbuf, widechar
*outbuf, int length, int mode)
@end example
This function is the inverse of @code{lou_dotsToChar}. It takes a
widechar string in @code{inbuf} consisting of characters and converts it
to a widechar string in @code{outbuf} consisting of dot patterns
according to the specifications in @code{tableList}. @code{length} is the
length of both @code{inbuf} and @code{outbuf}. The dot patterns in
@code{outbufbuf} are in liblouis format if the mode bit @code{ucBrl} is
not set and in Unicode format if it is set. The function returns 1 on
success and 0 on failure.
@node lou_logFile, lou_logPrint, lou_charToDots, Programming with liblouis
@section lou_logFile
@findex lou_logFile
@example
void lou_logFile (char *fileName);
@end example
This function is used when it is not convenient either to let messages
be printed on stderr or to use redirection, as when liblouis is used
in a GUI application or in liblouisxml. Any error messages generated
will be printed to the file given in this call. The entire path name of
the file must be given.
@node lou_logPrint, lou_logEnd, lou_logFile, Programming with liblouis
@section lou_logPrint
@findex lou_logPrint
@example
void lou_logPrint (char *format, ...);
@end example
This function is called like @code{fprint}. It can be used by other
libraries to print messages to the file specified by the call to
@code{lou_logFile}. In particular, it is used by the companion
library liblouisxml.
@node lou_logEnd, lou_setDataPath, lou_logPrint, Programming with liblouis
@section lou_logEnd
@findex lou_logEnd
@example
lou_logEnd ();
@end example
This function is used at the end of processing a document to close the
log file, so that it can be read by the rest of the program.
@node lou_setDataPath, lou_getDataPath, lou_logEnd, Programming with liblouis
@section lou_setDataPath
@findex lou_setDataPath
@example
char * lou_setDataPath (char *path);
@end example
This function is used to tell liblouis and liblouisutdml where tables
and files are located. It thus makes them completely relocatable, even
on Linux. The @code{path} is the directory where the subdirectories
@code{liblouis/tables} and @code{liblouisutdml/lbu_files} are rooted or
located. The function returns a pointer to the @code{path}.
@node lou_getDataPath, lou_getTable, lou_setDataPath, Programming with liblouis
@section lou_getDataPath
@findex lou_getDataPath
@example
char * lou_getDataPath ();
@end example
This function returns a pointer to the path set by
@code{lou_setDataPath}. If no path has been set it returns @code{NULL}.
@node lou_getTable, lou_readCharFromFile, lou_getDataPath, Programming with liblouis
@section lou_getTable
@findex lou_getTable
@example
void *lou_getTable (char *tablelist);
@end example
@code{tablelist} is a list of names of table files separated by
commas, as explained previously
(@pxref{translation-tables,,@code{tableList} parameter in
@code{lou_translateString}}). If no errors are found this function
returns a pointer to the compiled table. If errors are found messages
are printed to the log file, which is stderr unless a different
filename has been given using the @code{lou_logFile} function.
Errors result in a @code{NULL} pointer being returned.
@node lou_readCharFromFile, lou_free, lou_getTable, Programming with liblouis
@section lou_readCharFromFile
@findex lou_readCharFromFile
@example
int lou_readCharFromFile (const char *fileName, int *mode);
@end example
This function is provided for situations where it is necessary to read
a file which may contain little-endian or big-endian 16-bit Unicode
characters or ASCII8 characters. The return value is a little-endian
character, encoded as an integer. The @code{fileName} parameter is the
name of the file to be read. The @code{mode} parameter is a pointer to
an integer which must be set to 1 on the first call. After that, the
function takes care of it. On end-of-file the function returns
@code{EOF}.
@node lou_free, Python bindings, lou_readCharFromFile, Programming with liblouis
@section lou_free
@findex lou_free
@example
void lou_free ();
@end example
This function should be called at the end of the application to free
all memory allocated by liblouis. Failure to do so will result in
memory leaks. Do @emph{NOT} call @code{lou_free} after each
translation. This will force liblouis to compile the translation
tables every time they are used, resulting in great inefficiency.
@node Python bindings, , lou_free, Programming with liblouis
@section Python bindings
There are Python bindings for @code{lou_translateString},
@code{lou_translate} and @code{lou_version}. For installation
instructions see the the @file{README} file in the @file{python}
directory. Usage information is included in the Python module itself.
@node Opcode Index, Function Index, Programming with liblouis, Top
@unnumbered Opcode Index
@printindex opcode
@node Function Index, Program Index, Opcode Index, Top
@unnumbered Function Index
@printindex fn
@node Program Index, , Function Index, Top
@unnumbered Program Index
@printindex pg
@bye
@c The following list is a list of exceptions for the ispell spell
@c checker
@c LocalWords: liblouis opcode args BRLTTY ViewPlus Abilitiessoft LGPL lou
@c LocalWords: checktable allround checkhyphens Opcodes Multipass dotsToChar
@c LocalWords: translateString backTranslateString backTranslate charToDots
@c LocalWords: compileString logFile logPrint getTable readCharFromFile itemx
@c LocalWords: README liblouisxml pindex samp kbd opcodes opcoderef numsign
@c LocalWords: FIXME ctb nemeth filename multipass suboperand uplow litdigit
@c LocalWords: capsign begcaps endcaps letsign noletsign largesign typeform
@c LocalWords: noletsignbefore noletsignafter compbrl firstwordital italsign
@c LocalWords: lenitalphrase doubleOpcode lastworditalbefore firstletterital
@c LocalWords: lastworditalafter begital lastletterital endital firstwordbold
@c LocalWords: singleletterital lastwordboldbefore boldsign lastwordboldafter
@c LocalWords: firstletterbold begbold lastletterbold endbold lenboldphrase
@c LocalWords: singleletterbold firstwordunder lastwordunderbefore begunder
@c LocalWords: lastwordunderafter firstletterunder lastletterunder endunder
@c LocalWords: singleletterunder lenunderphrase begcomp endcomp decpoint texi
@c LocalWords: capsnocont noback nofor texinfo setfilename settitle direntry
@c LocalWords: dircategory finalout defindex opcodeindex noindent uref vskip
@c LocalWords: titlepage insertcopying ifnottex dir detailmenu italword RET
@c LocalWords: TranslationTableHeader txt cti nocross exactdots nocont emph
@c LocalWords: prepunc postpunc repword joinword lowword sufword prfword API
@c LocalWords: begword begmidword midword midendword endword partword begnum
@c LocalWords: midnum endnum joinnum swapcd swapdd swapcc multind endLog
@c LocalWords: backtranslation compileTranslationTable typedef louis ruleArea
@c LocalWords: HASHNUM capitalSign compdots findex const inbuf outbuf outlen
@c LocalWords: tableList TABLEPATH widechar inputPos cursorPos outputPos
@c LocalWords: inlen compbrlAtCursor compbrlLeftCursor trantab stderr endian
@c LocalWords: tablelist fileName printindex deprecatedopcode setDataPath
@c LocalWords: getDataPath MathML suboperands logEnd liblouisutdml whitespace
@c LocalWords: xhhhh yhhhhh zhhhhhhhh OpenOffice
|