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
|
# 27mar12abu
# (c) Software Lab. Alexander Burger
# 6 bytes in little endian format
# Get block address from buffer
(code 'getAdrZ_A 0)
ld B (Z 5) # Highest byte
zxt
shl A 8
ld B (Z 4)
shl A 8
ld B (Z 3)
shl A 8
ld B (Z 2)
shl A 8
ld B (Z 1)
shl A 8
ld B (Z) # Lowest byte
ret
# Set block address in buffer
(code 'setAdrAZ 0)
ld (Z) B # Lowest byte
shr A 8
ld (Z 1) B
shr A 8
ld (Z 2) B
shr A 8
ld (Z 3) B
shr A 8
ld (Z 4) B
shr A 8
ld (Z 5) B # Highest byte
ret
(code 'setAdrAS 0)
ld (S (+ I 2)) B # Write block address to stack
shr A 8
ld (S (+ I 3)) B
shr A 8
ld (S (+ I 4)) B
shr A 8
ld (S (+ I 5)) B
shr A 8
ld (S (+ I 6)) B
shr A 8
ld (S (+ I 7)) B # Highest byte
ret
# Read file number from 'Buf' into 'DbFile'
(code 'dbfBuf_AF 0)
ld B (Buf 1) # Two bytes little endian
zxt
shl A 8
ld B (Buf)
shl A 6 # 'dbFile' index
cmp A (DBs) # Local file?
jge retc # No
add A (DbFiles) # Get DB file
ld (DbFile) A # Set current
ret # 'nc'
# Build external symbol name
(code 'extNmCE_X 0)
ld X C # Get object ID into X
and X (hex "FFFFF") # Lowest 20 bits
shr C 20 # Middle part of object ID
ld A C
and A (hex "FFF") # Lowest 12 bits
shl A 28
or X A # into X
shr C 12 # Rest of object ID
shl C 48
or X C # into X
ld A E # Get file number
and A (hex "FF") # Lowest 8 bits
shl A 20 # Insert
or X A # into X
shr E 8 # Rest of file number
shl E 40
or X E # into X
shl X 4 # Make short name
or X CNT
ret
# Pack external symbol name
(code 'packExtNmX_E)
link
push ZERO # <L I> Name
link
call fileObjX_AC # Get file and object ID
push C # Save object ID
ld C 4 # Build name
lea X (L I)
null A # Any?
if nz # Yes
call packAoACX_CX # Pack file number
end
pop A # Get object ID
call packOctACX_CX # Pack it
call cons_E # Cons symbol
ld (E) (L I) # Set name
or E SYM # Make symbol
ld (E) E # Set value to itself
drop
ret
(code 'packAoACX_CX 0)
cmp A 15 # Single digit?
if gt # No
push A # Save
shr A 4 # Divide by 16
call packAoACX_CX # Recurse
pop A
and B 15 # Get remainder
end
add B (char "@") # Make ASCII letter
jmp byteSymBCX_CX # Pack byte
(code 'packOctACX_CX 0)
cmp A 7 # Single digit?
if gt # No
push A # Save
shr A 3 # Divide by 8
call packOctACX_CX # Recurse
pop A
and B 7 # Get remainder
end
add B (char "0") # Make ASCII digit
jmp byteSymBCX_CX # Pack byte
# Chop external symbol name
(code 'chopExtNmX_E)
call fileObjX_AC # Get file and object ID
ld X A # Keep file in X
call oct3C_CA # Get lowest octal digits
call consA_E # Final cell
ld (E) A
ld (E CDR) Nil
link
push E # <L I> Result
link
do
shr C 3 # Higher octal digits?
while nz # Yes
call oct3C_CA # Get next three digits
call consA_E # Cons into result
ld (E) A
ld (E CDR) (L I)
ld (L I) E
loop
null X # File number?
if nz # Yes
ld E 0 # Build A-O encoding
ld A 0
do
ld B X # Next hax digit
and B 15 # Lowest four bits
add B (char "@") # Make ASCII letter
or E B
shr X 4 # More hax digits?
while nz # Yes
shl E 8 # Shift result
loop
shl E 4 # Make short name
or E CNT
call cons_A # Make transient symbol
ld (A) E # Set name
or A SYM # Make symbol
ld (A) A # Set value to itself
call consA_E # Cons into result
ld (E) A
ld (E CDR) (L I)
ld (L I) E
end
ld E (L I) # Get result
drop
ret
(code 'oct3C_CA 0)
ld A 0
ld B C # Lowest octal digit
and B 7
add B (char "0") # Make ASCII digit
ld E A
shr C 3 # Next digit?
if nz # Yes
ld B C # Second octal digit
and B 7
add B (char "0") # Make ASCII digit
shl E 8
or E B
shr C 3 # Next digit?
if nz # Yes
ld B C # Hightest octal digit
and B 7
add B (char "0") # Make ASCII digit
shl E 8
or E B
end
end
shl E 4 # Make short name
or E CNT
call cons_A # Make transient symbol
ld (A) E # Set name
or A SYM # Make symbol
ld (A) A # Set value to itself
ret
# Get file and object ID from external symbol name
(code 'fileObjX_AC 0)
shl X 2 # Strip status bits
shr X 6 # Normalize
ld C X # Get object ID
and C (hex "FFFFF") # Lowest 20 bits
shr X 20 # Get file number
ld A X
and A (hex "FF") # Lowest 8 bits
shr X 8 # More?
if nz # Yes
ld E X # Rest in E
and E (hex "FFF") # Middle 12 bits of object ID
shl E 20
or C E # into C
shr X 12 # High 8 bits of file number
ld E X # into E
and E (hex "FF") # Lowest 8 bits
shl E 8
or A E # into A
shr X 8 # Rest of object ID
shl X 32
or C X # into C
end
ret
# Get file and object ID from external symbol
(code 'fileObjE_AC 0)
push X
ld X (E TAIL)
call nameX_X # Get name
call fileObjX_AC
pop X
ret
# Get dbFile index and block index from external symbol
(code 'dbFileBlkY_AC 0)
push X
ld X Y # Name in X
call fileObjX_AC
shl A 6 # 'dbFile' index
shl C 6 # Block index
pop X
ret
(code 'rdLockDb)
cmp (Solo) TSym # Already locked whole DB?
jeq ret # Yes
ld A (| F_RDLCK (hex "10000")) # Read lock, length 1
ld C ((DbFiles)) # Descriptor of first file
jmp lockFileAC
(code 'wrLockDb)
cmp (Solo) TSym # Already locked whole DB?
jeq ret # Yes
ld A (| F_WRLCK (hex "10000")) # Write lock, length 1
ld C ((DbFiles)) # Descriptor of first file
jmp lockFileAC
(code 'rwUnlockDbA)
cmp (Solo) TSym # Already locked whole DB?
jeq ret # Yes
null A # Length zero?
if z # Yes
push X
push Y
ld X (DbFiles) # Iterate DB files
ld Y (DBs) # Count
do
sub Y VIII # Done?
while ne # No
add X VIII # Skip first, increment by sizeof(dbFile)
nul (X (+ IV 0)) # This one locked?
if nz # Yes
ld A (| F_UNLCK (hex "00000")) # Unlock, length 0
ld C (X) # File descriptor
call unLockFileAC
set (X (+ IV 0)) 0 # Clear lock entry
end
loop
pop Y
pop X
ld (Solo) ZERO # Reset solo mode
ld A 0 # Length zero again
end
or A F_UNLCK
ld C ((DbFiles)) # Unlock first file
jmp unLockFileAC
(code 'tryLockCE_FA)
do
ld A F_WRLCK # Write lock
st2 (Flock) # 'l_type'
ld (Flock L_START) C # Start position ('l_whence' is SEEK_SET)
ld (Flock L_LEN) E # Length
cc fcntl(((DbFile)) F_SETLK Flock) # Try to lock
nul4 # OK?
if ns # Yes
set ((DbFile) (+ IV 0)) 1 # Set lock flag
null C # 'Start position is zero?
if z # Yes
ld (Solo) TSym # Set solo mode
else
cmp (Solo) TSym # Already locked whole DB?
if ne # No
ld (Solo) Nil # Clear solo mode
setz
end
end
ret # 'z'
end
call errno_A
cmp A EINTR # Interrupted?
if ne # No
cmp A EACCES # Locked by another process?
if ne # No
cmp A EAGAIN # Memory-mapped by another process?
jne lockErr # No
end
end
do
cc fcntl(((DbFile)) F_GETLK Flock) # Try to get lock
nul4 # OK?
while s # No
call errno_A
cmp A EINTR # Interrupted?
jne lockErr # No
loop
ld2 (Flock) # Get 'l_type'
cmp B F_UNLCK # Locked by another process?
until ne # Yes
ld4 (Flock L_PID) # Return PID
ret # 'nz'
(code 'jnlFileno_A)
cc fileno((DbJnl)) # Get fd
ret
(code 'logFileno_A)
cc fileno((DbLog)) # Get fd
ret
(code 'lockJnl)
call jnlFileno_A # Get fd
ld C A # into C
jmp wrLockFileC # Write lock journal
(code 'unLockJnl)
cc fflush((DbJnl)) # Flush journal
call jnlFileno_A # Get fd
ld C A # into C
ld A (| F_UNLCK (hex "00000")) # Unlock, length 0
jmp unLockFileAC # Unlock journal
(code 'setBlockAC_Z 0)
add A (DbFiles) # Get DB file
: setBlkAC_Z
ld (DbFile) A # Set current
ld (BlkIndex) C # Set block index
ld A (A III) # Block size
ld Z (DbBlock) # Get block buffer in Z
add A Z # Caclulate data end
ld (BufEnd) A
ret
(code 'rdBlockLinkZ_Z)
ld A (BlkLink) # Next block
(code 'rdBlockIndexAZ_Z)
ld (BlkIndex) A # Set block index
ld Z (DbBlock) # Block buffer in Z
(code 'rdBlockZ_Z)
ld A (DbFile) # Get current file
ld C (A III) # Block size
ld E (BlkIndex) # Get block index in E
shl E (A II) # Shift for current file
call blkPeekCEZ # Read block
call getAdrZ_A # Get link address
off A BLKTAG
ld (BlkLink) A # Store as next block
add Z BLK # Point to block data
ret
(code 'blkPeekCEZ)
cc pread(((DbFile)) Z C E) # Read C bytes from pos E into buffer Z
cmp A C # OK?
jne dbRdErr # No
ret
(code 'wrBlockZ)
ld A (DbFile) # Get current file
ld C (A III) # Block size
ld E (BlkIndex) # Get block index in E
shl E (A II) # Shift for current file
(code 'blkPokeCEZ)
cc pwrite(((DbFile)) Z C E) # Write C bytes from buffer Z to pos E
cmp A C # OK?
jne dbWrErr # No
null (DbJnl) # Journal?
if nz # Yes
cmp A ((DbFile) III) # Size (in A and C) equal to current file's block size?
if eq # Yes
ld A BLKSIZE # Use block unit size instead
end
cc putc_unlocked(A (DbJnl)) # Write size
sub S (+ BLK 2) # <S> Buffer
ld A ((DbFile) I) # Get file number
ld (S) B # Store low byte
shr A 8
ld (S 1) B # and high byte
ld A E # Get position
shr A ((DbFile) II) # Un-shift for current file
call setAdrAS # Set block address in buffer
cc fwrite(S (+ BLK 2) 1 (DbJnl)) # Write file number and address
cmp A 1 # OK?
jne wrJnlErr # No
cc fwrite(Z C 1 (DbJnl)) # Write C bytes from buffer Z
cmp A 1 # OK?
jne wrJnlErr # No
add S (+ BLK 2) # Drop buffer
end
ret
(code 'logBlock)
sub S (+ BLK 2) # <S> Buffer
ld A ((DbFile) I) # Get file number
ld (S) B # Store low byte
shr A 8
ld (S 1) B # and high byte
ld A (BlkIndex) # Get block index in E
call setAdrAS # Write into buffer
cc fwrite(S (+ BLK 2) 1 (DbLog)) # Write file number and address
cmp A 1 # OK?
jne wrLogErr # No
cc fwrite((DbBlock) ((DbFile) III) 1 (DbLog)) # Write 'siz' bytes from block buffer
cmp A 1 # OK?
jne wrLogErr # No
add S (+ BLK 2) # Drop buffer
ret
(code 'newBlock_X)
push Z
ld C (* 2 BLK) # Read 'free' and 'next'
ld E 0 # from block zero
ld Z Buf # into 'Buf'
call blkPeekCEZ
call getAdrZ_A # 'free'?
null A
jz 10 # No
null ((DbFile) VII) # 'fluse'?
if nz # Yes
ld X A # Keep 'free' in X
ld C (DbFile)
shl A (C II) # Shift 'free'
dec (C VII) # Decrement 'fluse'
ld E A # Read 'free' link
ld C BLK
call blkPeekCEZ # into 'Buf'
ld E 0 # Restore block zero in E
ld C (* 2 BLK) # and poke size in C
else
10 add Z BLK # Get 'next'
call getAdrZ_A
cmp A (hex "FFFFFFFFFFC0") # Max object ID
jeq dbSizErr # DB Oversize
ld X A # Keep in X
add A BLKSIZE # Increment 'next'
call setAdrAZ
sub Z BLK # Restore 'Buf' in Z
end
call blkPokeCEZ # Write 'Buf' back
ld C ((DbFile) III) # Current file's block size
sub S C # <S> Buffer
ld B 0 # Clear buffer
mset (S) C # with block size
ld E X # Get new block address
shl E ((DbFile) II) # Shift it
ld Z S # Write initblock
call blkPokeCEZ
add S ((DbFile) III) # Drop buffer
pop Z
ret
(code 'newIdEX_X)
dec E # Zero-based
shl E 6 # 'dbFile' index
cmp E (DBs) # In Range?
jge dbfErrX # No
add E (DbFiles) # Get DB file
ld (DbFile) E # Set current
null (DbLog) # Transaction log?
if z # No
inc (EnvProtect) # Protect the operation
end
call wrLockDb # Write lock DB
null (DbJnl) # Journal?
if nz # Yes
call lockJnl # Write lock journal
end
call newBlock_X # Allocate new block
ld C X # Object ID
shr C 6 # Normalize
ld E ((DbFile) I) # Get file number
call extNmCE_X # Build external symbol name
null (DbJnl) # Journal?
if nz # Yes
call unLockJnl # Unlock journal
end
ld A (hex "10000") # Length 1
call rwUnlockDbA # Unlock
null (DbLog) # Transaction log?
if z # No
dec (EnvProtect) # Unprotect
end
ret
(code 'isLifeE_F)
push E # Save symbol
call fileObjE_AC # Get file and ID
pop E # Restore symbol
shl C 6 # Block index?
jz retnz # No
shl A 6 # 'dbFile' index
cmp A (DBs) # Local file?
if lt # Yes
add A (DbFiles) # Get DB file
ld (DbFile) A # Set current
ld A (E TAIL) # Get tail
call nameA_A # Get name
shl A 1 # Dirty?
jc retz # Yes
shl A 1 # Loaded?
jc Retz # Yes
push E
push Z
push C # Save block index
ld C BLK # Read 'next'
ld E BLK
ld Z Buf # into 'Buf'
call blkPeekCEZ
call getAdrZ_A # Get 'next'
pop C # Get block index
cmp C A # Less than 'next'?
if ge # No
clrz # 'nz'
jmp 90
end
ld E C # Block index
shl E ((DbFile) II) # Shift
ld C BLK # Read link field
call blkPeekCEZ # into 'Buf'
ld B (Z) # Get tag byte
and B BLKTAG # Block tag
cmp B 1 # One?
90 pop Z
pop E
else
atom (Ext) # Extended databases?
end
ret # 'z' if OK
(code 'cleanUpY)
ld C BLK # Read 'free'
ld E 0 # from block zero
ld Z Buf # into 'Buf'
call blkPeekCEZ
call getAdrZ_A # Get 'free'
push A # Save 'free'
ld A Y # Deleted block
call setAdrAZ # Store in buffer
call blkPokeCEZ # Set new 'free'
ld E Y # Deleted block
do
shl E ((DbFile) II) # Shift it
call blkPeekCEZ # Get block link
off (Z) BLKTAG # Clear tag
call getAdrZ_A # Get link
null A # Any?
while nz # Yes
ld Y A # Keep link in Y
call blkPokeCEZ # Write link
ld E Y # Get link
loop
pop A # Retrieve 'free'
call setAdrAZ # Store in buffer
jmp blkPokeCEZ # Append old 'free' list
(code 'getBlockZ_FB 0)
cmp Z (BufEnd) # End of block data?
if eq # Yes
ld A (BlkLink) # Next block?
null A
jz ret # No: Return 0
push C
push E
call rdBlockIndexAZ_Z # Read block
pop E
pop C
end
ld B (Z) # Next byte
add Z 1 # (nc)
ret
(code 'putBlockBZ 0)
cmp Z (BufEnd) # End of block data?
if eq # Yes
push A # Save byte
push C
push E
ld Z (DbBlock) # Block buffer
null (BlkLink) # Next block?
if nz # Yes
call wrBlockZ # Write current block
call rdBlockLinkZ_Z # Read next block
else
push X
call newBlock_X # Allocate new block
ld B (Z) # Get block count (link is zero)
zxt
push A # Save count
or A X # Combine with new link
call setAdrAZ # Store in current block
call wrBlockZ # Write current block
ld (BlkIndex) X # Set new block index
pop A # Retrieve count
cmp A BLKTAG # Max reached?
if ne # No
inc A # Increment count
end
call setAdrAZ # Store in new current block
add Z BLK # Point to block data
pop X
end
pop E
pop C
pop A # Retrieve byte
end
ld (Z) B # Store byte
inc Z # Increment pointer
ret
# (pool ['sym1 ['lst] ['sym2] ['sym3]]) -> T
(code 'doPool 2)
push X
push Y
push Z
ld X E
ld Y (E CDR) # Y on args
call evSymY_E # Eval database name
link
push E # <L IV> 'sym1'
ld Y (Y CDR)
ld E (Y) # Eval scale factor list
eval+
push E # <L III> 'lst'
link
cmp E Nil # Need list
if ne
atom E
jnz lstErrEX
end
ld Y (Y CDR)
call evSymY_E # Eval replication journal
tuck E # <L II> 'sym2'
link
ld Y (Y CDR)
call evSymY_E # Eval transaction log
tuck E # <L I> 'sym3'
link
ld (Solo) ZERO # Reset solo mode
null (DBs) # DB open?
if nz # Yes
call doRollback # Roll back possible changes
ld E (DbFiles) # Iterate DB files
ld C (DBs) # Count
do
ld A (E) # File descriptor
call closeAX # Close it
cc free((E VI)) # Free mark bit vector
add E VIII # Increment by sizeof(dbFile)
sub C VIII # Done?
until z # Yes
ld (DBs) 0
null (DbJnl) # Journal?
if nz # Yes
cc fclose((DbJnl)) # Close it
ld (DbJnl) 0
end
null (DbLog) # Transaction log?
if nz # Yes
cc fclose((DbLog)) # Close it
ld (DbLog) 0
end
end
ld E (L IV) # Database name
cmp E Nil # Given?
if ne # Yes
push A # 8 bytes additional buffer space
call pathStringE_SZ # <S II> DB name
slen C S # String length in C
add C S # Add to buffer
push C # <S I> DB name end pointer
ld E VIII # Default to single dbFile
ld A (L III) # Get scale factor list
atom A # Any?
if z # Yes
ld E 0 # Calculate length
do
add E VIII # Increment by sizeof(dbFile)
ld A (A CDR)
atom A # More cells?
until nz # No
end
ld A (DbFiles) # DB file structure array
call allocAE_A # Set to new size
ld (DbFiles) A
ld Y A # Index in Y
add A E
push A # <S> Limit
ld (MaxBlkSize) 0 # Init block size maximum
do
ld C (S I) # Get DB name end pointer
ld A Y # Get index
sub A (DbFiles)
shr A 6 # Revert to file number
ld (Y I) A # Store in 'dbFile'
atom (L III) # Scale factor list?
if z # Yes
call bufAoAC_C # Append AO encoding to DB base name
end
set (C) 0 # Null-byte string terminator
ld A (L III) # Scale factor list
ld (L III) (A CDR)
ld A (A) # Next scale factor
cnt A # Given?
ldz A 2 # No: Default to 2
if nz
shr A 4 # Else normalize
end
ld (Y II) A # Set block shift
ld (DbFile) Y # Set current file
cc open(&(S II) O_RDWR) # Try to open
nul4 # OK?
if ns # Yes
ld (Y) A # Set file descriptor
ld C (+ BLK BLK 1) # Read block shift
ld E 0 # from block zero
ld Z Buf # into 'Buf'
call blkPeekCEZ
ld B (Z (+ BLK BLK)) # Get block shift
ld (Y II) B # Override argument block shift
ld C BLKSIZE # Calculate block size
shl C B
ld (Y III) C # Set in dbFile
else
ld E (L IV) # Database name (if error)
call errno_A
cmp A ENOENT # Non-existing?
jne openErrEX # No
cc open(&(S II) (| O_CREAT O_EXCL O_RDWR) (oct "0666")) # Try to create
nul4 # OK?
js openErrEX # No
ld (Y) A # Set file descriptor
ld C BLKSIZE # Calculate block size
shl C (Y II)
ld (Y III) C # Set in dbFile
sub S C # <S> Buffer
ld B 0 # Clear buffer
mset (S) C # with block size
ld E 0 # Position of DB block zero
lea Z (S BLK) # Address of 'next' in buffer
cmp Y (DbFiles) # First file?
if ne # No
ld A BLKSIZE # Only block zero
else
ld A (* 2 BLKSIZE) # Block zero plus DB root
end
call setAdrAZ # into 'next'
ld Z S # Buffer address
set (Z (* 2 BLK)) (Y II) # Set block shift in block zero
call blkPokeCEZ # Write DB block zero
cmp Y (DbFiles) # First file?
if eq # Yes
ld (S) 0 # Clear 'next' link in buffer
ld (S I) 0
ld Z S # Address of 'link' in buffer
ld A 1 # First block for DB root
call setAdrAZ # into link field
ld E (Y III) # Second block has block size position
call blkPokeCEZ # Write first ID-block (DB root block)
end
add S (Y III) # Drop buffer
end
ld A (Y) # Get fd
call closeOnExecAX
ld A (Y III) # Block size
cmp A (MaxBlkSize) # Calculate maximum
if gt
ld (MaxBlkSize) A
end
ld (Y IV) 0 # Clear 'flgs'
ld (Y V) 0 # mark vector size
ld (Y VI) 0 # and mark bit vector
ld (Y VII) -1 # Init 'fluse'
add Y VIII # Increment index by sizeof(dbFile)
ld A Y # Get index
sub A (DbFiles) # Advanced so far
ld (DBs) A # Set new scaled DB file count
cmp Y (S) # Done?
until eq # Yes
ld A (DbBlock) # Allocate block buffer
ld E (MaxBlkSize) # for maximal block size
call allocAE_A
ld (DbBlock) A
ld E (L II) # Replication journal?
cmp E Nil
if ne # Yes
call pathStringE_SZ # Write journal to stack buffer
cc fopen(S _a_) # Open for appending
ld S Z # Drop buffer
null A # OK?
jz openErrEX # No
ld (DbJnl) A
call jnlFileno_A # Get fd
call closeOnExecAX
end
ld E (L I) # Transaction log?
cmp E Nil
if ne # Yes
call pathStringE_SZ # Write journal to stack buffer
cc fopen(S _ap_) # Open for reading and appending
ld S Z # Drop buffer
null A # OK?
jz openErrEX # No
ld (DbLog) A
call logFileno_A # Get fd
call closeOnExecAX
call rewindLog # Test for existing transaction
cc fread(Buf 2 1 (DbLog)) # Read first file number
null A # Any?
if nz # Yes
cc feof((DbLog)) # EOF?
nul4
if z # No
call ignLog # Discard incomplete transaction
else
do
ld2 (Buf) # Get file number (byte order doesn't matter)
cmp A (hex "FFFF") # End marker?
if eq # Yes
cc fprintf((stderr) RolbLog) # Rollback incomplete transaction
call rewindLog # Rewind transaction log
ld E (DbFiles) # Iterate DB files
ld C (DBs) # Count
do
set (E (+ IV 1)) 0 # Clear dirty flag
add E VIII # Increment by sizeof(dbFile)
sub C VIII # Done?
until z # Yes
sub S (MaxBlkSize) # <S> Buffer
do
cc fread(Buf 2 1 (DbLog)) # Read file number
null A # Any?
jz jnlErrX # No
ld2 (Buf) # Get file number (byte order doesn't matter)
cmp A (hex "FFFF") # End marker?
while ne # No
call dbfBuf_AF # Read file number from 'Buf' to 'DbFile'
jc jnlErrX # No local file
cc fread(Buf BLK 1 (DbLog)) # Read object ID
cmp A 1 # OK?
jne jnlErrX # No
cc fread(S ((DbFile) III) 1 (DbLog)) # Read block data
cmp A 1 # OK?
jne jnlErrX # No
ld Z Buf # Get object ID from 'Buf'
call getAdrZ_A
shl A ((DbFile) II) # Shift
ld C ((DbFile) III) # Block size
cc pwrite(((DbFile)) S C A) # Write C bytes from stack buffer to pos A
cmp A C # OK?
jne dbWrErr
set ((DbFile) (+ IV 1)) 1 # Set dirty flag
loop
add S (MaxBlkSize) # Drop buffer
call fsyncDB # Sync DB files to disk
break T
end
call dbfBuf_AF # Read file number from 'Buf' into 'DbFile'
jc 40 # No local file
cc fread(Buf BLK 1 (DbLog)) # Read object ID
cmp A 1 # OK?
jne 40 # No
cc fseek((DbLog) ((DbFile) III) SEEK_CUR) # Skip by 'siz'
nul4 # OK?
jnz 40 # No
cc fread(Buf 2 1 (DbLog)) # Read next file number
cmp A 1 # OK?
if nz # No
40 call ignLog # Discard incomplete transaction
break T
end
loop
end
end
call truncLog # Truncate log file
end
end
drop
pop Z
pop Y
pop X
ld E TSym # Return T
ret
(code 'ignLog)
cc fprintf((stderr) IgnLog)
ret
(code 'rewindLog)
cc fseek((DbLog) 0 SEEK_SET) # Rewind transaction log
ret
(code 'fsyncDB)
ld E (DbFiles) # Iterate DB files
ld C (DBs) # Count
do
nul (E (+ IV 1)) # Dirty?
if nz # Yes
cc fsync((E)) # Sync DB file to disk
nul4 # OK?
js dbSyncErrX # No
end
add E VIII # Increment by sizeof(dbFile)
sub C VIII # Done?
until z # Yes
ret
(code 'truncLog)
call rewindLog # Rewind transaction log
call logFileno_A # Get fd
cc ftruncate(A 0) # Truncate log file
nul4 # OK?
jnz truncErrX
ret
# Append A-O encoding to string
(code 'bufAoAC_C 0)
cmp A 15 # Single digit?
if gt # No
push A # Save
shr A 4 # Divide by 16
call bufAoAC_C # Recurse
pop A
and B 15 # Get remainder
end
add B (char "@") # Make ASCII letter
ld (C) B # Store in buffer
inc C
ret
# (journal 'any ..) -> T
(code 'doJournal 2)
push X
push Y
push Z
ld X E
ld Y (E CDR) # Y on args
sub S (MaxBlkSize) # <S /I> Buffer
do
atom Y # More args?
while z # Yes
call evSymY_E # Next file name
call pathStringE_SZ # Write to stack buffer
cc fopen(S _r_) # Open file
ld S Z # Drop buffer
null A # OK?
jz openErrEX # No
ld E A # Keep journal file pointer in E
do
cc getc_unlocked(E) # Next char
nul4 # EOF?
while ns # No
ld C A # Size in C
cc fread(Buf 2 1 E) # Read file number
cmp A 1 # OK?
jne jnlErrX # No
call dbfBuf_AF # Read file number from 'Buf' to 'DbFile'
jc dbfErrX # No local file
cmp C BLKSIZE # Whole block?
ldz C (A III) # Yes: Take file's block size
cc fread(Buf BLK 1 E) # Read object ID
cmp A 1 # OK?
jne jnlErrX # No
cc fread(S C 1 E) # Read data into buffer
cmp A 1 # OK?
jne jnlErrX # No
push E # Save journal file pointer
ld Z Buf # Get object ID from 'Buf'
call getAdrZ_A
ld E A # into E
shl E ((DbFile) II) # Shift
lea Z (S I) # Buffer
call blkPokeCEZ # Write object data
pop E # Restore journal file pointer
loop
cc fclose(E) # Close file pointer
ld Y (Y CDR)
loop
add S (MaxBlkSize) # Drop buffer
ld E TSym # Return T
pop Z
pop Y
pop X
ret
# (id 'num ['num]) -> sym
# (id 'sym [NIL]) -> num
# (id 'sym T) -> (num . num)
(code 'doId 2)
push X
push Y
ld X E
ld Y (E CDR) # Y on args
ld E (Y) # Eval first
eval
num E # File number?
if nz # Yes
shr E 4 # Normalize
push E # <S> Scaled file number or object ID
ld Y (Y CDR) # Next arg
ld E (Y)
eval # Eval object ID
cmp E Nil # Given?
if eq # No
pop C # Get object ID
ld E 0 # File defaults to zero
else
call xCntEX_FE # Eval object ID
ld C E # into C
pop E # Get file number
dec E # Zero-based
end
call extNmCE_X # Build external symbol name
call externX_E # New external symbol
pop Y
pop X
ret
end
sym E # Need symbol
jz symErrEX
sym (E TAIL) # External symbol?
jz extErrEX # No
xchg E Y # Keep symbol in Y
ld E ((E CDR)) # Eval second arg
eval # Eval flag
xchg E Y # Keep flag in Y, get symbol in E
call fileObjE_AC # Get file and ID
shl C 4 # Make short object ID
or C CNT
cmp Y Nil # Return only object ID?
ldz E C # Yes
if ne # No
inc A # File is zero-based
shl A 4 # Make short file number
or A CNT
call cons_E # Return (file . id)
ld (E) A
ld (E CDR) C
end
pop Y
pop X
ret
# (seq 'cnt|sym1) -> sym | NIL
(code 'doSeq 2)
push X
push Y
push Z
ld X E
ld E ((E CDR)) # Eval arg
eval
num E # File number?
if nz # Yes
off E 15 # Normalize + 'dbFile' index
sub E (hex "10") # Zero-based
shl E 2
push E # <S> Scaled file number
cmp E (DBs) # Local file?
jge dbfErrX # No
add E (DbFiles) # Get DB file
ld (DbFile) E # Set current
ld X 0 # Block index zero
else
sym E # Need symbol
jz symErrEX
sym (E TAIL) # External symbol?
jz extErrEX # No
call fileObjE_AC # Get file and ID
shl A 6 # 'dbFile' index
push A # <S> Scaled file number
cmp A (DBs) # Local file?
jge dbfErrX # No
add A (DbFiles) # Get DB file
ld (DbFile) A # Set current
shl C 6 # Block index from object ID
ld X C # Block index in X
end
call rdLockDb # Lock for reading
ld C BLK # Read 'next'
ld E BLK
ld Z Buf # into 'Buf'
call blkPeekCEZ
call getAdrZ_A # Get 'next'
ld Y A # into Y
do
add X BLKSIZE # Increment block index
cmp X Y # Less than 'next'?
if ge # No
add S I # Drop file number
ld E Nil # Return NIL
break T
end
ld E X # Block index
shl E ((DbFile) II) # Shift
ld C BLK # Read link field
call blkPeekCEZ # into 'Buf'
ld B (Z) # Get tag byte
and B BLKTAG # Block tag
cmp B 1 # One?
if eq # Yes
pop E # Get scaled file number
shr E 6 # Normalize
ld C X # Object ID
shr C 6 # Normalize
call extNmCE_X # Build external symbol name
call externX_E # New external symbol
break T
end
loop
ld A (hex "10000") # Length 1
call rwUnlockDbA # Unlock
pop Z
pop Y
pop X
ret
# (lieu 'any) -> sym | NIL
(code 'doLieu 2)
ld E ((E CDR)) # Get arg
eval # Eval it
num E # Number?
jnz retNil # Yes
sym E # Symbol?
jz retNil # No
ld A (E TAIL) # Get tail
sym A # External symbol?
jz retNil # No
off A SYM # Clear 'extern' tag
do
num A # Found name?
if nz # Yes
shl A 1 # Dirty?
if nc # No
shl A 1 # Loaded?
ldnc E Nil # No
ret
end
shl A 1 # Deleted?
ldc E Nil # Yes
ret
end
ld A (A CDR) # Skip property
loop
# (lock ['sym]) -> cnt | NIL
(code 'doLock 2)
push X
ld X E
ld E ((E CDR)) # E on arg
eval # Eval it
cmp E Nil # NIL?
if eq # Yes
ld (DbFile) (DbFiles) # Use first dbFile
ld C 0 # Start
ld E 0 # Length
call tryLockCE_FA # Lock whole DB
else
num E # Need symbol
jnz symErrEX
sym E
jz symErrEX
sym (E TAIL) # External symbol?
jz extErrEX # No
call fileObjE_AC # Get file and ID
shl A 6 # 'dbFile' index
cmp A (DBs) # Local file?
jge dbfErrX # No
add A (DbFiles) # Get DB file
ld (DbFile) A
ld A (A III) # Get block size
mul C # Multiply with object ID for start position
ld C A # Start
ld E 1 # Length
call tryLockCE_FA # Lock external symbol
end
ld E Nil # Preload NIL
if nz # Locked by another process
ld E A # Get PID
shl E 4 # Make short number
or E CNT
end
pop X
ret
(code 'dbSizeX_A 0)
cnt X # Short number?
if nz # Yes
shr X 3 # Normalize short, keep sign bit
jmp 20
end
big X # Big number?
if nz # Yes
ld A 9 # Count 8 significant bytes plus 1
do
ld C (X DIG) # Keep digit
ld X (X BIG) # More cells?
cnt X
while z # Yes
add A 8 # Increment count by 8
loop
shr X 4 # Normalize short
shl C 1 # Get most significant bit of last digit
addc X X # Any significant bits in short number?
jmp 40
end
ld A 1 # Preload 1
cmp X Nil # NIL?
if ne # No
sym X # Symbol?
if nz # Yes
ld X (X TAIL)
call nameX_X # Get name
cmp X ZERO # Any?
if ne # Yes
cnt X # Short name?
if nz # Yes
shl X 2 # Strip status bits
shr X 6 # Normalize
20 ld A 2 # Count significant bytes plus 1
do
shr X 8 # More bytes?
while nz # Yes
inc A # Increment count
loop
ret
end
ld A 9 # Count significant bytes plus 1
do
ld X (X BIG) # More cells?
cnt X
while z # Yes
add A 8 # Increment count by 8
loop
shr X 4 # Any significant bits in short name/number?
40 if nz # Yes
do
inc A # Increment count
shr X 8 # More bytes?
until z # No
end
cmp A (+ 63 1) # More than one chunk?
if ge # Yes
ld X A # Keep size+1 in X
sub A 64 # Size-63
ld C 0 # Divide by 255
div 255
setc # Plus 1
addc A X # Plus size+1
end
end
ret
end
push X # <S I> List head
push 2 # <S> Count
do
push (X CDR) # Save rest
ld X (X) # Recurse on CAR
call dbSizeX_A
pop X
add (S) A # Add result to count
cmp X Nil # CDR is NIL?
while ne # No
cmp X (S I) # Circular?
if eq # Yes
inc (S) # Increment count once more
break T
end
atom X # Atomic CDR?
if nz # Yes
call dbSizeX_A # Get size
add (S) A # Add result to count
break T
end
loop
pop A # Get result
add S I # Drop list head
end
ret
(code 'dbFetchEX 0)
ld A (E TAIL) # Get tail
num A # Any properties?
jz Ret # Yes
rcl A 1 # Dirty?
jc ret # Yes
rcl A 1 # Loaded?
jc ret # Yes
setc # Set "loaded"
rcr A 1
shr A 1
push C
: dbAEX
push Y
push Z
link
push E # <L I> Symbol
link
ld Y A # Status/name in Y
call dbFileBlkY_AC # Get file and block index
cmp A (DBs) # Local file?
if lt # Yes
call setBlockAC_Z # Set up block env
call rdLockDb # Lock for reading
call rdBlockZ_Z # Read first block
ld B (Z (- BLK)) # Get tag byte
and B BLKTAG # Block tag
cmp B 1 # One?
jne idErrXL # Bad ID
ld (GetBinZ_FB) getBlockZ_FB # Set binary read function
ld (Extn) 0 # Set external symbol offset to zero
call binReadZ_FE # Read first item
ld A (L I) # Get symbol
ld (A) E # Set value
ld (A TAIL) Y # and status/name
call binReadZ_FE # Read first property key
cmp E Nil # Any?
if ne # Yes
call consE_A # Build first property cell
ld (A) E # Cons key
ld (A CDR) Y # With status/name
ld Y A # Keep cell in Y
or A SYM # Set 'extern' tag
ld ((L I) TAIL) A # Set symbol's tail
call binReadZ_FE # Read property value
cmp E TSym # T?
if ne # No
call consE_A # Cons property value
ld (A) E
ld (A CDR) (Y) # With key
ld (Y) A # Save in first property cell
end
do
call binReadZ_FE # Read next property key
cmp E Nil # Any?
while ne # Yes
call consE_A # Build next property cell
ld (A) E # Cons key
ld (A CDR) (Y CDR) # With name
ld (Y CDR) A # Insert
ld Y A # Point Y to new cell
call binReadZ_FE # Read property value
cmp E TSym # T?
if ne # No
call consE_A # Cons property value
ld (A) E
ld (A CDR) (Y) # With key
ld (Y) A # Save in property cell
end
loop
end
ld A (hex "10000") # Length 1
call rwUnlockDbA # Unlock
else
shr A 6 # Revert to file number
ld Z (Ext) # Extended databases?
atom Z
jnz dbfErrX # No
ld C ((Z)) # First offset
shr C 4 # Normalize
cmp A C # First offset too big?
jlt dbfErrX # Yes
do
ld E (Z CDR) # More?
atom E
while z # Yes
ld C ((E)) # Next offset
shr C 4 # Normalize
cmp A C # Matching entry?
while ge # No
ld Z E # Try next DB extension
loop
push Y # Save name
push ((Z) CDR) # fun ((Obj) ..)
ld Y S # Pointer to fun in Y
push (L I) # Symbol
ld Z S # Z on (last) argument
call applyXYZ_E # Apply
pop Z # Get symbol
add S I # Drop 'fun'
pop Y # Get name
ld (Z) (E) # Set symbol's value
ld E (E CDR) # Properties?
atom E
if z # Yes
ld A E # Set 'extern' tag
or A SYM
ld (Z TAIL) A # Set property list
do
atom (E CDR) # Find end
while z
ld E (E CDR)
loop
ld (E CDR) Y # Set name
else
or Y SYM # Set 'extern' tag
ld (Z TAIL) Y # Set name
end
end
ld E (L I) # Restore symbol
drop
pop Z
pop Y
pop C
ret
(code 'dbTouchEX 0)
push C
lea C (E TAIL) # Get tail
ld A (C)
num A # Any properties?
if z # Yes
off A SYM # Clear 'extern' tag
do
lea C (A CDR) # Skip property
ld A (C)
num A # Find name
until nz
end
rcl A 1 # Already dirty?
if nc # No
rcl A 1 # Loaded?
if c # Yes
shr A 1
setc # Set "dirty"
rcr A 1
ld (C) A # in status/name
pop C
ret
end
shr A 1
setc # Set "dirty"
rcr A 1
jmp dbAEX
end
pop C
ret
(code 'dbZapE 0)
ld A (E TAIL) # Get tail
num A # Any properties?
if z # Yes
off A SYM # Clear 'extern' tag
do
ld A (A CDR) # Skip property
num A # Find name
until nz
or A SYM # Set 'extern' tag
end
shl A 2 # Set "deleted"
setc
rcr A 1
setc
rcr A 1
ld (E TAIL) A # Set empty tail
ld (E) Nil # Clear value
ret
# (commit ['any] [exe1] [exe2]) -> T
(code 'doCommit 2)
push X
push Y
push Z
ld X E
ld Y (E CDR) # Y on args
ld E (Y) # Eval 'any'
eval
link
push E # <L I> 'any'
link
null (DbLog) # Transaction log?
if z # No
inc (EnvProtect) # Protect the operation
end
call wrLockDb # Write lock DB
null (DbJnl) # Journal?
if nz # Yes
call lockJnl # Write lock journal
end
null (DbLog) # Transaction log?
if nz # Yes
ld E (DbFiles) # Iterate DB files
ld C (DBs) # Count
do
set (E (+ IV 1)) 0 # Clear dirty flag
ld (E VII) 0 # and 'fluse'
add E VIII # Increment by sizeof(dbFile)
sub C VIII # Done?
until z # Yes
push X
push Y
ld X Extern # Iterate external symbol tree
ld Y 0 # Clear TOS
do
do
ld A (X CDR) # Get subtrees
atom (A CDR) # Right subtree?
while z # Yes
ld C X # Go right
ld X (A CDR) # Invert tree
ld (A CDR) Y # TOS
ld Y C
loop
do
ld A ((X) TAIL) # Get external symbol's tail
call nameA_A # Get name
rcl A 1 # Dirty or deleted?
if c # Yes
push Y
rcr A 1
ld Y A # Name in Y
call dbFileBlkY_AC # Get file and block index
cmp A (DBs) # Local file?
if lt # Yes
call setBlockAC_Z # Set up block env
call rdBlockZ_Z # Read first block
do
call logBlock # Write to transaction log
null (BlkLink) # More blocks?
while nz # Yes
call rdBlockLinkZ_Z # Read next block
loop
ld C (DbFile)
set (C (+ IV 1)) 1 # Set dirty flag
rcl Y 2 # Deleted?
if nc # No
inc (C VII) # Increment 'fluse'
end
end
pop Y
end
ld A (X CDR) # Left subtree?
atom (A)
if z # Yes
ld C X # Go left
ld X (A) # Invert tree
ld (A) Y # TOS
or C SYM # First visit
ld Y C
break T
end
do
ld A Y # TOS
null A # Empty?
jeq 20 # Done
sym A # Second visit?
if z # Yes
ld C (A CDR) # Nodes
ld Y (C CDR) # TOS on up link
ld (C CDR) X
ld X A
break T
end
off A SYM # Set second visit
ld C (A CDR) # Nodes
ld Y (C)
ld (C) X
ld X A
loop
loop
loop
20 ld X (DbFiles) # Iterate DB files
ld Y (DBs) # Count
do
ld A (X VII) # Get 'fluse'
null A # Any?
if nz # Yes
push A # Save as count
ld A X
ld C 0 # Save Block 0 and free list
call setBlkAC_Z # Set up block env
call rdBlockZ_Z # Read first block
do
call logBlock # Write to transaction log
null (BlkLink) # More blocks?
while nz # Yes
sub (S) 1 # Decrement count
while nc
call rdBlockLinkZ_Z # Read next block
loop
add S I # Drop count
end
add X VIII # Increment by sizeof(dbFile)
sub Y VIII # Done?
until z # Yes
cc putc_unlocked((hex "FF") (DbLog)) # Write end marker
cc putc_unlocked((hex "FF") (DbLog))
cc fflush((DbLog)) # Flush Transaction log
call logFileno_A # Sync log file to disk
cc fsync(A)
nul4 # OK?
js trSyncErrX # No
pop Y
pop X
end
ld Y (Y CDR) # Eval pre-expression
ld E (Y)
eval
cmp (L I) Nil # 'any'?
if eq # No
push 0 # <L -I> No notification
else
ld A (Tell)
or A (Children)
push A # <L -I> Notify flag
if nz
push A # <L -II> Tell's buffer pointer
push (TellBuf) # <L -III> Save current 'tell' env
sub S PIPE_BUF # <L - III - PIPE_BUF> New 'tell' buffer
ld Z S # Buffer pointer
call tellBegZ_Z # Start 'tell' message
ld E (L I) # Get 'any'
call prTellEZ # Print to 'tell'
ld (L -II) Z # Save buffer pointer
end
end
push X
push Y
ld X Extern # Iterate external symbol tree
ld Y 0 # Clear TOS
do
do
ld A (X CDR) # Get subtrees
atom (A CDR) # Right subtree?
while z # Yes
ld C X # Go right
ld X (A CDR) # Invert tree
ld (A CDR) Y # TOS
ld Y C
loop
do
lea C ((X) TAIL) # Get external symbol's tail
ld A (C)
num A # Any properties?
if z # Yes
off A SYM # Clear 'extern' tag
do
lea C (A CDR) # Skip property
ld A (C)
num A # Find name
until nz
end
rcl A 1 # Dirty?
if c # Yes
push Y
rcl A 1 # Deleted?
if nc # No
setc # Set "loaded"
rcr A 1
shr A 1
ld (C) A # in status/name
ld Y A # Name in Y
call dbFileBlkY_AC # Get file and block index
cmp A (DBs) # Local file?
if lt # Yes
call setBlockAC_Z # Set up block env
call rdBlockZ_Z # Read first block
ld B 1 # First block in object (might be a new object)
or (Z (- BLK)) B # Set in tag byte
ld (PutBinBZ) putBlockBZ # Set binary print function
ld Y (X) # Get external symbol
ld E (Y) # Print value
ld (Extn) 0 # Set external symbol offset to zero
call binPrintEZ
ld Y (Y TAIL) # Get tail
off Y SYM # Clear 'extern' tag
do
num Y # Properties?
while z # Yes
atom (Y) # Flag?
if z # No
ld E ((Y) CDR) # Get key
cmp E Nil # Volatile property?
if ne # No
call binPrintEZ # Print key
ld E ((Y)) # Print value
call binPrintEZ
end
else
ld E (Y) # Get key
cmp E Nil # Volatile property?
if ne # No
call binPrintEZ # Print key
ld E TSym # Print 'T'
call binPrintEZ
end
end
ld Y (Y CDR)
loop
ld A NIX
call putBlockBZ # Output NIX
ld Z (DbBlock) # Block buffer in Z again
ld B (Z) # Lowest byte of link field
and B BLKTAG # Clear link
zxt
call setAdrAZ # Store in last block
call wrBlockZ # Write block
ld Y (BlkLink) # More blocks?
null Y
if nz # Yes
call cleanUpY # Clean up
end
null (L -I) # Notify?
if nz # Yes
ld Z (L -II) # Get buffer pointer
lea A ((TellBuf) (- PIPE_BUF 10)) # Space for EXTERN+<8>+END?
cmp Z A
if ge # No
ld A 0 # Send to all PIDs
call tellEndAZ # Close 'tell'
lea Z (L (- (+ III PIPE_BUF))) # Reset buffer pointer
call tellBegZ_Z # Start new 'tell' message
ld E (L I) # Get 'any'
call prTellEZ # Print to 'tell'
end
ld E (X) # Get external symbol
call prTellEZ # Print to 'tell'
ld (L -II) Z # Save buffer pointer
end
end
else # Deleted
shr A 2 # Set "not loaded"
ld (C) A # in status/name
ld Y A # Name in Y
call dbFileBlkY_AC # Get file and block index
cmp A (DBs) # Local file?
if lt # Yes
add A (DbFiles) # Get DB file
ld (DbFile) A # Set current
ld Y C
call cleanUpY # Clean up
null (L -I) # Notify?
if nz # Yes
ld Z (L -II) # Get buffer pointer
lea A ((TellBuf) (- PIPE_BUF 10)) # Space for EXTERN+<8>+END?
cmp Z A
if ge # No
ld A 0 # Send to all PIDs
call tellEndAZ # Close 'tell'
lea Z (L (- (+ III PIPE_BUF))) # Reset buffer pointer
call tellBegZ_Z # Start new 'tell' message
ld E (L I) # Get 'any'
call prTellEZ # Print to 'tell'
end
ld E (X) # Get external symbol
call prTellEZ # Print to 'tell'
ld (L -II) Z # Save buffer pointer
end
end
end
pop Y
end
ld A (X CDR) # Left subtree?
atom (A)
if z # Yes
ld C X # Go left
ld X (A) # Invert tree
ld (A) Y # TOS
or C SYM # First visit
ld Y C
break T
end
do
ld A Y # TOS
null A # Empty?
jeq 40 # Done
sym A # Second visit?
if z # Yes
ld C (A CDR) # Nodes
ld Y (C CDR) # TOS on up link
ld (C CDR) X
ld X A
break T
end
off A SYM # Set second visit
ld C (A CDR) # Nodes
ld Y (C)
ld (C) X
ld X A
loop
loop
loop
40 pop Y
pop X
null (L -I) # Notify?
if nz # Yes
ld A 0 # Send to all PIDs
ld Z (L -II) # Get buffer pointer
call tellEndAZ # Close 'tell'
add S PIPE_BUF # Drop 'tell' buffer
pop (TellBuf)
end
ld Y (Y CDR) # Eval post-expression
ld E (Y)
eval
null (DbJnl) # Journal?
if nz # Yes
call unLockJnl # Unlock journal
end
ld Y (Zap) # Objects to delete?
atom Y
if z # Yes
push (OutFile) # Save output channel
sub S (+ III BUFSIZ) # <S> Local buffer with sizeof(outFile)
ld E (Y CDR) # Get zap file pathname
call pathStringE_SZ # Write to stack buffer
cc open(S (| O_APPEND O_CREAT O_WRONLY) (oct "0666")) # Open zap file
nul4 # OK?
js openErrEX # No
ld S Z # Drop buffer
ld (S) A # Store 'fd' in outFile
ld (S I) 0 # Clear 'ix'
ld (S II) 0 # and 'tty'
ld (OutFile) S # Set OutFile
ld (PutBinBZ) putStdoutB # Set binary print function
ld Y (Y) # Get zap list
do
atom Y # More symbols?
while z # Yes
ld E (Y) # Get next
ld (Extn) 0 # Set external symbol offset to zero
call binPrintEZ # Print it
ld Y (Y CDR)
loop
ld A S # Flush file
call flushA_F
ld A S # Close file
call closeAX
ld ((Zap)) Nil # Clear zap list
add S (+ III BUFSIZ) # Drop buffer
pop (OutFile) # Restore output channel
end
null (DbLog) # Transaction log?
if nz # Yes
call fsyncDB # Sync DB files to disk
call truncLog # Truncate log file
end
ld A 0 # Length
call rwUnlockDbA # Unlock all
call unsync # Release sync
null (DbLog) # Transaction log?
if z # No
dec (EnvProtect) # Unprotect
end
ld E (DbFiles) # Iterate DB files
ld C (DBs) # Count
do
ld (E VII) -1 # Init 'fluse'
add E VIII # Increment by sizeof(dbFile)
sub C VIII # Done?
until z # Yes
drop
pop Z
pop Y
pop X
ld E TSym # Return T
ret
# (rollback) -> T
(code 'doRollback 2)
push X
push Y
ld X Extern # Iterate external symbol tree
ld Y 0 # Clear TOS
do
do
ld A (X CDR) # Get subtrees
atom (A CDR) # Right subtree?
while z # Yes
ld C X # Go right
ld X (A CDR) # Invert tree
ld (A CDR) Y # TOS
ld Y C
loop
do
ld E (X) # Get external symbol
ld A (E TAIL)
num A # Any properties?
if z # Yes
off A SYM # Clear 'extern' tag
do
ld A (A CDR) # Skip property
num A # Find name
until nz
or A SYM # Set 'extern' tag
end
shl A 2 # Strip status bits
shr A 2
ld (E TAIL) A # Set status/name
ld (E) Nil # Clear value
ld A (X CDR) # Left subtree?
atom (A)
if z # Yes
ld C X # Go left
ld X (A) # Invert tree
ld (A) Y # TOS
or C SYM # First visit
ld Y C
break T
end
do
ld A Y # TOS
null A # Empty?
jeq 90 # Done
sym A # Second visit?
if z # Yes
ld C (A CDR) # Nodes
ld Y (C CDR) # TOS on up link
ld (C CDR) X
ld X A
break T
end
off A SYM # Set second visit
ld C (A CDR) # Nodes
ld Y (C)
ld (C) X
ld X A
loop
loop
loop
90 ld Y (Zap) # Objects to delete?
atom Y
if z # Yes
ld (Y) Nil # Clear zap list
end
ld A 0 # Length
call rwUnlockDbA # Unlock all
call unsync # Release sync
pop Y
pop X
ld E TSym # Return T
ret
# (mark 'sym|0 [NIL | T | 0]) -> flg
(code 'doMark 2)
push X
push Y
ld X E
ld Y (E CDR) # Y on args
ld E (Y) # Eval first
eval
cmp E ZERO # Zero?
if eq # Yes
ld X (DbFiles) # Iterate DB files
ld Y (DBs) # Count
do
sub Y VIII # Done?
while ge # No
ld (X V) 0 # Mark vector size zero
cc free((X VI)) # Free mark bit vector
ld (X VI) 0 # Set to null
add X VIII # Increment by sizeof(dbFile)
loop
ld E Nil # Return NIL
pop Y
pop X
ret
end
num E # Need symbol
jnz symErrEX
sym E
jz symErrEX
sym (E TAIL) # External symbol?
jz extErrEX # No
push E # <S> 'sym'
ld E ((Y CDR)) # Eval second arg
eval
xchg E (S) # <S> NIL | T | 0
call fileObjE_AC # Get file and ID
shl A 6 # 'dbFile' index
cmp A (DBs) # Local file?
jge dbfErrX # No
add A (DbFiles) # Get DB file
ld X A # into X
ld E C # Object ID in E
shr E 3 # Byte position
cmp E (X V) # Greater or equal to mark vector size?
if ge # Yes
push E # Save byte position
inc E # New size
ld Y E # Keep in Y
ld A (X VI) # Get mark bit vector
call allocAE_A # Increase to new size
ld (X VI) A
xchg E (X V) # Store size in 'dbFile', get old size
sub Y E # Length of new area
add E A # Start position of new area
ld B 0 # Clear new area
mset (E) Y
pop E # Restore byte position
end
add E (X VI) # Byte position in bit vector
and C 7 # Lowest three bits of object ID
ld B 1 # Bit position
shl B C # in B
test (E) B # Bit test
if z # Not set
cmp (S) TSym # Second arg 'T'?
if eq # Yes
or (E) B # Set mark
end
ld E Nil # Return NIL
else # Bit was set
cmp (S) ZERO # Second arg '0'?
if eq # Yes
not B
and (E) B # Clear mark
end
ld E TSym # Return T
end
add S I # Drop second arg
pop Y
pop X
ret
# (free 'cnt) -> (sym . lst)
(code 'doFree 2)
push X
push Y
push Z
ld X E
ld E ((E CDR)) # Eval 'cnt'
call evCntEX_FE
dec E # File is zero-based
shl E 6 # 'dbFile' index
cmp E (DBs) # Local file?
jge dbfErrX # No
add E (DbFiles) # Get DB file
ld (DbFile) E # Set current
call rdLockDb # Lock for reading
ld C (* 2 BLK) # Read 'free' and 'next'
ld E 0 # from block zero
ld Z Buf # into 'Buf'
call blkPeekCEZ
call getAdrZ_A # Get 'free'
ld (BlkLink) A # Store as next block
add Z BLK
call getAdrZ_A # Get 'next'
ld C A # Object ID
shr C 6 # Normalize
ld E ((DbFile) I) # Get file number
call extNmCE_X # Build external symbol name
call externX_E # New external symbol
call cons_Y # Cons as CAR of result list
ld (Y) E
ld (Y CDR) Nil
link
push Y # (L I) Result list
link
do # Collect free list
ld C (BlkLink) # Next free block?
null C
while nz # Yes
shr C 6 # Normalize
ld E ((DbFile) I) # Get file number
call extNmCE_X # Build external symbol name
call externX_E # New external symbol
call cons_A # Next cell
ld (A) E
ld (A CDR) Nil
ld (Y CDR) A # Append ot result list
ld Y A
call rdBlockLinkZ_Z # Read next block
loop
ld A (hex "10000") # Length 1
call rwUnlockDbA # Unlock
ld E (L I) # Get result list
drop
pop Z
pop Y
pop X
ret
# (dbck ['cnt] 'flg) -> any
(code 'doDbck 2)
push X
push Y
push Z
ld X E
ld Y (E CDR) # Y on args
ld E (Y) # Eval first
eval
ld (DbFile) (DbFiles) # Default to first dbFile
cnt E # 'cnt' arg?
if nz # Yes
off E 15 # Normalize + 'dbFile' index
sub E (hex "10") # Zero-based
shl E 2
cmp E (DBs) # Local file?
jge dbfErrX # No
add E (DbFiles) # Get DB file
ld (DbFile) E # Set current
ld Y (Y CDR) # Next arg
ld E (Y)
eval # Eval next arg
end
push E # <S III> 'flg'
push ZERO # <S II> 'syms'
push ZERO # <S I> 'blks'
inc (EnvProtect) # Protect the operation
call wrLockDb # Write lock DB
null (DbJnl) # Journal?
if nz # Yes
call lockJnl # Write lock journal
end
ld C (* 2 BLK) # Read 'free' and 'next'
ld E 0 # from block zero
ld Z Buf # into 'Buf'
call blkPeekCEZ
call getAdrZ_A # Get 'free'
ld (BlkLink) A # Store as next block
add Z BLK
call getAdrZ_A # Get 'next'
push A # <S> 'next'
ld Y BLKSIZE # 'cnt' in Y
do # Check free list
ld A (BlkLink) # Next block?
null A
while nz # Yes
call rdBlockIndexAZ_Z # Read next block
add Y BLKSIZE # Increment 'cnt'
cmp Y (S) # Greater than 'next'?
if gt # Yes
ld E CircFree # Circular free list
call mkStrE_E # Return message
jmp 90
end
ld Z (DbBlock) # Block buffer in Z again
or (Z) BLKTAG # Mark free list
call wrBlockZ # Write block
loop
ld X BLKSIZE # 'p' in X
do # Check all chains
cmp X (S) # Reached 'next'?
while ne # No
ld A X # Get 'p'
call rdBlockIndexAZ_Z # Read next block
sub Z BLK # Block buffer in Z again
ld B (Z) # Get tag byte
and B BLKTAG # Block tag zero?
if z # Yes
add Y BLKSIZE # Increment 'cnt'
movn (Z) (Buf) BLK # Insert into free list
call wrBlockZ # Write block
ld A X # Write 'free'
ld Z Buf # into 'Buf'
call setAdrAZ
ld C BLK
ld E 0 # 'free' address
call blkPokeCEZ # Write 'Buf'
else
cmp B 1 # ID-block of symbol?
if eq # Yes
push X
add (S II) (hex "10") # Increment 'blks'
add (S III) (hex "10") # Increment 'syms'
add Y BLKSIZE # Increment 'cnt'
ld X 2 # Init 'i'
do
ld A (BlkLink) # Next block?
null A
while nz # Yes
add Y BLKSIZE # Increment 'cnt'
add (S II) (hex "10") # Increment 'blks'
call rdBlockIndexAZ_Z # Read next block
ld B (Z (- BLK)) # Get tag byte
and B BLKTAG # Block tag
cmp B X # Same as 'i'?
if ne # No
ld E BadChain # Bad object chain
call mkStrE_E # Return message
jmp 90
end
cmp X BLKTAG # Less than maximum?
if lt # Yes
inc X # Increment
end
loop
pop X
end
end
add X BLKSIZE # Increment 'p'
loop
ld Z Buf # Get 'free'
call getAdrZ_A
ld (BlkLink) A # Store as next block
do # Unmark free list
null A # Any?
while nz # Yes
call rdBlockIndexAZ_Z # Read next block
sub Z BLK # Block buffer in Z again
ld B (Z) # Get tag byte
and B BLKTAG # Block tag non-zero?
if nz # Nes
off (Z) BLKTAG # Clear tag
call wrBlockZ # Write block
end
ld A (BlkLink) # Get next block
loop
cmp Y (S) # 'cnt' == 'next'?
if ne # No
ld E BadCount # Circular free list
call mkStrE_E # Return message
else
cmp (S III) Nil # 'flg' is NIL?
ldz E Nil # Yes: Return NIL
if ne # No
call cons_E # Return (blks . syms)
ld (E) (S I) # 'blks'
ld (E CDR) (S II) # 'syms'
end
end
90 add S IV # Drop 'next', 'blks', 'syms' and 'flg'
null (DbJnl) # Journal?
if nz # Yes
call unLockJnl # Unlock journal
end
ld A (hex "10000") # Length 1
call rwUnlockDbA # Unlock
dec (EnvProtect) # Unprotect
pop Z
pop Y
pop X
ret
# vi:et:ts=3:sw=3
|