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 | 121x 121x 121x 31248x 31248x 363078x 363078x 341632x 21446x 21446x 13656x 21446x 2399x 19047x 1620x 19047x 121x 4197x 4197x 121x 698x 698x 121x 130x 130x 130x 130x 130x 1208x 1208x 1208x 3369x 3369x 3369x 1208x 130x 121x 31611x 4x 31607x 31607x 31607x 31607x 121x 14965x 14965x 14965x 30172x 30172x 30172x 12508x 17660x 2399x 15261x 121x 17040x 17040x 319059x 56019x 263040x 263040x 129542x 133498x 121x 17056x 17056x 17044x 17044x 121x 21299x 21384x 21374x 21289x 85x 21289x 121x 25560x 25560x 367643x 258922x 108721x 108721x 35863x 72858x 72858x 72832x 72832x 25432x 25432x 77178x 67226x 121x 8488x 8488x 8488x 121x 1276x 1276x 1276x 1276x 352x 1276x 1276x 1276x 1272x 1272x 121x 1082x 1082x 2858x 2858x 866x 866x 866x 241x 866x 352x 352x 1082x 121x 1777x 121x 64155x 121x 8520x 121x 64155x 64155x 1777x 1777x 121x 9267x 8520x 8520x 121x 14128x 14128x 14128x 14128x 14128x 43729x 14128x 14128x 14128x 4861x 4861x 4861x 9267x 14128x 14128x 34462x 64155x 14128x 121x 1259x 1259x 2635x 1259x 121x 3068x 1259x 1259x 1259x 1259x 1259x 1259x 1259x 3068x 121x 199x 262x 262x 199x 199x 199x 199x 121x 63139x 63139x 63139x 65224x 65224x 65224x 65224x 65224x 63481x 63481x 61136x 61136x 2345x 65224x 148x 65224x 3940x 1846x 2094x 2094x 61284x 61274x 10x 2104x 19x 121x 4x 4x 4x 76x 4x 4x 121x 1630x 121x 1469x 1469x 1469x 1469x 1469x 1469x 1469x 121x 733x 733x 721x 1943x 121x 2316x 670x 121x 1469x 1469x 1469x 1469x 121x 1086x 1086x 4x 1082x 121x 2976x 1500x 1284x 121x 121x 8520x 8520x 8520x 1496x 1496x 1496x 1496x 1496x 1406x 1406x 1406x 166x 1240x 90x 1496x 1496x 1496x 1496x 410x 1086x 1086x 1086x 1082x 1082x 176x 1082x 1082x 1488x 1488x 1488x 1406x 1406x 1406x 82x 82x 1488x 121x 31852x 31852x 119260x 119260x 31852x 121x 26991x 26991x 21000x 26991x 26991x 226279x 226279x 226279x 121x 8520x 8520x 8520x 121x 9267x 9267x 117x 117x 117x 121x 18471x 18471x 18471x 18471x 18471x 71455x 69143x 18471x 18471x 18471x 18471x 18471x 18471x 18471x 18471x 18471x 121x 18588x 71494x 838x 799x 799x 39x 39x 121x 8520x 8520x 8520x 8520x 8520x 8520x 17724x 17724x 8520x 8520x 9319x 747x 747x 747x 747x 9319x 799x 799x 419x 799x 749x 8520x 8520x 8520x 8520x 121x 122x 121x 122x 122x 122x 122x 122x 121x 8512x 8512x 8512x 8512x 104x 104x 80x 80x 94x 94x 24x 24x 24x 24x 28x 28x 28x 24x 24x 121x 8520x 8520x 8520x 8520x 8520x 8520x 8520x 8520x 8520x 8520x 8520x 8520x 8520x 8512x 624x 105x 105x 105x 519x 624x 624x 31x 624x 8512x 121x 403455x 403455x 121x 265109x 265109x 265109x 121x 8520x 8520x 436941x 436941x 16x 436925x 193810x 243115x 132x 242983x 46553x 46553x 46553x 242983x 46553x 46553x 928x 8x 920x 920x 242975x 121x 121x 4983x 23388x 121x 4983x 121x 4983x 121x 121x 1036x 1036x 121x 170767x 137643x 33124x 2x 2x 2x 2x 2x 2x 33122x 33122x 18157x 18157x 14965x 14965x 42620x 42620x 14457x 14457x 28163x 454x 450x 14961x 121x 8x 8x 121x 122841x 26765x 26765x 26765x 3863x 22902x 22898x 22898x 122841x 121x 122841x 121x 2316x 5743x 2316x 121x 22874x 10229x 121x 8887x 8887x 8887x 8887x 121x 2717x 23880x 15517x 121x 121x 121x 121x 31607x 31607x 121x 40043x 40043x 40043x 40043x 40043x 40043x 103025x 103025x 40043x 121x 14965x 14965x 14965x 9592x 8887x 8887x 8887x 8887x 8887x 705x 705x 705x 705x 705x 705x 6361x 705x 705x 6398x 1522x 9592x 9592x 121x 121x 121x 9471x 9471x 9471x 9471x 9471x 9471x 121x 2316x 166x 166x 166x 2316x 2316x 2316x 2316x 121x 2721x 2721x 2721x 2721x 2721x 2721x 2721x 2721x 4x 2717x 2717x 2717x 2316x 1911x 1911x 2316x 2316x 401x 240x 2717x 2717x 2717x 810x 810x 121x 121x 121x 517611x 517611x 121x 121x 121x 121x 121x 121x 121x 121x 121x 121x 121x 121x 121x 121x 121x 121x 47079x 2037x 45042x 45042x 45042x 45042x 45042x 45038x 45038x 121x 121x 6127x 12824x 8x 121x 8520x 8520x 21887x 21887x 4847x 1403x 17040x 15698x 15698x 15698x 8520x 121x 8524x 93764x 8524x 121x 17990x 17990x 17990x 17990x 17990x 121x 8524x 8524x 8524x 8524x 8524x 8524x 8524x 4851x 8520x 8520x 17101x 8520x 121x 8524x 426x 121x 4192x 4192x 121x 688x 121x 8528x 8528x 8528x 8528x 3677x 3677x 8524x 8524x 8524x 8520x 8520x 121x 4861x 4861x 4861x 4861x 4861x 1403x 1403x 1082x 4861x 4861x 4861x 4861x 4861x 4861x 11912x 3366x 1507x 4861x 4861x 4861x 4861x 4861x 4861x 4861x 4861x 7051x 4861x 2190x 2190x 7051x 4861x 4861x 121x 5896x 4950x 4950x 4950x 4950x 4950x 4950x 89x 89x 85x 81x 4x 4861x 4861x 4861x 4861x 4861x 4930x 4930x 121x 754x 754x 754x 754x 754x 872x 872x 154x 872x 872x 868x 121x 3412x 121x 8472x 8472x 8472x 8472x 8460x 8454x 8450x 2x 8448x 8448x 8448x 8448x 4166x 3412x 3412x 754x 8448x 8448x 3412x 8432x 8432x 8432x 8432x 8432x 121x 8432x 8432x 8432x 13254x 8432x 3405x 5027x 121x 8426x 8426x 3898x 3898x 3898x 3898x 3399x 121x 1046x 1046x 1046x 4x 1042x 121x 547x 547x 547x 121x 633x 633x 633x 633x 633x 633x 633x 108x 633x 121x 505x 505x 505x 505x 114x 505x 505x 505x 505x 505x 505x 505x 505x 505x 505x 505x 505x 121x 20x 20x 20x 20x 20x 121x 40x 40x 121x 16x 121x 121x 121x 121x 121x 121x 4546x 4497x 4497x 12x 4497x 4497x 4497x 4497x 20x 4497x 121x 625x 273x 273x 273x 273x 121x 32954x 625x 32329x 32329x 32329x 121x 15700x 15700x 4x 15696x 121x 17032x 17032x 4722x 17032x 17032x 17032x 17032x 17032x 17028x 17028x 8x 17020x 51794x 1028x 51794x 4x 51790x 51790x 1114x 50676x 50672x 51786x 51790x 1024x 51790x 121x 13346x 13346x 14293x 14293x 14293x 121x 100x 225x 421x 121x 225x 104x 104x 104x 100x 211x 225x 225x 121x 11855x 2004x 11855x 11855x 11855x 11855x 11855x 16592x 1792x 16592x 16592x 16592x 13269x 13265x 3323x 16588x 16588x 1788x 16588x 11855x 11855x 121x 15798x 824x 14974x 14974x 121x 14080x 4x 14080x 14080x 14080x 15798x 15798x 15798x 3957x 11841x 15798x 15798x 15798x 7549x 7549x 15798x 15798x 4x 15794x 15794x 303x 303x 15794x 15794x 15794x 14076x 14076x 14076x 121x 1168x 231x 937x 1164x 1164x 121x 1033x 211x 121x 1061x 1061x 1061x 917x 1061x 1061x 1061x 1057x 1057x 1057x 108x 108x 108x 100x 8x 949x 949x 833x 833x 833x 833x 833x 949x 245x 245x 949x 61x 1057x 1057x 121x 154x 154x 154x 206x 154x 154x 154x 206x 121x 324x 304x 324x 324x 242x 242x 82x 121x 564x 564x 324x 324x 121x 2428x 121x 6662x 6662x 6662x 8x 6654x 1125x 1125x 4x 1121x 1121x 1121x 1121x 1121x 1121x 5529x 5529x 121x 121x 56763x 56763x 691x 691x 56072x 4982x 56751x 121x 121x 121x 52518x 52514x 52514x 52514x 24140x 52514x 109426x 42514x 42514x 42514x 42298x 42298x 66912x 56763x 66900x 121x 10004x 10004x 9988x 121x 1847x 52x 1795x 8x 4x 1787x 1787x 1787x 1787x 796x 121x 1697x 1697x 392x 1305x 121x 130042x 130042x 130042x 14x 14x 130028x 130042x 130042x 14x 130028x 130042x 130042x 130042x 96154x 130042x 121x 8x 8x 121x 27137x 27137x 27105x 27105x 27105x 83369x 27091x 27091x 56278x 4x 4x 2x 56276x 56298x 56298x 56298x 44x 30x 30x 14x 44x 44x 44x 44x 56254x 56276x 121x 54790x 256x 256x 252x 4x 54538x 180439x 777x 179662x 179658x 179658x 179658x 54310x 675510x 114924x 675510x 121x 294413x 121x 511652x 511652x 83369x 83369x 83369x 83337x 428283x 400977x 27306x 834x 26472x 26472x 511612x 511608x 511612x 26472x 511412x 121x 3113995x 8x 121x 27286x 27548x 27286x 2833663x 2833659x 62670x 2770989x 2277860x 493129x 337755x 337755x 493129x 493129x 493089x 493129x 27286x 27286x 27286x 121x 121x 45430x 45430x 45430x 18523x 45430x 27286x 27286x 27286x 27286x 27286x 27242x 18144x 18144x 18144x 17447x 697x 18144x 45430x 121x 27416x 27416x 27412x 121x 227814x 114219x 114219x 227814x 96082x 96082x 96082x 131732x 81273x 18137x 18137x 63136x 150015x 150015x 150015x 121x 77799x 77799x 77799x 121x 48912x 48912x 48912x 48898x 121x 112857x 112857x 214448x 214448x 121x 1090x 1090x 1090x 121x 121x 196365x 196365x 196365x 196365x 196365x 196365x 196331x 196331x 138927x 132383x 57404x 196327x 13472x 196327x 34x 8x 121x 19159x 19159x 19159x 19159x 1076x 18083x 18083x 19159x 19159x 19159x 17693x 19159x 4x 19155x 121x 10x | /* Copyright 2011-2016 OCAD University Copyright 2010-2011 Lucendo Development Ltd. Copyright 2012-2014 Raising the Floor - US Copyright 2014-2016 Raising the Floor - International Licensed under the Educational Community License (ECL), Version 2.0 or the New BSD license. You may not use this file except in compliance with one these Licenses. You may obtain a copy of the ECL 2.0 License and BSD License at https://github.com/fluid-project/infusion/raw/master/Infusion-LICENSE.txt */ var fluid_3_0_0 = fluid_3_0_0 || {}; (function ($, fluid) { "use strict"; /** NOTE: The contents of this file are by default NOT PART OF THE PUBLIC FLUID API unless explicitly annotated before the function **/ /* The Fluid "IoC System proper" - resolution of references and * completely automated instantiation of declaratively defined * component trees */ // Currently still uses manual traversal - once we ban manually instantiated components, // it will use the instantiator's records instead. fluid.visitComponentChildren = function (that, visitor, options, segs) { segs = segs || []; for (var name in that) { var component = that[name]; // This entire algorithm is primitive and expensive and will be removed once we can abolish manual init components if (!fluid.isComponent(component) || (options.visited && options.visited[component.id])) { continue; } segs.push(name); if (options.visited) { // recall that this is here because we may run into a component that has been cross-injected which might otherwise cause cyclicity options.visited[component.id] = true; } if (visitor(component, name, segs, segs.length - 1)) { return true; } if (!options.flat) { fluid.visitComponentChildren(component, visitor, options, segs); } segs.pop(); } }; fluid.getContextHash = function (instantiator, that) { var shadow = instantiator.idToShadow[that.id]; return shadow && shadow.contextHash; }; fluid.componentHasGrade = function (that, gradeName) { var contextHash = fluid.getContextHash(fluid.globalInstantiator, that); return !!(contextHash && contextHash[gradeName]); }; // A variant of fluid.visitComponentChildren that supplies the signature expected for fluid.matchIoCSelector // this is: thatStack, contextHashes, memberNames, i - note, the supplied arrays are NOT writeable and shared through the iteration fluid.visitComponentsForMatching = function (that, options, visitor) { var instantiator = fluid.getInstantiator(that); options = $.extend({ visited: {}, instantiator: instantiator }, options); var thatStack = [that]; var contextHashes = [fluid.getContextHash(instantiator, that)]; var visitorWrapper = function (component, name, segs) { thatStack.length = 1; contextHashes.length = 1; for (var i = 0; i < segs.length; ++i) { var child = thatStack[i][segs[i]]; thatStack[i + 1] = child; contextHashes[i + 1] = fluid.getContextHash(instantiator, child) || {}; } return visitor(component, thatStack, contextHashes, segs, segs.length); }; fluid.visitComponentChildren(that, visitorWrapper, options, []); }; fluid.getMemberNames = function (instantiator, thatStack) { if (thatStack.length === 0) { // Odd edge case for FLUID-6126 from fluid.computeDistributionPriority return []; } else { var path = instantiator.idToPath(thatStack[thatStack.length - 1].id); var segs = instantiator.parseEL(path); // TODO: we should now have no longer shortness in the stack segs.unshift.apply(segs, fluid.generate(thatStack.length - segs.length, "")); return segs; } }; // thatStack contains an increasing list of MORE SPECIFIC thats. // this visits all components starting from the current location (end of stack) // in visibility order UP the tree. fluid.visitComponentsForVisibility = function (instantiator, thatStack, visitor, options) { options = options || { visited: {}, flat: true, instantiator: instantiator }; var memberNames = fluid.getMemberNames(instantiator, thatStack); for (var i = thatStack.length - 1; i >= 0; --i) { var that = thatStack[i]; // explicitly visit the direct parent first options.visited[that.id] = true; if (visitor(that, memberNames[i], memberNames, i)) { return; } if (fluid.visitComponentChildren(that, visitor, options, memberNames)) { return; } memberNames.pop(); } }; fluid.mountStrategy = function (prefix, root, toMount) { var offset = prefix.length; return function (target, name, i, segs) { if (i <= prefix.length) { // Avoid OOB to not trigger deoptimisation! return; } for (var j = 0; j < prefix.length; ++j) { if (segs[j] !== prefix[j]) { return; } } return toMount(target, name, i - prefix.length, segs.slice(offset)); }; }; fluid.invokerFromRecord = function (invokerec, name, that) { fluid.pushActivity("makeInvoker", "beginning instantiation of invoker with name %name and record %record as child of %that", {name: name, record: invokerec, that: that}); var invoker = invokerec ? fluid.makeInvoker(that, invokerec, name) : undefined; fluid.popActivity(); return invoker; }; fluid.memberFromRecord = function (memberrecs, name, that) { var togo; for (var i = 0; i < memberrecs.length; ++i) { // memberrecs is the special "fluid.mergingArray" type which is not Arrayable var expanded = fluid.expandImmediate(memberrecs[i], that); if (!fluid.isPlainObject(togo)) { // poor man's "merge" algorithm to hack FLUID-5668 for now togo = expanded; } else { togo = $.extend(true, togo, expanded); } } return togo; }; fluid.recordStrategy = function (that, options, optionsStrategy, recordPath, recordMaker, prefix, exceptions) { prefix = prefix || []; return { strategy: function (target, name, i) { if (i !== 1) { return; } var record = fluid.driveStrategy(options, [recordPath, name], optionsStrategy); if (record === undefined) { return; } fluid.set(target, [name], fluid.inEvaluationMarker); var member = recordMaker(record, name, that); fluid.set(target, [name], member); return member; }, initter: function () { var records = fluid.driveStrategy(options, recordPath, optionsStrategy) || {}; for (var name in records) { if (!exceptions || !exceptions[name]) { fluid.getForComponent(that, prefix.concat([name])); } } } }; }; // patch Fluid.js version for timing fluid.instantiateFirers = function (that) { var shadow = fluid.shadowForComponent(that); var initter = fluid.get(shadow, ["eventStrategyBlock", "initter"]) || fluid.identity; initter(); }; fluid.makeDistributionRecord = function (contextThat, sourceRecord, sourcePath, targetSegs, exclusions, sourceType) { sourceType = sourceType || "distribution"; fluid.pushActivity("makeDistributionRecord", "Making distribution record from source record %sourceRecord path %sourcePath to target path %targetSegs", {sourceRecord: sourceRecord, sourcePath: sourcePath, targetSegs: targetSegs}); var source = fluid.copy(fluid.get(sourceRecord, sourcePath)); fluid.each(exclusions, function (exclusion) { fluid.model.applyChangeRequest(source, {segs: exclusion, type: "DELETE"}); }); var record = {options: {}}; fluid.model.applyChangeRequest(record, {segs: targetSegs, type: "ADD", value: source}); fluid.checkComponentRecord(record); fluid.popActivity(); return $.extend(record, {contextThat: contextThat, recordType: sourceType}); }; // Part of the early "distributeOptions" workflow. Given the description of the blocks to be distributed, assembles "canned" records // suitable to be either registered into the shadow record for later or directly pushed to an existing component, as well as honouring // any "removeSource" annotations by removing these options from the source block. fluid.filterBlocks = function (contextThat, sourceBlocks, sourceSegs, targetSegs, exclusions, removeSource) { var togo = []; fluid.each(sourceBlocks, function (block) { var source = fluid.get(block.source, sourceSegs); if (source !== undefined) { togo.push(fluid.makeDistributionRecord(contextThat, block.source, sourceSegs, targetSegs, exclusions, block.recordType)); var rescued = $.extend({}, source); if (removeSource) { fluid.model.applyChangeRequest(block.source, {segs: sourceSegs, type: "DELETE"}); } fluid.each(exclusions, function (exclusion) { var orig = fluid.get(rescued, exclusion); fluid.set(block.source, sourceSegs.concat(exclusion), orig); }); } }); return togo; }; // Use this peculiar signature since the actual component and shadow itself may not exist yet. Perhaps clean up with FLUID-4925 fluid.noteCollectedDistribution = function (parentShadow, memberName, distribution) { fluid.model.setSimple(parentShadow, ["collectedDistributions", memberName, distribution.id], true); }; fluid.isCollectedDistribution = function (parentShadow, memberName, distribution) { return fluid.model.getSimple(parentShadow, ["collectedDistributions", memberName, distribution.id]); }; fluid.clearCollectedDistributions = function (parentShadow, memberName) { fluid.model.applyChangeRequest(parentShadow, {segs: ["collectedDistributions", memberName], type: "DELETE"}); }; fluid.collectDistributions = function (distributedBlocks, parentShadow, distribution, thatStack, contextHashes, memberNames, i) { var lastMember = memberNames[memberNames.length - 1]; if (!fluid.isCollectedDistribution(parentShadow, lastMember, distribution) && fluid.matchIoCSelector(distribution.selector, thatStack, contextHashes, memberNames, i)) { distributedBlocks.push.apply(distributedBlocks, distribution.blocks); fluid.noteCollectedDistribution(parentShadow, lastMember, distribution); } }; // Slightly silly function to clean up the "appliedDistributions" records. In general we need to be much more aggressive both // about clearing instantiation garbage (e.g. onCreate and most of the shadow) // as well as caching frequently-used records such as the "thatStack" which // would mean this function could be written in a sensible way fluid.registerCollectedClearer = function (shadow, parentShadow, memberName) { if (!shadow.collectedClearer && parentShadow) { shadow.collectedClearer = function () { fluid.clearCollectedDistributions(parentShadow, memberName); }; } }; fluid.receiveDistributions = function (parentThat, gradeNames, memberName, that) { var instantiator = fluid.getInstantiator(parentThat || that); var thatStack = instantiator.getThatStack(parentThat || that); // most specific is at end thatStack.unshift(fluid.rootComponent); var memberNames = fluid.getMemberNames(instantiator, thatStack); var shadows = fluid.transform(thatStack, function (thisThat) { return instantiator.idToShadow[thisThat.id]; }); var parentShadow = shadows[shadows.length - (parentThat ? 1 : 2)]; var contextHashes = fluid.getMembers(shadows, "contextHash"); if (parentThat) { // if called before construction of component from assembleCreatorArguments - NB this path will be abolished/amalgamated memberNames.push(memberName); contextHashes.push(fluid.gradeNamesToHash(gradeNames)); thatStack.push(that); } else { fluid.registerCollectedClearer(shadows[shadows.length - 1], parentShadow, memberNames[memberNames.length - 1]); } var distributedBlocks = []; for (var i = 0; i < thatStack.length - 1; ++i) { fluid.each(shadows[i].distributions, function (distribution) { // eslint-disable-line no-loop-func fluid.collectDistributions(distributedBlocks, parentShadow, distribution, thatStack, contextHashes, memberNames, i); }); } return distributedBlocks; }; fluid.computeTreeDistance = function (path1, path2) { var i = 0; while (i < path1.length && i < path2.length && path1[i] === path2[i]) { ++i; } return path1.length + path2.length - 2*i; // eslint-disable-line space-infix-ops }; // Called from applyDistributions (immediate application route) as well as mergeRecordsToList (pre-instantiation route) AS WELL AS assembleCreatorArguments (pre-pre-instantiation route) fluid.computeDistributionPriority = function (targetThat, distributedBlock) { if (!distributedBlock.priority) { var instantiator = fluid.getInstantiator(targetThat); var targetStack = instantiator.getThatStack(targetThat); var targetPath = fluid.getMemberNames(instantiator, targetStack); var sourceStack = instantiator.getThatStack(distributedBlock.contextThat); var sourcePath = fluid.getMemberNames(instantiator, sourceStack); var distance = fluid.computeTreeDistance(targetPath, sourcePath); distributedBlock.priority = fluid.mergeRecordTypes.distribution - distance; } return distributedBlock; }; // convert "preBlocks" as produced from fluid.filterBlocks into "real blocks" suitable to be used by the expansion machinery. fluid.applyDistributions = function (that, preBlocks, targetShadow) { var distributedBlocks = fluid.transform(preBlocks, function (preBlock) { return fluid.generateExpandBlock(preBlock, that, targetShadow.mergePolicy); }, function (distributedBlock) { return fluid.computeDistributionPriority(that, distributedBlock); }); var mergeOptions = targetShadow.mergeOptions; mergeOptions.mergeBlocks.push.apply(mergeOptions.mergeBlocks, distributedBlocks); mergeOptions.updateBlocks(); return distributedBlocks; }; // TODO: This implementation is obviously poor and has numerous flaws - in particular it does no backtracking as well as matching backwards through the selector fluid.matchIoCSelector = function (selector, thatStack, contextHashes, memberNames, i) { var thatpos = thatStack.length - 1; var selpos = selector.length - 1; while (true) { var mustMatchHere = thatpos === thatStack.length - 1 || selector[selpos].child; var that = thatStack[thatpos]; var selel = selector[selpos]; var match = true; for (var j = 0; j < selel.predList.length; ++j) { var pred = selel.predList[j]; if (pred.context && !(contextHashes[thatpos][pred.context] || memberNames[thatpos] === pred.context)) { match = false; break; } Iif (pred.id && that.id !== pred.id) { match = false; break; } } if (selpos === 0 && thatpos > i && mustMatchHere) { match = false; // child selector must exhaust stack completely - FLUID-5029 } if (match) { if (selpos === 0) { return true; } --thatpos; --selpos; } else { if (mustMatchHere) { return false; } else { --thatpos; } } if (thatpos < i) { return false; } } }; /** Query for all components matching a selector in a particular tree * @param {Component} root - The root component at which to start the search * @param {String} selector - An IoCSS selector, in form of a string. Note that since selectors supplied to this function implicitly * match downwards, they need not contain the "head context" followed by whitespace required in the distributeOptions form. E.g. * simply <code>"fluid.viewComponent"</code> will match all viewComponents below the root. * @param {Boolean} flat - [Optional] <code>true</code> if the search should just be performed at top level of the component tree * Note that with <code>flat=true</code> this search will scan every component in the tree and may well be very slow. */ // supported, PUBLIC API function fluid.queryIoCSelector = function (root, selector, flat) { var parsed = fluid.parseSelector(selector, fluid.IoCSSMatcher); var togo = []; fluid.visitComponentsForMatching(root, {flat: flat}, function (that, thatStack, contextHashes, memberNames, i) { if (fluid.matchIoCSelector(parsed, thatStack, contextHashes, memberNames, i)) { togo.push(that); } }); return togo; }; fluid.isIoCSSSelector = function (context) { return context.indexOf(" ") !== -1; // simple-minded check for an IoCSS reference }; fluid.pushDistributions = function (targetHead, selector, target, blocks) { var targetShadow = fluid.shadowForComponent(targetHead); var id = fluid.allocateGuid(); var distribution = { id: id, // This id is used in clearDistributions target: target, // Here for improved debuggability - info is duplicated in "selector" selector: selector, blocks: blocks }; Object.freeze(distribution); Object.freeze(distribution.blocks); fluid.pushArray(targetShadow, "distributions", distribution); return id; }; fluid.clearDistribution = function (targetHeadId, id) { var targetHeadShadow = fluid.globalInstantiator.idToShadow[targetHeadId]; // By FLUID-6193, the head component may already have been destroyed, in which case the distributions are gone, // and we have leaked only its id. In theory we may want to re-establish the distribution if the head is // re-created, but that is a far wider issue. if (targetHeadShadow) { fluid.remove_if(targetHeadShadow.distributions, function (distribution) { return distribution.id === id; }); } }; fluid.clearDistributions = function (shadow) { fluid.each(shadow.outDistributions, function (outDist) { fluid.clearDistribution(outDist.targetHeadId, outDist.distributionId); }); }; // Modifies a parsed selector to extract and remove its head context which will be matched upwards fluid.extractSelectorHead = function (parsedSelector) { var predList = parsedSelector[0].predList; var context = predList[0].context; predList.length = 0; return context; }; fluid.parseExpectedOptionsPath = function (path, role) { var segs = fluid.model.parseEL(path); if (segs[0] !== "options") { fluid.fail("Error in options distribution path ", path, " - only " + role + " paths beginning with \"options\" are supported"); } return segs.slice(1); }; fluid.replicateProperty = function (source, property, targets) { if (source[property] !== undefined) { fluid.each(targets, function (target) { target[property] = source[property]; }); } }; fluid.undistributableOptions = ["gradeNames", "distributeOptions", "argumentMap", "initFunction", "mergePolicy", "progressiveCheckerOptions"]; // automatically added to "exclusions" of every distribution fluid.distributeOptions = function (that, optionsStrategy) { var thatShadow = fluid.shadowForComponent(that); var records = fluid.driveStrategy(that.options, "distributeOptions", optionsStrategy); fluid.each(records, function distributeOptionsOne(record) { fluid.pushActivity("distributeOptions", "parsing distributeOptions block %record %that ", {that: that, record: record}); Iif (typeof(record.target) !== "string") { fluid.fail("Error in options distribution record ", record, " a member named \"target\" must be supplied holding an IoC reference"); } Iif (typeof(record.source) === "string" ^ record.record === undefined) { fluid.fail("Error in options distribution record ", record, ": must supply either a member \"source\" holding an IoC reference or a member \"record\" holding a literal record"); } var targetRef = fluid.parseContextReference(record.target); var targetHead, selector, context; if (fluid.isIoCSSSelector(targetRef.context)) { selector = fluid.parseSelector(targetRef.context, fluid.IoCSSMatcher); var headContext = fluid.extractSelectorHead(selector); if (headContext === "/") { targetHead = fluid.rootComponent; } else { context = headContext; } } else { context = targetRef.context; } targetHead = targetHead || fluid.resolveContext(context, that); Iif (!targetHead) { fluid.fail("Error in options distribution record ", record, " - could not resolve context {" + context + "} to a head component"); } var targetSegs = fluid.model.parseEL(targetRef.path); var preBlocks; if (record.record !== undefined) { preBlocks = [(fluid.makeDistributionRecord(that, record.record, [], targetSegs, []))]; } else { var source = fluid.parseContextReference(record.source); Iif (source.context !== "that") { fluid.fail("Error in options distribution record ", record, " only a context of {that} is supported"); } var sourceSegs = fluid.parseExpectedOptionsPath(source.path, "source"); var fullExclusions = fluid.makeArray(record.exclusions).concat(sourceSegs.length === 0 ? fluid.undistributableOptions : []); var exclusions = fluid.transform(fullExclusions, function (exclusion) { return fluid.model.parseEL(exclusion); }); preBlocks = fluid.filterBlocks(that, thatShadow.mergeOptions.mergeBlocks, sourceSegs, targetSegs, exclusions, record.removeSource); thatShadow.mergeOptions.updateBlocks(); // perhaps unnecessary } fluid.replicateProperty(record, "priority", preBlocks); fluid.replicateProperty(record, "namespace", preBlocks); // TODO: inline material has to be expanded in its original context! if (selector) { var distributionId = fluid.pushDistributions(targetHead, selector, record.target, preBlocks); thatShadow.outDistributions = thatShadow.outDistributions || []; thatShadow.outDistributions.push({ targetHeadId: targetHead.id, distributionId: distributionId }); } else { // The component exists now, we must rebalance it var targetShadow = fluid.shadowForComponent(targetHead); fluid.applyDistributions(that, preBlocks, targetShadow); } fluid.popActivity(); }); }; fluid.gradeNamesToHash = function (gradeNames) { var contextHash = {}; fluid.each(gradeNames, function (gradeName) { contextHash[gradeName] = true; contextHash[fluid.computeNickName(gradeName)] = true; }); return contextHash; }; fluid.cacheShadowGrades = function (that, shadow) { var contextHash = fluid.gradeNamesToHash(that.options.gradeNames); if (!contextHash[shadow.memberName]) { contextHash[shadow.memberName] = "memberName"; // This is filtered out again in recordComponent - TODO: Ensure that ALL resolution uses the scope chain eventually } shadow.contextHash = contextHash; fluid.each(contextHash, function (troo, context) { shadow.ownScope[context] = that; Eif (shadow.parentShadow && shadow.parentShadow.that.type !== "fluid.rootComponent") { shadow.parentShadow.childrenScope[context] = that; } }); }; // First sequence point where the mergeOptions strategy is delivered from Fluid.js - here we take care // of both receiving and transmitting options distributions fluid.deliverOptionsStrategy = function (that, target, mergeOptions) { var shadow = fluid.shadowForComponent(that, shadow); fluid.cacheShadowGrades(that, shadow); shadow.mergeOptions = mergeOptions; }; /** Dynamic grade closure algorithm - the following 4 functions share access to a small record structure "rec" which is * constructed at the start of fluid.computeDynamicGrades */ fluid.collectDistributedGrades = function (rec) { // Receive distributions first since these may cause arrival of more contextAwareness blocks. var distributedBlocks = fluid.receiveDistributions(null, null, null, rec.that); if (distributedBlocks.length > 0) { var readyBlocks = fluid.applyDistributions(rec.that, distributedBlocks, rec.shadow); var gradeNamesList = fluid.transform(fluid.getMembers(readyBlocks, ["source", "gradeNames"]), fluid.makeArray); fluid.accumulateDynamicGrades(rec, fluid.flatten(gradeNamesList)); } }; // Apply a batch of freshly acquired plain dynamic grades to the target component and recompute its options fluid.applyDynamicGrades = function (rec) { rec.oldGradeNames = fluid.makeArray(rec.gradeNames); // Note that this crude algorithm doesn't allow us to determine which grades are "new" and which not // TODO: can no longer interpret comment var newDefaults = fluid.copy(fluid.getMergedDefaults(rec.that.typeName, rec.gradeNames)); rec.gradeNames.length = 0; // acquire derivatives of dynamic grades (FLUID-5054) rec.gradeNames.push.apply(rec.gradeNames, newDefaults.gradeNames); fluid.each(rec.gradeNames, function (gradeName) { if (!fluid.isIoCReference(gradeName)) { rec.seenGrades[gradeName] = true; } }); var shadow = rec.shadow; fluid.cacheShadowGrades(rec.that, shadow); // This cheap strategy patches FLUID-5091 for now - some more sophisticated activity will take place // at this site when we have a full fix for FLUID-5028 shadow.mergeOptions.destroyValue(["mergePolicy"]); shadow.mergeOptions.destroyValue(["components"]); shadow.mergeOptions.destroyValue(["invokers"]); rec.defaultsBlock.source = newDefaults; shadow.mergeOptions.updateBlocks(); shadow.mergeOptions.computeMergePolicy(); // TODO: we should really only do this if its content changed - this implies moving all options evaluation over to some (cheap) variety of the ChangeApplier fluid.accumulateDynamicGrades(rec, newDefaults.gradeNames); }; // Filter some newly discovered grades into their plain and dynamic queues fluid.accumulateDynamicGrades = function (rec, newGradeNames) { fluid.each(newGradeNames, function (gradeName) { if (!rec.seenGrades[gradeName]) { if (fluid.isIoCReference(gradeName)) { rec.rawDynamic.push(gradeName); rec.seenGrades[gradeName] = true; } else Eif (!fluid.contains(rec.oldGradeNames, gradeName)) { rec.plainDynamic.push(gradeName); } } }); }; fluid.computeDynamicGrades = function (that, shadow, strategy) { delete that.options.gradeNames; // Recompute gradeNames for FLUID-5012 and others var gradeNames = fluid.driveStrategy(that.options, "gradeNames", strategy); // Just acquire the reference and force eval of mergeBlocks "target", contents are wrong gradeNames.length = 0; // TODO: In complex distribution cases, a component might end up with multiple default blocks var defaultsBlock = fluid.findMergeBlocks(shadow.mergeOptions.mergeBlocks, "defaults")[0]; var rec = { that: that, shadow: shadow, defaultsBlock: defaultsBlock, gradeNames: gradeNames, // remember that this array is globally shared seenGrades: {}, plainDynamic: [], rawDynamic: [] }; fluid.each(shadow.mergeOptions.mergeBlocks, function (block) { // acquire parents of earlier blocks before applying later ones gradeNames.push.apply(gradeNames, fluid.makeArray(block.target && block.target.gradeNames)); fluid.applyDynamicGrades(rec); }); fluid.collectDistributedGrades(rec); while (true) { while (rec.plainDynamic.length > 0) { gradeNames.push.apply(gradeNames, rec.plainDynamic); rec.plainDynamic.length = 0; fluid.applyDynamicGrades(rec); fluid.collectDistributedGrades(rec); } if (rec.rawDynamic.length > 0) { var expanded = fluid.expandImmediate(rec.rawDynamic.shift(), that, shadow.localDynamic); if (typeof(expanded) === "function") { expanded = expanded(); } if (expanded) { rec.plainDynamic = rec.plainDynamic.concat(expanded); } } else { break; } } Eif (shadow.collectedClearer) { shadow.collectedClearer(); delete shadow.collectedClearer; } }; fluid.computeDynamicComponentKey = function (recordKey, sourceKey) { return recordKey + (sourceKey === 0 ? "" : "-" + sourceKey); // TODO: configurable name strategies }; fluid.registerDynamicRecord = function (that, recordKey, sourceKey, record, toCensor) { var key = fluid.computeDynamicComponentKey(recordKey, sourceKey); var cRecord = fluid.copy(record); delete cRecord[toCensor]; fluid.set(that.options, ["components", key], cRecord); return key; }; fluid.computeDynamicComponents = function (that, mergeOptions) { var shadow = fluid.shadowForComponent(that); var localSub = shadow.subcomponentLocal = {}; var records = fluid.driveStrategy(that.options, "dynamicComponents", mergeOptions.strategy); fluid.each(records, function (record, recordKey) { Iif (!record.sources && !record.createOnEvent) { fluid.fail("Cannot process dynamicComponents record ", record, " without a \"sources\" or \"createOnEvent\" entry"); } if (record.sources) { var sources = fluid.expandOptions(record.sources, that); fluid.each(sources, function (source, sourceKey) { var key = fluid.registerDynamicRecord(that, recordKey, sourceKey, record, "sources"); localSub[key] = {"source": source, "sourcePath": sourceKey}; }); } else Eif (record.createOnEvent) { var event = fluid.event.expandOneEvent(that, record.createOnEvent); fluid.set(shadow, ["dynamicComponentCount", recordKey], 0); var listener = function () { var key = fluid.registerDynamicRecord(that, recordKey, shadow.dynamicComponentCount[recordKey]++, record, "createOnEvent"); var localRecord = {"arguments": fluid.makeArray(arguments)}; fluid.initDependent(that, key, localRecord); }; event.addListener(listener); fluid.recordListener(event, listener, shadow); } }); }; // Second sequence point for mergeOptions from Fluid.js - here we construct all further // strategies required on the IoC side and mount them into the shadow's getConfig for universal use fluid.computeComponentAccessor = function (that, localRecord) { var instantiator = fluid.globalInstantiator; var shadow = fluid.shadowForComponent(that); shadow.localDynamic = localRecord; // for signalling to dynamic grades from dynamic components var options = that.options; var strategy = shadow.mergeOptions.strategy; var optionsStrategy = fluid.mountStrategy(["options"], options, strategy); shadow.invokerStrategy = fluid.recordStrategy(that, options, strategy, "invokers", fluid.invokerFromRecord); shadow.eventStrategyBlock = fluid.recordStrategy(that, options, strategy, "events", fluid.eventFromRecord, ["events"]); var eventStrategy = fluid.mountStrategy(["events"], that, shadow.eventStrategyBlock.strategy, ["events"]); shadow.memberStrategy = fluid.recordStrategy(that, options, strategy, "members", fluid.memberFromRecord, null, {model: true, modelRelay: true}); // NB - ginger strategy handles concrete, rationalise shadow.getConfig = {strategies: [fluid.model.funcResolverStrategy, fluid.makeGingerStrategy(that), optionsStrategy, shadow.invokerStrategy.strategy, shadow.memberStrategy.strategy, eventStrategy]}; fluid.computeDynamicGrades(that, shadow, strategy, shadow.mergeOptions.mergeBlocks); fluid.distributeOptions(that, strategy); if (shadow.contextHash["fluid.resolveRoot"]) { var memberName; if (shadow.contextHash["fluid.resolveRootSingle"]) { var singleRootType = fluid.getForComponent(that, ["options", "singleRootType"]); Iif (!singleRootType) { fluid.fail("Cannot register object with grades " + Object.keys(shadow.contextHash).join(", ") + " as fluid.resolveRootSingle since it has not defined option singleRootType"); } memberName = fluid.typeNameToMemberName(singleRootType); } else { memberName = fluid.computeGlobalMemberName(that); } var parent = fluid.resolveRootComponent; if (parent[memberName]) { instantiator.clearComponent(parent, memberName); } instantiator.recordKnownComponent(parent, that, memberName, false); } return shadow.getConfig; }; // About the SHADOW: // Allocated at: instantiator's "recordComponent" // Contents: // path {String} Principal allocated path (point of construction) in tree // that {Component} The component itself // contextHash {String to Boolean} Map of context names which this component matches // mergePolicy, mergeOptions: Machinery for last phase of options merging // invokerStrategy, eventStrategyBlock, memberStrategy, getConfig: Junk required to operate the accessor // listeners: Listeners registered during this component's construction, to be cleared during clearListeners // distributions, collectedClearer: Managing options distributions // outDistributions: A list of distributions registered from this component, signalling from distributeOptions to clearDistributions // subcomponentLocal: Signalling local record from computeDynamicComponents to assembleCreatorArguments // dynamicLocal: Local signalling for dynamic grades // ownScope: A hash of names to components which are in scope from this component - populated in cacheShadowGrades // childrenScope: A hash of names to components which are in scope because they are children of this component (BELOW own ownScope in resolution order) fluid.shadowForComponent = function (component) { var instantiator = fluid.getInstantiator(component); return instantiator && component ? instantiator.idToShadow[component.id] : null; }; // Access the member at a particular path in a component, forcing it to be constructed gingerly if necessary // supported, PUBLIC API function fluid.getForComponent = function (component, path) { var shadow = fluid.shadowForComponent(component); var getConfig = shadow ? shadow.getConfig : undefined; return fluid.get(component, path, getConfig); }; // An EL segment resolver strategy that will attempt to trigger creation of // components that it discovers along the EL path, if they have been defined but not yet // constructed. fluid.makeGingerStrategy = function (that) { var instantiator = fluid.getInstantiator(that); return function (component, thisSeg, index, segs) { var atval = component[thisSeg]; if (atval === fluid.inEvaluationMarker && index === segs.length) { fluid.fail("Error in component configuration - a circular reference was found during evaluation of path segment \"" + thisSeg + "\": for more details, see the activity records following this message in the console, or issue fluid.setLogging(fluid.logLevel.TRACE) when running your application"); } if (index > 1) { return atval; } if (atval === undefined && component.hasOwnProperty(thisSeg)) { // avoid recomputing properties that have been explicitly evaluated to undefined return fluid.NO_VALUE; } if (atval === undefined) { // pick up components in instantiation here - we can cut this branch by attaching early var parentPath = instantiator.idToShadow[component.id].path; var childPath = instantiator.composePath(parentPath, thisSeg); atval = instantiator.pathToComponent[childPath]; } if (atval === undefined) { // TODO: This check is very expensive - once gingerness is stable, we ought to be able to // eagerly compute and cache the value of options.components - check is also incorrect and will miss injections var subRecord = fluid.getForComponent(component, ["options", "components", thisSeg]); if (subRecord) { if (subRecord.createOnEvent) { fluid.fail("Error resolving path segment \"" + thisSeg + "\" of path " + segs.join(".") + " since component with record ", subRecord, " has annotation \"createOnEvent\" - this very likely represents an implementation error. Either alter the reference so it does not " + " match this component, or alter your workflow to ensure that the component is instantiated by the time this reference resolves"); } fluid.initDependent(component, thisSeg); atval = component[thisSeg]; } } return atval; }; }; // Listed in dependence order fluid.frameworkGrades = ["fluid.component", "fluid.modelComponent", "fluid.viewComponent", "fluid.rendererComponent"]; fluid.filterBuiltinGrades = function (gradeNames) { return fluid.remove_if(fluid.makeArray(gradeNames), function (gradeName) { return fluid.frameworkGrades.indexOf(gradeName) !== -1; }); }; fluid.dumpGradeNames = function (that) { return that.options && that.options.gradeNames ? " gradeNames: " + JSON.stringify(fluid.filterBuiltinGrades(that.options.gradeNames)) : ""; }; fluid.dumpThat = function (that) { return "{ typeName: \"" + that.typeName + "\"" + fluid.dumpGradeNames(that) + " id: " + that.id + "}"; }; fluid.dumpThatStack = function (thatStack, instantiator) { var togo = fluid.transform(thatStack, function (that) { var path = instantiator.idToPath(that.id); return fluid.dumpThat(that) + (path ? (" - path: " + path) : ""); }); return togo.join("\n"); }; fluid.dumpComponentPath = function (that) { var path = fluid.pathForComponent(that); return path ? fluid.pathUtil.composeSegments(path) : "** no path registered for component **"; }; fluid.resolveContext = function (context, that, fast) { if (context === "that") { return that; } // TODO: Check performance impact of this type check introduced for FLUID-5903 in a very sensitive corner if (typeof(context) === "object") { var innerContext = fluid.resolveContext(context.context, that, fast); Iif (!fluid.isComponent(innerContext)) { fluid.triggerMismatchedPathError(context.context, that); } var rawValue = fluid.getForComponent(innerContext, context.path); // TODO: Terrible, slow dispatch for this route var expanded = fluid.expandOptions(rawValue, that); Iif (!fluid.isComponent(expanded)) { fluid.fail("Unable to resolve recursive context expression " + fluid.renderContextReference(context) + ": the directly resolved value of " + rawValue + " did not resolve to a component in the scope of component ", that, ": got ", expanded); } return expanded; } else { var foundComponent; var instantiator = fluid.globalInstantiator; // fluid.getInstantiator(that); // this hash lookup takes over 1us! if (fast) { var shadow = instantiator.idToShadow[that.id]; return shadow.ownScope[context]; } else { var thatStack = instantiator.getFullStack(that); fluid.visitComponentsForVisibility(instantiator, thatStack, function (component, name) { var shadow = fluid.shadowForComponent(component); // TODO: Some components, e.g. the static environment and typeTags do not have a shadow, which slows us down here if (context === name || shadow && shadow.contextHash && shadow.contextHash[context] || context === component.typeName) { foundComponent = component; return true; // YOUR VISIT IS AT AN END!! } if (fluid.getForComponent(component, ["options", "components", context]) && !component[context]) { // This is an expensive guess since we make it for every component up the stack - must apply the WAVE OF EXPLOSIONS (FLUID-4925) to discover all components first // This line attempts a hopeful construction of components that could be guessed by nickname through finding them unconstructed // in options. In the near future we should eagerly BEGIN the process of constructing components, discovering their // types and then attaching them to the tree VERY EARLY so that we get consistent results from different strategies. foundComponent = fluid.getForComponent(component, context); return true; } }); return foundComponent; } } }; fluid.triggerMismatchedPathError = function (parsed, parentThat) { var ref = fluid.renderContextReference(parsed); fluid.fail("Failed to resolve reference " + ref + " - could not match context with name " + parsed.context + " from component " + fluid.dumpThat(parentThat) + " at path " + fluid.dumpComponentPath(parentThat) + " component: " , parentThat); }; fluid.makeStackFetcher = function (parentThat, localRecord, fast) { var fetcher = function (parsed) { Iif (parentThat && parentThat.lifecycleStatus === "destroyed") { fluid.fail("Cannot resolve reference " + fluid.renderContextReference(parsed) + " from component " + fluid.dumpThat(parentThat) + " which has been destroyed"); } var context = parsed.context; if (localRecord && context in localRecord) { return fluid.get(localRecord[context], parsed.path); } var foundComponent = fluid.resolveContext(context, parentThat, fast); Iif (!foundComponent && parsed.path !== "") { fluid.triggerMismatchedPathError(parsed, parentThat); } return fluid.getForComponent(foundComponent, parsed.path); }; return fetcher; }; fluid.makeStackResolverOptions = function (parentThat, localRecord, fast) { return $.extend(fluid.copy(fluid.rawDefaults("fluid.makeExpandOptions")), { localRecord: localRecord || {}, fetcher: fluid.makeStackFetcher(parentThat, localRecord, fast), contextThat: parentThat, exceptions: {members: {model: true, modelRelay: true}} }); }; fluid.clearListeners = function (shadow) { // TODO: bug here - "afterDestroy" listeners will be unregistered already unless they come from this component fluid.each(shadow.listeners, function (rec) { rec.event.removeListener(rec.listenerId || rec.listener); }); delete shadow.listeners; }; fluid.recordListener = function (event, listener, shadow, listenerId) { if (event.ownerId !== shadow.that.id) { // don't bother recording listeners registered from this component itself fluid.pushArray(shadow, "listeners", {event: event, listener: listener, listenerId: listenerId}); } }; fluid.constructScopeObjects = function (instantiator, parent, child, childShadow) { var parentShadow = parent ? instantiator.idToShadow[parent.id] : null; childShadow.childrenScope = parentShadow ? Object.create(parentShadow.ownScope) : {}; childShadow.ownScope = Object.create(childShadow.childrenScope); childShadow.parentShadow = parentShadow; }; fluid.clearChildrenScope = function (instantiator, parentShadow, child, childShadow) { fluid.each(childShadow.contextHash, function (troo, context) { if (parentShadow.childrenScope[context] === child) { delete parentShadow.childrenScope[context]; // TODO: ambiguous resolution } }); }; // unsupported, non-API function - however, this structure is of considerable interest to those debugging // into IoC issues. The structures idToShadow and pathToComponent contain a complete map of the component tree // forming the surrounding scope fluid.instantiator = function () { var that = fluid.typeTag("instantiator"); $.extend(that, { lifecycleStatus: "constructed", pathToComponent: {}, idToShadow: {}, modelTransactions: {init: {}}, // a map of transaction id to map of component id to records of components enlisted in a current model initialisation transaction composePath: fluid.model.composePath, // For speed, we declare that no component's name may contain a period composeSegments: fluid.model.composeSegments, parseEL: fluid.model.parseEL, events: { onComponentAttach: fluid.makeEventFirer({name: "instantiator's onComponentAttach event"}), onComponentClear: fluid.makeEventFirer({name: "instantiator's onComponentClear event"}) } }); // TODO: this API can shortly be removed that.idToPath = function (id) { var shadow = that.idToShadow[id]; return shadow ? shadow.path : ""; }; // Note - the returned stack is assumed writeable and does not include the root that.getThatStack = function (component) { var shadow = that.idToShadow[component.id]; Eif (shadow) { var path = shadow.path; var parsed = that.parseEL(path); var root = that.pathToComponent[""], togo = []; for (var i = 0; i < parsed.length; ++i) { root = root[parsed[i]]; togo.push(root); } return togo; } else { return [];} }; that.getFullStack = function (component) { var thatStack = component ? that.getThatStack(component) : []; thatStack.unshift(fluid.resolveRootComponent); return thatStack; }; function recordComponent(parent, component, path, name, created) { var shadow; if (created) { shadow = that.idToShadow[component.id] = {}; shadow.that = component; shadow.path = path; shadow.memberName = name; fluid.constructScopeObjects(that, parent, component, shadow); } else { shadow = that.idToShadow[component.id]; shadow.injectedPaths = shadow.injectedPaths || {}; // a hash since we will modify whilst iterating shadow.injectedPaths[path] = true; var parentShadow = that.idToShadow[parent.id]; // structural parent shadow - e.g. resolveRootComponent var keys = fluid.keys(shadow.contextHash); fluid.remove_if(keys, function (key) { return shadow.contextHash && shadow.contextHash[key] === "memberName"; }); keys.push(name); // add local name - FLUID-5696 and FLUID-5820 fluid.each(keys, function (context) { if (!parentShadow.childrenScope[context]) { parentShadow.childrenScope[context] = component; } }); } Iif (that.pathToComponent[path]) { fluid.fail("Error during instantiation - path " + path + " which has just created component " + fluid.dumpThat(component) + " has already been used for component " + fluid.dumpThat(that.pathToComponent[path]) + " - this is a circular instantiation or other oversight." + " Please clear the component using instantiator.clearComponent() before reusing the path."); } that.pathToComponent[path] = component; } that.recordRoot = function (component) { recordComponent(null, component, "", "", true); }; that.recordKnownComponent = function (parent, component, name, created) { parent[name] = component; Eif (fluid.isComponent(component) || component.type === "instantiator") { var parentPath = that.idToShadow[parent.id].path; var path = that.composePath(parentPath, name); recordComponent(parent, component, path, name, created); that.events.onComponentAttach.fire(component, path, that, created); } else { fluid.fail("Cannot record non-component with value ", component, " at path \"" + name + "\" of parent ", parent); } }; that.clearConcreteComponent = function (record) { // Clear injected instance of this component from all other paths - historically we didn't bother // to do this since injecting into a shorter scope is an error - but now we have resolveRoot area fluid.each(record.childShadow.injectedPaths, function (troo, injectedPath) { var parentPath = fluid.model.getToTailPath(injectedPath); var otherParent = that.pathToComponent[parentPath]; that.clearComponent(otherParent, fluid.model.getTailPath(injectedPath), record.child); }); fluid.clearDistributions(record.childShadow); fluid.clearListeners(record.childShadow); fluid.fireEvent(record.child, "afterDestroy", [record.child, record.name, record.component]); delete that.idToShadow[record.child.id]; }; that.clearComponent = function (component, name, child, options, nested, path) { // options are visitor options for recursive driving var shadow = that.idToShadow[component.id]; // use flat recursion since we want to use our own recursion rather than rely on "visited" records options = options || {flat: true, instantiator: that, destroyRecs: []}; child = child || component[name]; path = path || shadow.path; Iif (path === undefined) { fluid.fail("Cannot clear component " + name + " from component ", component, " which was not created by this instantiator"); } var childPath = that.composePath(path, name); var childShadow = that.idToShadow[child.id]; if (!childShadow) { // Explicit FLUID-5812 check - this can be eliminated once we move visitComponentChildren to instantiator's records return; } var created = childShadow.path === childPath; that.events.onComponentClear.fire(child, childPath, component, created); // only recurse on components which were created in place - if the id record disagrees with the // recurse path, it must have been injected if (created) { fluid.visitComponentChildren(child, function (gchild, gchildname, segs, i) { var parentPath = that.composeSegments.apply(null, segs.slice(0, i)); that.clearComponent(child, gchildname, null, options, true, parentPath); }, options, that.parseEL(childPath)); fluid.doDestroy(child, name, component); // call "onDestroy", null out events and invokers, setting lifecycleStatus to "destroyed" options.destroyRecs.push({child: child, childShadow: childShadow, name: name, component: component}); } else { fluid.remove_if(childShadow.injectedPaths, function (troo, path) { return path === childPath; }); } fluid.clearChildrenScope(that, shadow, child, childShadow); // Note that "pathToComponent" will not be available during afterDestroy. This is so that we can synchronously recreate the component // in an afterDestroy listener (FLUID-5931). We don't clear up the shadow itself until after afterDestroy. delete that.pathToComponent[childPath]; if (!nested) { delete component[name]; // there may be no entry - if creation is not concluded // Do actual destruction for the whole tree here, including "afterDestroy" and deleting shadows fluid.each(options.destroyRecs, that.clearConcreteComponent); } }; return that; }; // The global instantiator, holding all components instantiated in this context (instance of Infusion) fluid.globalInstantiator = fluid.instantiator(); // Look up the globally registered instantiator for a particular component - we now only really support a // single, global instantiator, but this method is left as a notation point in case this ever reverts // Returns null if argument is a noncomponent or has no shadow fluid.getInstantiator = function (component) { var instantiator = fluid.globalInstantiator; return component && instantiator.idToShadow[component.id] ? instantiator : null; }; // The grade supplied to components which will be resolvable from all parts of the component tree fluid.defaults("fluid.resolveRoot"); // In addition to being resolvable at the root, "resolveRootSingle" component will have just a single instance available. Fresh // instances will displace older ones. fluid.defaults("fluid.resolveRootSingle", { gradeNames: "fluid.resolveRoot" }); fluid.constructRootComponents = function (instantiator) { // Instantiate the primordial components at the root of each context tree fluid.rootComponent = instantiator.rootComponent = fluid.typeTag("fluid.rootComponent"); instantiator.recordRoot(fluid.rootComponent); // The component which for convenience holds injected instances of all components with fluid.resolveRoot grade fluid.resolveRootComponent = instantiator.resolveRootComponent = fluid.typeTag("fluid.resolveRootComponent"); instantiator.recordKnownComponent(fluid.rootComponent, fluid.resolveRootComponent, "resolveRootComponent", true); // obliterate resolveRoot's scope objects and replace by the real root scope - which is unused by its own children var rootShadow = instantiator.idToShadow[fluid.rootComponent.id]; rootShadow.contextHash = {}; // Fix for FLUID-6128 var resolveRootShadow = instantiator.idToShadow[fluid.resolveRootComponent.id]; resolveRootShadow.ownScope = rootShadow.ownScope; resolveRootShadow.childrenScope = rootShadow.childrenScope; instantiator.recordKnownComponent(fluid.resolveRootComponent, instantiator, "instantiator", true); // needs to have a shadow so it can be injected resolveRootShadow.childrenScope.instantiator = instantiator; // needs to be mounted since it never passes through cacheShadowGrades }; fluid.constructRootComponents(fluid.globalInstantiator); // currently a singleton - in future, alternative instantiators might come back /** Expand a set of component options either immediately, or with deferred effect. * The current policy is to expand immediately function arguments within fluid.assembleCreatorArguments which are not the main options of a * component. The component's own options take <code>{defer: true}</code> as part of * <code>outerExpandOptions</code> which produces an "expandOptions" structure holding the "strategy" and "initter" pattern * common to ginger participants. * Probably not to be advertised as part of a public API, but is considerably more stable than most of the rest * of the IoC API structure especially with respect to the first arguments. */ // TODO: Can we move outerExpandOptions to 2nd place? only user of 3 and 4 is fluid.makeExpandBlock // TODO: Actually we want localRecord in 2nd place since outerExpandOptions is now almost disused fluid.expandOptions = function (args, that, mergePolicy, localRecord, outerExpandOptions) { if (!args) { return args; } fluid.pushActivity("expandOptions", "expanding options %args for component %that ", {that: that, args: args}); var expandOptions = fluid.makeStackResolverOptions(that, localRecord); expandOptions.mergePolicy = mergePolicy; expandOptions.defer = outerExpandOptions && outerExpandOptions.defer; var expanded = expandOptions.defer ? fluid.makeExpandOptions(args, expandOptions) : fluid.expand(args, expandOptions); fluid.popActivity(); return expanded; }; fluid.localRecordExpected = fluid.arrayToHash(["type", "options", "container", "createOnEvent", "priority", "recordType"]); // last element unavoidably polluting fluid.checkComponentRecord = function (localRecord) { fluid.each(localRecord, function (value, key) { if (!fluid.localRecordExpected[key]) { fluid.fail("Probable error in subcomponent record ", localRecord, " - key \"" + key + "\" found, where the only legal options are " + fluid.keys(fluid.localRecordExpected).join(", ")); } }); }; fluid.mergeRecordsToList = function (that, mergeRecords) { var list = []; fluid.each(mergeRecords, function (value, key) { value.recordType = key; if (key === "distributions") { list.push.apply(list, fluid.transform(value, function (distributedBlock) { return fluid.computeDistributionPriority(that, distributedBlock); })); } else { if (!value.options) { return; } value.priority = fluid.mergeRecordTypes[key]; Iif (value.priority === undefined) { fluid.fail("Merge record with unrecognised type " + key + ": ", value); } list.push(value); } }); return list; }; // TODO: overall efficiency could huge be improved by resorting to the hated PROTOTYPALISM as an optimisation // for this mergePolicy which occurs in every component. Although it is a deep structure, the root keys are all we need var addPolicyBuiltins = function (policy) { fluid.each(["gradeNames", "mergePolicy", "argumentMap", "components", "dynamicComponents", "events", "listeners", "modelListeners", "modelRelay", "distributeOptions", "transformOptions"], function (key) { fluid.set(policy, [key, "*", "noexpand"], true); }); return policy; }; // used from Fluid.js fluid.generateExpandBlock = function (record, that, mergePolicy, localRecord) { var expanded = fluid.expandOptions(record.options, record.contextThat || that, mergePolicy, localRecord, {defer: true}); expanded.priority = record.priority; expanded.namespace = record.namespace; expanded.recordType = record.recordType; return expanded; }; var expandComponentOptionsImpl = function (mergePolicy, defaults, initRecord, that) { var defaultCopy = fluid.copy(defaults); addPolicyBuiltins(mergePolicy); var shadow = fluid.shadowForComponent(that); shadow.mergePolicy = mergePolicy; var mergeRecords = { defaults: {options: defaultCopy} }; $.extend(mergeRecords, initRecord.mergeRecords); // Do this here for gradeless components that were corrected by "localOptions" if (mergeRecords.subcomponentRecord) { fluid.checkComponentRecord(mergeRecords.subcomponentRecord); } var expandList = fluid.mergeRecordsToList(that, mergeRecords); var togo = fluid.transform(expandList, function (value) { return fluid.generateExpandBlock(value, that, mergePolicy, initRecord.localRecord); }); return togo; }; fluid.fabricateDestroyMethod = function (that, name, instantiator, child) { return function () { instantiator.clearComponent(that, name, child); }; }; // Computes a name for a component appearing at the global root which is globally unique, from its nickName and id fluid.computeGlobalMemberName = function (that) { var nickName = fluid.computeNickName(that.typeName); return nickName + "-" + that.id; }; // Maps a type name to the member name to be used for it at a particular path level where it is intended to be unique // Note that "." is still not supported within a member name // supported, PUBLIC API function fluid.typeNameToMemberName = function (typeName) { return typeName.replace(/\./g, "_"); }; // This is the initial entry point from the non-IoC side reporting the first presence of a new component - called from fluid.mergeComponentOptions fluid.expandComponentOptions = function (mergePolicy, defaults, userOptions, that) { var initRecord = userOptions; // might have been tunnelled through "userOptions" from "assembleCreatorArguments" var instantiator = userOptions && userOptions.marker === fluid.EXPAND ? userOptions.instantiator : null; fluid.pushActivity("expandComponentOptions", "expanding component options %options with record %record for component %that", {options: instantiator ? userOptions.mergeRecords.user : userOptions, record: initRecord, that: that}); if (!instantiator) { // it is a top-level component which needs to be attached to the global root instantiator = fluid.globalInstantiator; initRecord = { // upgrade "userOptions" to the same format produced by fluid.assembleCreatorArguments via the subcomponent route mergeRecords: {user: {options: fluid.expandCompact(userOptions, true)}}, memberName: fluid.computeGlobalMemberName(that), instantiator: instantiator, parentThat: fluid.rootComponent }; } that.destroy = fluid.fabricateDestroyMethod(initRecord.parentThat, initRecord.memberName, instantiator, that); instantiator.recordKnownComponent(initRecord.parentThat, that, initRecord.memberName, true); var togo = expandComponentOptionsImpl(mergePolicy, defaults, initRecord, that); fluid.popActivity(); return togo; }; /** Given a typeName, determine the final concrete * "invocation specification" consisting of a concrete global function name * and argument list which is suitable to be executed directly by fluid.invokeGlobalFunction. */ // options is just a disposition record containing memberName, componentRecord fluid.assembleCreatorArguments = function (parentThat, typeName, options) { var upDefaults = fluid.defaults(typeName); // we're not responsive to dynamic changes in argMap, but we don't believe in these anyway Iif (!upDefaults || !upDefaults.argumentMap) { fluid.fail("Error in assembleCreatorArguments: cannot look up component type name " + typeName + " to a component creator grade with an argumentMap"); } var fakeThat = {}; // fake "that" for receiveDistributions since we try to match selectors before creation for FLUID-5013 var distributions = parentThat ? fluid.receiveDistributions(parentThat, upDefaults.gradeNames, options.memberName, fakeThat) : []; fluid.each(distributions, function (distribution) { // TODO: The duplicated route for this is in fluid.mergeComponentOptions fluid.computeDistributionPriority(parentThat, distribution); if (fluid.isPrimitive(distribution.priority)) { // TODO: These should be immutable and parsed just once on registration - but we can't because of crazy target-dependent distance system distribution.priority = fluid.parsePriority(distribution.priority, 0, false, "options distribution"); } }); fluid.sortByPriority(distributions); var localDynamic = options.localDynamic; var localRecord = $.extend({}, fluid.censorKeys(options.componentRecord, ["type"]), localDynamic); var argMap = upDefaults.argumentMap; var findKeys = Object.keys(argMap).concat(["type"]); fluid.each(findKeys, function (name) { for (var i = 0; i < distributions.length; ++i) { // Apply non-options material from distributions (FLUID-5013) if (distributions[i][name] !== undefined) { localRecord[name] = distributions[i][name]; } } }); typeName = localRecord.type || typeName; delete localRecord.type; delete localRecord.options; var mergeRecords = {distributions: distributions}; Eif (options.componentRecord !== undefined) { // Deliberately put too many things here so they can be checked in expandComponentOptions (FLUID-4285) mergeRecords.subcomponentRecord = $.extend({}, options.componentRecord); } var args = []; fluid.each(argMap, function (index, name) { var arg; if (name === "options") { arg = {marker: fluid.EXPAND, localRecord: localDynamic, mergeRecords: mergeRecords, instantiator: fluid.getInstantiator(parentThat), parentThat: parentThat, memberName: options.memberName}; } else { var value = localRecord[name]; arg = fluid.expandImmediate(value, parentThat, localRecord); } args[index] = arg; }); var togo = { args: args, funcName: typeName }; return togo; }; /** Instantiate the subcomponent with the supplied name of the supplied top-level component. Although this method * is published as part of the Fluid API, it should not be called by general users and may not remain stable. It is * currently the only mechanism provided for instantiating components whose definitions are dynamic, and will be * replaced in time by dedicated declarative framework described by FLUID-5022. * @param {Component} that - The parent component for which the subcomponent is to be instantiated * @param {String} name - The name of the component - the index of the options block which configures it as part of the * <code>components</code> section of its parent's options * @param {Object} [localRecord] - A local scope record keyed by context names which should specially be in scope for this * construction, e.g. `arguments`. Primarily for internal framework use. * @return {Component} The constructed subcomponent */ fluid.initDependent = function (that, name, localRecord) { if (that[name]) { return; } // TODO: move this into strategy var component = that.options.components[name]; var instance; var instantiator = fluid.globalInstantiator; var shadow = instantiator.idToShadow[that.id]; var localDynamic = localRecord || shadow.subcomponentLocal && shadow.subcomponentLocal[name]; fluid.pushActivity("initDependent", "instantiating dependent component at path \"%path\" with record %record as child of %parent", {path: shadow.path + "." + name, record: component, parent: that}); if (typeof(component) === "string" || component.expander) { that[name] = fluid.inEvaluationMarker; instance = fluid.expandImmediate(component, that); if (instance) { instantiator.recordKnownComponent(that, instance, name, false); } else { delete that[name]; } } else Eif (component.type) { var type = fluid.expandImmediate(component.type, that, localDynamic); Iif (!type) { fluid.fail("Error in subcomponent record: ", component.type, " could not be resolved to a type for component ", name, " of parent ", that); } var invokeSpec = fluid.assembleCreatorArguments(that, type, {componentRecord: component, memberName: name, localDynamic: localDynamic}); instance = fluid.initSubcomponentImpl(that, {type: invokeSpec.funcName}, invokeSpec.args); } else { fluid.fail("Unrecognised material in place of subcomponent " + name + " - no \"type\" field found"); } fluid.popActivity(); return instance; }; fluid.bindDeferredComponent = function (that, componentName, component) { var events = fluid.makeArray(component.createOnEvent); fluid.each(events, function (eventName) { var event = fluid.isIoCReference(eventName) ? fluid.expandOptions(eventName, that) : that.events[eventName]; Iif (!event || !event.addListener) { fluid.fail("Error instantiating createOnEvent component with name " + componentName + " of parent ", that, " since event specification " + eventName + " could not be expanded to an event - got ", event); } event.addListener(function () { fluid.pushActivity("initDeferred", "instantiating deferred component %componentName of parent %that due to event %eventName", {componentName: componentName, that: that, eventName: eventName}); if (that[componentName]) { fluid.globalInstantiator.clearComponent(that, componentName); } var localRecord = {"arguments": fluid.makeArray(arguments)}; fluid.initDependent(that, componentName, localRecord); fluid.popActivity(); }, null, component.priority); }); }; fluid.priorityForComponent = function (component) { return component.priority ? component.priority : (component.type === "fluid.typeFount" || fluid.hasGrade(fluid.defaults(component.type), "fluid.typeFount")) ? "first" : undefined; }; fluid.initDependents = function (that) { fluid.pushActivity("initDependents", "instantiating dependent components for component %that", {that: that}); var shadow = fluid.shadowForComponent(that); shadow.memberStrategy.initter(); shadow.invokerStrategy.initter(); fluid.getForComponent(that, "modelRelay"); fluid.getForComponent(that, "model"); // trigger this as late as possible - but must be before components so that child component has model on its onCreate if (fluid.isDestroyed(that)) { return; // Further fix for FLUID-5869 - if we managed to destroy ourselves through some bizarre model self-reaction, bail out here } var options = that.options; var components = options.components || {}; var componentSort = []; fluid.each(components, function (component, name) { if (!component.createOnEvent) { var priority = fluid.priorityForComponent(component); componentSort.push({namespace: name, priority: fluid.parsePriority(priority)}); } else { fluid.bindDeferredComponent(that, name, component); } }); fluid.sortByPriority(componentSort); fluid.each(componentSort, function (entry) { fluid.initDependent(that, entry.namespace); }); Eif (shadow.subcomponentLocal) { fluid.clear(shadow.subcomponentLocal); // still need repo for event-driven dynamic components - abolish these in time } that.lifecycleStatus = "constructed"; fluid.assessTreeConstruction(that, shadow); fluid.popActivity(); }; fluid.assessTreeConstruction = function (that, shadow) { var instantiator = fluid.globalInstantiator; var thatStack = instantiator.getThatStack(that); var unstableUp = fluid.find_if(thatStack, function (that) { return that.lifecycleStatus === "constructing"; }); if (unstableUp) { that.lifecycleStatus = "constructed"; } else { fluid.markSubtree(instantiator, that, shadow.path, "treeConstructed"); } }; fluid.markSubtree = function (instantiator, that, path, state) { that.lifecycleStatus = state; fluid.visitComponentChildren(that, function (child, name) { var childPath = instantiator.composePath(path, name); var childShadow = instantiator.idToShadow[child.id]; var created = childShadow && childShadow.path === childPath; if (created) { fluid.markSubtree(instantiator, child, childPath, state); } }, {flat: true}); }; /* == BEGIN NEXUS METHODS == */ /** * Given a component reference, returns the path of that component within its component tree. * * @param {Component} component - A reference to a component. * @param {Instantiator} [instantiator] - (optional) An instantiator to use for the lookup. * @return {String[]} An array of {String} path segments of the component within its tree, or `null` if the reference does not hold a live component. */ fluid.pathForComponent = function (component, instantiator) { instantiator = instantiator || fluid.getInstantiator(component) || fluid.globalInstantiator; var shadow = instantiator.idToShadow[component.id]; if (!shadow) { return null; } return instantiator.parseEL(shadow.path); }; /** Construct a component with the supplied options at the specified path in the component tree. The parent path of the location must already be a component. * @param {String|String[]} path - Path where the new component is to be constructed, represented as a string or array of string segments * @param {Object} options - Top-level options supplied to the component - must at the very least include a field <code>type</code> holding the component's type * @param {Instantiator} [instantiator] - [optional] The instantiator holding the component to be created - if blank, the global instantiator will be used * @return {Object} The constructed component. */ fluid.construct = function (path, options, instantiator) { var record = fluid.destroy(path, instantiator); // TODO: We must construct a more principled scheme for designating child components than this - especially once options become immutable fluid.set(record.parent, ["options", "components", record.memberName], { type: options.type, options: options }); return fluid.initDependent(record.parent, record.memberName); }; /** Destroys a component held at the specified path. The parent path must represent a component, although the component itself may be nonexistent * @param {String|String[]} path - Path where the new component is to be destroyed, represented as a string or array of string segments * @param {Instantiator} [instantiator] - [optional] The instantiator holding the component to be destroyed - if blank, the global instantiator will be used. * @return {Object} - An object containing a reference to the parent of the destroyed element, and the member name of the destroyed component. */ fluid.destroy = function (path, instantiator) { instantiator = instantiator || fluid.globalInstantiator; var segs = fluid.model.parseToSegments(path, instantiator.parseEL, true); Iif (segs.length === 0) { fluid.fail("Cannot destroy the root component"); } var memberName = segs.pop(), parentPath = instantiator.composeSegments.apply(null, segs); var parent = instantiator.pathToComponent[parentPath]; Iif (!parent) { fluid.fail("Cannot modify component with nonexistent parent at path ", path); } if (parent[memberName]) { parent[memberName].destroy(); } return { parent: parent, memberName: memberName }; }; /** Construct an instance of a component as a child of the specified parent, with a well-known, unique name derived from its typeName * @param {String|String[]} parentPath - Parent of path where the new component is to be constructed, represented as a {String} or array of {String} segments * @param {String|Object} options - Options encoding the component to be constructed. If this is of type String, it is assumed to represent the component's typeName with no options * @param {Instantiator} [instantiator] - [optional] The instantiator holding the component to be created - if blank, the global instantiator will be used */ fluid.constructSingle = function (parentPath, options, instantiator) { instantiator = instantiator || fluid.globalInstantiator; parentPath = parentPath || ""; var segs = fluid.model.parseToSegments(parentPath, instantiator.parseEL, true); if (typeof(options) === "string") { options = {type: options}; } var type = options.type; Iif (!type) { fluid.fail("Cannot construct singleton object without a type entry"); } options = $.extend({}, options); var gradeNames = options.gradeNames = fluid.makeArray(options.gradeNames); gradeNames.unshift(type); // principal type may be noninstantiable options.type = "fluid.component"; var root = segs.length === 0; Eif (root) { gradeNames.push("fluid.resolveRoot"); } var memberName = fluid.typeNameToMemberName(options.singleRootType || type); segs.push(memberName); fluid.construct(segs, options, instantiator); }; /** Destroy an instance created by `fluid.constructSingle` * @param {String|String[]} parentPath - Parent of path where the new component is to be constructed, represented as a {String} or array of {String} segments * @param {String} typeName - The type name used to construct the component (either `type` or `singleRootType` of the `options` argument to `fluid.constructSingle` * @param {Instantiator} [instantiator] - [optional] The instantiator holding the component to be created - if blank, the global instantiator will be used */ fluid.destroySingle = function (parentPath, typeName, instantiator) { instantiator = instantiator || fluid.globalInstantiator; var segs = fluid.model.parseToSegments(parentPath, instantiator.parseEL, true); var memberName = fluid.typeNameToMemberName(typeName); segs.push(memberName); fluid.destroy(segs, instantiator); }; /** Registers and constructs a "linkage distribution" which will ensure that wherever a set of "input grades" co-occur, they will * always result in a supplied "output grades" in the component where they co-occur. * @param {String} linkageName - The name of the grade which will broadcast the resulting linkage. If required, this linkage can be destroyed by supplying this name to `fluid.destroySingle`. * @param {String[]} inputNames - An array of grade names which will be tested globally for co-occurrence * @param {String|String[]} outputNames - A single grade name or array of grade names which will be output into the co-occuring component */ fluid.makeGradeLinkage = function (linkageName, inputNames, outputNames) { fluid.defaults(linkageName, { gradeNames: "fluid.component", distributeOptions: { record: outputNames, target: "{/ " + inputNames.join("&") + "}.options.gradeNames" } }); fluid.constructSingle([], linkageName); }; /** Retrieves a component by global path. * @param {String|String[]} path - The global path of the component to look up, expressed as a string or as an array of segments. * @return {Object} - The component at the specified path, or undefined if none is found. */ fluid.componentForPath = function (path) { return fluid.globalInstantiator.pathToComponent[fluid.isArrayable(path) ? path.join(".") : path]; }; /** END NEXUS METHODS **/ /** BEGIN IOC DEBUGGING METHODS **/ fluid["debugger"] = function () { debugger; // eslint-disable-line no-debugger }; fluid.defaults("fluid.debuggingProbe", { gradeNames: ["fluid.component"] }); // probe looks like: // target: {preview other}.listeners.eventName // priority: first/last // func: console.log/fluid.log/fluid.debugger fluid.probeToDistribution = function (probe) { var instantiator = fluid.globalInstantiator; var parsed = fluid.parseContextReference(probe.target); var segs = fluid.model.parseToSegments(parsed.path, instantiator.parseEL, true); if (segs[0] !== "options") { segs.unshift("options"); // compensate for this insanity until we have the great options flattening } var parsedPriority = fluid.parsePriority(probe.priority); if (parsedPriority.constraint && !parsedPriority.constraint.target) { parsedPriority.constraint.target = "authoring"; } return { target: "{/ " + parsed.context + "}." + instantiator.composeSegments.apply(null, segs), record: { func: probe.func, funcName: probe.funcName, args: probe.args, priority: fluid.renderPriority(parsedPriority) } }; }; fluid.registerProbes = function (probes) { var probeDistribution = fluid.transform(probes, fluid.probeToDistribution); var memberName = "fluid_debuggingProbe_" + fluid.allocateGuid(); fluid.construct([memberName], { type: "fluid.debuggingProbe", distributeOptions: probeDistribution }); return memberName; }; fluid.deregisterProbes = function (probeName) { fluid.destroy([probeName]); }; /** END IOC DEBUGGING METHODS **/ fluid.thisistToApplicable = function (record, recthis, that) { return { apply: function (noThis, args) { // Resolve this material late, to deal with cases where the target has only just been brought into existence // (e.g. a jQuery target for rendered material) - TODO: Possibly implement cached versions of these as we might do for invokers var resolvedThis = fluid.expandOptions(recthis, that); if (typeof(resolvedThis) === "string") { resolvedThis = fluid.getGlobalValue(resolvedThis); } Iif (!resolvedThis) { fluid.fail("Could not resolve reference " + recthis + " to a value"); } var resolvedFunc = resolvedThis[record.method]; Iif (typeof(resolvedFunc) !== "function") { fluid.fail("Object ", resolvedThis, " at reference " + recthis + " has no member named " + record.method + " which is a function "); } if (fluid.passLogLevel(fluid.logLevel.TRACE)) { fluid.log(fluid.logLevel.TRACE, "Applying arguments ", args, " to method " + record.method + " of instance ", resolvedThis); } return resolvedFunc.apply(resolvedThis, args); } }; }; fluid.changeToApplicable = function (record, that) { return { apply: function (noThis, args, localRecord, mergeRecord) { var parsed = fluid.parseValidModelReference(that, "changePath listener record", record.changePath); var value = fluid.expandOptions(record.value, that, {}, fluid.extend(localRecord, {"arguments": args})); var sources = mergeRecord && mergeRecord.source && mergeRecord.source.length ? fluid.makeArray(record.source).concat(mergeRecord.source) : record.source; parsed.applier.change(parsed.modelSegs, value, record.type, sources); // FLUID-5586 now resolved } }; }; // Convert "exotic records" into an applicable form ("this/method" for FLUID-4878 or "changePath" for FLUID-3674) fluid.recordToApplicable = function (record, that, standard) { if (record.changePath !== undefined) { // Allow falsy paths for FLUID-5586 return fluid.changeToApplicable(record, that, standard); } var recthis = record["this"]; Iif (record.method ^ recthis) { fluid.fail("Record ", that, " must contain both entries \"method\" and \"this\" if it contains either"); } return record.method ? fluid.thisistToApplicable(record, recthis, that) : null; }; fluid.getGlobalValueNonComponent = function (funcName, context) { // TODO: Guard this in listeners as well var defaults = fluid.defaults(funcName); if (defaults && fluid.hasGrade(defaults, "fluid.component")) { fluid.fail("Error in function specification - cannot invoke function " + funcName + " in the context of " + context + ": component creator functions can only be used as subcomponents"); } return fluid.getGlobalValue(funcName); }; fluid.makeInvoker = function (that, invokerec, name) { invokerec = fluid.upgradePrimitiveFunc(invokerec); // shorthand case for direct function invokers (FLUID-4926) if (invokerec.args !== undefined && invokerec.args !== fluid.NO_VALUE && !fluid.isArrayable(invokerec.args)) { invokerec.args = fluid.makeArray(invokerec.args); } var func = fluid.recordToApplicable(invokerec, that); var invokePre = fluid.preExpand(invokerec.args); var localRecord = {}; var expandOptions = fluid.makeStackResolverOptions(that, localRecord, true); func = func || (invokerec.funcName ? fluid.getGlobalValueNonComponent(invokerec.funcName, "an invoker") : fluid.expandImmediate(invokerec.func, that)); Iif (!func || !func.apply) { fluid.fail("Error in invoker record: could not resolve members func, funcName or method to a function implementation - got " + func + " from ", invokerec); } else if (func === fluid.notImplemented) { fluid.fail("Error constructing component ", that, " - the invoker named " + name + " which was defined in grade " + invokerec.componentSource + " needs to be overridden with a concrete implementation"); } return function invokeInvoker() { if (fluid.defeatLogging === false) { fluid.pushActivity("invokeInvoker", "invoking invoker with name %name and record %record from path %path holding component %that", {name: name, record: invokerec, path: fluid.dumpComponentPath(that), that: that}); } var togo, finalArgs; if (that.lifecycleStatus === "destroyed") { fluid.log(fluid.logLevel.WARN, "Ignoring call to invoker " + name + " of component ", that, " which has been destroyed"); } else { localRecord.arguments = arguments; if (invokerec.args === undefined || invokerec.args === fluid.NO_VALUE) { finalArgs = arguments; } else { fluid.expandImmediateImpl(invokePre, expandOptions); finalArgs = invokePre.source; } togo = func.apply(null, finalArgs); } if (fluid.defeatLogging === false) { fluid.popActivity(); } return togo; }; }; // weird higher-order function so that we can staightforwardly dispatch original args back onto listener fluid.event.makeTrackedListenerAdder = function (source) { var shadow = fluid.shadowForComponent(source); return function (event) { return {addListener: function (listener, namespace, priority, softNamespace, listenerId) { fluid.recordListener(event, listener, shadow, listenerId); event.addListener.apply(null, arguments); }}; }; }; fluid.event.listenerEngine = function (eventSpec, callback, adder) { var argstruc = {}; function checkFire() { var notall = fluid.find(eventSpec, function (value, key) { if (argstruc[key] === undefined) { return true; } }); if (!notall) { var oldstruc = argstruc; argstruc = {}; // guard against the case the callback perversely fires one of its prerequisites (FLUID-5112) callback(oldstruc); } } fluid.each(eventSpec, function (event, eventName) { adder(event).addListener(function () { argstruc[eventName] = fluid.makeArray(arguments); checkFire(); }); }); }; fluid.event.dispatchListener = function (that, listener, eventName, eventSpec, indirectArgs) { if (eventSpec.args !== undefined && eventSpec.args !== fluid.NO_VALUE && !fluid.isArrayable(eventSpec.args)) { eventSpec.args = fluid.makeArray(eventSpec.args); } listener = fluid.event.resolveListener(listener); // In theory this optimisation is too aggressive if global name is not defined yet var dispatchPre = fluid.preExpand(eventSpec.args); var localRecord = {}; var expandOptions = fluid.makeStackResolverOptions(that, localRecord, true); var togo = function () { if (fluid.defeatLogging === false) { fluid.pushActivity("dispatchListener", "firing to listener to event named %eventName of component %that", {eventName: eventName, that: that}); } var args = indirectArgs ? arguments[0] : arguments, finalArgs; localRecord.arguments = args; if (eventSpec.args !== undefined && eventSpec.args !== fluid.NO_VALUE) { fluid.expandImmediateImpl(dispatchPre, expandOptions); finalArgs = dispatchPre.source; } else { finalArgs = args; } var togo = listener.apply(null, finalArgs); if (fluid.defeatLogging === false) { fluid.popActivity(); } return togo; }; fluid.event.impersonateListener(listener, togo); // still necessary for FLUID-5254 even though framework's listeners now get explicit guids return togo; }; fluid.event.resolveSoftNamespace = function (key) { if (typeof(key) !== "string") { return null; } else { var lastpos = Math.max(key.lastIndexOf("."), key.lastIndexOf("}")); return key.substring(lastpos + 1); } }; fluid.event.resolveListenerRecord = function (lisrec, that, eventName, namespace, standard) { var badRec = function (record, extra) { fluid.fail("Error in listener record - could not resolve reference ", record, " to a listener or firer. " + "Did you miss out \"events.\" when referring to an event firer?" + extra); }; fluid.pushActivity("resolveListenerRecord", "resolving listener record for event named %eventName for component %that", {eventName: eventName, that: that}); var records = fluid.makeArray(lisrec); var transRecs = fluid.transform(records, function (record) { // TODO: FLUID-5242 fix - we copy here since distributeOptions does not copy options blocks that it distributes and we can hence corrupt them. // need to clarify policy on options sharing - for slightly better efficiency, copy should happen during distribution and not here // Note that fluid.mergeModelListeners expects to write to these too var expanded = fluid.isPrimitive(record) || record.expander ? {listener: record} : fluid.copy(record); var methodist = fluid.recordToApplicable(record, that, standard); if (methodist) { expanded.listener = methodist; } else { expanded.listener = expanded.listener || expanded.func || expanded.funcName; } Iif (!expanded.listener) { badRec(record, " Listener record must contain a member named \"listener\", \"func\", \"funcName\" or \"method\""); } var softNamespace = record.method ? fluid.event.resolveSoftNamespace(record["this"]) + "." + record.method : fluid.event.resolveSoftNamespace(expanded.listener); if (!expanded.namespace && !namespace && softNamespace) { expanded.softNamespace = true; expanded.namespace = (record.componentSource ? record.componentSource : that.typeName) + "." + softNamespace; } var listener = expanded.listener = fluid.expandOptions(expanded.listener, that); if (!listener) { badRec(record, ""); } var firer = false; if (listener.typeName === "fluid.event.firer") { listener = listener.fire; firer = true; } expanded.listener = (standard && (expanded.args && listener !== "fluid.notImplemented" || firer)) ? fluid.event.dispatchListener(that, listener, eventName, expanded) : listener; expanded.listenerId = fluid.allocateGuid(); return expanded; }); var togo = { records: transRecs, adderWrapper: standard ? fluid.event.makeTrackedListenerAdder(that) : null }; fluid.popActivity(); return togo; }; fluid.event.expandOneEvent = function (that, event) { var origin; if (typeof(event) === "string" && event.charAt(0) !== "{") { // Shorthand for resolving onto our own events, but with GINGER WORLD! origin = fluid.getForComponent(that, ["events", event]); } else { origin = fluid.expandOptions(event, that); } Iif (!origin || origin.typeName !== "fluid.event.firer") { fluid.fail("Error in event specification - could not resolve base event reference ", event, " to an event firer: got ", origin); } return origin; }; fluid.event.expandEvents = function (that, event) { return typeof(event) === "string" ? fluid.event.expandOneEvent(that, event) : fluid.transform(event, function (oneEvent) { return fluid.event.expandOneEvent(that, oneEvent); }); }; fluid.event.resolveEvent = function (that, eventName, eventSpec) { fluid.pushActivity("resolveEvent", "resolving event with name %eventName attached to component %that", {eventName: eventName, that: that}); var adder = fluid.event.makeTrackedListenerAdder(that); if (typeof(eventSpec) === "string") { eventSpec = {event: eventSpec}; } var event = eventSpec.typeName === "fluid.event.firer" ? eventSpec : eventSpec.event || eventSpec.events; Iif (!event) { fluid.fail("Event specification for event with name " + eventName + " does not include a base event specification: ", eventSpec); } var origin = event.typeName === "fluid.event.firer" ? event : fluid.event.expandEvents(that, event); var isMultiple = origin.typeName !== "fluid.event.firer"; var isComposite = eventSpec.args || isMultiple; // If "event" is not composite, we want to share the listener list and FIRE method with the original // If "event" is composite, we need to create a new firer. "composite" includes case where any boiling // occurred - this was implemented wrongly in 1.4. var firer; if (isComposite) { firer = fluid.makeEventFirer({name: " [composite] " + fluid.event.nameEvent(that, eventName)}); var dispatcher = fluid.event.dispatchListener(that, firer.fire, eventName, eventSpec, isMultiple); if (isMultiple) { fluid.event.listenerEngine(origin, dispatcher, adder); } else { adder(origin).addListener(dispatcher); } } else { firer = {typeName: "fluid.event.firer"}; firer.fire = function () { var outerArgs = fluid.makeArray(arguments); fluid.pushActivity("fireSynthetic", "firing synthetic event %eventName ", {eventName: eventName}); var togo = origin.fire.apply(null, outerArgs); fluid.popActivity(); return togo; }; firer.addListener = function (listener, namespace, priority, softNamespace, listenerId) { var dispatcher = fluid.event.dispatchListener(that, listener, eventName, eventSpec); adder(origin).addListener(dispatcher, namespace, priority, softNamespace, listenerId); }; firer.removeListener = function (listener) { origin.removeListener(listener); }; } fluid.popActivity(); return firer; }; /** BEGIN unofficial IoC material **/ // The following three functions are unsupported ane only used in the renderer expander. // The material they produce is no longer recognised for component resolution. fluid.withEnvironment = function (envAdd, func, root) { var key; root = root || fluid.globalThreadLocal(); try { for (key in envAdd) { root[key] = envAdd[key]; } $.extend(root, envAdd); return func(); } finally { for (key in envAdd) { delete root[key]; // TODO: users may want a recursive "scoping" model } } }; fluid.fetchContextReference = function (parsed, directModel, env, elResolver, externalFetcher) { // The "elResolver" is a hack to make certain common idioms in protoTrees work correctly, where a contextualised EL // path actually resolves onto a further EL reference rather than directly onto a value target if (elResolver) { parsed = elResolver(parsed, env); } var base = parsed.context ? env[parsed.context] : directModel; if (!base) { var resolveExternal = externalFetcher && externalFetcher(parsed); return resolveExternal || base; } return parsed.noDereference ? parsed.path : fluid.get(base, parsed.path); }; fluid.makeEnvironmentFetcher = function (directModel, elResolver, envGetter, externalFetcher) { envGetter = envGetter || fluid.globalThreadLocal; return function (parsed) { var env = envGetter(); return fluid.fetchContextReference(parsed, directModel, env, elResolver, externalFetcher); }; }; /** END of unofficial IoC material **/ /* Compact expansion machinery - for short form invoker and expander references such as @expand:func(arg) and func(arg) */ fluid.coerceToPrimitive = function (string) { return string === "false" ? false : (string === "true" ? true : (isFinite(string) ? Number(string) : string)); }; fluid.compactStringToRec = function (string, type) { var openPos = string.indexOf("("); var closePos = string.indexOf(")"); if (openPos === -1 ^ closePos === -1 || openPos > closePos) { fluid.fail("Badly-formed compact " + type + " record without matching parentheses: " + string); } if (openPos !== -1 && closePos !== -1) { var trail = string.substring(closePos + 1); if ($.trim(trail) !== "") { fluid.fail("Badly-formed compact " + type + " record " + string + " - unexpected material following close parenthesis: " + trail); } var prefix = string.substring(0, openPos); var body = $.trim(string.substring(openPos + 1, closePos)); var args = body === "" ? [] : fluid.transform(body.split(","), $.trim, fluid.coerceToPrimitive); var togo = fluid.upgradePrimitiveFunc(prefix, null); togo.args = args; return togo; } else Iif (type === "expander") { fluid.fail("Badly-formed compact expander record without parentheses: " + string); } return string; }; fluid.expandPrefix = "@expand:"; fluid.expandCompactString = function (string, active) { var rec = string; if (string.indexOf(fluid.expandPrefix) === 0) { var rem = string.substring(fluid.expandPrefix.length); rec = { expander: fluid.compactStringToRec(rem, "expander") }; } else if (active) { rec = fluid.compactStringToRec(string, active); } return rec; }; var singularPenRecord = { listeners: "listener", modelListeners: "modelListener" }; var singularRecord = $.extend({ invokers: "invoker" }, singularPenRecord); fluid.expandCompactRec = function (segs, target, source) { fluid.guardCircularExpansion(segs, segs.length); var pen = segs.length > 0 ? segs[segs.length - 1] : ""; var active = singularRecord[pen]; if (!active && segs.length > 1) { active = singularPenRecord[segs[segs.length - 2]]; // support array of listeners and modelListeners } fluid.each(source, function (value, key) { if (fluid.isPlainObject(value)) { target[key] = fluid.freshContainer(value); segs.push(key); fluid.expandCompactRec(segs, target[key], value); segs.pop(); return; } else if (typeof(value) === "string") { value = fluid.expandCompactString(value, active); } target[key] = value; }); }; fluid.expandCompact = function (options) { var togo = {}; fluid.expandCompactRec([], togo, options); return togo; }; /** End compact record expansion machinery **/ fluid.extractEL = function (string, options) { if (options.ELstyle === "ALL") { return string; } else if (options.ELstyle.length === 1) { if (string.charAt(0) === options.ELstyle) { return string.substring(1); } } else Eif (options.ELstyle === "${}") { var i1 = string.indexOf("${"); var i2 = string.lastIndexOf("}"); if (i1 === 0 && i2 !== -1) { return string.substring(2, i2); } } }; fluid.extractELWithContext = function (string, options) { var EL = fluid.extractEL(string, options); if (fluid.isIoCReference(EL)) { return fluid.parseContextReference(EL); } return EL ? {path: EL} : EL; }; /** Parse the string form of a contextualised IoC reference into an object. * @param {String} reference - The reference to be parsed. The character at position `index` is assumed to be `{` * @param {String} [index] - [optional] The index into the string to start parsing at, if omitted, defaults to 0 * @param {Character} [delimiter] - [optional] A character which will delimit the end of the context expression. If omitted, the expression continues to the end of the string. * @return {ParsedContext} A structure holding the parsed structure, with members * context {String|ParsedContext} The context portion of the reference. This will be a `string` for a flat reference, or a further `ParsedContext` for a recursive reference * path {String} The string portion of the reference * endpos {Integer} The position in the string where parsing stopped [this member is not supported and will be removed in a future release] */ fluid.parseContextReference = function (reference, index, delimiter) { index = index || 0; var isNested = reference.charAt(index + 1) === "{", endcpos, context, nested; if (isNested) { nested = fluid.parseContextReference(reference, index + 1, "}"); endcpos = nested.endpos; } else { endcpos = reference.indexOf("}", index + 1); } Iif (endcpos === -1) { fluid.fail("Cannot parse context reference \"" + reference + "\": Malformed context reference without }"); } if (isNested) { context = nested; } else { context = reference.substring(index + 1, endcpos); } var endpos = delimiter ? reference.indexOf(delimiter, endcpos + 1) : reference.length; var path = reference.substring(endcpos + 1, endpos); if (path.charAt(0) === ".") { path = path.substring(1); } return {context: context, path: path, endpos: endpos}; }; fluid.renderContextReference = function (parsed) { var context = parsed.context; return "{" + (typeof(context) === "string" ? context : fluid.renderContextReference(context)) + "}" + (parsed.path ? "." + parsed.path : ""); }; // TODO: Once we eliminate expandSource (in favour of fluid.expander.fetch), all of this tree of functions can be hived off to RendererUtilities fluid.resolveContextValue = function (string, options) { function fetch(parsed) { fluid.pushActivity("resolveContextValue", "resolving context value %parsed", {parsed: parsed}); var togo = options.fetcher(parsed); fluid.pushActivity("resolvedContextValue", "resolved value %parsed to value %value", {parsed: parsed, value: togo}); fluid.popActivity(2); return togo; } var parsed; if (options.bareContextRefs && fluid.isIoCReference(string)) { parsed = fluid.parseContextReference(string); return fetch(parsed); } else if (options.ELstyle && options.ELstyle !== "${}") { parsed = fluid.extractELWithContext(string, options); if (parsed) { return fetch(parsed); } } while (typeof(string) === "string") { var i1 = string.indexOf("${"); var i2 = string.indexOf("}", i1 + 2); if (i1 !== -1 && i2 !== -1) { if (string.charAt(i1 + 2) === "{") { parsed = fluid.parseContextReference(string, i1 + 2, "}"); i2 = parsed.endpos; } else { parsed = {path: string.substring(i1 + 2, i2)}; } var subs = fetch(parsed); var all = (i1 === 0 && i2 === string.length - 1); // TODO: test case for all undefined substitution Iif (subs === undefined || subs === null) { return subs; } string = all ? subs : string.substring(0, i1) + subs + string.substring(i2 + 1); } else { break; } } return string; }; // This function appears somewhat reusable, but not entirely - it probably needs to be packaged // along with the particular "strategy". Very similar to the old "filter"... the "outer driver" needs // to execute it to get the first recursion going at top level. This was one of the most odd results // of the reorganisation, since the "old work" seemed much more naturally expressed in terms of values // and what happened to them. The "new work" is expressed in terms of paths and how to move amongst them. fluid.fetchExpandChildren = function (target, i, segs, source, mergePolicy, options) { if (source.expander) { // possible expander at top level var expanded = fluid.expandExpander(target, source, options); if (fluid.isPrimitive(expanded) || !fluid.isPlainObject(expanded) || (fluid.isArrayable(expanded) ^ fluid.isArrayable(target))) { return expanded; } else { // make an attempt to preserve the root reference if possible $.extend(true, target, expanded); } } // NOTE! This expects that RHS is concrete! For material input to "expansion" this happens to be the case, but is not // true for other algorithms. Inconsistently, this algorithm uses "sourceStrategy" below. In fact, this "fetchChildren" // operation looks like it is a fundamental primitive of the system. We do call "deliverer" early which enables correct // reference to parent nodes up the tree - however, anyone processing a tree IN THE CHAIN requires that it is produced // concretely at the point STRATEGY returns. Which in fact it is............... fluid.each(source, function (newSource, key) { if (newSource === undefined) { target[key] = undefined; // avoid ever dispatching to ourselves with undefined source } else if (key !== "expander") { segs[i] = key; Eif (fluid.getImmediate(options.exceptions, segs, i) !== true) { options.strategy(target, key, i + 1, segs, source, mergePolicy); } } }); return target; }; // TODO: This method is unnecessary and will quadratic inefficiency if RHS block is not concrete. // The driver should detect "homogeneous uni-strategy trundling" and agree to preserve the extra // "cursor arguments" which should be advertised somehow (at least their number) function regenerateCursor(source, segs, limit, sourceStrategy) { for (var i = 0; i < limit; ++i) { // copy segs to avoid aliasing with FLUID-5243 source = sourceStrategy(source, segs[i], i, fluid.makeArray(segs)); } return source; } fluid.isUnexpandable = function (source) { // slightly more efficient compound of fluid.isCopyable and fluid.isComponent - review performance return fluid.isPrimitive(source) || !fluid.isPlainObject(source); }; fluid.expandSource = function (options, target, i, segs, deliverer, source, policy, recurse) { var expanded, isTrunk; var thisPolicy = fluid.derefMergePolicy(policy); if (typeof (source) === "string" && !thisPolicy.noexpand) { Eif (!options.defaultEL || source.charAt(0) === "{") { // hard-code this for performance fluid.pushActivity("expandContextValue", "expanding context value %source held at path %path", {source: source, path: fluid.path.apply(null, segs.slice(0, i))}); expanded = fluid.resolveContextValue(source, options); fluid.popActivity(1); } else { expanded = source; } } else if (thisPolicy.noexpand || fluid.isUnexpandable(source)) { expanded = source; } else if (source.expander) { expanded = fluid.expandExpander(deliverer, source, options); } else { expanded = fluid.freshContainer(source); isTrunk = true; } if (expanded !== fluid.NO_VALUE) { deliverer(expanded); } if (isTrunk) { recurse(expanded, source, i, segs, policy); } return expanded; }; fluid.guardCircularExpansion = function (segs, i) { if (i > fluid.strategyRecursionBailout) { fluid.fail("Overflow/circularity in options expansion, current path is ", segs, " at depth " , i, " - please ensure options are not circularly connected, or protect from expansion using the \"noexpand\" policy or expander"); } }; fluid.makeExpandStrategy = function (options) { var recurse = function (target, source, i, segs, policy) { return fluid.fetchExpandChildren(target, i || 0, segs || [], source, policy, options); }; var strategy = function (target, name, i, segs, source, policy) { fluid.guardCircularExpansion(segs, i); if (!target) { return; } if (target.hasOwnProperty(name)) { // bail out if our work has already been done return target[name]; } if (source === undefined) { // recover our state in case this is an external entry point source = regenerateCursor(options.source, segs, i - 1, options.sourceStrategy); policy = regenerateCursor(options.mergePolicy, segs, i - 1, fluid.concreteTrundler); } var thisSource = options.sourceStrategy(source, name, i, segs); var thisPolicy = fluid.concreteTrundler(policy, name); function deliverer(value) { target[name] = value; } return fluid.expandSource(options, target, i, segs, deliverer, thisSource, thisPolicy, recurse); }; options.recurse = recurse; options.strategy = strategy; return strategy; }; fluid.defaults("fluid.makeExpandOptions", { ELstyle: "${}", bareContextRefs: true, target: fluid.inCreationMarker }); fluid.makeExpandOptions = function (source, options) { options = $.extend({}, fluid.rawDefaults("fluid.makeExpandOptions"), options); options.defaultEL = options.ELStyle === "${}" && options.bareContextRefs; // optimisation to help expander options.expandSource = function (source) { return fluid.expandSource(options, null, 0, [], fluid.identity, source, options.mergePolicy, false); }; if (!fluid.isUnexpandable(source)) { options.source = source; options.target = fluid.freshContainer(source); options.sourceStrategy = options.sourceStrategy || fluid.concreteTrundler; fluid.makeExpandStrategy(options); options.initter = function () { options.target = fluid.fetchExpandChildren(options.target, 0, [], options.source, options.mergePolicy, options); }; } else { // these init immediately since we must deliver a valid root target options.strategy = fluid.concreteTrundler; options.initter = fluid.identity; if (typeof(source) === "string") { // Copy is necessary to resolve FLUID-6213 since targets are regularly scrawled over with "undefined" by dim expansion pathway // However, we can't screw up object identity for uncloneable things like events resolved via local expansion options.target = (options.defer ? fluid.copy : fluid.identity)(options.expandSource(source)); } else { options.target = source; } options.immutableTarget = true; } return options; }; // supported, PUBLIC API function fluid.expand = function (source, options) { var expandOptions = fluid.makeExpandOptions(source, options); expandOptions.initter(); return expandOptions.target; }; fluid.preExpandRecurse = function (root, source, holder, member, rootSegs) { // on entry, holder[member] = source fluid.guardCircularExpansion(rootSegs, rootSegs.length); function pushExpander(expander) { root.expanders.push({expander: expander, holder: holder, member: member}); delete holder[member]; } if (fluid.isIoCReference(source)) { var parsed = fluid.parseContextReference(source); var segs = fluid.model.parseEL(parsed.path); pushExpander({ typeFunc: fluid.expander.fetch, context: parsed.context, segs: segs }); } else if (fluid.isPlainObject(source)) { if (source.expander) { source.expander.typeFunc = fluid.getGlobalValue(source.expander.type || "fluid.invokeFunc"); pushExpander(source.expander); } else { fluid.each(source, function (value, key) { rootSegs.push(key); fluid.preExpandRecurse(root, value, source, key, rootSegs); rootSegs.pop(); }); } } }; fluid.preExpand = function (source) { var root = { expanders: [], source: fluid.isUnexpandable(source) ? source : fluid.copy(source) }; fluid.preExpandRecurse(root, root.source, root, "source", []); return root; }; // Main pathway for freestanding material that is not part of a component's options fluid.expandImmediate = function (source, that, localRecord) { var options = fluid.makeStackResolverOptions(that, localRecord, true); // TODO: ELstyle and target are now ignored var root = fluid.preExpand(source); fluid.expandImmediateImpl(root, options); return root.source; }; // High performance expander for situations such as invokers, listeners, where raw materials can be cached - consumes "root" structure produced by preExpand fluid.expandImmediateImpl = function (root, options) { var expanders = root.expanders; for (var i = 0; i < expanders.length; ++i) { var expander = expanders[i]; expander.holder[expander.member] = expander.expander.typeFunc(null, expander, options); } }; fluid.expandExpander = function (deliverer, source, options) { var expander = fluid.getGlobalValue(source.expander.type || "fluid.invokeFunc"); Iif (!expander) { fluid.fail("Unknown expander with type " + source.expander.type); } return expander(deliverer, source, options); }; fluid.registerNamespace("fluid.expander"); // "deliverer" is null in the new (fast) pathway, this is a relic of the old "source expander" signature. It appears we can already globally remove this fluid.expander.fetch = function (deliverer, source, options) { var localRecord = options.localRecord, context = source.expander.context, segs = source.expander.segs; // TODO: Either type-check on context as string or else create fetchSlow var inLocal = localRecord[context] !== undefined; var contextStatus = options.contextThat.lifecycleStatus; // somewhat hack to anticipate "fits" for FLUID-4925 - we assume that if THIS component is in construction, its reference target might be too // if context is destroyed, we are most likely in an afterDestroy listener and so path records have been destroyed var fast = contextStatus === "treeConstructed" || contextStatus === "destroyed"; var component = inLocal ? localRecord[context] : fluid.resolveContext(context, options.contextThat, fast); if (component) { var root = component; if (inLocal || component.lifecycleStatus !== "constructing") { for (var i = 0; i < segs.length; ++i) { // fast resolution of paths when no ginger process active root = root ? root[segs[i]] : undefined; } } else { root = fluid.getForComponent(component, segs); } if (root === undefined && !inLocal) { // last-ditch attempt to get exotic EL value from component root = fluid.getForComponent(component, segs); } return root; } else if (segs.length > 0) { fluid.triggerMismatchedPathError(source.expander, options.contextThat); } }; /* "light" expanders, starting with the default expander invokeFunc, which makes an arbitrary function call (after expanding arguments) and are then replaced in the configuration with the call results. These will probably be abolished and replaced with equivalent model transformation machinery */ // This one is now positioned as the "universal expander" - default if no type supplied fluid.invokeFunc = function (deliverer, source, options) { var expander = source.expander; var args = fluid.makeArray(expander.args); expander.args = args; // head off case where args is an EL reference which resolves to an array if (options.recurse) { // only available in the path from fluid.expandOptions - this will be abolished in the end args = options.recurse([], args); } else { expander = fluid.expandImmediate(expander, options.contextThat, options.localRecord); args = expander.args; } var funcEntry = expander.func || expander.funcName; var func = (options.expandSource ? options.expandSource(funcEntry) : funcEntry) || fluid.recordToApplicable(expander, options.contextThat); if (typeof(func) === "string") { func = fluid.getGlobalValue(func); } if (!func) { fluid.fail("Error in expander record ", expander, ": " + funcEntry + " could not be resolved to a function for component ", options.contextThat); } return func.apply(null, args); }; // The "noexpand" expander which simply unwraps one level of expansion and ceases. fluid.noexpand = function (deliverer, source) { return source.expander.value ? source.expander.value : source.expander.tree; }; })(jQuery, fluid_3_0_0); |