Spaces:
Sleeping
Sleeping
File size: 84,400 Bytes
6655e35 | 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 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 | /* The MIT License (MIT)
*
* Copyright 2015-2018 Peter A. Bigot
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
/**
* Support for translating between Buffer instances and JavaScript
* native types.
*
* {@link module:Layout~Layout|Layout} is the basis of a class
* hierarchy that associates property names with sequences of encoded
* bytes.
*
* Layouts are supported for these scalar (numeric) types:
* * {@link module:Layout~UInt|Unsigned integers in little-endian
* format} with {@link module:Layout.u8|8-bit}, {@link
* module:Layout.u16|16-bit}, {@link module:Layout.u24|24-bit},
* {@link module:Layout.u32|32-bit}, {@link
* module:Layout.u40|40-bit}, and {@link module:Layout.u48|48-bit}
* representation ranges;
* * {@link module:Layout~UIntBE|Unsigned integers in big-endian
* format} with {@link module:Layout.u16be|16-bit}, {@link
* module:Layout.u24be|24-bit}, {@link module:Layout.u32be|32-bit},
* {@link module:Layout.u40be|40-bit}, and {@link
* module:Layout.u48be|48-bit} representation ranges;
* * {@link module:Layout~Int|Signed integers in little-endian
* format} with {@link module:Layout.s8|8-bit}, {@link
* module:Layout.s16|16-bit}, {@link module:Layout.s24|24-bit},
* {@link module:Layout.s32|32-bit}, {@link
* module:Layout.s40|40-bit}, and {@link module:Layout.s48|48-bit}
* representation ranges;
* * {@link module:Layout~IntBE|Signed integers in big-endian format}
* with {@link module:Layout.s16be|16-bit}, {@link
* module:Layout.s24be|24-bit}, {@link module:Layout.s32be|32-bit},
* {@link module:Layout.s40be|40-bit}, and {@link
* module:Layout.s48be|48-bit} representation ranges;
* * 64-bit integral values that decode to an exact (if magnitude is
* less than 2^53) or nearby integral Number in {@link
* module:Layout.nu64|unsigned little-endian}, {@link
* module:Layout.nu64be|unsigned big-endian}, {@link
* module:Layout.ns64|signed little-endian}, and {@link
* module:Layout.ns64be|unsigned big-endian} encodings;
* * 32-bit floating point values with {@link
* module:Layout.f32|little-endian} and {@link
* module:Layout.f32be|big-endian} representations;
* * 64-bit floating point values with {@link
* module:Layout.f64|little-endian} and {@link
* module:Layout.f64be|big-endian} representations;
* * {@link module:Layout.const|Constants} that take no space in the
* encoded expression.
*
* and for these aggregate types:
* * {@link module:Layout.seq|Sequence}s of instances of a {@link
* module:Layout~Layout|Layout}, with JavaScript representation as
* an Array and constant or data-dependent {@link
* module:Layout~Sequence#count|length};
* * {@link module:Layout.struct|Structure}s that aggregate a
* heterogeneous sequence of {@link module:Layout~Layout|Layout}
* instances, with JavaScript representation as an Object;
* * {@link module:Layout.union|Union}s that support multiple {@link
* module:Layout~VariantLayout|variant layouts} over a fixed
* (padded) or variable (not padded) span of bytes, using an
* unsigned integer at the start of the data or a separate {@link
* module:Layout.unionLayoutDiscriminator|layout element} to
* determine which layout to use when interpreting the buffer
* contents;
* * {@link module:Layout.bits|BitStructure}s that contain a sequence
* of individual {@link
* module:Layout~BitStructure#addField|BitField}s packed into an 8,
* 16, 24, or 32-bit unsigned integer starting at the least- or
* most-significant bit;
* * {@link module:Layout.cstr|C strings} of varying length;
* * {@link module:Layout.blob|Blobs} of fixed- or variable-{@link
* module:Layout~Blob#length|length} raw data.
*
* All {@link module:Layout~Layout|Layout} instances are immutable
* after construction, to prevent internal state from becoming
* inconsistent.
*
* @local Layout
* @local ExternalLayout
* @local GreedyCount
* @local OffsetLayout
* @local UInt
* @local UIntBE
* @local Int
* @local IntBE
* @local NearUInt64
* @local NearUInt64BE
* @local NearInt64
* @local NearInt64BE
* @local Float
* @local FloatBE
* @local Double
* @local DoubleBE
* @local Sequence
* @local Structure
* @local UnionDiscriminator
* @local UnionLayoutDiscriminator
* @local Union
* @local VariantLayout
* @local BitStructure
* @local BitField
* @local Boolean
* @local Blob
* @local CString
* @local Constant
* @local bindConstructorLayout
* @module Layout
* @license MIT
* @author Peter A. Bigot
* @see {@link https://github.com/pabigot/buffer-layout|buffer-layout on GitHub}
*/
'use strict';
/**
* Base class for layout objects.
*
* **NOTE** This is an abstract base class; you can create instances
* if it amuses you, but they won't support the {@link
* Layout#encode|encode} or {@link Layout#decode|decode} functions.
*
* @param {Number} span - Initializer for {@link Layout#span|span}. The
* parameter must be an integer; a negative value signifies that the
* span is {@link Layout#getSpan|value-specific}.
*
* @param {string} [property] - Initializer for {@link
* Layout#property|property}.
*
* @abstract
*/
class Layout {
constructor(span, property) {
if (!Number.isInteger(span)) {
throw new TypeError('span must be an integer');
}
/** The span of the layout in bytes.
*
* Positive values are generally expected.
*
* Zero will only appear in {@link Constant}s and in {@link
* Sequence}s where the {@link Sequence#count|count} is zero.
*
* A negative value indicates that the span is value-specific, and
* must be obtained using {@link Layout#getSpan|getSpan}. */
this.span = span;
/** The property name used when this layout is represented in an
* Object.
*
* Used only for layouts that {@link Layout#decode|decode} to Object
* instances. If left undefined the span of the unnamed layout will
* be treated as padding: it will not be mutated by {@link
* Layout#encode|encode} nor represented as a property in the
* decoded Object. */
this.property = property;
}
/** Function to create an Object into which decoded properties will
* be written.
*
* Used only for layouts that {@link Layout#decode|decode} to Object
* instances, which means:
* * {@link Structure}
* * {@link Union}
* * {@link VariantLayout}
* * {@link BitStructure}
*
* If left undefined the JavaScript representation of these layouts
* will be Object instances.
*
* See {@link bindConstructorLayout}.
*/
makeDestinationObject() {
return {};
}
/**
* Decode from a Buffer into an JavaScript value.
*
* @param {Buffer} b - the buffer from which encoded data is read.
*
* @param {Number} [offset] - the offset at which the encoded data
* starts. If absent a zero offset is inferred.
*
* @returns {(Number|Array|Object)} - the value of the decoded data.
*
* @abstract
*/
decode(b, offset) {
throw new Error('Layout is abstract');
}
/**
* Encode a JavaScript value into a Buffer.
*
* @param {(Number|Array|Object)} src - the value to be encoded into
* the buffer. The type accepted depends on the (sub-)type of {@link
* Layout}.
*
* @param {Buffer} b - the buffer into which encoded data will be
* written.
*
* @param {Number} [offset] - the offset at which the encoded data
* starts. If absent a zero offset is inferred.
*
* @returns {Number} - the number of bytes encoded, including the
* space skipped for internal padding, but excluding data such as
* {@link Sequence#count|lengths} when stored {@link
* ExternalLayout|externally}. This is the adjustment to `offset`
* producing the offset where data for the next layout would be
* written.
*
* @abstract
*/
encode(src, b, offset) {
throw new Error('Layout is abstract');
}
/**
* Calculate the span of a specific instance of a layout.
*
* @param {Buffer} b - the buffer that contains an encoded instance.
*
* @param {Number} [offset] - the offset at which the encoded instance
* starts. If absent a zero offset is inferred.
*
* @return {Number} - the number of bytes covered by the layout
* instance. If this method is not overridden in a subclass the
* definition-time constant {@link Layout#span|span} will be
* returned.
*
* @throws {RangeError} - if the length of the value cannot be
* determined.
*/
getSpan(b, offset) {
if (0 > this.span) {
throw new RangeError('indeterminate span');
}
return this.span;
}
/**
* Replicate the layout using a new property.
*
* This function must be used to get a structurally-equivalent layout
* with a different name since all {@link Layout} instances are
* immutable.
*
* **NOTE** This is a shallow copy. All fields except {@link
* Layout#property|property} are strictly equal to the origin layout.
*
* @param {String} property - the value for {@link
* Layout#property|property} in the replica.
*
* @returns {Layout} - the copy with {@link Layout#property|property}
* set to `property`.
*/
replicate(property) {
const rv = Object.create(this.constructor.prototype);
Object.assign(rv, this);
rv.property = property;
return rv;
}
/**
* Create an object from layout properties and an array of values.
*
* **NOTE** This function returns `undefined` if invoked on a layout
* that does not return its value as an Object. Objects are
* returned for things that are a {@link Structure}, which includes
* {@link VariantLayout|variant layouts} if they are structures, and
* excludes {@link Union}s. If you want this feature for a union
* you must use {@link Union.getVariant|getVariant} to select the
* desired layout.
*
* @param {Array} values - an array of values that correspond to the
* default order for properties. As with {@link Layout#decode|decode}
* layout elements that have no property name are skipped when
* iterating over the array values. Only the top-level properties are
* assigned; arguments are not assigned to properties of contained
* layouts. Any unused values are ignored.
*
* @return {(Object|undefined)}
*/
fromArray(values) {
return undefined;
}
}
exports.Layout = Layout;
/* Provide text that carries a name (such as for a function that will
* be throwing an error) annotated with the property of a given layout
* (such as one for which the value was unacceptable).
*
* @ignore */
function nameWithProperty(name, lo) {
if (lo.property) {
return name + '[' + lo.property + ']';
}
return name;
}
exports.nameWithProperty = nameWithProperty;
/**
* Augment a class so that instances can be encoded/decoded using a
* given layout.
*
* Calling this function couples `Class` with `layout` in several ways:
*
* * `Class.layout_` becomes a static member property equal to `layout`;
* * `layout.boundConstructor_` becomes a static member property equal
* to `Class`;
* * The {@link Layout#makeDestinationObject|makeDestinationObject()}
* property of `layout` is set to a function that returns a `new
* Class()`;
* * `Class.decode(b, offset)` becomes a static member function that
* delegates to {@link Layout#decode|layout.decode}. The
* synthesized function may be captured and extended.
* * `Class.prototype.encode(b, offset)` provides an instance member
* function that delegates to {@link Layout#encode|layout.encode}
* with `src` set to `this`. The synthesized function may be
* captured and extended, but when the extension is invoked `this`
* must be explicitly bound to the instance.
*
* @param {class} Class - a JavaScript class with a nullary
* constructor.
*
* @param {Layout} layout - the {@link Layout} instance used to encode
* instances of `Class`.
*/
function bindConstructorLayout(Class, layout) {
if ('function' !== typeof Class) {
throw new TypeError('Class must be constructor');
}
if (Class.hasOwnProperty('layout_')) {
throw new Error('Class is already bound to a layout');
}
if (!(layout && (layout instanceof Layout))) {
throw new TypeError('layout must be a Layout');
}
if (layout.hasOwnProperty('boundConstructor_')) {
throw new Error('layout is already bound to a constructor');
}
Class.layout_ = layout;
layout.boundConstructor_ = Class;
layout.makeDestinationObject = (() => new Class());
Object.defineProperty(Class.prototype, 'encode', {
value: function(b, offset) {
return layout.encode(this, b, offset);
},
writable: true,
});
Object.defineProperty(Class, 'decode', {
value: function(b, offset) {
return layout.decode(b, offset);
},
writable: true,
});
}
exports.bindConstructorLayout = bindConstructorLayout;
/**
* An object that behaves like a layout but does not consume space
* within its containing layout.
*
* This is primarily used to obtain metadata about a member, such as a
* {@link OffsetLayout} that can provide data about a {@link
* Layout#getSpan|value-specific span}.
*
* **NOTE** This is an abstract base class; you can create instances
* if it amuses you, but they won't support {@link
* ExternalLayout#isCount|isCount} or other {@link Layout} functions.
*
* @param {Number} span - initializer for {@link Layout#span|span}.
* The parameter can range from 1 through 6.
*
* @param {string} [property] - initializer for {@link
* Layout#property|property}.
*
* @abstract
* @augments {Layout}
*/
class ExternalLayout extends Layout {
/**
* Return `true` iff the external layout decodes to an unsigned
* integer layout.
*
* In that case it can be used as the source of {@link
* Sequence#count|Sequence counts}, {@link Blob#length|Blob lengths},
* or as {@link UnionLayoutDiscriminator#layout|external union
* discriminators}.
*
* @abstract
*/
isCount() {
throw new Error('ExternalLayout is abstract');
}
}
/**
* An {@link ExternalLayout} that determines its {@link
* Layout#decode|value} based on offset into and length of the buffer
* on which it is invoked.
*
* *Factory*: {@link module:Layout.greedy|greedy}
*
* @param {Number} [elementSpan] - initializer for {@link
* GreedyCount#elementSpan|elementSpan}.
*
* @param {string} [property] - initializer for {@link
* Layout#property|property}.
*
* @augments {ExternalLayout}
*/
class GreedyCount extends ExternalLayout {
constructor(elementSpan, property) {
if (undefined === elementSpan) {
elementSpan = 1;
}
if ((!Number.isInteger(elementSpan)) || (0 >= elementSpan)) {
throw new TypeError('elementSpan must be a (positive) integer');
}
super(-1, property);
/** The layout for individual elements of the sequence. The value
* must be a positive integer. If not provided, the value will be
* 1. */
this.elementSpan = elementSpan;
}
/** @override */
isCount() {
return true;
}
/** @override */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
const rem = b.length - offset;
return Math.floor(rem / this.elementSpan);
}
/** @override */
encode(src, b, offset) {
return 0;
}
}
/**
* An {@link ExternalLayout} that supports accessing a {@link Layout}
* at a fixed offset from the start of another Layout. The offset may
* be before, within, or after the base layout.
*
* *Factory*: {@link module:Layout.offset|offset}
*
* @param {Layout} layout - initializer for {@link
* OffsetLayout#layout|layout}, modulo `property`.
*
* @param {Number} [offset] - Initializes {@link
* OffsetLayout#offset|offset}. Defaults to zero.
*
* @param {string} [property] - Optional new property name for a
* {@link Layout#replicate| replica} of `layout` to be used as {@link
* OffsetLayout#layout|layout}. If not provided the `layout` is used
* unchanged.
*
* @augments {Layout}
*/
class OffsetLayout extends ExternalLayout {
constructor(layout, offset, property) {
if (!(layout instanceof Layout)) {
throw new TypeError('layout must be a Layout');
}
if (undefined === offset) {
offset = 0;
} else if (!Number.isInteger(offset)) {
throw new TypeError('offset must be integer or undefined');
}
super(layout.span, property || layout.property);
/** The subordinated layout. */
this.layout = layout;
/** The location of {@link OffsetLayout#layout} relative to the
* start of another layout.
*
* The value may be positive or negative, but an error will thrown
* if at the point of use it goes outside the span of the Buffer
* being accessed. */
this.offset = offset;
}
/** @override */
isCount() {
return ((this.layout instanceof UInt)
|| (this.layout instanceof UIntBE));
}
/** @override */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
return this.layout.decode(b, offset + this.offset);
}
/** @override */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
return this.layout.encode(src, b, offset + this.offset);
}
}
/**
* Represent an unsigned integer in little-endian format.
*
* *Factory*: {@link module:Layout.u8|u8}, {@link
* module:Layout.u16|u16}, {@link module:Layout.u24|u24}, {@link
* module:Layout.u32|u32}, {@link module:Layout.u40|u40}, {@link
* module:Layout.u48|u48}
*
* @param {Number} span - initializer for {@link Layout#span|span}.
* The parameter can range from 1 through 6.
*
* @param {string} [property] - initializer for {@link
* Layout#property|property}.
*
* @augments {Layout}
*/
class UInt extends Layout {
constructor(span, property) {
super(span, property);
if (6 < this.span) {
throw new RangeError('span must not exceed 6 bytes');
}
}
/** @override */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
return b.readUIntLE(offset, this.span);
}
/** @override */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
b.writeUIntLE(src, offset, this.span);
return this.span;
}
}
/**
* Represent an unsigned integer in big-endian format.
*
* *Factory*: {@link module:Layout.u8be|u8be}, {@link
* module:Layout.u16be|u16be}, {@link module:Layout.u24be|u24be},
* {@link module:Layout.u32be|u32be}, {@link
* module:Layout.u40be|u40be}, {@link module:Layout.u48be|u48be}
*
* @param {Number} span - initializer for {@link Layout#span|span}.
* The parameter can range from 1 through 6.
*
* @param {string} [property] - initializer for {@link
* Layout#property|property}.
*
* @augments {Layout}
*/
class UIntBE extends Layout {
constructor(span, property) {
super( span, property);
if (6 < this.span) {
throw new RangeError('span must not exceed 6 bytes');
}
}
/** @override */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
return b.readUIntBE(offset, this.span);
}
/** @override */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
b.writeUIntBE(src, offset, this.span);
return this.span;
}
}
/**
* Represent a signed integer in little-endian format.
*
* *Factory*: {@link module:Layout.s8|s8}, {@link
* module:Layout.s16|s16}, {@link module:Layout.s24|s24}, {@link
* module:Layout.s32|s32}, {@link module:Layout.s40|s40}, {@link
* module:Layout.s48|s48}
*
* @param {Number} span - initializer for {@link Layout#span|span}.
* The parameter can range from 1 through 6.
*
* @param {string} [property] - initializer for {@link
* Layout#property|property}.
*
* @augments {Layout}
*/
class Int extends Layout {
constructor(span, property) {
super(span, property);
if (6 < this.span) {
throw new RangeError('span must not exceed 6 bytes');
}
}
/** @override */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
return b.readIntLE(offset, this.span);
}
/** @override */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
b.writeIntLE(src, offset, this.span);
return this.span;
}
}
/**
* Represent a signed integer in big-endian format.
*
* *Factory*: {@link module:Layout.s8be|s8be}, {@link
* module:Layout.s16be|s16be}, {@link module:Layout.s24be|s24be},
* {@link module:Layout.s32be|s32be}, {@link
* module:Layout.s40be|s40be}, {@link module:Layout.s48be|s48be}
*
* @param {Number} span - initializer for {@link Layout#span|span}.
* The parameter can range from 1 through 6.
*
* @param {string} [property] - initializer for {@link
* Layout#property|property}.
*
* @augments {Layout}
*/
class IntBE extends Layout {
constructor(span, property) {
super(span, property);
if (6 < this.span) {
throw new RangeError('span must not exceed 6 bytes');
}
}
/** @override */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
return b.readIntBE(offset, this.span);
}
/** @override */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
b.writeIntBE(src, offset, this.span);
return this.span;
}
}
const V2E32 = Math.pow(2, 32);
/* True modulus high and low 32-bit words, where low word is always
* non-negative. */
function divmodInt64(src) {
const hi32 = Math.floor(src / V2E32);
const lo32 = src - (hi32 * V2E32);
return {hi32, lo32};
}
/* Reconstruct Number from quotient and non-negative remainder */
function roundedInt64(hi32, lo32) {
return hi32 * V2E32 + lo32;
}
/**
* Represent an unsigned 64-bit integer in little-endian format when
* encoded and as a near integral JavaScript Number when decoded.
*
* *Factory*: {@link module:Layout.nu64|nu64}
*
* **NOTE** Values with magnitude greater than 2^52 may not decode to
* the exact value of the encoded representation.
*
* @augments {Layout}
*/
class NearUInt64 extends Layout {
constructor(property) {
super(8, property);
}
/** @override */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
const lo32 = b.readUInt32LE(offset);
const hi32 = b.readUInt32LE(offset + 4);
return roundedInt64(hi32, lo32);
}
/** @override */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
const split = divmodInt64(src);
b.writeUInt32LE(split.lo32, offset);
b.writeUInt32LE(split.hi32, offset + 4);
return 8;
}
}
/**
* Represent an unsigned 64-bit integer in big-endian format when
* encoded and as a near integral JavaScript Number when decoded.
*
* *Factory*: {@link module:Layout.nu64be|nu64be}
*
* **NOTE** Values with magnitude greater than 2^52 may not decode to
* the exact value of the encoded representation.
*
* @augments {Layout}
*/
class NearUInt64BE extends Layout {
constructor(property) {
super(8, property);
}
/** @override */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
const hi32 = b.readUInt32BE(offset);
const lo32 = b.readUInt32BE(offset + 4);
return roundedInt64(hi32, lo32);
}
/** @override */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
const split = divmodInt64(src);
b.writeUInt32BE(split.hi32, offset);
b.writeUInt32BE(split.lo32, offset + 4);
return 8;
}
}
/**
* Represent a signed 64-bit integer in little-endian format when
* encoded and as a near integral JavaScript Number when decoded.
*
* *Factory*: {@link module:Layout.ns64|ns64}
*
* **NOTE** Values with magnitude greater than 2^52 may not decode to
* the exact value of the encoded representation.
*
* @augments {Layout}
*/
class NearInt64 extends Layout {
constructor(property) {
super(8, property);
}
/** @override */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
const lo32 = b.readUInt32LE(offset);
const hi32 = b.readInt32LE(offset + 4);
return roundedInt64(hi32, lo32);
}
/** @override */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
const split = divmodInt64(src);
b.writeUInt32LE(split.lo32, offset);
b.writeInt32LE(split.hi32, offset + 4);
return 8;
}
}
/**
* Represent a signed 64-bit integer in big-endian format when
* encoded and as a near integral JavaScript Number when decoded.
*
* *Factory*: {@link module:Layout.ns64be|ns64be}
*
* **NOTE** Values with magnitude greater than 2^52 may not decode to
* the exact value of the encoded representation.
*
* @augments {Layout}
*/
class NearInt64BE extends Layout {
constructor(property) {
super(8, property);
}
/** @override */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
const hi32 = b.readInt32BE(offset);
const lo32 = b.readUInt32BE(offset + 4);
return roundedInt64(hi32, lo32);
}
/** @override */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
const split = divmodInt64(src);
b.writeInt32BE(split.hi32, offset);
b.writeUInt32BE(split.lo32, offset + 4);
return 8;
}
}
/**
* Represent a 32-bit floating point number in little-endian format.
*
* *Factory*: {@link module:Layout.f32|f32}
*
* @param {string} [property] - initializer for {@link
* Layout#property|property}.
*
* @augments {Layout}
*/
class Float extends Layout {
constructor(property) {
super(4, property);
}
/** @override */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
return b.readFloatLE(offset);
}
/** @override */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
b.writeFloatLE(src, offset);
return 4;
}
}
/**
* Represent a 32-bit floating point number in big-endian format.
*
* *Factory*: {@link module:Layout.f32be|f32be}
*
* @param {string} [property] - initializer for {@link
* Layout#property|property}.
*
* @augments {Layout}
*/
class FloatBE extends Layout {
constructor(property) {
super(4, property);
}
/** @override */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
return b.readFloatBE(offset);
}
/** @override */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
b.writeFloatBE(src, offset);
return 4;
}
}
/**
* Represent a 64-bit floating point number in little-endian format.
*
* *Factory*: {@link module:Layout.f64|f64}
*
* @param {string} [property] - initializer for {@link
* Layout#property|property}.
*
* @augments {Layout}
*/
class Double extends Layout {
constructor(property) {
super(8, property);
}
/** @override */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
return b.readDoubleLE(offset);
}
/** @override */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
b.writeDoubleLE(src, offset);
return 8;
}
}
/**
* Represent a 64-bit floating point number in big-endian format.
*
* *Factory*: {@link module:Layout.f64be|f64be}
*
* @param {string} [property] - initializer for {@link
* Layout#property|property}.
*
* @augments {Layout}
*/
class DoubleBE extends Layout {
constructor(property) {
super(8, property);
}
/** @override */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
return b.readDoubleBE(offset);
}
/** @override */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
b.writeDoubleBE(src, offset);
return 8;
}
}
/**
* Represent a contiguous sequence of a specific layout as an Array.
*
* *Factory*: {@link module:Layout.seq|seq}
*
* @param {Layout} elementLayout - initializer for {@link
* Sequence#elementLayout|elementLayout}.
*
* @param {(Number|ExternalLayout)} count - initializer for {@link
* Sequence#count|count}. The parameter must be either a positive
* integer or an instance of {@link ExternalLayout}.
*
* @param {string} [property] - initializer for {@link
* Layout#property|property}.
*
* @augments {Layout}
*/
class Sequence extends Layout {
constructor(elementLayout, count, property) {
if (!(elementLayout instanceof Layout)) {
throw new TypeError('elementLayout must be a Layout');
}
if (!(((count instanceof ExternalLayout) && count.isCount())
|| (Number.isInteger(count) && (0 <= count)))) {
throw new TypeError('count must be non-negative integer '
+ 'or an unsigned integer ExternalLayout');
}
let span = -1;
if ((!(count instanceof ExternalLayout))
&& (0 < elementLayout.span)) {
span = count * elementLayout.span;
}
super(span, property);
/** The layout for individual elements of the sequence. */
this.elementLayout = elementLayout;
/** The number of elements in the sequence.
*
* This will be either a non-negative integer or an instance of
* {@link ExternalLayout} for which {@link
* ExternalLayout#isCount|isCount()} is `true`. */
this.count = count;
}
/** @override */
getSpan(b, offset) {
if (0 <= this.span) {
return this.span;
}
if (undefined === offset) {
offset = 0;
}
let span = 0;
let count = this.count;
if (count instanceof ExternalLayout) {
count = count.decode(b, offset);
}
if (0 < this.elementLayout.span) {
span = count * this.elementLayout.span;
} else {
let idx = 0;
while (idx < count) {
span += this.elementLayout.getSpan(b, offset + span);
++idx;
}
}
return span;
}
/** @override */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
const rv = [];
let i = 0;
let count = this.count;
if (count instanceof ExternalLayout) {
count = count.decode(b, offset);
}
while (i < count) {
rv.push(this.elementLayout.decode(b, offset));
offset += this.elementLayout.getSpan(b, offset);
i += 1;
}
return rv;
}
/** Implement {@link Layout#encode|encode} for {@link Sequence}.
*
* **NOTE** If `src` is shorter than {@link Sequence#count|count} then
* the unused space in the buffer is left unchanged. If `src` is
* longer than {@link Sequence#count|count} the unneeded elements are
* ignored.
*
* **NOTE** If {@link Layout#count|count} is an instance of {@link
* ExternalLayout} then the length of `src` will be encoded as the
* count after `src` is encoded. */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
const elo = this.elementLayout;
const span = src.reduce((span, v) => {
return span + elo.encode(v, b, offset + span);
}, 0);
if (this.count instanceof ExternalLayout) {
this.count.encode(src.length, b, offset);
}
return span;
}
}
/**
* Represent a contiguous sequence of arbitrary layout elements as an
* Object.
*
* *Factory*: {@link module:Layout.struct|struct}
*
* **NOTE** The {@link Layout#span|span} of the structure is variable
* if any layout in {@link Structure#fields|fields} has a variable
* span. When {@link Layout#encode|encoding} we must have a value for
* all variable-length fields, or we wouldn't be able to figure out
* how much space to use for storage. We can only identify the value
* for a field when it has a {@link Layout#property|property}. As
* such, although a structure may contain both unnamed fields and
* variable-length fields, it cannot contain an unnamed
* variable-length field.
*
* @param {Layout[]} fields - initializer for {@link
* Structure#fields|fields}. An error is raised if this contains a
* variable-length field for which a {@link Layout#property|property}
* is not defined.
*
* @param {string} [property] - initializer for {@link
* Layout#property|property}.
*
* @param {Boolean} [decodePrefixes] - initializer for {@link
* Structure#decodePrefixes|property}.
*
* @throws {Error} - if `fields` contains an unnamed variable-length
* layout.
*
* @augments {Layout}
*/
class Structure extends Layout {
constructor(fields, property, decodePrefixes) {
if (!(Array.isArray(fields)
&& fields.reduce((acc, v) => acc && (v instanceof Layout), true))) {
throw new TypeError('fields must be array of Layout instances');
}
if (('boolean' === typeof property)
&& (undefined === decodePrefixes)) {
decodePrefixes = property;
property = undefined;
}
/* Verify absence of unnamed variable-length fields. */
for (const fd of fields) {
if ((0 > fd.span)
&& (undefined === fd.property)) {
throw new Error('fields cannot contain unnamed variable-length layout');
}
}
let span = -1;
try {
span = fields.reduce((span, fd) => span + fd.getSpan(), 0);
} catch (e) {
}
super(span, property);
/** The sequence of {@link Layout} values that comprise the
* structure.
*
* The individual elements need not be the same type, and may be
* either scalar or aggregate layouts. If a member layout leaves
* its {@link Layout#property|property} undefined the
* corresponding region of the buffer associated with the element
* will not be mutated.
*
* @type {Layout[]} */
this.fields = fields;
/** Control behavior of {@link Layout#decode|decode()} given short
* buffers.
*
* In some situations a structure many be extended with additional
* fields over time, with older installations providing only a
* prefix of the full structure. If this property is `true`
* decoding will accept those buffers and leave subsequent fields
* undefined, as long as the buffer ends at a field boundary.
* Defaults to `false`. */
this.decodePrefixes = !!decodePrefixes;
}
/** @override */
getSpan(b, offset) {
if (0 <= this.span) {
return this.span;
}
if (undefined === offset) {
offset = 0;
}
let span = 0;
try {
span = this.fields.reduce((span, fd) => {
const fsp = fd.getSpan(b, offset);
offset += fsp;
return span + fsp;
}, 0);
} catch (e) {
throw new RangeError('indeterminate span');
}
return span;
}
/** @override */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
const dest = this.makeDestinationObject();
for (const fd of this.fields) {
if (undefined !== fd.property) {
dest[fd.property] = fd.decode(b, offset);
}
offset += fd.getSpan(b, offset);
if (this.decodePrefixes
&& (b.length === offset)) {
break;
}
}
return dest;
}
/** Implement {@link Layout#encode|encode} for {@link Structure}.
*
* If `src` is missing a property for a member with a defined {@link
* Layout#property|property} the corresponding region of the buffer is
* left unmodified. */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
const firstOffset = offset;
let lastOffset = 0;
let lastWrote = 0;
for (const fd of this.fields) {
let span = fd.span;
lastWrote = (0 < span) ? span : 0;
if (undefined !== fd.property) {
const fv = src[fd.property];
if (undefined !== fv) {
lastWrote = fd.encode(fv, b, offset);
if (0 > span) {
/* Read the as-encoded span, which is not necessarily the
* same as what we wrote. */
span = fd.getSpan(b, offset);
}
}
}
lastOffset = offset;
offset += span;
}
/* Use (lastOffset + lastWrote) instead of offset because the last
* item may have had a dynamic length and we don't want to include
* the padding between it and the end of the space reserved for
* it. */
return (lastOffset + lastWrote) - firstOffset;
}
/** @override */
fromArray(values) {
const dest = this.makeDestinationObject();
for (const fd of this.fields) {
if ((undefined !== fd.property)
&& (0 < values.length)) {
dest[fd.property] = values.shift();
}
}
return dest;
}
/**
* Get access to the layout of a given property.
*
* @param {String} property - the structure member of interest.
*
* @return {Layout} - the layout associated with `property`, or
* undefined if there is no such property.
*/
layoutFor(property) {
if ('string' !== typeof property) {
throw new TypeError('property must be string');
}
for (const fd of this.fields) {
if (fd.property === property) {
return fd;
}
}
}
/**
* Get the offset of a structure member.
*
* @param {String} property - the structure member of interest.
*
* @return {Number} - the offset in bytes to the start of `property`
* within the structure, or undefined if `property` is not a field
* within the structure. If the property is a member but follows a
* variable-length structure member a negative number will be
* returned.
*/
offsetOf(property) {
if ('string' !== typeof property) {
throw new TypeError('property must be string');
}
let offset = 0;
for (const fd of this.fields) {
if (fd.property === property) {
return offset;
}
if (0 > fd.span) {
offset = -1;
} else if (0 <= offset) {
offset += fd.span;
}
}
}
}
/**
* An object that can provide a {@link
* Union#discriminator|discriminator} API for {@link Union}.
*
* **NOTE** This is an abstract base class; you can create instances
* if it amuses you, but they won't support the {@link
* UnionDiscriminator#encode|encode} or {@link
* UnionDiscriminator#decode|decode} functions.
*
* @param {string} [property] - Default for {@link
* UnionDiscriminator#property|property}.
*
* @abstract
*/
class UnionDiscriminator {
constructor(property) {
/** The {@link Layout#property|property} to be used when the
* discriminator is referenced in isolation (generally when {@link
* Union#decode|Union decode} cannot delegate to a specific
* variant). */
this.property = property;
}
/** Analog to {@link Layout#decode|Layout decode} for union discriminators.
*
* The implementation of this method need not reference the buffer if
* variant information is available through other means. */
decode() {
throw new Error('UnionDiscriminator is abstract');
}
/** Analog to {@link Layout#decode|Layout encode} for union discriminators.
*
* The implementation of this method need not store the value if
* variant information is maintained through other means. */
encode() {
throw new Error('UnionDiscriminator is abstract');
}
}
/**
* An object that can provide a {@link
* UnionDiscriminator|discriminator API} for {@link Union} using an
* unsigned integral {@link Layout} instance located either inside or
* outside the union.
*
* @param {ExternalLayout} layout - initializes {@link
* UnionLayoutDiscriminator#layout|layout}. Must satisfy {@link
* ExternalLayout#isCount|isCount()}.
*
* @param {string} [property] - Default for {@link
* UnionDiscriminator#property|property}, superseding the property
* from `layout`, but defaulting to `variant` if neither `property`
* nor layout provide a property name.
*
* @augments {UnionDiscriminator}
*/
class UnionLayoutDiscriminator extends UnionDiscriminator {
constructor(layout, property) {
if (!((layout instanceof ExternalLayout)
&& layout.isCount())) {
throw new TypeError('layout must be an unsigned integer ExternalLayout');
}
super(property || layout.property || 'variant');
/** The {@link ExternalLayout} used to access the discriminator
* value. */
this.layout = layout;
}
/** Delegate decoding to {@link UnionLayoutDiscriminator#layout|layout}. */
decode(b, offset) {
return this.layout.decode(b, offset);
}
/** Delegate encoding to {@link UnionLayoutDiscriminator#layout|layout}. */
encode(src, b, offset) {
return this.layout.encode(src, b, offset);
}
}
/**
* Represent any number of span-compatible layouts.
*
* *Factory*: {@link module:Layout.union|union}
*
* If the union has a {@link Union#defaultLayout|default layout} that
* layout must have a non-negative {@link Layout#span|span}. The span
* of a fixed-span union includes its {@link
* Union#discriminator|discriminator} if the variant is a {@link
* Union#usesPrefixDiscriminator|prefix of the union}, plus the span
* of its {@link Union#defaultLayout|default layout}.
*
* If the union does not have a default layout then the encoded span
* of the union depends on the encoded span of its variant (which may
* be fixed or variable).
*
* {@link VariantLayout#layout|Variant layout}s are added through
* {@link Union#addVariant|addVariant}. If the union has a default
* layout, the span of the {@link VariantLayout#layout|layout
* contained by the variant} must not exceed the span of the {@link
* Union#defaultLayout|default layout} (minus the span of a {@link
* Union#usesPrefixDiscriminator|prefix disriminator}, if used). The
* span of the variant will equal the span of the union itself.
*
* The variant for a buffer can only be identified from the {@link
* Union#discriminator|discriminator} {@link
* UnionDiscriminator#property|property} (in the case of the {@link
* Union#defaultLayout|default layout}), or by using {@link
* Union#getVariant|getVariant} and examining the resulting {@link
* VariantLayout} instance.
*
* A variant compatible with a JavaScript object can be identified
* using {@link Union#getSourceVariant|getSourceVariant}.
*
* @param {(UnionDiscriminator|ExternalLayout|Layout)} discr - How to
* identify the layout used to interpret the union contents. The
* parameter must be an instance of {@link UnionDiscriminator}, an
* {@link ExternalLayout} that satisfies {@link
* ExternalLayout#isCount|isCount()}, or {@link UInt} (or {@link
* UIntBE}). When a non-external layout element is passed the layout
* appears at the start of the union. In all cases the (synthesized)
* {@link UnionDiscriminator} instance is recorded as {@link
* Union#discriminator|discriminator}.
*
* @param {(Layout|null)} defaultLayout - initializer for {@link
* Union#defaultLayout|defaultLayout}. If absent defaults to `null`.
* If `null` there is no default layout: the union has data-dependent
* length and attempts to decode or encode unrecognized variants will
* throw an exception. A {@link Layout} instance must have a
* non-negative {@link Layout#span|span}, and if it lacks a {@link
* Layout#property|property} the {@link
* Union#defaultLayout|defaultLayout} will be a {@link
* Layout#replicate|replica} with property `content`.
*
* @param {string} [property] - initializer for {@link
* Layout#property|property}.
*
* @augments {Layout}
*/
class Union extends Layout {
constructor(discr, defaultLayout, property) {
const upv = ((discr instanceof UInt)
|| (discr instanceof UIntBE));
if (upv) {
discr = new UnionLayoutDiscriminator(new OffsetLayout(discr));
} else if ((discr instanceof ExternalLayout)
&& discr.isCount()) {
discr = new UnionLayoutDiscriminator(discr);
} else if (!(discr instanceof UnionDiscriminator)) {
throw new TypeError('discr must be a UnionDiscriminator '
+ 'or an unsigned integer layout');
}
if (undefined === defaultLayout) {
defaultLayout = null;
}
if (!((null === defaultLayout)
|| (defaultLayout instanceof Layout))) {
throw new TypeError('defaultLayout must be null or a Layout');
}
if (null !== defaultLayout) {
if (0 > defaultLayout.span) {
throw new Error('defaultLayout must have constant span');
}
if (undefined === defaultLayout.property) {
defaultLayout = defaultLayout.replicate('content');
}
}
/* The union span can be estimated only if there's a default
* layout. The union spans its default layout, plus any prefix
* variant layout. By construction both layouts, if present, have
* non-negative span. */
let span = -1;
if (defaultLayout) {
span = defaultLayout.span;
if ((0 <= span) && upv) {
span += discr.layout.span;
}
}
super(span, property);
/** The interface for the discriminator value in isolation.
*
* This a {@link UnionDiscriminator} either passed to the
* constructor or synthesized from the `discr` constructor
* argument. {@link
* Union#usesPrefixDiscriminator|usesPrefixDiscriminator} will be
* `true` iff the `discr` parameter was a non-offset {@link
* Layout} instance. */
this.discriminator = discr;
/** `true` if the {@link Union#discriminator|discriminator} is the
* first field in the union.
*
* If `false` the discriminator is obtained from somewhere
* else. */
this.usesPrefixDiscriminator = upv;
/** The layout for non-discriminator content when the value of the
* discriminator is not recognized.
*
* This is the value passed to the constructor. It is
* structurally equivalent to the second component of {@link
* Union#layout|layout} but may have a different property
* name. */
this.defaultLayout = defaultLayout;
/** A registry of allowed variants.
*
* The keys are unsigned integers which should be compatible with
* {@link Union.discriminator|discriminator}. The property value
* is the corresponding {@link VariantLayout} instances assigned
* to this union by {@link Union#addVariant|addVariant}.
*
* **NOTE** The registry remains mutable so that variants can be
* {@link Union#addVariant|added} at any time. Users should not
* manipulate the content of this property. */
this.registry = {};
/* Private variable used when invoking getSourceVariant */
let boundGetSourceVariant = this.defaultGetSourceVariant.bind(this);
/** Function to infer the variant selected by a source object.
*
* Defaults to {@link
* Union#defaultGetSourceVariant|defaultGetSourceVariant} but may
* be overridden using {@link
* Union#configGetSourceVariant|configGetSourceVariant}.
*
* @param {Object} src - as with {@link
* Union#defaultGetSourceVariant|defaultGetSourceVariant}.
*
* @returns {(undefined|VariantLayout)} The default variant
* (`undefined`) or first registered variant that uses a property
* available in `src`. */
this.getSourceVariant = function(src) {
return boundGetSourceVariant(src);
};
/** Function to override the implementation of {@link
* Union#getSourceVariant|getSourceVariant}.
*
* Use this if the desired variant cannot be identified using the
* algorithm of {@link
* Union#defaultGetSourceVariant|defaultGetSourceVariant}.
*
* **NOTE** The provided function will be invoked bound to this
* Union instance, providing local access to {@link
* Union#registry|registry}.
*
* @param {Function} gsv - a function that follows the API of
* {@link Union#defaultGetSourceVariant|defaultGetSourceVariant}. */
this.configGetSourceVariant = function(gsv) {
boundGetSourceVariant = gsv.bind(this);
};
}
/** @override */
getSpan(b, offset) {
if (0 <= this.span) {
return this.span;
}
if (undefined === offset) {
offset = 0;
}
/* Default layouts always have non-negative span, so we don't have
* one and we have to recognize the variant which will in turn
* determine the span. */
const vlo = this.getVariant(b, offset);
if (!vlo) {
throw new Error('unable to determine span for unrecognized variant');
}
return vlo.getSpan(b, offset);
}
/**
* Method to infer a registered Union variant compatible with `src`.
*
* The first satisified rule in the following sequence defines the
* return value:
* * If `src` has properties matching the Union discriminator and
* the default layout, `undefined` is returned regardless of the
* value of the discriminator property (this ensures the default
* layout will be used);
* * If `src` has a property matching the Union discriminator, the
* value of the discriminator identifies a registered variant, and
* either (a) the variant has no layout, or (b) `src` has the
* variant's property, then the variant is returned (because the
* source satisfies the constraints of the variant it identifies);
* * If `src` does not have a property matching the Union
* discriminator, but does have a property matching a registered
* variant, then the variant is returned (because the source
* matches a variant without an explicit conflict);
* * An error is thrown (because we either can't identify a variant,
* or we were explicitly told the variant but can't satisfy it).
*
* @param {Object} src - an object presumed to be compatible with
* the content of the Union.
*
* @return {(undefined|VariantLayout)} - as described above.
*
* @throws {Error} - if `src` cannot be associated with a default or
* registered variant.
*/
defaultGetSourceVariant(src) {
if (src.hasOwnProperty(this.discriminator.property)) {
if (this.defaultLayout
&& src.hasOwnProperty(this.defaultLayout.property)) {
return undefined;
}
const vlo = this.registry[src[this.discriminator.property]];
if (vlo
&& ((!vlo.layout)
|| src.hasOwnProperty(vlo.property))) {
return vlo;
}
} else {
for (const tag in this.registry) {
const vlo = this.registry[tag];
if (src.hasOwnProperty(vlo.property)) {
return vlo;
}
}
}
throw new Error('unable to infer src variant');
}
/** Implement {@link Layout#decode|decode} for {@link Union}.
*
* If the variant is {@link Union#addVariant|registered} the return
* value is an instance of that variant, with no explicit
* discriminator. Otherwise the {@link Union#defaultLayout|default
* layout} is used to decode the content. */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
let dest;
const dlo = this.discriminator;
const discr = dlo.decode(b, offset);
let clo = this.registry[discr];
if (undefined === clo) {
let contentOffset = 0;
clo = this.defaultLayout;
if (this.usesPrefixDiscriminator) {
contentOffset = dlo.layout.span;
}
dest = this.makeDestinationObject();
dest[dlo.property] = discr;
dest[clo.property] = this.defaultLayout.decode(b, offset + contentOffset);
} else {
dest = clo.decode(b, offset);
}
return dest;
}
/** Implement {@link Layout#encode|encode} for {@link Union}.
*
* This API assumes the `src` object is consistent with the union's
* {@link Union#defaultLayout|default layout}. To encode variants
* use the appropriate variant-specific {@link VariantLayout#encode}
* method. */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
const vlo = this.getSourceVariant(src);
if (undefined === vlo) {
const dlo = this.discriminator;
const clo = this.defaultLayout;
let contentOffset = 0;
if (this.usesPrefixDiscriminator) {
contentOffset = dlo.layout.span;
}
dlo.encode(src[dlo.property], b, offset);
return contentOffset + clo.encode(src[clo.property], b,
offset + contentOffset);
}
return vlo.encode(src, b, offset);
}
/** Register a new variant structure within a union. The newly
* created variant is returned.
*
* @param {Number} variant - initializer for {@link
* VariantLayout#variant|variant}.
*
* @param {Layout} layout - initializer for {@link
* VariantLayout#layout|layout}.
*
* @param {String} property - initializer for {@link
* Layout#property|property}.
*
* @return {VariantLayout} */
addVariant(variant, layout, property) {
const rv = new VariantLayout(this, variant, layout, property);
this.registry[variant] = rv;
return rv;
}
/**
* Get the layout associated with a registered variant.
*
* If `vb` does not produce a registered variant the function returns
* `undefined`.
*
* @param {(Number|Buffer)} vb - either the variant number, or a
* buffer from which the discriminator is to be read.
*
* @param {Number} offset - offset into `vb` for the start of the
* union. Used only when `vb` is an instance of {Buffer}.
*
* @return {({VariantLayout}|undefined)}
*/
getVariant(vb, offset) {
let variant = vb;
if (Buffer.isBuffer(vb)) {
if (undefined === offset) {
offset = 0;
}
variant = this.discriminator.decode(vb, offset);
}
return this.registry[variant];
}
}
/**
* Represent a specific variant within a containing union.
*
* **NOTE** The {@link Layout#span|span} of the variant may include
* the span of the {@link Union#discriminator|discriminator} used to
* identify it, but values read and written using the variant strictly
* conform to the content of {@link VariantLayout#layout|layout}.
*
* **NOTE** User code should not invoke this constructor directly. Use
* the union {@link Union#addVariant|addVariant} helper method.
*
* @param {Union} union - initializer for {@link
* VariantLayout#union|union}.
*
* @param {Number} variant - initializer for {@link
* VariantLayout#variant|variant}.
*
* @param {Layout} [layout] - initializer for {@link
* VariantLayout#layout|layout}. If absent the variant carries no
* data.
*
* @param {String} [property] - initializer for {@link
* Layout#property|property}. Unlike many other layouts, variant
* layouts normally include a property name so they can be identified
* within their containing {@link Union}. The property identifier may
* be absent only if `layout` is is absent.
*
* @augments {Layout}
*/
class VariantLayout extends Layout {
constructor(union, variant, layout, property) {
if (!(union instanceof Union)) {
throw new TypeError('union must be a Union');
}
if ((!Number.isInteger(variant)) || (0 > variant)) {
throw new TypeError('variant must be a (non-negative) integer');
}
if (('string' === typeof layout)
&& (undefined === property)) {
property = layout;
layout = null;
}
if (layout) {
if (!(layout instanceof Layout)) {
throw new TypeError('layout must be a Layout');
}
if ((null !== union.defaultLayout)
&& (0 <= layout.span)
&& (layout.span > union.defaultLayout.span)) {
throw new Error('variant span exceeds span of containing union');
}
if ('string' !== typeof property) {
throw new TypeError('variant must have a String property');
}
}
let span = union.span;
if (0 > union.span) {
span = layout ? layout.span : 0;
if ((0 <= span) && union.usesPrefixDiscriminator) {
span += union.discriminator.layout.span;
}
}
super(span, property);
/** The {@link Union} to which this variant belongs. */
this.union = union;
/** The unsigned integral value identifying this variant within
* the {@link Union#discriminator|discriminator} of the containing
* union. */
this.variant = variant;
/** The {@link Layout} to be used when reading/writing the
* non-discriminator part of the {@link
* VariantLayout#union|union}. If `null` the variant carries no
* data. */
this.layout = layout || null;
}
/** @override */
getSpan(b, offset) {
if (0 <= this.span) {
/* Will be equal to the containing union span if that is not
* variable. */
return this.span;
}
if (undefined === offset) {
offset = 0;
}
let contentOffset = 0;
if (this.union.usesPrefixDiscriminator) {
contentOffset = this.union.discriminator.layout.span;
}
/* Span is defined solely by the variant (and prefix discriminator) */
return contentOffset + this.layout.getSpan(b, offset + contentOffset);
}
/** @override */
decode(b, offset) {
const dest = this.makeDestinationObject();
if (undefined === offset) {
offset = 0;
}
if (this !== this.union.getVariant(b, offset)) {
throw new Error('variant mismatch');
}
let contentOffset = 0;
if (this.union.usesPrefixDiscriminator) {
contentOffset = this.union.discriminator.layout.span;
}
if (this.layout) {
dest[this.property] = this.layout.decode(b, offset + contentOffset);
} else if (this.property) {
dest[this.property] = true;
} else if (this.union.usesPrefixDiscriminator) {
dest[this.union.discriminator.property] = this.variant;
}
return dest;
}
/** @override */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
let contentOffset = 0;
if (this.union.usesPrefixDiscriminator) {
contentOffset = this.union.discriminator.layout.span;
}
if (this.layout
&& (!src.hasOwnProperty(this.property))) {
throw new TypeError('variant lacks property ' + this.property);
}
this.union.discriminator.encode(this.variant, b, offset);
let span = contentOffset;
if (this.layout) {
this.layout.encode(src[this.property], b, offset + contentOffset);
span += this.layout.getSpan(b, offset + contentOffset);
if ((0 <= this.union.span)
&& (span > this.union.span)) {
throw new Error('encoded variant overruns containing union');
}
}
return span;
}
/** Delegate {@link Layout#fromArray|fromArray} to {@link
* VariantLayout#layout|layout}. */
fromArray(values) {
if (this.layout) {
return this.layout.fromArray(values);
}
}
}
/** JavaScript chose to define bitwise operations as operating on
* signed 32-bit values in 2's complement form, meaning any integer
* with bit 31 set is going to look negative. For right shifts that's
* not a problem, because `>>>` is a logical shift, but for every
* other bitwise operator we have to compensate for possible negative
* results. */
function fixBitwiseResult(v) {
if (0 > v) {
v += 0x100000000;
}
return v;
}
/**
* Contain a sequence of bit fields as an unsigned integer.
*
* *Factory*: {@link module:Layout.bits|bits}
*
* This is a container element; within it there are {@link BitField}
* instances that provide the extracted properties. The container
* simply defines the aggregate representation and its bit ordering.
* The representation is an object containing properties with numeric
* or {@link Boolean} values.
*
* {@link BitField}s are added with the {@link
* BitStructure#addField|addField} and {@link
* BitStructure#addBoolean|addBoolean} methods.
* @param {Layout} word - initializer for {@link
* BitStructure#word|word}. The parameter must be an instance of
* {@link UInt} (or {@link UIntBE}) that is no more than 4 bytes wide.
*
* @param {bool} [msb] - `true` if the bit numbering starts at the
* most significant bit of the containing word; `false` (default) if
* it starts at the least significant bit of the containing word. If
* the parameter at this position is a string and `property` is
* `undefined` the value of this argument will instead be used as the
* value of `property`.
*
* @param {string} [property] - initializer for {@link
* Layout#property|property}.
*
* @augments {Layout}
*/
class BitStructure extends Layout {
constructor(word, msb, property) {
if (!((word instanceof UInt)
|| (word instanceof UIntBE))) {
throw new TypeError('word must be a UInt or UIntBE layout');
}
if (('string' === typeof msb)
&& (undefined === property)) {
property = msb;
msb = undefined;
}
if (4 < word.span) {
throw new RangeError('word cannot exceed 32 bits');
}
super(word.span, property);
/** The layout used for the packed value. {@link BitField}
* instances are packed sequentially depending on {@link
* BitStructure#msb|msb}. */
this.word = word;
/** Whether the bit sequences are packed starting at the most
* significant bit growing down (`true`), or the least significant
* bit growing up (`false`).
*
* **NOTE** Regardless of this value, the least significant bit of
* any {@link BitField} value is the least significant bit of the
* corresponding section of the packed value. */
this.msb = !!msb;
/** The sequence of {@link BitField} layouts that comprise the
* packed structure.
*
* **NOTE** The array remains mutable to allow fields to be {@link
* BitStructure#addField|added} after construction. Users should
* not manipulate the content of this property.*/
this.fields = [];
/* Storage for the value. Capture a variable instead of using an
* instance property because we don't want anything to change the
* value without going through the mutator. */
let value = 0;
this._packedSetValue = function(v) {
value = fixBitwiseResult(v);
return this;
};
this._packedGetValue = function() {
return value;
};
}
/** @override */
decode(b, offset) {
const dest = this.makeDestinationObject();
if (undefined === offset) {
offset = 0;
}
const value = this.word.decode(b, offset);
this._packedSetValue(value);
for (const fd of this.fields) {
if (undefined !== fd.property) {
dest[fd.property] = fd.decode(value);
}
}
return dest;
}
/** Implement {@link Layout#encode|encode} for {@link BitStructure}.
*
* If `src` is missing a property for a member with a defined {@link
* Layout#property|property} the corresponding region of the packed
* value is left unmodified. Unused bits are also left unmodified. */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
const value = this.word.decode(b, offset);
this._packedSetValue(value);
for (const fd of this.fields) {
if (undefined !== fd.property) {
const fv = src[fd.property];
if (undefined !== fv) {
fd.encode(fv);
}
}
}
return this.word.encode(this._packedGetValue(), b, offset);
}
/** Register a new bitfield with a containing bit structure. The
* resulting bitfield is returned.
*
* @param {Number} bits - initializer for {@link BitField#bits|bits}.
*
* @param {string} property - initializer for {@link
* Layout#property|property}.
*
* @return {BitField} */
addField(bits, property) {
const bf = new BitField(this, bits, property);
this.fields.push(bf);
return bf;
}
/** As with {@link BitStructure#addField|addField} for single-bit
* fields with `boolean` value representation.
*
* @param {string} property - initializer for {@link
* Layout#property|property}.
*
* @return {Boolean} */
addBoolean(property) {
// This is my Boolean, not the Javascript one.
// eslint-disable-next-line no-new-wrappers
const bf = new Boolean(this, property);
this.fields.push(bf);
return bf;
}
/**
* Get access to the bit field for a given property.
*
* @param {String} property - the bit field of interest.
*
* @return {BitField} - the field associated with `property`, or
* undefined if there is no such property.
*/
fieldFor(property) {
if ('string' !== typeof property) {
throw new TypeError('property must be string');
}
for (const fd of this.fields) {
if (fd.property === property) {
return fd;
}
}
}
}
/**
* Represent a sequence of bits within a {@link BitStructure}.
*
* All bit field values are represented as unsigned integers.
*
* **NOTE** User code should not invoke this constructor directly.
* Use the container {@link BitStructure#addField|addField} helper
* method.
*
* **NOTE** BitField instances are not instances of {@link Layout}
* since {@link Layout#span|span} measures 8-bit units.
*
* @param {BitStructure} container - initializer for {@link
* BitField#container|container}.
*
* @param {Number} bits - initializer for {@link BitField#bits|bits}.
*
* @param {string} [property] - initializer for {@link
* Layout#property|property}.
*/
class BitField {
constructor(container, bits, property) {
if (!(container instanceof BitStructure)) {
throw new TypeError('container must be a BitStructure');
}
if ((!Number.isInteger(bits)) || (0 >= bits)) {
throw new TypeError('bits must be positive integer');
}
const totalBits = 8 * container.span;
const usedBits = container.fields.reduce((sum, fd) => sum + fd.bits, 0);
if ((bits + usedBits) > totalBits) {
throw new Error('bits too long for span remainder ('
+ (totalBits - usedBits) + ' of '
+ totalBits + ' remain)');
}
/** The {@link BitStructure} instance to which this bit field
* belongs. */
this.container = container;
/** The span of this value in bits. */
this.bits = bits;
/** A mask of {@link BitField#bits|bits} bits isolating value bits
* that fit within the field.
*
* That is, it masks a value that has not yet been shifted into
* position within its containing packed integer. */
this.valueMask = (1 << bits) - 1;
if (32 === bits) { // shifted value out of range
this.valueMask = 0xFFFFFFFF;
}
/** The offset of the value within the containing packed unsigned
* integer. The least significant bit of the packed value is at
* offset zero, regardless of bit ordering used. */
this.start = usedBits;
if (this.container.msb) {
this.start = totalBits - usedBits - bits;
}
/** A mask of {@link BitField#bits|bits} isolating the field value
* within the containing packed unsigned integer. */
this.wordMask = fixBitwiseResult(this.valueMask << this.start);
/** The property name used when this bitfield is represented in an
* Object.
*
* Intended to be functionally equivalent to {@link
* Layout#property}.
*
* If left undefined the corresponding span of bits will be
* treated as padding: it will not be mutated by {@link
* Layout#encode|encode} nor represented as a property in the
* decoded Object. */
this.property = property;
}
/** Store a value into the corresponding subsequence of the containing
* bit field. */
decode() {
const word = this.container._packedGetValue();
const wordValue = fixBitwiseResult(word & this.wordMask);
const value = wordValue >>> this.start;
return value;
}
/** Store a value into the corresponding subsequence of the containing
* bit field.
*
* **NOTE** This is not a specialization of {@link
* Layout#encode|Layout.encode} and there is no return value. */
encode(value) {
if ((!Number.isInteger(value))
|| (value !== fixBitwiseResult(value & this.valueMask))) {
throw new TypeError(nameWithProperty('BitField.encode', this)
+ ' value must be integer not exceeding ' + this.valueMask);
}
const word = this.container._packedGetValue();
const wordValue = fixBitwiseResult(value << this.start);
this.container._packedSetValue(fixBitwiseResult(word & ~this.wordMask)
| wordValue);
};
}
/**
* Represent a single bit within a {@link BitStructure} as a
* JavaScript boolean.
*
* **NOTE** User code should not invoke this constructor directly.
* Use the container {@link BitStructure#addBoolean|addBoolean} helper
* method.
*
* @param {BitStructure} container - initializer for {@link
* BitField#container|container}.
*
* @param {string} [property] - initializer for {@link
* Layout#property|property}.
*
* @augments {BitField}
*/
/* eslint-disable no-extend-native */
class Boolean extends BitField {
constructor(container, property) {
super(container, 1, property);
}
/** Override {@link BitField#decode|decode} for {@link Boolean|Boolean}.
*
* @returns {boolean} */
decode(b, offset) {
return !!BitField.prototype.decode.call(this, b, offset);
}
/** @override */
encode(value) {
if ('boolean' === typeof value) {
// BitField requires integer values
value = +value;
}
return BitField.prototype.encode.call(this, value);
}
}
/* eslint-enable no-extend-native */
/**
* Contain a fixed-length block of arbitrary data, represented as a
* Buffer.
*
* *Factory*: {@link module:Layout.blob|blob}
*
* @param {(Number|ExternalLayout)} length - initializes {@link
* Blob#length|length}.
*
* @param {String} [property] - initializer for {@link
* Layout#property|property}.
*
* @augments {Layout}
*/
class Blob extends Layout {
constructor(length, property) {
if (!(((length instanceof ExternalLayout) && length.isCount())
|| (Number.isInteger(length) && (0 <= length)))) {
throw new TypeError('length must be positive integer '
+ 'or an unsigned integer ExternalLayout');
}
let span = -1;
if (!(length instanceof ExternalLayout)) {
span = length;
}
super(span, property);
/** The number of bytes in the blob.
*
* This may be a non-negative integer, or an instance of {@link
* ExternalLayout} that satisfies {@link
* ExternalLayout#isCount|isCount()}. */
this.length = length;
}
/** @override */
getSpan(b, offset) {
let span = this.span;
if (0 > span) {
span = this.length.decode(b, offset);
}
return span;
}
/** @override */
decode(b, offset) {
if (undefined === offset) {
offset = 0;
}
let span = this.span;
if (0 > span) {
span = this.length.decode(b, offset);
}
return b.slice(offset, offset + span);
}
/** Implement {@link Layout#encode|encode} for {@link Blob}.
*
* **NOTE** If {@link Layout#count|count} is an instance of {@link
* ExternalLayout} then the length of `src` will be encoded as the
* count after `src` is encoded. */
encode(src, b, offset) {
let span = this.length;
if (this.length instanceof ExternalLayout) {
span = src.length;
}
if (!(Buffer.isBuffer(src)
&& (span === src.length))) {
throw new TypeError(nameWithProperty('Blob.encode', this)
+ ' requires (length ' + span + ') Buffer as src');
}
if ((offset + span) > b.length) {
throw new RangeError('encoding overruns Buffer');
}
b.write(src.toString('hex'), offset, span, 'hex');
if (this.length instanceof ExternalLayout) {
this.length.encode(span, b, offset);
}
return span;
}
}
/**
* Contain a `NUL`-terminated UTF8 string.
*
* *Factory*: {@link module:Layout.cstr|cstr}
*
* **NOTE** Any UTF8 string that incorporates a zero-valued byte will
* not be correctly decoded by this layout.
*
* @param {String} [property] - initializer for {@link
* Layout#property|property}.
*
* @augments {Layout}
*/
class CString extends Layout {
constructor(property) {
super(-1, property);
}
/** @override */
getSpan(b, offset) {
if (!Buffer.isBuffer(b)) {
throw new TypeError('b must be a Buffer');
}
if (undefined === offset) {
offset = 0;
}
let idx = offset;
while ((idx < b.length) && (0 !== b[idx])) {
idx += 1;
}
return 1 + idx - offset;
}
/** @override */
decode(b, offset, dest) {
if (undefined === offset) {
offset = 0;
}
let span = this.getSpan(b, offset);
return b.slice(offset, offset + span - 1).toString('utf-8');
}
/** @override */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
/* Must force this to a string, lest it be a number and the
* "utf8-encoding" below actually allocate a buffer of length
* src */
if ('string' !== typeof src) {
src = src.toString();
}
const srcb = new Buffer(src, 'utf8');
const span = srcb.length;
if ((offset + span) > b.length) {
throw new RangeError('encoding overruns Buffer');
}
srcb.copy(b, offset);
b[offset + span] = 0;
return span + 1;
}
}
/**
* Contain a UTF8 string with implicit length.
*
* *Factory*: {@link module:Layout.utf8|utf8}
*
* **NOTE** Because the length is implicit in the size of the buffer
* this layout should be used only in isolation, or in a situation
* where the length can be expressed by operating on a slice of the
* containing buffer.
*
* @param {Number} [maxSpan] - the maximum length allowed for encoded
* string content. If not provided there is no bound on the allowed
* content.
*
* @param {String} [property] - initializer for {@link
* Layout#property|property}.
*
* @augments {Layout}
*/
class UTF8 extends Layout {
constructor(maxSpan, property) {
if (('string' === typeof maxSpan)
&& (undefined === property)) {
property = maxSpan;
maxSpan = undefined;
}
if (undefined === maxSpan) {
maxSpan = -1;
} else if (!Number.isInteger(maxSpan)) {
throw new TypeError('maxSpan must be an integer');
}
super(-1, property);
/** The maximum span of the layout in bytes.
*
* Positive values are generally expected. Zero is abnormal.
* Attempts to encode or decode a value that exceeds this length
* will throw a `RangeError`.
*
* A negative value indicates that there is no bound on the length
* of the content. */
this.maxSpan = maxSpan;
}
/** @override */
getSpan(b, offset) {
if (!Buffer.isBuffer(b)) {
throw new TypeError('b must be a Buffer');
}
if (undefined === offset) {
offset = 0;
}
return b.length - offset;
}
/** @override */
decode(b, offset, dest) {
if (undefined === offset) {
offset = 0;
}
let span = this.getSpan(b, offset);
if ((0 <= this.maxSpan)
&& (this.maxSpan < span)) {
throw new RangeError('text length exceeds maxSpan');
}
return b.slice(offset, offset + span).toString('utf-8');
}
/** @override */
encode(src, b, offset) {
if (undefined === offset) {
offset = 0;
}
/* Must force this to a string, lest it be a number and the
* "utf8-encoding" below actually allocate a buffer of length
* src */
if ('string' !== typeof src) {
src = src.toString();
}
const srcb = new Buffer(src, 'utf8');
const span = srcb.length;
if ((0 <= this.maxSpan)
&& (this.maxSpan < span)) {
throw new RangeError('text length exceeds maxSpan');
}
if ((offset + span) > b.length) {
throw new RangeError('encoding overruns Buffer');
}
srcb.copy(b, offset);
return span;
}
}
/**
* Contain a constant value.
*
* This layout may be used in cases where a JavaScript value can be
* inferred without an expression in the binary encoding. An example
* would be a {@link VariantLayout|variant layout} where the content
* is implied by the union {@link Union#discriminator|discriminator}.
*
* @param {Object|Number|String} value - initializer for {@link
* Constant#value|value}. If the value is an object (or array) and
* the application intends the object to remain unchanged regardless
* of what is done to values decoded by this layout, the value should
* be frozen prior passing it to this constructor.
*
* @param {String} [property] - initializer for {@link
* Layout#property|property}.
*
* @augments {Layout}
*/
class Constant extends Layout {
constructor(value, property) {
super(0, property);
/** The value produced by this constant when the layout is {@link
* Constant#decode|decoded}.
*
* Any JavaScript value including `null` and `undefined` is
* permitted.
*
* **WARNING** If `value` passed in the constructor was not
* frozen, it is possible for users of decoded values to change
* the content of the value. */
this.value = value;
}
/** @override */
decode(b, offset, dest) {
return this.value;
}
/** @override */
encode(src, b, offset) {
/* Constants take no space */
return 0;
}
}
exports.ExternalLayout = ExternalLayout;
exports.GreedyCount = GreedyCount;
exports.OffsetLayout = OffsetLayout;
exports.UInt = UInt;
exports.UIntBE = UIntBE;
exports.Int = Int;
exports.IntBE = IntBE;
exports.Float = Float;
exports.FloatBE = FloatBE;
exports.Double = Double;
exports.DoubleBE = DoubleBE;
exports.Sequence = Sequence;
exports.Structure = Structure;
exports.UnionDiscriminator = UnionDiscriminator;
exports.UnionLayoutDiscriminator = UnionLayoutDiscriminator;
exports.Union = Union;
exports.VariantLayout = VariantLayout;
exports.BitStructure = BitStructure;
exports.BitField = BitField;
exports.Boolean = Boolean;
exports.Blob = Blob;
exports.CString = CString;
exports.UTF8 = UTF8;
exports.Constant = Constant;
/** Factory for {@link GreedyCount}. */
exports.greedy = ((elementSpan, property) => new GreedyCount(elementSpan, property));
/** Factory for {@link OffsetLayout}. */
exports.offset = ((layout, offset, property) => new OffsetLayout(layout, offset, property));
/** Factory for {@link UInt|unsigned int layouts} spanning one
* byte. */
exports.u8 = (property => new UInt(1, property));
/** Factory for {@link UInt|little-endian unsigned int layouts}
* spanning two bytes. */
exports.u16 = (property => new UInt(2, property));
/** Factory for {@link UInt|little-endian unsigned int layouts}
* spanning three bytes. */
exports.u24 = (property => new UInt(3, property));
/** Factory for {@link UInt|little-endian unsigned int layouts}
* spanning four bytes. */
exports.u32 = (property => new UInt(4, property));
/** Factory for {@link UInt|little-endian unsigned int layouts}
* spanning five bytes. */
exports.u40 = (property => new UInt(5, property));
/** Factory for {@link UInt|little-endian unsigned int layouts}
* spanning six bytes. */
exports.u48 = (property => new UInt(6, property));
/** Factory for {@link NearUInt64|little-endian unsigned int
* layouts} interpreted as Numbers. */
exports.nu64 = (property => new NearUInt64(property));
/** Factory for {@link UInt|big-endian unsigned int layouts}
* spanning two bytes. */
exports.u16be = (property => new UIntBE(2, property));
/** Factory for {@link UInt|big-endian unsigned int layouts}
* spanning three bytes. */
exports.u24be = (property => new UIntBE(3, property));
/** Factory for {@link UInt|big-endian unsigned int layouts}
* spanning four bytes. */
exports.u32be = (property => new UIntBE(4, property));
/** Factory for {@link UInt|big-endian unsigned int layouts}
* spanning five bytes. */
exports.u40be = (property => new UIntBE(5, property));
/** Factory for {@link UInt|big-endian unsigned int layouts}
* spanning six bytes. */
exports.u48be = (property => new UIntBE(6, property));
/** Factory for {@link NearUInt64BE|big-endian unsigned int
* layouts} interpreted as Numbers. */
exports.nu64be = (property => new NearUInt64BE(property));
/** Factory for {@link Int|signed int layouts} spanning one
* byte. */
exports.s8 = (property => new Int(1, property));
/** Factory for {@link Int|little-endian signed int layouts}
* spanning two bytes. */
exports.s16 = (property => new Int(2, property));
/** Factory for {@link Int|little-endian signed int layouts}
* spanning three bytes. */
exports.s24 = (property => new Int(3, property));
/** Factory for {@link Int|little-endian signed int layouts}
* spanning four bytes. */
exports.s32 = (property => new Int(4, property));
/** Factory for {@link Int|little-endian signed int layouts}
* spanning five bytes. */
exports.s40 = (property => new Int(5, property));
/** Factory for {@link Int|little-endian signed int layouts}
* spanning six bytes. */
exports.s48 = (property => new Int(6, property));
/** Factory for {@link NearInt64|little-endian signed int layouts}
* interpreted as Numbers. */
exports.ns64 = (property => new NearInt64(property));
/** Factory for {@link Int|big-endian signed int layouts}
* spanning two bytes. */
exports.s16be = (property => new IntBE(2, property));
/** Factory for {@link Int|big-endian signed int layouts}
* spanning three bytes. */
exports.s24be = (property => new IntBE(3, property));
/** Factory for {@link Int|big-endian signed int layouts}
* spanning four bytes. */
exports.s32be = (property => new IntBE(4, property));
/** Factory for {@link Int|big-endian signed int layouts}
* spanning five bytes. */
exports.s40be = (property => new IntBE(5, property));
/** Factory for {@link Int|big-endian signed int layouts}
* spanning six bytes. */
exports.s48be = (property => new IntBE(6, property));
/** Factory for {@link NearInt64BE|big-endian signed int layouts}
* interpreted as Numbers. */
exports.ns64be = (property => new NearInt64BE(property));
/** Factory for {@link Float|little-endian 32-bit floating point} values. */
exports.f32 = (property => new Float(property));
/** Factory for {@link FloatBE|big-endian 32-bit floating point} values. */
exports.f32be = (property => new FloatBE(property));
/** Factory for {@link Double|little-endian 64-bit floating point} values. */
exports.f64 = (property => new Double(property));
/** Factory for {@link DoubleBE|big-endian 64-bit floating point} values. */
exports.f64be = (property => new DoubleBE(property));
/** Factory for {@link Structure} values. */
exports.struct = ((fields, property, decodePrefixes) => new Structure(fields, property, decodePrefixes));
/** Factory for {@link BitStructure} values. */
exports.bits = ((word, msb, property) => new BitStructure(word, msb, property));
/** Factory for {@link Sequence} values. */
exports.seq = ((elementLayout, count, property) => new Sequence(elementLayout, count, property));
/** Factory for {@link Union} values. */
exports.union = ((discr, defaultLayout, property) => new Union(discr, defaultLayout, property));
/** Factory for {@link UnionLayoutDiscriminator} values. */
exports.unionLayoutDiscriminator = ((layout, property) => new UnionLayoutDiscriminator(layout, property));
/** Factory for {@link Blob} values. */
exports.blob = ((length, property) => new Blob(length, property));
/** Factory for {@link CString} values. */
exports.cstr = (property => new CString(property));
/** Factory for {@link UTF8} values. */
exports.utf8 = ((maxSpan, property) => new UTF8(maxSpan, property));
/** Factory for {@link Constant} values. */
exports.const = ((value, property) => new Constant(value, property));
|