1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202
|
/*==============================================================================
Program: Visualization Toolkit
Module: TestDataArrayAPI.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
==============================================================================*/
#include "vtkDataArray.h"
// Helpers:
#include "vtkAOSDataArrayTemplate.h"
#include "vtkArrayDispatch.h"
#include "vtkArrayIterator.h"
#include "vtkConfigure.h"
#include "vtkDoubleArray.h"
#include "vtkIdList.h"
#include "vtkIdTypeArray.h"
#include "vtkMath.h"
#include "vtkNew.h"
#include "vtkSmartPointer.h"
#include "vtkSOADataArrayTemplate.h"
#include "vtkType.h"
#include "vtkTypeTraits.h"
#include "vtkVariant.h"
#include "vtkVariantCast.h"
#include <algorithm>
#include <cassert>
#include <map>
#include <sstream>
#include <string>
#include <typeinfo>
#include <vector>
// Concrete classes for testing:
#include "@VTK_TESTDATAARRAYAPI_HEADER@"
// Needed for portable setenv on MSVC...
#include "vtksys/SystemTools.hxx"
// About this test:
//
// This test runs a battery of unit tests that exercise the vtkDataArray API
// on concrete implementations of their subclasses. It is designed to be easily
// extended to cover new array implementations and additional unit tests.
//
// This also tests the vtkAbstractArray API. The vtkGenericDataArray API is
// tested in TestGenericDataArrayAPI.
//
// This test has three main components:
// - Entry point: TestDataArrayAPI_[ARRAYNAME]()
// - Unit test caller: ExerciseDataArray(). Templated on value and array types.
// Calls individual unit test functions to excerise the array methods.
// Add new unit test calls here. Note that the ExerciseGetRange runner has
// been split out to fix compilation on less robust compilers that struggle
// with the heavy templating (known issue on llvm-gcc 4.2.1).
// - Unit test functions: Test_[methodSignature](). Templated on value type,
// array type, and possibly other parameters to simplify implementations.
// These should use the DataArrayAPI macros as needed
// Forward declare the test function:
namespace {
template <typename ScalarT, typename ArrayT>
int ExerciseDataArray();
template <typename ScalarT, typename ArrayT>
int ExerciseGetRange();
} // end anon namespace
//------------------------------------------------------------------------------
//-------------Test Entry Point-------------------------------------------------
//------------------------------------------------------------------------------
int @VTK_TESTDATAARRAYAPI_TESTNAME@(int, char *[])
{
int errors = 0;
errors += ExerciseDataArray<@VTK_TESTDATAARRAYAPI_VALUETYPE@,
@VTK_TESTDATAARRAYAPI_ARRAYTYPE@ >();
errors += ExerciseGetRange<@VTK_TESTDATAARRAYAPI_VALUETYPE@,
@VTK_TESTDATAARRAYAPI_ARRAYTYPE@ >();
if (errors > 0)
{
std::cerr << "Test failed! Error count: " << errors << std::endl;
}
return errors == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
}
//------------------------------------------------------------------------------
//------------Unit Test Macros--------------------------------------------------
//------------------------------------------------------------------------------
#define DataArrayAPIInit(_signature) \
int errors = 0; \
std::string signature = _signature
#define DataArrayAPIUpdateSignature(_signature) \
signature = _signature
#define DataArrayAPIFinish() return errors
#define DataArrayAPICreateTestArray(name) vtkNew<ArrayT> name
#define DataArrayAPICreateTestArrayByType(name, type) vtkNew<type> name
#define DataArrayAPICreateReferenceArray(name) \
vtkSmartPointer<vtkDataArray> name##DA = CreateDataArray<ScalarT>(); \
vtkAOSDataArrayTemplate<ScalarT> *name = \
vtkAOSDataArrayTemplate<ScalarT>::SafeDownCast(name##DA.GetPointer()); \
assert("Reference array is vtkAOSDataArrayTemplate" && name != NULL)
#define DataArrayAPICreateReferenceArrayWithType(name, valueType) \
vtkSmartPointer<vtkDataArray> name##DA = CreateDataArray<valueType>(); \
vtkAOSDataArrayTemplate<valueType> *name = \
vtkAOSDataArrayTemplate<valueType>::SafeDownCast(name##DA.GetPointer()); \
assert("Reference array is vtkAOSDataArrayTemplate" && name != NULL)
#define DataArrayAPINonFatalError(x) \
{ \
ArrayT *errorTempArray = ArrayT::New(); \
std::cerr << "Line " << __LINE__ << ": " \
<< "Failure in test of '" << signature << "' " \
<< "for array type '" << errorTempArray->GetClassName() << "'" \
<< ":\n" << x << std::endl; \
errorTempArray->Delete(); \
++errors; \
}
#define DataArrayAPIError(x) \
DataArrayAPINonFatalError(x) \
DataArrayAPIFinish();
#define DataArrayAPIAssert(x, mess) \
if (x) {} \
else { DataArrayAPIError("Test assertion '" #x "' failed: " << mess) }
namespace {
// Convenience function to create a concrete data array from a template type:
template <typename ScalarT>
vtkSmartPointer<vtkDataArray> CreateDataArray()
{
vtkSmartPointer<vtkDataArray> array;
array.TakeReference(vtkDataArray::CreateDataArray(
vtkTypeTraits<ScalarT>::VTK_TYPE_ID));
assert("CreateArray failed for scalar type." && array.GetPointer());
return array;
}
//------------------------------------------------------------------------------
//------------------Unit Test Implementations-----------------------------------
//------------------------------------------------------------------------------
//------------------------vtkAbstactArray API-----------------------------------
// int Allocate(vtkIdType numValues, vtkIdType ext=1000)
// Sets MaxId == -1
// Sets Size >= numValues
// If numValues == 0, delete the array.
// ext is not used.
// Result is 1/0 for success/failure.
template <typename ScalarT, typename ArrayT>
int Test_int_Allocate_numValues_ext()
{
DataArrayAPIInit("int Allocate(vtkIdType numValues, vtkIdType ext)");
DataArrayAPICreateTestArray(array);
int success = array->Allocate(0);
DataArrayAPIAssert(success, "Allocation failed.");
DataArrayAPIAssert(array->GetSize() == 0,
"Invalid Size (" << array->GetSize() << ").");
DataArrayAPIAssert(array->GetMaxId() == -1,
"Invalid MaxId (" << array->GetMaxId() << ").");
success = array->Allocate(100);
DataArrayAPIAssert(success, "Allocation failed.");
DataArrayAPIAssert(array->GetSize() >= 100,
"Invalid Size (" << array->GetSize() << ").");
DataArrayAPIAssert(array->GetMaxId() == -1,
"Invalid MaxId (" << array->GetMaxId() << ").");
array->SetNumberOfComponents(1);
array->SetNumberOfTuples(50);
DataArrayAPIAssert(array->GetMaxId() == 49,
"Invalid MaxId (" << array->GetMaxId() << ").");
success = array->Allocate(0);
DataArrayAPIAssert(success, "Allocation failed.");
DataArrayAPIAssert(array->GetSize() == 0,
"Invalid Size (" << array->GetSize() << ").");
DataArrayAPIAssert(array->GetMaxId() == -1,
"Invalid MaxId (" << array->GetMaxId() << ").");
DataArrayAPIFinish();
}
// void Initialize()
// Release data and reset state.
template <typename ScalarT, typename ArrayT>
int Test_void_Initialize()
{
DataArrayAPIInit("void Initialize()");
DataArrayAPICreateTestArray(array);
array->SetNumberOfComponents(1);
array->SetNumberOfTuples(50);
DataArrayAPIAssert(array->GetMaxId() == 49,
"Invalid MaxId (" << array->GetMaxId() << ").");
DataArrayAPIAssert(array->GetSize() >= 50,
"Invalid Size (" << array->GetSize() << ").");
array->Initialize();
DataArrayAPIAssert(array->GetMaxId() == -1,
"Invalid MaxId (" << array->GetMaxId() << ").");
DataArrayAPIAssert(array->GetSize() == 0,
"Invalid Size (" << array->GetSize() << ").");
DataArrayAPIFinish();
}
// int GetDataType()
template <typename ScalarT, typename ArrayT>
int Test_int_GetDataType()
{
DataArrayAPIInit("int GetDataType()");
DataArrayAPICreateTestArray(array);
DataArrayAPIAssert(vtkDataTypesCompare(array->GetDataType(),
vtkTypeTraits<ScalarT>::VTKTypeID()),
"Incorrect data type. Expected "
<< vtkTypeTraits<ScalarT>::VTKTypeID() << ", got "
<< array->GetDataType() << ".");
// Special case: vtkIdTypeArray must return VTK_ID_TYPE, not the actual type:
if (typeid(ArrayT) == typeid(vtkIdTypeArray))
{
DataArrayAPIAssert(vtkDataTypesCompare(array->GetDataType(), VTK_ID_TYPE),
"Incorrect data type for vtkIdTypeArray. Expected "
"VTK_ID_TYPE (" << VTK_ID_TYPE << "), got "
<< array->GetDataType() << ".");
}
DataArrayAPIFinish();
}
// int GetDataTypeSize()
template <typename ScalarT, typename ArrayT>
int Test_int_GetDataTypeSize()
{
DataArrayAPIInit("int GetDataTypeSize()");
DataArrayAPICreateTestArray(array);
DataArrayAPIAssert(array->GetDataTypeSize() == sizeof(ScalarT),
"Incorrect data type size. Expected "
<< sizeof(ScalarT) << ", got "
<< array->GetDataTypeSize() << ".");
DataArrayAPIFinish();
}
// int GetElementComponentSize()
// Same as GetDataTypeSize for data arrays:
template <typename ScalarT, typename ArrayT>
int Test_int_GetElementComponentSize()
{
DataArrayAPIInit("int GetElementComponentSize()");
DataArrayAPICreateTestArray(array);
DataArrayAPIAssert(array->GetElementComponentSize() == sizeof(ScalarT),
"Incorrect element component size. Expected "
<< sizeof(ScalarT) << ", got "
<< array->GetElementComponentSize() << ".");
DataArrayAPIFinish();
}
// void SetNumberOfComponents(int comps)
// int GetNumberOfComponents()
template <typename ScalarT, typename ArrayT>
int Test_NumberOfComponents()
{
DataArrayAPIInit("void SetNumberOfComponents(int comps)");
DataArrayAPICreateTestArray(array);
DataArrayAPIAssert(array->GetNumberOfComponents() == 1,
"Initial number of components expected to be 1, but is "
<< array->GetNumberOfComponents() << ".");
array->SetNumberOfComponents(12);
DataArrayAPIAssert(array->GetNumberOfComponents() == 12,
"Number of components expected to be 12, but is "
<< array->GetNumberOfComponents() << ".");
DataArrayAPIFinish();
}
// void SetComponentName( vtkIdType component, const char *name )
// const char* GetComponentName( vtkIdType component )
// bool HasAComponentName()
// int CopyComponentNames( vtkAbstractArray *da )
template <typename ScalarT, typename ArrayT>
int Test_ComponentNames()
{
DataArrayAPIInit("bool HasAComponentName()");
DataArrayAPICreateTestArray(array);
DataArrayAPIAssert(!array->HasAComponentName(),
"New array has a named components.");
int comps = 5;
array->SetNumberOfComponents(comps);
std::ostringstream str;
for (vtkIdType c = 0; c < static_cast<vtkIdType>(comps); ++c)
{
DataArrayAPIUpdateSignature("const char* GetComponentName(vtkIdType comp)");
DataArrayAPIAssert(array->GetComponentName(c) == NULL,
"New array has a named component.");
str.str("");
str << "Component " << c;
DataArrayAPIUpdateSignature("const char* SetComponentName(vtkIdType comp)");
array->SetComponentName(c, str.str().c_str());
DataArrayAPIAssert(str.str() == array->GetComponentName(c),
"Component " << c << " name is '"
<< array->GetComponentName(c) << "', expected "
<< str.str() << "'.");
DataArrayAPIUpdateSignature("bool HasAComponentName()");
DataArrayAPIAssert(array->HasAComponentName(), "Invalid result.");
}
DataArrayAPICreateTestArray(copy);
copy->SetNumberOfComponents(comps);
DataArrayAPIUpdateSignature("int CopyComponentNames(vtkAbstractArray*)");
int success = copy->CopyComponentNames(array.GetPointer());
DataArrayAPIAssert(success != 0,
"CopyComponentNames returned " << success << ".");
DataArrayAPIAssert(array->HasAComponentName(), "Invalid result.");
for (vtkIdType c = 0; c < static_cast<vtkIdType>(comps); ++c)
{
str.str("");
str << "Component " << c;
DataArrayAPIAssert(str.str() == copy->GetComponentName(c),
"Copied array component " << c << " name is '"
<< array->GetComponentName(c) << "', expected "
<< str.str() << "'.");
}
DataArrayAPIFinish();
}
// void SetNumberOfTuples(vtkIdType number)
// vtkIdType GetNumberOfTuples()
template <typename ScalarT, typename ArrayT>
int Test_NumberOfTuples()
{
DataArrayAPIInit("void SetNumberOfTuples(int comps)");
DataArrayAPICreateTestArray(array);
DataArrayAPIAssert(array->GetNumberOfTuples() == 0,
"Initial number of tuples expected to be 0, but is "
<< array->GetNumberOfTuples() << ".");
vtkIdType tuples = 12;
int comps = 5;
array->SetNumberOfComponents(comps);
array->SetNumberOfTuples(tuples);
DataArrayAPIAssert(array->GetNumberOfTuples() == tuples,
"Number of tuples expected to be " << tuples
<< ", but is " << array->GetNumberOfTuples() << ".");
DataArrayAPIAssert(array->GetSize() >= tuples * comps,
"Size expected to be at least " << tuples * comps
<< ", but is " << array->GetSize() << ".");
DataArrayAPIAssert(array->GetMaxId() == tuples * comps - 1,
"MaxId expected to be " << tuples * comps - 1
<< ", but is " << array->GetMaxId() << ".");
array->SetNumberOfTuples(0);
DataArrayAPIAssert(array->GetNumberOfTuples() == 0,
"Number of tuples expected to be 0, but is "
<< array->GetNumberOfTuples() << ".");
DataArrayAPIAssert(array->GetSize() >= 0,
"Size expected to be at least 0, but is "
<< array->GetSize() << ".");
DataArrayAPIAssert(array->GetMaxId() == -1,
"MaxId expected to be " << -1
<< ", but is " << array->GetMaxId() << ".");
DataArrayAPIFinish();
}
// void SetNumberOfValues(vtkIdType number)
template <typename ScalarT, typename ArrayT>
int Test_void_SetNumberOfValues_number()
{
DataArrayAPIInit("void SetNumberOfValues(vtkIdType number)");
DataArrayAPICreateTestArray(array);
DataArrayAPIAssert(array->GetNumberOfTuples() == 0,
"Initial number of tuples expected to be 0, but is "
<< array->GetNumberOfTuples() << ".");
vtkIdType tuples = 12;
int comps = 5;
array->SetNumberOfComponents(comps);
array->SetNumberOfTuples(tuples);
DataArrayAPIAssert(array->GetNumberOfTuples() == tuples,
"Number of tuples expected to be " << tuples
<< ", but is " << array->GetNumberOfTuples() << ".");
DataArrayAPIAssert(array->GetSize() >= tuples * comps,
"Size expected to be at least " << tuples * comps
<< ", but is " << array->GetSize() << ".");
DataArrayAPIAssert(array->GetMaxId() == tuples * comps - 1,
"MaxId expected to be " << tuples * comps - 1
<< ", but is " << array->GetMaxId() << ".");
array->SetNumberOfTuples(0);
DataArrayAPIAssert(array->GetNumberOfTuples() == 0,
"Number of tuples expected to be 0, but is "
<< array->GetNumberOfTuples() << ".");
DataArrayAPIAssert(array->GetSize() >= 0,
"Size expected to be at least 0, but is "
<< array->GetSize() << ".");
DataArrayAPIAssert(array->GetMaxId() == -1,
"MaxId expected to be " << -1
<< ", but is " << array->GetMaxId() << ".");
DataArrayAPIFinish();
}
// void SetTuple(vtkIdType i, vtkIdType j, vtkAbstractArray *source);
// Set the tuple at i in this array using tuple j from source.
// Types must match.
// No range checking/allocation.
template <typename ScalarT, typename ArrayT>
int Test_void_SetTuple_i_j_source()
{
DataArrayAPIInit(
"void SetTuple(vtkIdType i, vtkIdType j, vtkAbstractArray *source)");
DataArrayAPICreateTestArray(dest);
DataArrayAPICreateReferenceArray(source);
vtkIdType comps = 9;
vtkIdType tuples = 5;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
// Initialize source:
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
source->SetValue(i, static_cast<ScalarT>(i % 16));
}
// Use SetTuple to populate dest. Tuple ordering is changed according to
// tupleMap (destTuple = tupleMap[srcTuple])
vtkIdType tupleMap[5] = {1, 0, 3, 4, 2};
dest->SetNumberOfComponents(comps);
dest->SetNumberOfTuples(tuples);
for (vtkIdType i = 0; i < tuples; ++i)
{
dest->SetTuple(tupleMap[i], i, source);
}
// Verify:
std::vector<ScalarT> srcTuple(comps);
std::vector<ScalarT> destTuple(comps);
for (vtkIdType i = 0; i < tuples; ++i)
{
source->GetTypedTuple(i, &srcTuple[0]);
dest->GetTypedTuple(tupleMap[i], &destTuple[0]);
if (!std::equal(srcTuple.begin(), srcTuple.end(), destTuple.begin()))
{
std::ostringstream srcTupleStr;
std::ostringstream destTupleStr;
for (int j = 0; j < comps; ++j)
{
srcTupleStr << srcTuple[j] << " ";
destTupleStr << destTuple[j] << " ";
}
DataArrayAPIError("Data mismatch at source tuple '" << i << "' and "
"destination tuple '" << tupleMap[i] << "':\n"
"src: " << srcTupleStr.str() << "\n"
"dest: " << destTupleStr.str() << "\n");
}
}
DataArrayAPIFinish();
}
// void InsertTuple(vtkIdType i, vtkIdType j, vtkAbstractArray *source)
// Insert the jth tuple in the source array, at ith location in this array.
// Allocates memory as needed.
template <typename ScalarT, typename ArrayT>
int Test_void_InsertTuple_i_j_source()
{
DataArrayAPIInit("void InsertTuple(vtkIdType i, vtkIdType j, vtkAbstractArray *source)");
DataArrayAPICreateTestArray(dest);
DataArrayAPICreateReferenceArray(source);
vtkIdType comps = 9;
vtkIdType tuples = 5;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
// Initialize source:
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
source->SetValue(i, static_cast<ScalarT>(i % 16));
}
// Use InsertTuple to populate dest. Tuple ordering is changed according to
// tupleMap (destTuple = tupleMap[srcTuple])
vtkIdType tupleMap[5] = {1, 0, 3, 4, 2};
// dest is empty -- this call should allocate memory as needed.
dest->SetNumberOfComponents(comps);
vtkIdType maxTuple = 0;
for (vtkIdType t = 0; t < tuples; ++t)
{
dest->InsertTuple(tupleMap[t], t, source);
maxTuple = std::max(maxTuple, tupleMap[t]);
if (dest->GetSize() < ((maxTuple + 1) * comps))
{
DataArrayAPIError("Size should be at least " << (maxTuple * comps)
<< " values, but is only " << dest->GetSize() << ".");
}
if (dest->GetMaxId() != ((maxTuple + 1) * comps) - 1)
{
DataArrayAPIError("MaxId should be " << (maxTuple * comps) - 1
<< ", but is " << dest->GetMaxId() << " instead.");
}
}
// Verify:
std::vector<ScalarT> srcTuple(comps);
std::vector<ScalarT> destTuple(comps);
for (vtkIdType i = 0; i < tuples; ++i)
{
source->GetTypedTuple(i, &srcTuple[0]);
dest->GetTypedTuple(tupleMap[i], &destTuple[0]);
if (!std::equal(srcTuple.begin(), srcTuple.end(), destTuple.begin()))
{
std::ostringstream srcTupleStr;
std::ostringstream destTupleStr;
for (int j = 0; j < comps; ++j)
{
srcTupleStr << srcTuple[j] << " ";
destTupleStr << destTuple[j] << " ";
}
DataArrayAPIError("Data mismatch at source tuple '" << i << "' and "
"destination tuple '" << tupleMap[i] << "':\n"
"src: " << srcTupleStr.str() << "\n"
"dest: " << destTupleStr.str() << "\n");
}
}
DataArrayAPIFinish();
}
// void InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds, vtkAbstractArray* source)
template <typename ScalarT, typename ArrayT>
int Test_void_InsertTuples_dstIds_srcIds_source()
{
DataArrayAPIInit("void InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds, "
"vtkAbstractArray* source)");
DataArrayAPICreateTestArray(src);
DataArrayAPICreateTestArray(dst);
vtkIdType comps = 9;
vtkIdType tuples = 14;
src->SetNumberOfComponents(comps);
src->SetNumberOfTuples(tuples);
// Initialize source:
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
src->SetValue(i, static_cast<ScalarT>(i % 16));
}
// Copy 5 tuples from src to dest
vtkNew<vtkIdList> srcIds;
vtkNew<vtkIdList> dstIds;
srcIds->InsertNextId(5);
dstIds->InsertNextId(0);
srcIds->InsertNextId(2);
dstIds->InsertNextId(1);
srcIds->InsertNextId(4);
dstIds->InsertNextId(3);
srcIds->InsertNextId(9);
dstIds->InsertNextId(2);
srcIds->InsertNextId(11);
dstIds->InsertNextId(4);
// dest is empty -- this call should allocate memory as needed.
vtkIdType numIds = srcIds->GetNumberOfIds();
dst->SetNumberOfComponents(comps);
dst->InsertTuples(dstIds.GetPointer(), srcIds.GetPointer(),
src.GetPointer());
DataArrayAPIAssert(dst->GetNumberOfTuples() == numIds,
"Destination array too small! Expected " << numIds
<< " tuples, got " << dst->GetNumberOfTuples() << ".");
// Verify:
std::vector<ScalarT> srcTuple(comps);
std::vector<ScalarT> dstTuple(comps);
for (vtkIdType t = 0; t < numIds; ++t)
{
vtkIdType srcTupleId = srcIds->GetId(t);
vtkIdType dstTupleId = dstIds->GetId(t);
src->GetTypedTuple(srcTupleId, &srcTuple[0]);
dst->GetTypedTuple(dstTupleId, &dstTuple[0]);
DataArrayAPIAssert(std::equal(srcTuple.begin(), srcTuple.end(),
dstTuple.begin()),
"Copied tuple does not match input.");
}
DataArrayAPIFinish();
}
// void InsertTuples(vtkIdType dstStart, vtkIdType n, vtkIdType srcStart, vtkAbstractArray* source)
template <typename ScalarT, typename ArrayT>
int Test_void_InsertTuples_dstStart_n_srcStart_source()
{
DataArrayAPIInit("void InsertTuples(vtkIdType dstStart, vtkIdType n, "
"vtkIdType srcStart, vtkAbstractArray* source)");
DataArrayAPICreateTestArray(src);
DataArrayAPICreateTestArray(dst);
vtkIdType comps = 9;
vtkIdType tuples = 14;
src->SetNumberOfComponents(comps);
src->SetNumberOfTuples(tuples);
// Initialize source:
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
src->SetValue(i, static_cast<ScalarT>(i % 16));
}
// Copy 5 tuples from src to dest
vtkIdType srcStart = 8;
vtkIdType n = 5;
vtkIdType dstStart = 0;
// dest is empty -- this call should allocate memory as needed.
dst->SetNumberOfComponents(comps);
dst->InsertTuples(dstStart, n, srcStart, src.GetPointer());
DataArrayAPIAssert(dst->GetNumberOfTuples() == n,
"Destination array size invalid. Expected " << n
<< " tuples, got " << dst->GetNumberOfTuples() << ".");
// Verify:
std::vector<ScalarT> srcTuple(comps);
std::vector<ScalarT> dstTuple(comps);
for (vtkIdType t = 0; t < n; ++t)
{
vtkIdType srcTupleId = srcStart + t;
vtkIdType dstTupleId = dstStart + t;
src->GetTypedTuple(srcTupleId, &srcTuple[0]);
dst->GetTypedTuple(dstTupleId, &dstTuple[0]);
DataArrayAPIAssert(std::equal(srcTuple.begin(), srcTuple.end(),
dstTuple.begin()),
"Copied tuple does not match input.");
}
DataArrayAPIFinish();
}
// vtkIdType InsertNextTuple(vtkIdType j, vtkAbstractArray *source)
// Insert the jth tuple in the source array at the end of this array.
// Allocate memory as needed.
// Return the tuple index of the inserted data.
template <typename ScalarT, typename ArrayT>
int Test_vtkIdType_InsertNextTuple_j_source()
{
DataArrayAPIInit(
"vtkIdType InsertNextTuple(vtkIdType j, vtkAbstractArray *source)");
DataArrayAPICreateTestArray(dest);
DataArrayAPICreateReferenceArray(source);
vtkIdType comps = 9;
vtkIdType tuples = 5;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
// Initialize source:
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
source->SetValue(i, static_cast<ScalarT>(i % 16));
}
// Tuple ordering is changed according to tupleMap via:
// srcTuple = tupleMap[destTuple]
vtkIdType tupleMap[5] = {1, 0, 3, 4, 2};
// dest is empty -- this call should allocate memory as needed.
dest->SetNumberOfComponents(comps);
for (vtkIdType t = 0; t < tuples; ++t)
{
vtkIdType tupleIdx = dest->InsertNextTuple(tupleMap[t], source);
if (t != tupleIdx)
{
DataArrayAPIError("Returned tuple index incorrect. Returned '"
<< tupleIdx << "', expected '" << t << "'.");
}
if (dest->GetSize() < ((t + 1) * comps))
{
DataArrayAPIError("Size should be at least " << ((t + 1) * comps)
<< " values, but is only " << dest->GetSize() << ".");
}
if (dest->GetMaxId() != ((t + 1) * comps) - 1)
{
DataArrayAPIError("MaxId should be " << ((t + 1) * comps) - 1
<< ", but is " << dest->GetMaxId() << " instead.");
}
}
// Verify:
std::vector<ScalarT> srcTuple(comps);
std::vector<ScalarT> destTuple(comps);
for (vtkIdType i = 0; i < tuples; ++i)
{
source->GetTypedTuple(tupleMap[i], &srcTuple[0]);
dest->GetTypedTuple(i, &destTuple[0]);
if (!std::equal(srcTuple.begin(), srcTuple.end(), destTuple.begin()))
{
std::ostringstream srcTupleStr;
std::ostringstream destTupleStr;
for (int j = 0; j < comps; ++j)
{
srcTupleStr << srcTuple[j] << " ";
destTupleStr << destTuple[j] << " ";
}
DataArrayAPIError("Data mismatch at source tuple '" << tupleMap[i]
<< "' and destination tuple '" << i << "':\n"
"src: " << srcTupleStr.str() << "\n"
"dest: " << destTupleStr.str() << "\n");
}
}
DataArrayAPIFinish();
}
// void GetTuples(vtkIdList *ptIds, vtkAbstractArray *output)
// Output array is preallocated.
template <typename ScalarT, typename ArrayT>
int Test_void_GetTuples_ptIds_output()
{
DataArrayAPIInit(
"void GetTuples(vtkIdList *ptIds, vtkAbstractArray *output)");
DataArrayAPICreateTestArray(source);
DataArrayAPICreateReferenceArray(output);
// Initialize source array:
vtkIdType comps = 9;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
source->SetValue(i, static_cast<ScalarT>(i % 17));
}
// Initialize the output array and id array. Grab tuples 1, 4, 7, & 10:
vtkNew<vtkIdList> ids;
for (vtkIdType tupleId = 1; tupleId < tuples; tupleId += 3)
{
ids->InsertNextId(tupleId);
}
output->SetNumberOfComponents(comps);
output->SetNumberOfTuples(ids->GetNumberOfIds());
// Test the call:
source->GetTuples(ids.GetPointer(), output);
// Verify:
std::vector<ScalarT> srcTuple(comps);
std::vector<ScalarT> outTuple(comps);
for (vtkIdType i = 0; i < ids->GetNumberOfIds(); ++i)
{
vtkIdType tupleIdx = ids->GetId(i);
source->GetTypedTuple(tupleIdx, &srcTuple[0]);
output->GetTypedTuple(i, &outTuple[0]);
if (!std::equal(srcTuple.begin(), srcTuple.end(), outTuple.begin()))
{
std::ostringstream srcTupleStr;
std::ostringstream outTupleStr;
for (int j = 0; j < comps; ++j)
{
srcTupleStr << srcTuple[j] << " ";
outTupleStr << outTuple[j] << " ";
}
DataArrayAPIError("Data mismatch at source tuple '" << tupleIdx
<< "' and output tuple '" << i << "':\n"
"src: " << srcTupleStr.str() << "\n"
"dest: " << outTupleStr.str() << "\n");
}
}
DataArrayAPIFinish();
}
// void GetTuples(vtkIdType p1, vtkIdType p2, vtkAbstractArray *output)
// Copies p1 --> p2 *inclusive*.
// Output array must be preallocated.
// void GetTuples(vtkIdList *ptIds, vtkAbstractArray *output)
// Output array is preallocated.
template <typename ScalarT, typename ArrayT>
int Test_void_GetTuples_p1_p2_output()
{
DataArrayAPIInit(
"void GetTuples(vtkIdType p1, vtkIdType p2, vtkAbstractArray *output)");
DataArrayAPICreateTestArray(source);
DataArrayAPICreateReferenceArray(output);
// Initialize source array:
vtkIdType comps = 9;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
source->SetValue(i, static_cast<ScalarT>(i % 17));
}
// Initialize the output array. We'll be grabbing tuples 3 through 8.
vtkIdType p1 = 3;
vtkIdType p2 = 8;
vtkIdType outTupleCount = p2 - p1 + 1; // +1 because the range is inclusive.
output->SetNumberOfComponents(comps);
output->SetNumberOfTuples(outTupleCount);
// Test the call:
source->GetTuples(p1, p2, output);
// Verify:
std::vector<ScalarT> srcTuple(comps);
std::vector<ScalarT> outTuple(comps);
for (vtkIdType i = p1; i < outTupleCount; ++i)
{
vtkIdType tupleIdx = p1 + i;
source->GetTypedTuple(tupleIdx, &srcTuple[0]);
output->GetTypedTuple(i, &outTuple[0]);
if (!std::equal(srcTuple.begin(), srcTuple.end(), outTuple.begin()))
{
std::ostringstream srcTupleStr;
std::ostringstream outTupleStr;
for (int j = 0; j < comps; ++j)
{
srcTupleStr << srcTuple[j] << " ";
outTupleStr << outTuple[j] << " ";
}
DataArrayAPIError("Data mismatch at source tuple '" << tupleIdx
<< "' and output tuple '" << i << "':\n"
"src: " << srcTupleStr.str() << "\n"
"dest: " << outTupleStr.str() << "\n");
}
}
DataArrayAPIFinish();
}
// void *GetVoidPointer(vtkIdType id)
template <typename ScalarT, typename ArrayT>
int Test_voidPtr_GetVoidPointer()
{
DataArrayAPIInit("void* GetVoidPointer(vtkIdType id)");
DataArrayAPICreateTestArray(source);
// Initialize source array:
vtkIdType comps = 5;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType t = 0; t < tuples; ++t)
{
std::vector<ScalarT> tuple;
for (int c = 0; c < comps; ++c)
{
tuple.push_back(static_cast<ScalarT>(((t * comps) + c) % 17));
}
source->SetTypedTuple(t, &tuple[0]);
}
// Verify:
for (vtkIdType t = 0; t < tuples; ++t)
{
// Silence the void pointer warnings for these calls
const char *oldWarning =
vtksys::SystemTools::GetEnv("VTK_SILENCE_GET_VOID_POINTER_WARNINGS");
vtksys::SystemTools::PutEnv("VTK_SILENCE_GET_VOID_POINTER_WARNINGS=1");
ScalarT *ptr = static_cast<ScalarT*>(source->GetVoidPointer(t * comps));
// Restore state:
if (oldWarning)
{
std::ostringstream envArg;
envArg << "VTK_SILENCE_GET_VOID_POINTER_WARNINGS=" << oldWarning;
vtksys::SystemTools::PutEnv(envArg.str());
}
else
{
vtksys::SystemTools::UnPutEnv("VTK_SILENCE_GET_VOID_POINTER_WARNINGS");
}
DataArrayAPIAssert(ptr != NULL, "GetVoidPointer returned NULL!");
for (int c = 0; c < comps; ++c)
{
ScalarT test = *ptr++;
ScalarT ref = static_cast<ScalarT>(((t * comps) + c) % 17);
DataArrayAPIAssert(test == ref,
"Data mismatch at tuple " << t << " component " << c
<< ": Expected " << ref << ", got " << test << ".");
}
}
DataArrayAPIFinish();
}
// operator() returns true if the memory is shared between two arrays, if
// the arrays support true shallow copies.
// NOTE: This will NOT properly test the case where, e.g., vtkFloatArray is
// used, as template resolution will not cast vtkFloatArray into
// vtkAOSDataArrayTemplate<float>. This will go through the generic
// implementation which always returns true. This is fine, however, since
// we explicitly test vtkAOSDataArrayTemplates as well as the vtk{type}Arrays,
// so the explicit AOS tests will detect failures.
struct CheckShallowCopy
{
// Mismatched arrays -- these will not shallow copy, always return true.
template <typename Array1T, typename Array2T>
bool operator()(Array1T *, Array2T *) { return true; }
// AOS same-ValueType case:
template <typename ValueType>
bool operator()(vtkAOSDataArrayTemplate<ValueType> *a1,
vtkAOSDataArrayTemplate<ValueType> *a2)
{
return a1->GetPointer(0) == a2->GetPointer(0);
}
// SOA same-ValueType case:
template <typename ValueType>
bool operator()(vtkSOADataArrayTemplate<ValueType> *a1,
vtkSOADataArrayTemplate<ValueType> *a2)
{
assert(a1->GetNumberOfComponents() == a2->GetNumberOfComponents());
for (int c = 0; c < a1->GetNumberOfComponents(); ++c)
{
if (a1->GetComponentArrayPointer(c) != a2->GetComponentArrayPointer(c))
{
return false;
}
}
return true;
}
};
// void ShallowCopy(vtkDataArray *other)
// Shallow copies AOS/SOA arrays if and only if arrays are the same type,
// otherwise deep copies.
// Test copying into and from the target array type.
// Allocates memory as needed.
// ArgT switches between the two overloads.
// OtherT is the type of array that will be copied to/from.
template <typename ScalarT, typename ArrayT, typename OtherArrayT>
int Test_void_ShallowCopy_array()
{
DataArrayAPIInit("void ShallowCopy(vtkDataArray *other)");
typedef typename OtherArrayT::ValueType OtherScalarT;
std::string testType = vtkTypeTraits<ScalarT>::Name();
std::string otherType = vtkTypeTraits<OtherScalarT>::Name();
DataArrayAPICreateTestArray(source);
DataArrayAPICreateTestArrayByType(middle, OtherArrayT);
DataArrayAPICreateTestArray(target);
CheckShallowCopy memChecker;
// Initialize source array:
vtkIdType comps = 9;
vtkIdType tuples = 40;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
source->SetComponent(t, c, static_cast<double>(((t * comps) + c) % 17));
}
}
// Copy to intermediate:
middle->ShallowCopy(source.GetPointer());
// Verify intermediate:
if (middle->GetNumberOfComponents() != comps ||
middle->GetNumberOfTuples() != tuples)
{
DataArrayAPIError("Incorrect size of array after copying from test array "
"(scalar type: '" << testType << "') to reference array "
"(scalar type: '" << otherType << "'): Expected number "
"of (tuples, components): " << "(" << tuples << ", "
<< comps << "), got (" << middle->GetNumberOfTuples()
<< ", " << middle->GetNumberOfComponents() << ").");
}
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
double ref = ((t * comps) + c) % 17;
double test = middle->GetComponent(t, c);
if (ref != test)
{
DataArrayAPIError("Data mismatch after copying from test array (scalar "
"type: '" << testType << "') to reference array "
"(scalar type: '" << otherType << "'): " "Data "
"mismatch at tuple " << t << " component " << c
<< ": Expected " << ref << ", got " << test << ".");
}
}
}
if (!memChecker(source.GetPointer(), middle.GetPointer()))
{
DataArrayAPIError("Memory is not shared following shallow copy.\n"
"Copying source --> middle;\n"
"source = " << source->GetClassName() << " ("
<< testType << ")\n"
"middle = " << middle->GetClassName() << " ("
<< otherType << ")");
}
// Copy to final:
target->ShallowCopy(middle.GetPointer());
// Verify final:
if (target->GetNumberOfComponents() != comps ||
target->GetNumberOfTuples() != tuples)
{
DataArrayAPIError("Incorrect size of array after copying from reference "
"array (scalar type: '" << otherType << "') to test "
"array (scalar type: '" << testType << "'): "
"Expected number of (tuples, components): "
<< "(" << tuples << ", " << comps << "), got ("
<< target->GetNumberOfTuples() << ", "
<< target->GetNumberOfComponents() << ").");
}
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
double ref = ((t * comps) + c) % 17;
double test = target->GetComponent(t, c);
if (ref != test)
{
DataArrayAPIError("Data mismatch after copying from reference array "
"(scalar type: '" << otherType << "') to test array "
"(scalar type: '" << testType << "'): " "Data "
"mismatch at tuple " << t << " component " << c
<< ": Expected " << ref << ", got " << test << ".");
}
}
}
if (!memChecker(middle.GetPointer(), target.GetPointer()))
{
DataArrayAPIError("Memory is not shared following shallow copy.\n"
"Copying middle --> target;\n"
"middle = " << middle->GetClassName() << " ("
<< otherType << ")\n"
"target = " << target->GetClassName() << " ("
<< testType << ")");
}
DataArrayAPIFinish();
}
// void DeepCopy(vtkAbstractArray *aa)
// void DeepCopy(vtkDataArray *da)
// Test copying into and from the target array type.
// Allocates memory as needed.
// ArgT switches between the two overloads.
// OtherT is the type of array that will be copied to/from.
template <typename ScalarT, typename ArrayT, typename ArgT, typename OtherT>
int Test_void_DeepCopy_array()
{
std::string argTName = (typeid(ArgT) == typeid(vtkAbstractArray)
? "vtkAbstractArray" : "vtkDataArray");
std::ostringstream sigBuilder;
sigBuilder << "void DeepCopy(" << argTName << " *array)";
DataArrayAPIInit(sigBuilder.str());
std::string testType = vtkTypeTraits<ScalarT>::Name();
std::string otherType = vtkTypeTraits<OtherT>::Name();
DataArrayAPICreateTestArray(source);
DataArrayAPICreateReferenceArrayWithType(middle, OtherT);
DataArrayAPICreateTestArray(target);
// Initialize source array:
vtkIdType comps = 9;
vtkIdType tuples = 40;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
source->SetComponent(t, c, static_cast<double>(((t * comps) + c) % 17));
}
}
// Copy to intermediate:
middle->DeepCopy(static_cast<ArgT*>(source.GetPointer()));
// Verify intermediate:
if (middle->GetNumberOfComponents() != comps ||
middle->GetNumberOfTuples() != tuples)
{
DataArrayAPIError("Incorrect size of array after copying from test array "
"(scalar type: '" << testType << "') to reference array "
"(scalar type: '" << otherType << "'): Expected number "
"of (tuples, components): " << "(" << tuples << ", "
<< comps << "), got (" << middle->GetNumberOfTuples()
<< ", " << middle->GetNumberOfComponents() << ").");
}
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
double ref = ((t * comps) + c) % 17;
double test = middle->GetComponent(t, c);
if (ref != test)
{
DataArrayAPIError("Data mismatch after copying from test array (scalar "
"type: '" << testType << "') to reference array "
"(scalar type: '" << otherType << "'): " "Data "
"mismatch at tuple " << t << " component " << c
<< ": Expected " << ref << ", got " << test << ".");
}
}
}
// Copy to final:
target->DeepCopy(static_cast<ArgT*>(middle));
// Verify final:
if (target->GetNumberOfComponents() != comps ||
target->GetNumberOfTuples() != tuples)
{
DataArrayAPIError("Incorrect size of array after copying from reference "
"array (scalar type: '" << otherType << "') to test "
"array (scalar type: '" << testType << "'): "
"Expected number of (tuples, components): "
<< "(" << tuples << ", " << comps << "), got ("
<< target->GetNumberOfTuples() << ", "
<< target->GetNumberOfComponents() << ").");
}
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
double ref = ((t * comps) + c) % 17;
double test = target->GetComponent(t, c);
if (ref != test)
{
DataArrayAPIError("Data mismatch after copying from reference array "
"(scalar type: '" << otherType << "') to test array "
"(scalar type: '" << testType << "'): " "Data "
"mismatch at tuple " << t << " component " << c
<< ": Expected " << ref << ", got " << test << ".");
}
}
}
DataArrayAPIFinish();
}
// void InterpolateTuple(vtkIdType i, vtkIdList *ptIndices,
// vtkAbstractArray *source, double *weights)
// Sets the ith tuple in this array, using the source data, indices, and weights
// provided.
// Should allocate memory.
template <typename ScalarT, typename ArrayT>
int Test_void_InterpolateTuple_i_indices_source_weights()
{
DataArrayAPIInit("void InterpolateTuple(vtkIdType i, vtkIdList *ptIndices, "
"vtkAbstractArray *source, double *weights)");
DataArrayAPICreateReferenceArray(source);
DataArrayAPICreateTestArray(output);
// Initialize source array:
vtkIdType comps = 9;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
source->SetValue(i, static_cast<ScalarT>(i % 17));
}
// Tuples to interpolate:
vtkNew<vtkIdList> ids;
ids->InsertNextId(0);
ids->InsertNextId(1);
ids->InsertNextId(5);
ids->InsertNextId(7);
ids->InsertNextId(8);
double weights[] = {0.5, 1.0, 0.25, 1.0, 0.8};
output->SetNumberOfComponents(comps);
output->InterpolateTuple(0, ids.GetPointer(), source, weights);
// Validate result:
for (int c = 0; c < comps; ++c)
{
// Compute component:
double ref = 0.;
for (vtkIdType t = 0; t < ids->GetNumberOfIds(); ++t)
{
ref += weights[t] * source->GetComponent(ids->GetId(t), c);
}
// Clamp to ScalarT range:
ref = std::max(ref, static_cast<double>(vtkTypeTraits<ScalarT>::Min()));
ref = std::min(ref, static_cast<double>(vtkTypeTraits<ScalarT>::Max()));
// Round for non-floating point types:
ScalarT refT;
if (vtkTypeTraits<ScalarT>::VTK_TYPE_ID == VTK_FLOAT ||
vtkTypeTraits<ScalarT>::VTK_TYPE_ID == VTK_DOUBLE)
{
refT = static_cast<ScalarT>(ref);
}
else
{
refT = static_cast<ScalarT>((ref >= 0.) ? (ref + 0.5) : (ref - 0.5));
}
ScalarT testT = output->GetValue(c);
if (refT != testT)
{
DataArrayAPIError("Interpolated value incorrect: Got '"
<< static_cast<double>(testT) << "', expected '"
<< static_cast<double>(refT) << "'.");
}
} // foreach component
DataArrayAPIFinish();
}
// void InterpolateTuple(vtkIdType i,
// vtkIdType id1, vtkAbstractArray *source1,
// vtkIdType id2, vtkAbstractArray *source2, double t)
// Interpolate tuple id1 from source1 and id2 form source2 and store the result
// in this tuple at tuple index i. t belongs to [0,1] and is the interpolation
// weight, with t=0 meaning 100% from source1.
// Should allocate memory.
template <typename ScalarT, typename ArrayT>
int Test_void_InterpolateTuple_i_id1_source1_id2_source2_t()
{
DataArrayAPIInit("void InterpolateTuple(vtkIdType i, "
"vtkIdType id1, vtkAbstractArray *source1, "
"vtkIdType id2, vtkAbstractArray *source2, double t)");
DataArrayAPICreateReferenceArray(source1);
DataArrayAPICreateReferenceArray(source2);
DataArrayAPICreateTestArray(output);
// Initialize source arrays:
vtkIdType comps = 9;
vtkIdType tuples = 10;
source1->SetNumberOfComponents(comps);
source1->SetNumberOfTuples(tuples);
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
source1->SetValue(i, static_cast<ScalarT>(i % 17));
}
source2->SetNumberOfComponents(comps);
source2->SetNumberOfTuples(tuples);
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
source2->SetValue(i, static_cast<ScalarT>(((i + 3) * 2) % 17));
}
output->SetNumberOfComponents(comps);
vtkIdType id1 = 4;
vtkIdType id2 = 8;
double t = 0.25;
output->InterpolateTuple(0, id1, source1, id2, source2, t);
// Validate result:
for (int c = 0; c < comps; ++c)
{
// Compute component:
double ref = source1->GetValue(id1 * comps + c) * (1. - t) +
source2->GetValue(id2 * comps + c) * t;
// Clamp to ScalarT range:
ref = std::max(ref, static_cast<double>(vtkTypeTraits<ScalarT>::Min()));
ref = std::min(ref, static_cast<double>(vtkTypeTraits<ScalarT>::Max()));
// Round for non-floating point types:
ScalarT refT;
if (vtkTypeTraits<ScalarT>::VTK_TYPE_ID == VTK_FLOAT ||
vtkTypeTraits<ScalarT>::VTK_TYPE_ID == VTK_DOUBLE)
{
refT = static_cast<ScalarT>(ref);
}
else
{
refT = static_cast<ScalarT>((ref >= 0.) ? (ref + 0.5) : (ref - 0.5));
}
ScalarT test = output->GetValue(c);
if (refT != test)
{
DataArrayAPIError("Interpolated value incorrect: Got '"
<< static_cast<double>(test) << "', expected '"
<< static_cast<double>(refT) << "'.");
}
} // foreach component
DataArrayAPIFinish();
}
// int Resize(vtkIdType numTuples)
// Preserve data
// Return 1 on success, 0 otherwise
template <typename ScalarT, typename ArrayT>
int Test_int_Resize_numTuples()
{
DataArrayAPIInit("int Resize(vtkIdType numTuples)");
DataArrayAPICreateTestArray(array);
int comps = 5;
vtkIdType tuples = 0;
array->SetNumberOfComponents(comps);
int success = array->Resize(tuples);
DataArrayAPIAssert(success, "Resize failed.");
DataArrayAPIAssert(array->GetSize() == tuples * comps,
"Invalid Size (" << array->GetSize() << ").");
DataArrayAPIAssert(array->GetMaxId() == -1,
"Invalid MaxId (" << array->GetMaxId() << ").");
tuples = 100;
success = array->Resize(tuples);
DataArrayAPIAssert(success, "Resize failed.");
// May be larger than requested for size increases:
DataArrayAPIAssert(array->GetSize() >= tuples * comps,
"Invalid Size (" << array->GetSize() << ").");
// MaxId should not be changed:
DataArrayAPIAssert(array->GetMaxId() == -1,
"Invalid MaxId (" << array->GetMaxId() << ").");
// Fill with data
vtkIdType filledTuples = tuples;
array->SetNumberOfTuples(filledTuples);
DataArrayAPIAssert(array->GetSize() >= filledTuples * comps,
"Invalid Size (" << array->GetSize() << ").");
DataArrayAPIAssert(array->GetMaxId() == filledTuples * comps - 1,
"Invalid MaxId (" << array->GetMaxId() << ").");
for (vtkIdType t = 0; t < filledTuples; t++)
{
for (int c = 0; c < comps; ++c)
{
array->SetTypedComponent(t, c,
static_cast<ScalarT>((t * comps + c) % 17));
}
}
// resize larger
tuples = 200;
success = array->Resize(tuples);
DataArrayAPIAssert(success, "Resize failed.");
// May be larger than requested for size increases:
DataArrayAPIAssert(array->GetSize() >= tuples * comps,
"Invalid Size (" << array->GetSize() << ").");
// MaxId should not change:
DataArrayAPIAssert(array->GetMaxId() == filledTuples * comps - 1,
"Invalid MaxId (" << array->GetMaxId() << ").");
// validate original data
for (vtkIdType t = 0; t < filledTuples; t++)
{
for (int c = 0; c < comps; ++c)
{
ScalarT ref = static_cast<ScalarT>((t * comps + c) % 17);
ScalarT test = array->GetTypedComponent(t, c);
DataArrayAPIAssert(ref == test,
"Data changed after resize for tuple " << t
<< " component " << c << ": Expected " << ref
<< " got " << test << ".");
}
}
// resize smaller
filledTuples = tuples = 50;
success = array->Resize(tuples);
DataArrayAPIAssert(success, "Resize failed.");
// Both Size and MaxId should be truncated to the exact new size.
DataArrayAPIAssert(array->GetSize() == tuples * comps,
"Invalid Size (" << array->GetSize() << ").");
DataArrayAPIAssert(array->GetMaxId() == filledTuples * comps - 1,
"Invalid MaxId (" << array->GetMaxId() << ").");
// validate truncated data
for (vtkIdType t = 0; t < filledTuples; t++)
{
for (int c = 0; c < comps; ++c)
{
ScalarT ref = static_cast<ScalarT>((t * comps + c) % 17);
ScalarT test = array->GetTypedComponent(t, c);
DataArrayAPIAssert(ref == test,
"Data changed after resize for tuple " << t
<< " component " << c << ": Expected " << ref
<< " got " << test << ".");
}
}
// Set to zero, should delete array
filledTuples = tuples = 0;
success = array->Resize(tuples);
DataArrayAPIAssert(success, "Resize failed.");
DataArrayAPIAssert(array->GetSize() == 0,
"Invalid Size (" << array->GetSize() << ").");
DataArrayAPIAssert(array->GetMaxId() == -1,
"Invalid MaxId (" << array->GetMaxId() << ").");
DataArrayAPIFinish();
}
// void Reset()
// Don't free memory, just reset MaxId.
template <typename ScalarT, typename ArrayT>
int Test_void_Reset()
{
DataArrayAPIInit("void Reset()");
DataArrayAPICreateTestArray(array);
int comps = 5;
vtkIdType tuples = 0;
array->SetNumberOfComponents(comps);
// Reseting a new array shouldn't cause issues
array->Reset();
DataArrayAPIAssert(array->GetMaxId() == -1,
"Invalid MaxId (" << array->GetMaxId() << ").");
tuples = 100;
array->SetNumberOfTuples(tuples);
DataArrayAPIAssert(array->GetSize() >= tuples * comps,
"Invalid Size (" << array->GetSize() << ").");
int oldSize = array->GetSize();
DataArrayAPIAssert(array->GetMaxId() == tuples * comps - 1,
"Invalid MaxId (" << array->GetMaxId() << ").");
array->Reset();
tuples = 0;
// Size should not change, but MaxId should
DataArrayAPIAssert(array->GetSize() == oldSize,
"Invalid Size (" << array->GetSize() << ").");
DataArrayAPIAssert(array->GetMaxId() == -1,
"Invalid MaxId (" << array->GetMaxId() << ").");
DataArrayAPIFinish();
}
// void ExportToVoidPointer(void *out_ptr)
template <typename ScalarT, typename ArrayT>
int Test_void_ExportToVoidPointer_voidPtr()
{
DataArrayAPIInit("void ExportToVoidPointer(void *out_ptr)");
DataArrayAPICreateTestArray(source);
// Initialize source array:
vtkIdType comps = 5;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType t = 0; t < tuples; ++t)
{
std::vector<ScalarT> tuple;
for (int c = 0; c < comps; ++c)
{
tuple.push_back(static_cast<ScalarT>(((t * comps) + c) % 17));
}
source->SetTypedTuple(t, &tuple[0]);
}
std::vector<ScalarT> buffer(comps * tuples);
source->ExportToVoidPointer(static_cast<void*>(&buffer[0]));
// Verify:
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
ScalarT test = buffer[t * comps + c];
ScalarT ref = static_cast<ScalarT>(((t * comps) + c) % 17);
DataArrayAPIAssert(test == ref,
"Data mismatch at tuple " << t << " component " << c
<< ": Expected " << ref << ", got " << test << ".");
}
}
DataArrayAPIFinish();
}
// unsigned long GetActualMemorySize()
// Returns size in kibibytes (1024 bytes) for MaxId + 1 elements of ValueType.
template <typename ScalarT, typename ArrayT>
int Test_ulong_GetActualMemorySize()
{
DataArrayAPIInit("unsigned long GetActualMemorySize()");
DataArrayAPICreateTestArray(source);
vtkIdType comps = 5;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
DataArrayAPIAssert(source->GetActualMemorySize() >=
(source->GetMaxId() + 1) * sizeof(ScalarT) / 1024,
"Invalid result. Expected at least "
<< (source->GetMaxId() + 1) * sizeof(ScalarT) / 1024
<< " kB, but got " << source->GetActualMemorySize()
<< " kB.");
DataArrayAPIFinish();
}
// int IsNumeric()
// Should be true for all data array subclasses:
template <typename ScalarT, typename ArrayT>
int Test_int_IsNumeric()
{
DataArrayAPIInit("int IsNumeric()");
DataArrayAPICreateTestArray(source);
if (!source->IsNumeric())
{
DataArrayAPIError("IsNumeric() is false.");
}
DataArrayAPIFinish();
}
// vtkArrayIterator* NewIterator()
// Just test that the returned iterator is non-NULL and the data types match.
template <typename ScalarT, typename ArrayT>
int Test_vtkArrayIteratorPtr_NewIterator()
{
DataArrayAPIInit("vtkArrayIterator* NewIterator()");
DataArrayAPICreateTestArray(source);
// Silence the void pointer warnings for these calls. The
// vtkArrayIteratorTemplate implementation relies on GetVoidPointer.
const char *oldWarning =
vtksys::SystemTools::GetEnv("VTK_SILENCE_GET_VOID_POINTER_WARNINGS");
vtksys::SystemTools::PutEnv("VTK_SILENCE_GET_VOID_POINTER_WARNINGS=1");
vtkArrayIterator *iter = source->NewIterator();
// Restore state:
if (oldWarning)
{
std::ostringstream envArg;
envArg << "VTK_SILENCE_GET_VOID_POINTER_WARNINGS=" << oldWarning;
vtksys::SystemTools::PutEnv(envArg.str());
}
else
{
vtksys::SystemTools::UnPutEnv("VTK_SILENCE_GET_VOID_POINTER_WARNINGS");
}
DataArrayAPIAssert(iter != NULL,
"NewIterator() returns NULL.");
int iterDataType = iter->GetDataType();
iter->Delete();
DataArrayAPIAssert(iterDataType == source->GetDataType(),
"Iterator datatype does not match array.");
DataArrayAPIFinish();
}
// vtkIdType GetDataSize()
// Same as GetNumberOfValues()
// TODO this is another good candidate for deprecation.
template <typename ScalarT, typename ArrayT>
int Test_vtkIdType_GetDataSize()
{
DataArrayAPIInit("vtkIdType GetDataSize()");
DataArrayAPICreateTestArray(source);
vtkIdType comps = 5;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
DataArrayAPIAssert(source->GetDataSize() == comps * tuples,
"Invalid data size (number of values). Expected "
<< comps * tuples << ", but got " << source->GetDataSize()
<< ".");
DataArrayAPIFinish();
}
// vtkIdType LookupValue(vtkVariant value)
// void LookupValue(vtkVariant value, vtkIdList* ids)
template <typename ScalarT, typename ArrayT>
int Test_LookupValue_allSigs()
{
DataArrayAPIInit("LookupValue");
DataArrayAPICreateTestArray(array);
// Map Value --> ValueIdxs. We'll use this to validate the lookup results.
typedef std::map<ScalarT, vtkIdList*> RefMap;
typedef typename RefMap::iterator RefMapIterator;
RefMap refMap;
// These are the values we'll be looking for.
for (ScalarT val = 0; val < 17; ++val)
{
refMap.insert(std::make_pair(val, vtkIdList::New()));
}
// Initialize source array:
vtkIdType comps = 9;
vtkIdType tuples = 10;
array->SetNumberOfComponents(comps);
array->SetNumberOfTuples(tuples);
for (vtkIdType valIdx = 0; valIdx < comps * tuples; ++valIdx)
{
ScalarT val = static_cast<ScalarT>(valIdx % 17);
array->SetValue(valIdx, val);
// Update our reference map:
RefMapIterator it = refMap.find(val);
assert("Value exists in reference map." && it != refMap.end());
it->second->InsertNextId(valIdx);
}
// Test the lookup functions.
vtkNew<vtkIdList> testIdList;
for (RefMapIterator it = refMap.begin(), itEnd = refMap.end(); it != itEnd;
++it)
{
const ScalarT &val = it->first;
vtkIdList *refIdList = it->second; // Presorted due to insertion order
vtkIdType *refIdBegin = refIdList->GetPointer(0);
vtkIdType *refIdEnd = refIdList->GetPointer(refIdList->GetNumberOfIds());
// Docs are unclear about this. Does it return the first value, or just any?
// We'll assume any since it's unspecified.
DataArrayAPIUpdateSignature("vtkIdType LookupValue(vtkVariant value)");
vtkIdType testId = array->LookupValue(vtkVariant(val));
if (!std::binary_search(refIdBegin, refIdEnd, testId))
{
// NonFatal + break so we can clean up.
DataArrayAPINonFatalError("Looking up value '" << val
<< "' returned valueIdx '" << testId
<< "', which maps to value '"
<< array->GetValue(testId) << "'.");
break;
}
// Now for the list overload:
DataArrayAPIUpdateSignature(
"void LookupValue(vtkVariant value, vtkIdList* ids)");
array->LookupValue(vtkVariant(val), testIdList.GetPointer());
if (testIdList->GetNumberOfIds() != refIdList->GetNumberOfIds())
{
// NonFatal + break so we can clean up.
DataArrayAPINonFatalError("Looking up value '" << val << "' returned "
<< testIdList->GetNumberOfIds() << " ids, but "
<< refIdList->GetNumberOfIds()
<< "were expected.");
break;
}
vtkIdType *testIdBegin = testIdList->GetPointer(0);
vtkIdType *testIdEnd = testIdList->GetPointer(refIdList->GetNumberOfIds());
// Ensure the test ids are sorted
std::sort(testIdBegin, testIdEnd);
if (!std::equal(testIdBegin, testIdEnd, refIdBegin))
{
// NonFatal + break so we can clean up.
DataArrayAPINonFatalError("Looking up all value indices for value '"
<< val
<< "' did not return the expected result.");
break;
}
}
// Cleanup:
for (RefMapIterator it = refMap.begin(), itEnd = refMap.end(); it != itEnd;
++it)
{
it->second->Delete();
it->second = NULL;
}
DataArrayAPIFinish();
}
// vtkVariant GetVariantValue(vtkIdType idx)
template <typename ScalarT, typename ArrayT>
int Test_vtkVariant_GetVariantValue_valueIdx()
{
DataArrayAPIInit("vtkVariant GetVariantValue(vtkIdType valueIdx)");
DataArrayAPICreateTestArray(array);
vtkIdType comps = 9;
vtkIdType tuples = 5;
array->SetNumberOfComponents(comps);
array->SetNumberOfTuples(tuples);
// Initialize:
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
array->SetValue(i, static_cast<ScalarT>(i % 16));
}
// Verify:
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
vtkVariant testVar = array->GetVariantValue(i);
bool valid = false;
ScalarT test = vtkVariantCast<ScalarT>(testVar, &valid);
DataArrayAPIAssert(valid == true,
"vtkVariantCast failed.");
ScalarT ref = static_cast<ScalarT>(i % 16);
if (test != ref)
{
DataArrayAPIError("Data mismatch at value index '" << i << "'. Expected '"
<< ref << "', got '" << test << "'.");
}
}
DataArrayAPIFinish();
}
// void InsertVariantValue(vtkIdType idx, vtkVariant value)
template <typename ScalarT, typename ArrayT>
int Test_void_InsertVariantValue_idx_v()
{
DataArrayAPIInit("void InsertVariantValue(vtkIdType idx, vtkVariant v)");
DataArrayAPICreateTestArray(source);
// Initialize source array using tested function:
vtkIdType comps = 9;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
source->InsertVariantValue(i, vtkVariant(static_cast<ScalarT>(i % 17)));
if (source->GetSize() < i + 1)
{
DataArrayAPIError("Size should be at least " << i + 1
<< " values, but is only " << source->GetSize() << ".");
}
if (source->GetMaxId() != i)
{
DataArrayAPIError("MaxId should be " << i << ", but is "
<< source->GetMaxId() << " instead.");
}
}
// Validate:
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
ScalarT ref = static_cast<ScalarT>(i % 17);
const typename ArrayT::ValueType test = source->GetValue(i);
if (ref != test)
{
DataArrayAPIError("Data mismatch at value " << i << ": Expected '"
<< ref << "', got '" << test << "'.");
}
}
DataArrayAPIFinish();
}
// void SetVariantValue(vtkIdType idx, vtkVariant value)
template <typename ScalarT, typename ArrayT>
int Test_void_SetVariantValue_idx_v()
{
DataArrayAPIInit("void SetVariantValue(vtkIdType valueIdx, vtkVariant v)");
DataArrayAPICreateTestArray(source);
// Initialize source array using tested function:
vtkIdType comps = 9;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
source->SetVariantValue(i, vtkVariant(
static_cast<ScalarT>(((i + 1) * (i + 2)) % 17)));
}
// Validate:
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
ScalarT ref = static_cast<ScalarT>(((i + 1) * (i + 2)) % 17);
const typename ArrayT::ValueType test = source->GetValue(i);
if (ref != test)
{
DataArrayAPIError("Data mismatch at value " << i << ": Expected '"
<< ref << "', got '" << test << "'.");
}
}
DataArrayAPIFinish();
}
//------------------------vtkDataArray API--------------------------------------
// double* GetTuple(vtkIdType i)
template <typename ScalarT, typename ArrayT>
int Test_doubleptr_GetTuple_i()
{
DataArrayAPIInit("double* GetTuple(vtkIdType i)");
DataArrayAPICreateTestArray(source);
// Initialize source array:
vtkIdType comps = 9;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
source->SetValue(i, static_cast<ScalarT>(i % 17));
}
// Test the returned tuples:
vtkIdType refValue = 0;
for (vtkIdType tupleIdx = 0; tupleIdx < tuples; ++tupleIdx)
{
double *tuple = source->GetTuple(tupleIdx);
for (int compIdx = 0; compIdx < comps; ++compIdx)
{
if (tuple[compIdx] != static_cast<double>(refValue))
{
DataArrayAPIError("Data mismatch at tuple " << tupleIdx << ", "
"component " << compIdx << ": Expected '" << refValue
<< "', got '" << tuple[compIdx] << "'.");
}
++refValue;
refValue %= 17;
}
}
DataArrayAPIFinish();
}
// void GetTuple(vtkIdType i, double *tuple)
// tuple must be large enough, of course
// double* GetTuple(vtkIdType i)
template <typename ScalarT, typename ArrayT>
int Test_void_GetTuple_i_tuple()
{
DataArrayAPIInit("void GetTuple(vtkIdType i, double *tuple)");
DataArrayAPICreateTestArray(source);
// Initialize source array:
vtkIdType comps = 9;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
source->SetValue(i, static_cast<ScalarT>(i % 17));
}
// Test the returned tuples:
vtkIdType refValue = 0;
std::vector<double> tuple(comps);
for (vtkIdType tupleIdx = 0; tupleIdx < tuples; ++tupleIdx)
{
source->GetTuple(tupleIdx, &tuple[0]);
for (int compIdx = 0; compIdx < comps; ++compIdx)
{
if (tuple[compIdx] != static_cast<double>(refValue))
{
DataArrayAPIError("Data mismatch at tuple " << tupleIdx << ", "
"component " << compIdx << ": Expected '" << refValue
<< "', got '" << tuple[compIdx] << "'.");
}
++refValue;
refValue %= 17;
}
}
DataArrayAPIFinish();
}
// double GetComponent(vtkIdType i, int j)
// Return the value at tuple i, component j
template <typename ScalarT, typename ArrayT>
int Test_double_GetComponent_i_j()
{
DataArrayAPIInit("double GetComponent(vtkIdType i, int j)");
DataArrayAPICreateTestArray(source);
// Initialize source array:
vtkIdType comps = 9;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
source->SetValue(i, static_cast<ScalarT>(i % 17));
}
// Test the returned tuples:
vtkIdType refValue = 0;
for (vtkIdType i = 0; i < tuples; ++i)
{
for (int j = 0; j < comps; ++j)
{
if (source->GetComponent(i, j) != static_cast<double>(refValue))
{
DataArrayAPIError("Data mismatch at tuple " << i << ", "
"component " << j << ": Expected '" << refValue
<< "', got '" << source->GetComponent(i, j) << "'.");
}
++refValue;
refValue %= 17;
}
}
DataArrayAPIFinish();
}
// void SetComponent(vtkIdType i, int j, double c)
// Set tuple i, component j to value c.
// Must preallocate.
template <typename ScalarT, typename ArrayT>
int Test_void_SetComponent_i_j_c()
{
DataArrayAPIInit("void SetComponent(vtkIdType i, int j, double c)");
DataArrayAPICreateTestArray(source);
// Initialize source array using tested function:
vtkIdType comps = 9;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType i = 0; i < tuples; ++i)
{
for (int j = 0; j < comps; ++j)
{
source->SetComponent(i, j, static_cast<double>(((i + 1) * (j + 1)) % 17));
}
}
// Test the returned tuples:
std::vector<double> tuple(comps);
for (vtkIdType i = 0; i < tuples; ++i)
{
source->GetTuple(i, &tuple[0]);
for (int j = 0; j < comps; ++j)
{
if (tuple[j] != static_cast<double>((i + 1) * (j + 1) % 17))
{
DataArrayAPIError("Data mismatch at tuple " << i << ", component " << j
<< ": Expected '" << ((i + 1) * (j + 1) % 17)
<< "', got '" << tuple[j] << "'.");
}
}
}
DataArrayAPIFinish();
}
// void InsertComponent(vtkIdType i, int j, double c)
// Set tuple i component j to value c.
// Allocates memory as needed.
template <typename ScalarT, typename ArrayT>
int Test_void_InsertComponent_i_j_c()
{
DataArrayAPIInit("void InsertComponent(vtkIdType i, int j, double c)");
DataArrayAPICreateTestArray(source);
// Initialize source array using tested function:
vtkIdType comps = 9;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
source->InsertComponent(t, c,
static_cast<double>(((t + 1) * (c + 1)) % 17));
if (source->GetSize() < (t * comps) + c + 1)
{
DataArrayAPIError("Size should be at least " << (t * comps) + c + 1
<< " values, but is only " << source->GetSize()
<< ".");
}
if (source->GetMaxId() != (t * comps) + c)
{
DataArrayAPIError("MaxId should be " << (t * comps) + c
<< ", but is " << source->GetMaxId() << " instead.");
}
}
}
// Test the returned tuples:
std::vector<double> tuple(comps);
for (vtkIdType i = 0; i < tuples; ++i)
{
source->GetTuple(i, &tuple[0]);
for (int j = 0; j < comps; ++j)
{
if (tuple[j] != static_cast<double>((i + 1) * (j + 1) % 17))
{
DataArrayAPIError("Data mismatch at tuple " << i << ", component " << j
<< ": Expected '" << ((i + 1) * (j + 1) % 17)
<< "', got '" << tuple[j] << "'.");
}
}
}
DataArrayAPIFinish();
}
// void FillComponent(int j, double c)
// For each tuple, set component j to value c.
template <typename ScalarT, typename ArrayT>
int Test_void_FillComponent_j_c()
{
DataArrayAPIInit("void FillComponent(int j, double c)");
DataArrayAPICreateTestArray(source);
// Initialize source array using tested function:
vtkIdType comps = 9;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType j = 0; j < comps; ++j)
{
source->FillComponent(j, static_cast<double>(((j + 1) * j) % 17));
}
// Test the returned tuples:
std::vector<double> tuple(comps);
for (vtkIdType i = 0; i < tuples; ++i)
{
source->GetTuple(i, &tuple[0]);
for (int j = 0; j < comps; ++j)
{
if (tuple[j] != static_cast<double>(((j + 1) * j) % 17))
{
DataArrayAPIError("Data mismatch at tuple " << i << ", component " << j
<< ": Expected '" << (((j + 1) * j) % 17)
<< "', got '" << tuple[j] << "'.");
}
}
}
DataArrayAPIFinish();
}
// void* WriteVoidPointer(vtkIdType id, vtkIdType number)
// Ensure that there are at least (id + number) values allocated in the array.
// Update MaxId to ensure that any new values are marked as in-use.
// Return a void pointer to the value at index id.
// TODO This couldn't really work with the new vtkGenericDataArray stuff.
// Deprecate?
template <typename ScalarT, typename ArrayT>
int Test_voidptr_WriteVoidPointer_id_number()
{
DataArrayAPIInit("void* WriteVoidPointer(vtkIdType id, vtkIdType number)");
// Skip SoA arrays, as they do not allow this:
if (typeid(ArrayT) == typeid(vtkSOADataArrayTemplate<ScalarT>))
{
std::cerr << "Skipping WriteVoidPointer for "
<< "vtkSOADataArrayTemplate<" << vtkTypeTraits<ScalarT>::Name()
<< ">.\n";
DataArrayAPIFinish();
}
DataArrayAPICreateTestArray(source);
// Initialize source array:
vtkIdType comps = 9;
vtkIdType tuples = 10;
vtkIdType values = comps * tuples;
source->SetNumberOfComponents(comps);
// Fill the array by writing to the returned void pointer. Trying various
// write lengths that aren't just multiples of the tuple size.
vtkIdType pos = 0;
int writeLength = 1;
while (true)
{
if (pos + writeLength > values)
{
writeLength = values - pos;
}
if (writeLength <= 0)
{
break;
}
void *voidPtr = source->WriteVoidPointer(pos, writeLength);
// Verify that conditions are met:
if (source->GetMaxId() != pos + writeLength - 1)
{
DataArrayAPIError("MaxId was not incremented to account for write length."
" MaxId is: " << source->GetMaxId() << ", expected: "
<< (pos + writeLength - 1) << ".");
}
if (source->GetSize() < pos + writeLength)
{
DataArrayAPIError("Size was not increased to account for write length. "
"Size is: " << source->GetSize() << ", expected: "
<< (pos + writeLength) << ".");
}
// Cast the pointer and write to it:
ScalarT *ptr = static_cast<ScalarT*>(voidPtr);
for (int i = 0; i < writeLength; ++i)
{
ptr[i] = static_cast<ScalarT>(((pos + 1) * pos) % 17);
++pos;
}
writeLength += 1;
}
// Test the returned tuples:
vtkIdType v = 0;
std::vector<double> tuple(comps);
for (vtkIdType i = 0; i < tuples; ++i)
{
source->GetTuple(i, &tuple[0]);
for (int j = 0; j < comps; ++j)
{
if (tuple[j] != static_cast<double>(((v + 1) * v) % 17))
{
DataArrayAPIError("Data mismatch at tuple " << i << ", component " << j
<< ": Expected '" << (((v + 1) * v) % 17)
<< "', got '" << tuple[j] << "'.");
}
++v;
}
}
DataArrayAPIFinish();
}
// void CreateDefaultLookupTable()
// GetLookupTable should be non-NULL after calling.
template <typename ScalarT, typename ArrayT>
int Test_void_CreateDefaultLookupTable()
{
DataArrayAPIInit("void CreateDefaultLookupTable()");
DataArrayAPICreateTestArray(source);
source->CreateDefaultLookupTable();
if (source->GetLookupTable() == NULL)
{
DataArrayAPIError("Lookup table was not created.");
}
DataArrayAPIFinish();
}
// double GetTuple1 (vtkIdType i)
// double * GetTuple2 (vtkIdType i)
// double * GetTuple3 (vtkIdType i)
// double * GetTuple4 (vtkIdType i)
// double * GetTuple6 (vtkIdType i)
// double * GetTuple9 (vtkIdType i)
// Returns the ith tuple.
template <typename ScalarT, typename ArrayT, int N>
int Test_doubleptr_GetTupleN_i()
{
std::ostringstream sigBuilder;
sigBuilder << "double" << ((N == 1) ? "" : "*") << " GetTuple" << N
<< "(vtkIdType i)";
DataArrayAPIInit(sigBuilder.str());
DataArrayAPICreateTestArray(source);
// Initialize source array:
vtkIdType comps = N;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType i = 0; i < comps * tuples; ++i)
{
source->SetValue(i, static_cast<ScalarT>(i % 17));
}
// Validate API:
for (vtkIdType t = 0; t < tuples; ++t)
{
std::vector<double> tuple(N);
switch(N)
{
case 1:
tuple[0] = source->GetTuple1(t);
break;
#define vtkDataArrayAPIGetTupleNCase(_N) \
case _N: \
{ \
double *tmpPtr = source->GetTuple##_N(t); \
std::copy(tmpPtr, tmpPtr + (_N), tuple.begin()); \
} \
break
vtkDataArrayAPIGetTupleNCase(2);
vtkDataArrayAPIGetTupleNCase(3);
vtkDataArrayAPIGetTupleNCase(4);
vtkDataArrayAPIGetTupleNCase(6);
vtkDataArrayAPIGetTupleNCase(9);
#undef vtkDataArrayAPIGetTupleNCase
default:
DataArrayAPIError("Unrecognized tuple size: GetTuple" << N << "().");
}
for (int c = 0; c < comps; ++c)
{
double test = tuple[c];
double ref = static_cast<double>((t * comps + c) % 17);
if (test != ref)
{
DataArrayAPIError("Incorrect value returned for tuple " << t
<< "component " << c << ": Got " << test
<< ", expected " << ref << ".");
}
}
}
DataArrayAPIFinish();
}
// void SetTuple(vtkIdType i, const float *tuple)
// void SetTuple(vtkIdType i, const double *tuple)
template <typename ScalarT, typename ArrayT, typename TupleArgT>
int Test_void_SetTuple_i_tuple()
{
std::ostringstream sigBuilder;
sigBuilder << "void SetTuple(vtkIdType i, "
<< vtkTypeTraits<TupleArgT>::Name() << " *tuple)";
DataArrayAPIInit(sigBuilder.str());
DataArrayAPICreateTestArray(source);
// Initialize source array:
vtkIdType comps = 5;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType t = 0; t < tuples; ++t)
{
std::vector<TupleArgT> tuple;
for (int c = 0; c < comps; ++c)
{
tuple.push_back(static_cast<TupleArgT>(((t * comps) + c) % 17));
}
source->SetTuple(t, &tuple[0]);
}
// Verify:
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
if (source->GetComponent(t, c) !=
static_cast<double>(((t * comps) + c) % 17))
{
DataArrayAPIError("Data mismatch at tuple " << t << " component " << c
<< ": Expected "
<< static_cast<double>(((t * comps) + c) % 17)
<< ", got " << source->GetComponent(t, c) << ".");
}
}
}
DataArrayAPIFinish();
}
// void SetTuple1(vtkIdType i, double value)
// void SetTuple2(vtkIdType i, double val0, double val1)
// void SetTuple3(vtkIdType i, double val0, double val1, ...)
// void SetTuple4(vtkIdType i, double val0, double val1, ...)
// void SetTuple6(vtkIdType i, double val0, double val1, ...)
// void SetTuple9(vtkIdType i, double val0, double val1, ...)
template <typename ScalarT, typename ArrayT, int N>
int Test_void_SetTupleN_i()
{
std::ostringstream sigBuilder;
sigBuilder << "void SetTuple" << N << "(vtkIdType i, double val0, ...)";
DataArrayAPIInit(sigBuilder.str());
DataArrayAPICreateTestArray(source);
// Initialize source array:
vtkIdType comps = N;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType t = 0; t < tuples; ++t)
{
std::vector<double> tuple;
for (int c = 0; c < comps; ++c)
{
tuple.push_back(static_cast<double>(((t * comps) + c) % 17));
}
switch (N)
{
case 1:
source->SetTuple1(t, tuple[0]);
break;
case 2:
source->SetTuple2(t, tuple[0], tuple[1]);
break;
case 3:
source->SetTuple3(t, tuple[0], tuple[1], tuple[2]);
break;
case 4:
source->SetTuple4(t, tuple[0], tuple[1], tuple[2], tuple[3]);
break;
case 6:
source->SetTuple6(t, tuple[0], tuple[1], tuple[2], tuple[3], tuple[4],
tuple[5]);
break;
case 9:
source->SetTuple9(t, tuple[0], tuple[1], tuple[2], tuple[3], tuple[4],
tuple[5], tuple[6], tuple[7], tuple[8]);
break;
default:
DataArrayAPIError("Invalid N: " << N << ".");
}
}
// Verify:
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
if (source->GetComponent(t, c) !=
static_cast<double>(((t * comps) + c) % 17))
{
DataArrayAPIError("Data mismatch at tuple " << t << " component " << c
<< ": Expected "
<< static_cast<double>(((t * comps) + c) % 17)
<< ", got " << source->GetComponent(t, c) << ".");
}
}
}
DataArrayAPIFinish();
}
// void InsertTuple(vtkIdType i, const float *tuple)
// void InsertTuple(vtkIdType i, const double *tuple)
// Allocates memory as needed.
template <typename ScalarT, typename ArrayT, typename TupleArgT>
int Test_void_InsertTuple_i_tuple()
{
std::ostringstream sigBuilder;
sigBuilder << "void InsertTuple(vtkIdType i, "
<< vtkTypeTraits<TupleArgT>::Name() << " *tuple)";
DataArrayAPIInit(sigBuilder.str());
DataArrayAPICreateTestArray(source);
// Initialize source array:
vtkIdType comps = 5;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
for (vtkIdType t = 0; t < tuples; ++t)
{
std::vector<TupleArgT> tuple;
for (int c = 0; c < comps; ++c)
{
tuple.push_back(static_cast<TupleArgT>(((t * comps) + c) % 17));
}
source->InsertTuple(t, &tuple[0]);
if (source->GetSize() < ((t + 1) * comps))
{
DataArrayAPIError("Size should be at least " << ((t + 1) * comps)
<< " values, but is only " << source->GetSize() << ".");
}
if (source->GetMaxId() != ((t + 1) * comps) - 1)
{
DataArrayAPIError("MaxId should be " << ((t + 1) * comps) - 1
<< ", but is " << source->GetMaxId() << " instead.");
}
}
// Verify:
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
if (source->GetComponent(t, c) !=
static_cast<double>(((t * comps) + c) % 17))
{
DataArrayAPIError("Data mismatch at tuple " << t << " component " << c
<< ": Expected "
<< static_cast<double>(((t * comps) + c) % 17)
<< ", got " << source->GetComponent(t, c) << ".");
}
}
}
DataArrayAPIFinish();
}
// void InsertTuple1(vtkIdType i, double value)
// void InsertTuple2(vtkIdType i, double val0, double val1)
// void InsertTuple3(vtkIdType i, double val0, double val1, ...)
// void InsertTuple4(vtkIdType i, double val0, double val1, ...)
// void InsertTuple6(vtkIdType i, double val0, double val1, ...)
// void InsertTuple9(vtkIdType i, double val0, double val1, ...)
// Allocates memory as needed.
template <typename ScalarT, typename ArrayT, int N>
int Test_void_InsertTupleN_i()
{
std::ostringstream sigBuilder;
sigBuilder << "void InsertTuple" << N << "(vtkIdType i, double val0, ...)";
DataArrayAPIInit(sigBuilder.str());
DataArrayAPICreateTestArray(source);
// Initialize source array:
vtkIdType comps = N;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
for (vtkIdType t = 0; t < tuples; ++t)
{
std::vector<double> tuple;
for (int c = 0; c < comps; ++c)
{
tuple.push_back(static_cast<double>(((t * comps) + c) % 17));
}
switch (N)
{
case 1:
source->InsertTuple1(t, tuple[0]);
break;
case 2:
source->InsertTuple2(t, tuple[0], tuple[1]);
break;
case 3:
source->InsertTuple3(t, tuple[0], tuple[1], tuple[2]);
break;
case 4:
source->InsertTuple4(t, tuple[0], tuple[1], tuple[2], tuple[3]);
break;
case 6:
source->InsertTuple6(t, tuple[0], tuple[1], tuple[2], tuple[3],
tuple[4], tuple[5]);
break;
case 9:
source->InsertTuple9(t, tuple[0], tuple[1], tuple[2], tuple[3],
tuple[4], tuple[5], tuple[6], tuple[7], tuple[8]);
break;
default:
DataArrayAPIError("Invalid N: " << N << ".");
}
if (source->GetSize() < ((t + 1) * comps))
{
DataArrayAPIError("Size should be at least " << ((t + 1) * comps)
<< " values, but is only " << source->GetSize() << ".");
}
if (source->GetMaxId() != ((t + 1) * comps) - 1)
{
DataArrayAPIError("MaxId should be " << ((t + 1) * comps) - 1
<< ", but is " << source->GetMaxId() << " instead.");
}
}
// Verify:
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
if (source->GetComponent(t, c) !=
static_cast<double>(((t * comps) + c) % 17))
{
DataArrayAPIError("Data mismatch at tuple " << t << " component " << c
<< ": Expected "
<< static_cast<double>(((t * comps) + c) % 17)
<< ", got " << source->GetComponent(t, c) << ".");
}
}
}
DataArrayAPIFinish();
}
// vtkIdType InsertNextTuple(const float *tuple)
// vtkIdType InsertNextTuple(const double *tuple)
// Allocates memory as needed.
template <typename ScalarT, typename ArrayT, typename TupleArgT>
int Test_void_InsertNextTuple_tuple()
{
std::ostringstream sigBuilder;
sigBuilder << "void InsertNextTuple(" << vtkTypeTraits<TupleArgT>::Name()
<< " *tuple)";
DataArrayAPIInit(sigBuilder.str());
DataArrayAPICreateTestArray(source);
// Initialize source array:
vtkIdType comps = 5;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
for (vtkIdType t = 0; t < tuples; ++t)
{
std::vector<TupleArgT> tuple;
for (int c = 0; c < comps; ++c)
{
tuple.push_back(static_cast<TupleArgT>(((t * comps) + c) % 17));
}
source->InsertNextTuple(&tuple[0]);
if (source->GetSize() < ((t + 1) * comps))
{
DataArrayAPIError("Size should be at least " << ((t + 1) * comps)
<< " values, but is only " << source->GetSize() << ".");
}
if (source->GetMaxId() != ((t + 1) * comps) - 1)
{
DataArrayAPIError("MaxId should be " << ((t + 1) * comps) - 1
<< ", but is " << source->GetMaxId() << " instead.");
}
}
// Verify:
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
if (source->GetComponent(t, c) !=
static_cast<double>(((t * comps) + c) % 17))
{
DataArrayAPIError("Data mismatch at tuple " << t << " component " << c
<< ": Expected "
<< static_cast<double>(((t * comps) + c) % 17)
<< ", got " << source->GetComponent(t, c) << ".");
}
}
}
DataArrayAPIFinish();
}
// void InsertNextTuple1(double value)
// void InsertNextTuple2(double val0, double val1)
// void InsertNextTuple3(double val0, double val1, ...)
// void InsertNextTuple4(double val0, double val1, ...)
// void InsertNextTuple6(double val0, double val1, ...)
// void InsertNextTuple9(double val0, double val1, ...)
// Allocates memory as needed
template <typename ScalarT, typename ArrayT, int N>
int Test_void_InsertNextTupleN()
{
std::ostringstream sigBuilder;
sigBuilder << "void InsertNextTuple" << N << "(double val0, ...)";
DataArrayAPIInit(sigBuilder.str());
DataArrayAPICreateTestArray(source);
// Initialize source array:
vtkIdType comps = N;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
for (vtkIdType t = 0; t < tuples; ++t)
{
std::vector<double> tuple;
for (int c = 0; c < comps; ++c)
{
tuple.push_back(static_cast<double>(((t * comps) + c) % 17));
}
switch (comps)
{
case 1:
source->InsertNextTuple1(tuple[0]);
break;
case 2:
source->InsertNextTuple2(tuple[0], tuple[1]);
break;
case 3:
source->InsertNextTuple3(tuple[0], tuple[1], tuple[2]);
break;
case 4:
source->InsertNextTuple4(tuple[0], tuple[1], tuple[2], tuple[3]);
break;
case 6:
source->InsertNextTuple6(tuple[0], tuple[1], tuple[2], tuple[3],
tuple[4], tuple[5]);
break;
case 9:
source->InsertNextTuple9(tuple[0], tuple[1], tuple[2], tuple[3],
tuple[4], tuple[5], tuple[6], tuple[7],
tuple[8]);
break;
default:
DataArrayAPIError("Invalid N: " << N << ".");
}
if (source->GetSize() < ((t + 1) * comps))
{
DataArrayAPIError("Size should be at least " << ((t + 1) * comps)
<< " values, but is only " << source->GetSize() << ".");
}
if (source->GetMaxId() != ((t + 1) * comps) - 1)
{
DataArrayAPIError("MaxId should be " << ((t + 1) * comps) - 1
<< ", but is " << source->GetMaxId() << " instead.");
}
}
// Verify:
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
if (source->GetComponent(t, c) !=
static_cast<double>(((t * comps) + c) % 17))
{
DataArrayAPIError("Data mismatch at tuple " << t << " component " << c
<< ": Expected "
<< static_cast<double>(((t * comps) + c) % 17)
<< ", got " << source->GetComponent(t, c) << ".");
}
}
}
DataArrayAPIFinish();
}
// void RemoveTuple(vtkIdType id)
template <typename ScalarT, typename ArrayT>
int Test_void_RemoveTuple_id()
{
DataArrayAPIInit("void RemoveTuple(vtkIdType id)");
DataArrayAPICreateTestArray(source);
// Initialize source array:
vtkIdType comps = 6;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
source->SetComponent(t, c, static_cast<double>(((t * comps) + c) % 17));
}
}
vtkIdType id = 3; // Tuple index to remove
source->RemoveTuple(id);
tuples -= 1;
if (source->GetNumberOfTuples() != tuples)
{
DataArrayAPIError("Number of tuples did not change after RemoveTuple.");
}
// Verify:
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
double ref = ((t < id ? 0 : comps) + (t * comps) + c) % 17;
if (source->GetComponent(t, c) != ref)
{
DataArrayAPIError("Data mismatch at tuple " << t << " component " << c
<< ": Expected " << ref << ", got "
<< source->GetComponent(t, c) << ".");
}
}
}
DataArrayAPIFinish();
}
// void RemoveFirstTuple()
template <typename ScalarT, typename ArrayT>
int Test_void_RemoveFirstTuple()
{
DataArrayAPIInit("void RemoveFirstTuple()");
DataArrayAPICreateTestArray(source);
// Initialize source array:
vtkIdType comps = 6;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
source->SetComponent(t, c, static_cast<double>(((t * comps) + c) % 17));
}
}
source->RemoveFirstTuple();
tuples -= 1;
if (source->GetNumberOfTuples() != tuples)
{
DataArrayAPIError("Number of tuples did not change after RemoveTuple.");
}
// Verify:
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
double ref = (comps + (t * comps) + c) % 17;
if (source->GetComponent(t, c) != ref)
{
DataArrayAPIError("Data mismatch at tuple " << t << " component " << c
<< ": Expected " << ref << ", got "
<< source->GetComponent(t, c) << ".");
}
}
}
DataArrayAPIFinish();
}
// void RemoveLastTuple()
template <typename ScalarT, typename ArrayT>
int Test_void_RemoveLastTuple()
{
DataArrayAPIInit("void RemoveLastTuple()");
DataArrayAPICreateTestArray(source);
// Initialize source array:
vtkIdType comps = 6;
vtkIdType tuples = 10;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
source->SetComponent(t, c, static_cast<double>(((t * comps) + c) % 17));
}
}
source->RemoveLastTuple();
tuples -= 1;
if (source->GetNumberOfTuples() != tuples)
{
DataArrayAPIError("Number of tuples did not change after RemoveTuple.");
}
// Verify:
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
double ref = ((t * comps) + c) % 17;
if (source->GetComponent(t, c) != ref)
{
DataArrayAPIError("Data mismatch at tuple " << t << " component " << c
<< ": Expected " << ref << ", got "
<< source->GetComponent(t, c) << ".");
}
}
}
DataArrayAPIFinish();
}
// void GetData(vtkIdType tupleMin, vtkIdType tupleMax, int compMin,
// int compMax, vtkDoubleArray *data)
template <typename ScalarT, typename ArrayT>
int Test_void_GetData_tupleMin_tupleMax_compMin_compMax_data()
{
DataArrayAPIInit("void RemoveLastTuple()");
DataArrayAPICreateTestArray(source);
// Initialize source array:
vtkIdType comps = 9;
vtkIdType tuples = 40;
source->SetNumberOfComponents(comps);
source->SetNumberOfTuples(tuples);
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
source->SetComponent(t, c, static_cast<double>(((t * comps) + c) % 17));
}
}
// Extract some data:
int compMin = 2;
int compMax = 7;
int dataComps = compMax - compMin + 1;
vtkIdType tupleMin = 7;
vtkIdType tupleMax = 32;
vtkIdType dataTuples = tupleMax - tupleMin + 1;
vtkNew<vtkDoubleArray> data;
data->SetNumberOfComponents(dataComps);
data->SetNumberOfTuples(dataTuples);
source->GetData(tupleMin, tupleMax, compMin, compMax, data.GetPointer());
// Verify:
for (vtkIdType t = 0; t < dataTuples; ++t)
{
vtkIdType sourceTuple = t + tupleMin;
for (int c = 0; c < dataComps; ++c)
{
int sourceComp = c + compMin;
double ref = source->GetComponent(sourceTuple, sourceComp);
double test = data->GetComponent(t, c);
if (ref != test)
{
DataArrayAPIError("Mismatch at data tuple " << t << " component " << c
<< ": Expected " << ref << ", got " << test << ".");
}
}
}
DataArrayAPIFinish();
}
// void CopyComponent(int j, vtkDataArray *from, int fromComponent)
// For all tuples, copy the fromComponent component from the 'from' array
// into the jth component in this.
template <typename ScalarT, typename ArrayT>
int Test_void_CopyComponent_j_from_fromComponent()
{
DataArrayAPIInit(
"void CopyComponent(int j, vtkDataArray *from, int fromComponent)");
DataArrayAPICreateTestArray(target);
DataArrayAPICreateReferenceArray(from);
// Initialize arrays:
vtkIdType comps = 11;
vtkIdType tuples = 10;
from->SetNumberOfComponents(comps);
from->SetNumberOfTuples(tuples);
target->SetNumberOfComponents(comps);
target->SetNumberOfTuples(tuples);
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
target->SetComponent(t, c, static_cast<double>(((t * comps) + c) % 17));
from->SetComponent(t, c, static_cast<double>(
(((t + 1) * comps) + (c + 1)) % 17));
}
}
int j = 2;
int fromComponent = 8;
target->CopyComponent(j, from, fromComponent);
// Verify:
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
double ref;
if (c == j) // Use the target's value formula
{
ref = static_cast<double>(
(((t + 1) * comps) + (fromComponent + 1)) % 17);
}
else // Use the source's value formula
{
ref = ((t * comps) + c) % 17;
}
if (target->GetComponent(t, c) != ref)
{
DataArrayAPIError("Data mismatch at tuple " << t << " component " << c
<< ": Expected " << ref << ", got "
<< target->GetComponent(t, c) << ".");
}
}
}
DataArrayAPIFinish();
}
// double* GetRange()
// void GetRange(double range[2])
// double* GetRange(int comp)
// void GetRange(double range[2], int comp)
template <typename ScalarT, typename ArrayT>
int Test_GetRange_all_overloads()
{
DataArrayAPIInit("GetRange");
DataArrayAPICreateTestArray(array);
// Initialize arrays:
vtkIdType comps = 6;
vtkIdType tuples = 9;
array->SetNumberOfComponents(comps);
array->SetNumberOfTuples(tuples);
for (vtkIdType t = 0; t < tuples; ++t)
{
for (int c = 0; c < comps; ++c)
{
array->SetComponent(t, c, (t + 1) * (c + 1));
}
}
// Just the range of the first component:
DataArrayAPIUpdateSignature("double* GetRange()");
double *rangePtr = array->GetRange();
double expectedRange[2] = { 1., static_cast<double>(tuples) };
if (rangePtr[0] != expectedRange[0] ||
rangePtr[1] != expectedRange[1])
{
DataArrayAPINonFatalError("First component range expected to be: ["
<< expectedRange[0] << ", " << expectedRange[1]
<< "], got [" << rangePtr[0] << ", "
<< rangePtr[1] << "].");
}
DataArrayAPIUpdateSignature("void GetRange(double range[2])");
double rangeArray[2];
array->GetRange(rangeArray);
if (rangeArray[0] != expectedRange[0] ||
rangeArray[1] != expectedRange[1])
{
DataArrayAPINonFatalError("First component range expected to be: ["
<< expectedRange[0] << ", " << expectedRange[1]
<< "], got [" << rangeArray[0] << ", "
<< rangeArray[1] << "].");
}
DataArrayAPIUpdateSignature("double* GetRange(int comp)");
for (int c = 0; c < comps; ++c)
{
expectedRange[0] = c + 1;
expectedRange[1] = tuples * (c + 1);
rangePtr = array->GetRange(c);
if (rangePtr[0] != expectedRange[0] ||
rangePtr[1] != expectedRange[1])
{
DataArrayAPINonFatalError("Component " << c << " range expected to be: ["
<< expectedRange[0] << ", " << expectedRange[1]
<< "], got [" << rangePtr[0] << ", "
<< rangePtr[1] << "].");
}
}
DataArrayAPIUpdateSignature("void GetRange(double range[2], int comp)");
for (int c = 0; c < comps; ++c)
{
expectedRange[0] = c + 1;
expectedRange[1] = tuples * (c + 1);
array->GetRange(rangeArray, c);
if (rangeArray[0] != expectedRange[0] ||
rangeArray[1] != expectedRange[1])
{
DataArrayAPINonFatalError("Component " << c << " range expected to be: ["
<< expectedRange[0] << ", " << expectedRange[1]
<< "], got [" << rangeArray[0] << ", "
<< rangeArray[1] << "].");
}
}
DataArrayAPIFinish();
}
//------------------------------------------------------------------------------
//-----------Unit Test Function Caller------------------------------------------
//------------------------------------------------------------------------------
struct CanDispatch // Dummy for testing if we can dispatch an array type.
{
template <typename ArrayT> void operator()(ArrayT *) {}
};
template <typename ScalarT, typename ArrayT>
int ExerciseDataArray()
{
int errors = 0;
// vtkAbstractArray API:
errors += Test_int_Allocate_numValues_ext<ScalarT, ArrayT>();
errors += Test_void_Initialize<ScalarT, ArrayT>();
errors += Test_int_GetDataType<ScalarT, ArrayT>();
errors += Test_int_GetDataTypeSize<ScalarT, ArrayT>();
errors += Test_int_GetElementComponentSize<ScalarT, ArrayT>();
errors += Test_NumberOfComponents<ScalarT, ArrayT>();
errors += Test_ComponentNames<ScalarT, ArrayT>();
errors += Test_NumberOfTuples<ScalarT, ArrayT>();
errors += Test_void_SetNumberOfValues_number<ScalarT, ArrayT>();
errors += Test_void_SetTuple_i_j_source<ScalarT, ArrayT>();
errors += Test_void_InsertTuple_i_j_source<ScalarT, ArrayT>();
errors += Test_void_InsertTuples_dstIds_srcIds_source<ScalarT, ArrayT>();
errors += Test_void_InsertTuples_dstStart_n_srcStart_source<ScalarT, ArrayT>();
errors += Test_vtkIdType_InsertNextTuple_j_source<ScalarT, ArrayT>();
errors += Test_void_GetTuples_ptIds_output<ScalarT, ArrayT>();
errors += Test_void_GetTuples_p1_p2_output<ScalarT, ArrayT>();
errors += Test_voidPtr_GetVoidPointer<ScalarT, ArrayT>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkAbstractArray, char>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkAbstractArray, float>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkAbstractArray, double>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkAbstractArray, vtkIdType>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkAbstractArray, int>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkAbstractArray, long>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkAbstractArray, long long>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkAbstractArray, short>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkAbstractArray, signed char>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkAbstractArray, unsigned char>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkAbstractArray, unsigned int>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkAbstractArray, unsigned long>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkAbstractArray, unsigned long long>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkAbstractArray, unsigned short>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkDataArray, char>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkDataArray, float>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkDataArray, double>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkDataArray, vtkIdType>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkDataArray, int>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkDataArray, long>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkDataArray, long long>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkDataArray, short>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkDataArray, signed char>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkDataArray, unsigned char>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkDataArray, unsigned int>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkDataArray, unsigned long>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkDataArray, unsigned long long>();
errors += Test_void_DeepCopy_array<ScalarT, ArrayT, vtkDataArray, unsigned short>();
errors += Test_void_InterpolateTuple_i_indices_source_weights<ScalarT, ArrayT>();
errors += Test_void_InterpolateTuple_i_id1_source1_id2_source2_t<ScalarT, ArrayT>();
errors += Test_int_Resize_numTuples<ScalarT, ArrayT>();
errors += Test_void_Reset<ScalarT, ArrayT>();
errors += Test_void_ExportToVoidPointer_voidPtr<ScalarT, ArrayT>();
errors += Test_ulong_GetActualMemorySize<ScalarT, ArrayT>();
errors += Test_int_IsNumeric<ScalarT, ArrayT>();
errors += Test_vtkArrayIteratorPtr_NewIterator<ScalarT, ArrayT>();
errors += Test_vtkIdType_GetDataSize<ScalarT, ArrayT>();
errors += Test_LookupValue_allSigs<ScalarT, ArrayT>();
errors += Test_vtkVariant_GetVariantValue_valueIdx<ScalarT, ArrayT>();
errors += Test_void_InsertVariantValue_idx_v<ScalarT, ArrayT>();
errors += Test_void_SetVariantValue_idx_v<ScalarT, ArrayT>();
// vtkDataArray API:
errors += Test_doubleptr_GetTuple_i<ScalarT, ArrayT>();
errors += Test_void_GetTuple_i_tuple<ScalarT, ArrayT>();
errors += Test_double_GetComponent_i_j<ScalarT, ArrayT>();
errors += Test_void_SetComponent_i_j_c<ScalarT, ArrayT>();
errors += Test_void_InsertComponent_i_j_c<ScalarT, ArrayT>();
errors += Test_voidptr_WriteVoidPointer_id_number<ScalarT, ArrayT>();
errors += Test_void_CreateDefaultLookupTable<ScalarT, ArrayT>();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkAOSDataArrayTemplate<char> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkAOSDataArrayTemplate<float> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkAOSDataArrayTemplate<double> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkAOSDataArrayTemplate<vtkIdType> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkAOSDataArrayTemplate<int> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkAOSDataArrayTemplate<long> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkAOSDataArrayTemplate<long long> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkAOSDataArrayTemplate<short> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkAOSDataArrayTemplate<signed char> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkAOSDataArrayTemplate<unsigned char> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkAOSDataArrayTemplate<unsigned int> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkAOSDataArrayTemplate<unsigned long> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkAOSDataArrayTemplate<unsigned long long> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkAOSDataArrayTemplate<unsigned short> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkSOADataArrayTemplate<char> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkSOADataArrayTemplate<float> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkSOADataArrayTemplate<double> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkSOADataArrayTemplate<vtkIdType> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkSOADataArrayTemplate<int> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkSOADataArrayTemplate<long> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkSOADataArrayTemplate<long long> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkSOADataArrayTemplate<short> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkSOADataArrayTemplate<signed char> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkSOADataArrayTemplate<unsigned char> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkSOADataArrayTemplate<unsigned int> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkSOADataArrayTemplate<unsigned long> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkSOADataArrayTemplate<unsigned long long> >();
errors += Test_void_ShallowCopy_array<ScalarT, ArrayT, vtkSOADataArrayTemplate<unsigned short> >();
errors += Test_doubleptr_GetTupleN_i<ScalarT, ArrayT, 1>();
errors += Test_doubleptr_GetTupleN_i<ScalarT, ArrayT, 2>();
errors += Test_doubleptr_GetTupleN_i<ScalarT, ArrayT, 3>();
errors += Test_doubleptr_GetTupleN_i<ScalarT, ArrayT, 4>();
errors += Test_doubleptr_GetTupleN_i<ScalarT, ArrayT, 6>();
errors += Test_doubleptr_GetTupleN_i<ScalarT, ArrayT, 9>();
errors += Test_void_SetTuple_i_tuple<ScalarT, ArrayT, float>();
errors += Test_void_SetTuple_i_tuple<ScalarT, ArrayT, double>();
errors += Test_void_SetTupleN_i<ScalarT, ArrayT, 1>();
errors += Test_void_SetTupleN_i<ScalarT, ArrayT, 2>();
errors += Test_void_SetTupleN_i<ScalarT, ArrayT, 3>();
errors += Test_void_SetTupleN_i<ScalarT, ArrayT, 4>();
errors += Test_void_SetTupleN_i<ScalarT, ArrayT, 6>();
errors += Test_void_SetTupleN_i<ScalarT, ArrayT, 9>();
errors += Test_void_InsertTuple_i_tuple<ScalarT, ArrayT, float>();
errors += Test_void_InsertTuple_i_tuple<ScalarT, ArrayT, double>();
errors += Test_void_InsertTupleN_i<ScalarT, ArrayT, 1>();
errors += Test_void_InsertTupleN_i<ScalarT, ArrayT, 2>();
errors += Test_void_InsertTupleN_i<ScalarT, ArrayT, 3>();
errors += Test_void_InsertTupleN_i<ScalarT, ArrayT, 4>();
errors += Test_void_InsertTupleN_i<ScalarT, ArrayT, 6>();
errors += Test_void_InsertTupleN_i<ScalarT, ArrayT, 9>();
errors += Test_void_InsertNextTuple_tuple<ScalarT, ArrayT, float>();
errors += Test_void_InsertNextTuple_tuple<ScalarT, ArrayT, double>();
errors += Test_void_InsertNextTupleN<ScalarT, ArrayT, 1>();
errors += Test_void_InsertNextTupleN<ScalarT, ArrayT, 2>();
errors += Test_void_InsertNextTupleN<ScalarT, ArrayT, 3>();
errors += Test_void_InsertNextTupleN<ScalarT, ArrayT, 4>();
errors += Test_void_InsertNextTupleN<ScalarT, ArrayT, 6>();
errors += Test_void_InsertNextTupleN<ScalarT, ArrayT, 9>();
errors += Test_void_RemoveTuple_id<ScalarT, ArrayT>();
errors += Test_void_RemoveFirstTuple<ScalarT, ArrayT>();
errors += Test_void_RemoveLastTuple<ScalarT, ArrayT>();
errors += Test_void_GetData_tupleMin_tupleMax_compMin_compMax_data<ScalarT, ArrayT>();
errors += Test_void_CopyComponent_j_from_fromComponent<ScalarT, ArrayT>();
return errors;
} // end ExerciseDataArray
template <typename ScalarT, typename ArrayT>
int ExerciseGetRange()
{
int errors = 0;
errors += Test_GetRange_all_overloads<ScalarT, ArrayT>();
return errors;
} // end ExerciseGetRange
} // end anon namespace
#undef DataArrayAPIInit
#undef DataArrayAPIUpdateSignature
#undef DataArrayAPIFinish
#undef DataArrayAPICreateTestArray
#undef DataArrayAPICreateReferenceArray
#undef DataArrayAPICreateReferenceArrayWithType
#undef DataArrayAPINonFatalError
#undef DataArrayAPIError
#undef DataArrayAPIAssert
|