File size: 229,074 Bytes
8c763fb | 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 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Management.Automation.Host;
using System.Management.Automation.Internal;
using System.Management.Automation.Internal.Host;
using System.Management.Automation.Language;
using System.Management.Automation.Runspaces;
using System.Runtime.CompilerServices;
using System.Text.RegularExpressions;
using System.Threading;
using Microsoft.PowerShell.Commands.Internal.Format;
namespace System.Management.Automation
{
#region Event Args
/// <summary>
/// Possible actions for the debugger after hitting a breakpoint/step.
/// </summary>
public enum DebuggerResumeAction
{
/// <summary>
/// Continue running until the next breakpoint, or the end of the script.
/// </summary>
Continue = 0,
/// <summary>
/// Step to next statement, going into functions, scripts, etc.
/// </summary>
StepInto = 1,
/// <summary>
/// Step to next statement, going over functions, scripts, etc.
/// </summary>
StepOut = 2,
/// <summary>
/// Step to next statement after the current function, script, etc.
/// </summary>
StepOver = 3,
/// <summary>
/// Stop executing the script.
/// </summary>
Stop = 4,
}
/// <summary>
/// Arguments for the DebuggerStop event.
/// </summary>
public class DebuggerStopEventArgs : EventArgs
{
/// <summary>
/// Initializes the DebuggerStopEventArgs.
/// </summary>
internal DebuggerStopEventArgs(InvocationInfo invocationInfo, List<Breakpoint> breakpoints)
{
this.InvocationInfo = invocationInfo;
this.Breakpoints = new ReadOnlyCollection<Breakpoint>(breakpoints);
this.ResumeAction = DebuggerResumeAction.Continue;
}
/// <summary>
/// Constructor.
/// </summary>
/// <param name="invocationInfo"></param>
/// <param name="breakpoints"></param>
/// <param name="resumeAction"></param>
public DebuggerStopEventArgs(
InvocationInfo invocationInfo,
Collection<Breakpoint> breakpoints,
DebuggerResumeAction resumeAction)
{
this.InvocationInfo = invocationInfo;
this.Breakpoints = new ReadOnlyCollection<Breakpoint>(breakpoints);
this.ResumeAction = resumeAction;
}
/// <summary>
/// Invocation info of the code being executed.
/// </summary>
public InvocationInfo InvocationInfo { get; internal set; }
/// <summary>
/// The breakpoint(s) hit.
/// </summary>
/// <remarks>
/// Note there may be more than one breakpoint on the same object (line, variable, command). A single event is
/// raised for all these breakpoints.
/// </remarks>
public ReadOnlyCollection<Breakpoint> Breakpoints { get; }
/// <summary>
/// This property must be set in the event handler to indicate the debugger what it should do next.
/// </summary>
/// <remarks>
/// The default action is DebuggerAction.Continue.
/// DebuggerAction.StepToLine is only valid when debugging an script.
/// </remarks>
public DebuggerResumeAction ResumeAction { get; set; }
/// <summary>
/// This property is used internally for remote debug stops only. It is used to signal the remote debugger proxy
/// that it should *not* send a resume action to the remote debugger. This is used by runspace debug processing to
/// leave pending runspace debug sessions suspended until a debugger is attached.
/// </summary>
internal bool SuspendRemote { get; set; }
}
/// <summary>
/// Kinds of breakpoint updates.
/// </summary>
public enum BreakpointUpdateType
{
/// <summary>
/// A breakpoint was set.
/// </summary>
Set = 0,
/// <summary>
/// A breakpoint was removed.
/// </summary>
Removed = 1,
/// <summary>
/// A breakpoint was enabled.
/// </summary>
Enabled = 2,
/// <summary>
/// A breakpoint was disabled.
/// </summary>
Disabled = 3
}
/// <summary>
/// Arguments for the BreakpointUpdated event.
/// </summary>
public class BreakpointUpdatedEventArgs : EventArgs
{
/// <summary>
/// Initializes the BreakpointUpdatedEventArgs.
/// </summary>
internal BreakpointUpdatedEventArgs(Breakpoint breakpoint, BreakpointUpdateType updateType, int breakpointCount)
{
this.Breakpoint = breakpoint;
this.UpdateType = updateType;
this.BreakpointCount = breakpointCount;
}
/// <summary>
/// Gets the breakpoint that was updated.
/// </summary>
public Breakpoint Breakpoint { get; }
/// <summary>
/// Gets the type of update.
/// </summary>
public BreakpointUpdateType UpdateType { get; }
/// <summary>
/// Gets the current breakpoint count.
/// </summary>
public int BreakpointCount { get; }
}
#region PSJobStartEventArgs
/// <summary>
/// Arguments for the script job start callback event.
/// </summary>
public sealed class PSJobStartEventArgs : EventArgs
{
/// <summary>
/// Job to be started.
/// </summary>
public Job Job { get; }
/// <summary>
/// Job debugger.
/// </summary>
public Debugger Debugger { get; }
/// <summary>
/// Job is run asynchronously.
/// </summary>
public bool IsAsync { get; }
/// <summary>
/// Constructor.
/// </summary>
/// <param name="job">Started job.</param>
/// <param name="debugger">Debugger.</param>
/// <param name="isAsync">Job started asynchronously.</param>
public PSJobStartEventArgs(Job job, Debugger debugger, bool isAsync)
{
this.Job = job;
this.Debugger = debugger;
this.IsAsync = isAsync;
}
}
#endregion
#region Runspace Debug Processing
/// <summary>
/// StartRunspaceDebugProcessing event arguments.
/// </summary>
public sealed class StartRunspaceDebugProcessingEventArgs : EventArgs
{
/// <summary> The runspace to process </summary>
public Runspace Runspace { get; }
/// <summary>
/// When set to true this will cause PowerShell to process this runspace debug session through its
/// script debugger. To use the default processing return from this event call after setting
/// this property to true.
/// </summary>
public bool UseDefaultProcessing
{
get;
set;
}
/// <summary>
/// Constructor.
/// </summary>
public StartRunspaceDebugProcessingEventArgs(Runspace runspace)
{
if (runspace == null) { throw new PSArgumentNullException(nameof(runspace)); }
Runspace = runspace;
}
}
/// <summary>
/// ProcessRunspaceDebugEnd event arguments.
/// </summary>
public sealed class ProcessRunspaceDebugEndEventArgs : EventArgs
{
/// <summary>
/// The runspace where internal debug processing has ended.
/// </summary>
public Runspace Runspace { get; }
/// <summary>
/// Constructor.
/// </summary>
/// <param name="runspace"></param>
public ProcessRunspaceDebugEndEventArgs(Runspace runspace)
{
if (runspace == null) { throw new PSArgumentNullException(nameof(runspace)); }
Runspace = runspace;
}
}
#endregion
#endregion
#region Enums
/// <summary>
/// Defines debugging mode.
/// </summary>
[Flags]
public enum DebugModes
{
/// <summary>
/// PowerShell script debugging is disabled.
/// </summary>
None = 0x0,
/// <summary>
/// Default setting for original PowerShell script debugging.
/// Compatible with PowerShell Versions 2 and 3.
/// </summary>
Default = 0x1,
/// <summary>
/// PowerShell script debugging.
/// </summary>
LocalScript = 0x2,
/// <summary>
/// PowerShell remote script debugging.
/// </summary>
RemoteScript = 0x4
}
/// <summary>
/// Defines unhandled breakpoint processing behavior.
/// </summary>
internal enum UnhandledBreakpointProcessingMode
{
/// <summary>
/// Ignore unhandled breakpoint events.
/// </summary>
Ignore = 1,
/// <summary>
/// Wait on unhandled breakpoint events until a handler is available.
/// </summary>
Wait
}
#endregion
#region Debugger base class
/// <summary>
/// Base class for all PowerShell debuggers.
/// </summary>
public abstract class Debugger
{
#region Events
/// <summary>
/// Event raised when the debugger hits a breakpoint or a step.
/// </summary>
public event EventHandler<DebuggerStopEventArgs> DebuggerStop;
/// <summary>
/// Event raised when a breakpoint is updated.
/// </summary>
public event EventHandler<BreakpointUpdatedEventArgs> BreakpointUpdated;
/// <summary>
/// Event raised when nested debugging is cancelled.
/// </summary>
internal event EventHandler<EventArgs> NestedDebuggingCancelledEvent;
#region Runspace Debug Processing Events
/// <summary>
/// Event raised when a runspace debugger needs breakpoint processing.
/// </summary>
public event EventHandler<StartRunspaceDebugProcessingEventArgs> StartRunspaceDebugProcessing;
/// <summary>
/// Event raised when a runspace debugger is finished being processed.
/// </summary>
public event EventHandler<ProcessRunspaceDebugEndEventArgs> RunspaceDebugProcessingCompleted;
/// <summary>
/// Event raised to indicate that the debugging session is over and runspace debuggers queued for
/// processing should be released.
/// </summary>
public event EventHandler<EventArgs> CancelRunspaceDebugProcessing;
#endregion
#endregion
#region Properties
/// <summary>
/// True when the debugger is stopped.
/// </summary>
protected bool DebuggerStopped
{
get;
private set;
}
/// <summary>
/// IsPushed.
/// </summary>
internal virtual bool IsPushed
{
get { return false; }
}
/// <summary>
/// IsRemote.
/// </summary>
internal virtual bool IsRemote
{
get { return false; }
}
/// <summary>
/// Returns true if the debugger is preserving a DebuggerStopEvent
/// event. Use ReleaseSavedDebugStop() to allow event to process.
/// </summary>
internal virtual bool IsPendingDebugStopEvent
{
get { throw new PSNotImplementedException(); }
}
/// <summary>
/// Returns true if debugger has been set to stepInto mode.
/// </summary>
internal virtual bool IsDebuggerSteppingEnabled
{
get { throw new PSNotImplementedException(); }
}
/// <summary>
/// Returns true if there is a handler for debugger stops.
/// </summary>
internal bool IsDebugHandlerSubscribed
{
get { return (DebuggerStop != null); }
}
/// <summary>
/// UnhandledBreakpointMode.
/// </summary>
internal virtual UnhandledBreakpointProcessingMode UnhandledBreakpointMode
{
get { throw new PSNotImplementedException(); }
set { throw new PSNotImplementedException(); }
}
/// <summary>
/// DebuggerMode.
/// </summary>
public DebugModes DebugMode { get; protected set; } = DebugModes.Default;
/// <summary>
/// Returns true if debugger has breakpoints set and
/// is currently active.
/// </summary>
public virtual bool IsActive
{
get { return false; }
}
/// <summary>
/// InstanceId.
/// </summary>
public virtual Guid InstanceId
{
get { return s_instanceId; }
}
/// <summary>
/// True when debugger is stopped at a breakpoint.
/// </summary>
public virtual bool InBreakpoint
{
get { return DebuggerStopped; }
}
#endregion
#region Protected Methods
/// <summary>
/// RaiseDebuggerStopEvent.
/// </summary>
/// <param name="args">DebuggerStopEventArgs.</param>
[SuppressMessage("Microsoft.Design", "CA1030:UseEventsWhereAppropriate")]
protected void RaiseDebuggerStopEvent(DebuggerStopEventArgs args)
{
try
{
DebuggerStopped = true;
DebuggerStop.SafeInvoke<DebuggerStopEventArgs>(this, args);
}
finally
{
DebuggerStopped = false;
}
}
/// <summary>
/// IsDebuggerStopEventSubscribed.
/// </summary>
/// <returns>True if event subscription exists.</returns>
protected bool IsDebuggerStopEventSubscribed()
{
return (DebuggerStop != null);
}
/// <summary>
/// RaiseBreakpointUpdatedEvent.
/// </summary>
/// <param name="args">BreakpointUpdatedEventArgs.</param>
[SuppressMessage("Microsoft.Design", "CA1030:UseEventsWhereAppropriate")]
protected void RaiseBreakpointUpdatedEvent(BreakpointUpdatedEventArgs args)
{
BreakpointUpdated.SafeInvoke<BreakpointUpdatedEventArgs>(this, args);
}
/// <summary>
/// IsDebuggerBreakpointUpdatedEventSubscribed.
/// </summary>
/// <returns>True if event subscription exists.</returns>
protected bool IsDebuggerBreakpointUpdatedEventSubscribed()
{
return (BreakpointUpdated != null);
}
#region Runspace Debug Processing
/// <summary/>
protected void RaiseStartRunspaceDebugProcessingEvent(StartRunspaceDebugProcessingEventArgs args)
{
if (args == null) { throw new PSArgumentNullException(nameof(args)); }
StartRunspaceDebugProcessing.SafeInvoke<StartRunspaceDebugProcessingEventArgs>(this, args);
}
/// <summary/>
protected void RaiseRunspaceProcessingCompletedEvent(ProcessRunspaceDebugEndEventArgs args)
{
if (args == null) { throw new PSArgumentNullException(nameof(args)); }
RunspaceDebugProcessingCompleted.SafeInvoke<ProcessRunspaceDebugEndEventArgs>(this, args);
}
/// <summary/>
protected bool IsStartRunspaceDebugProcessingEventSubscribed()
{
return (StartRunspaceDebugProcessing != null);
}
/// <summary/>
protected void RaiseCancelRunspaceDebugProcessingEvent()
{
CancelRunspaceDebugProcessing.SafeInvoke<EventArgs>(this, null);
}
#endregion
#endregion
#region Public Methods
/// <summary>
/// Evaluates provided command either as a debugger specific command
/// or a PowerShell command.
/// </summary>
/// <param name="command">PowerShell command.</param>
/// <param name="output">Output.</param>
/// <returns>DebuggerCommandResults.</returns>
public abstract DebuggerCommandResults ProcessCommand(PSCommand command, PSDataCollection<PSObject> output);
/// <summary>
/// Sets the debugger resume action.
/// </summary>
/// <param name="resumeAction">DebuggerResumeAction.</param>
public abstract void SetDebuggerAction(DebuggerResumeAction resumeAction);
/// <summary>
/// Stops a running command.
/// </summary>
public abstract void StopProcessCommand();
/// <summary>
/// Returns current debugger stop event arguments if debugger is in
/// debug stop state. Otherwise returns null.
/// </summary>
/// <returns>DebuggerStopEventArgs.</returns>
public abstract DebuggerStopEventArgs GetDebuggerStopArgs();
/// <summary>
/// Sets the parent debugger, breakpoints and other debugging context information.
/// </summary>
/// <param name="parent">Parent debugger.</param>
/// <param name="breakPoints">List of breakpoints.</param>
/// <param name="startAction">Debugger mode.</param>
/// <param name="host">Host.</param>
/// <param name="path">Current path.</param>
public virtual void SetParent(
Debugger parent,
IEnumerable<Breakpoint> breakPoints,
DebuggerResumeAction? startAction,
PSHost host,
PathInfo path)
{
throw new PSNotImplementedException();
}
/// <summary>
/// Sets the debugger mode.
/// </summary>
public virtual void SetDebugMode(DebugModes mode)
{
this.DebugMode = mode;
}
/// <summary>
/// Returns IEnumerable of CallStackFrame objects.
/// </summary>
/// <returns></returns>
public virtual IEnumerable<CallStackFrame> GetCallStack()
{
return new Collection<CallStackFrame>();
}
/// <summary>
/// Get a breakpoint by id in the current runspace, primarily for Enable/Disable/Remove-PSBreakpoint cmdlets.
/// </summary>
/// <param name="id">Id of the breakpoint you want.</param>
public Breakpoint GetBreakpoint(int id) =>
GetBreakpoint(id, runspaceId: null);
/// <summary>
/// Get a breakpoint by id, primarily for Enable/Disable/Remove-PSBreakpoint cmdlets.
/// </summary>
/// <param name="id">Id of the breakpoint you want.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
public virtual Breakpoint GetBreakpoint(int id, int? runspaceId) =>
throw new PSNotImplementedException();
/// <summary>
/// Adds the provided set of breakpoints to the debugger, in the current runspace.
/// </summary>
/// <param name="breakpoints">Breakpoints.</param>
public void SetBreakpoints(IEnumerable<Breakpoint> breakpoints) =>
SetBreakpoints(breakpoints, runspaceId: null);
/// <summary>
/// Adds the provided set of breakpoints to the debugger.
/// </summary>
/// <param name="breakpoints">Breakpoints.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with, null being the current runspace.</param>
public virtual void SetBreakpoints(IEnumerable<Breakpoint> breakpoints, int? runspaceId) =>
throw new PSNotImplementedException();
/// <summary>
/// Returns breakpoints in the current runspace, primarily for the Get-PSBreakpoint cmdlet.
/// </summary>
public List<Breakpoint> GetBreakpoints() =>
GetBreakpoints(runspaceId: null);
/// <summary>
/// Returns breakpoints primarily for the Get-PSBreakpoint cmdlet.
/// </summary>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
public virtual List<Breakpoint> GetBreakpoints(int? runspaceId) =>
throw new PSNotImplementedException();
/// <summary>
/// Sets a command breakpoint in the current runspace in the debugger.
/// </summary>
/// <param name="command">The name of the command that will trigger the breakpoint. This value may not be null.</param>
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
/// <param name="path">The path to the script file where the breakpoint may be hit. If null, the breakpoint may be hit anywhere the command is invoked.</param>
/// <returns>The command breakpoint that was set.</returns>
public CommandBreakpoint SetCommandBreakpoint(string command, ScriptBlock action, string path) =>
SetCommandBreakpoint(command, action, path, runspaceId: null);
/// <summary>
/// Sets a command breakpoint in the debugger.
/// </summary>
/// <param name="command">The name of the command that will trigger the breakpoint. This value may not be null.</param>
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
/// <param name="path">The path to the script file where the breakpoint may be hit. If null, the breakpoint may be hit anywhere the command is invoked.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A value of null will use the current runspace.</param>
/// <returns>The command breakpoint that was set.</returns>
public virtual CommandBreakpoint SetCommandBreakpoint(string command, ScriptBlock action, string path, int? runspaceId) =>
throw new PSNotImplementedException();
/// <summary>
/// Sets a line breakpoint in the current runspace in the debugger.
/// </summary>
/// <param name="path">The path to the script file where the breakpoint may be hit. This value may not be null.</param>
/// <param name="line">The line in the script file where the breakpoint may be hit. This value must be greater than or equal to 1.</param>
/// <param name="column">The column in the script file where the breakpoint may be hit. If 0, the breakpoint will trigger on any statement on the line.</param>
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
/// <returns>The line breakpoint that was set.</returns>
public LineBreakpoint SetLineBreakpoint(string path, int line, int column, ScriptBlock action) =>
SetLineBreakpoint(path, line, column, action, runspaceId: null);
/// <summary>
/// Sets a line breakpoint in the debugger.
/// </summary>
/// <param name="path">The path to the script file where the breakpoint may be hit. This value may not be null.</param>
/// <param name="line">The line in the script file where the breakpoint may be hit. This value must be greater than or equal to 1.</param>
/// <param name="column">The column in the script file where the breakpoint may be hit. If 0, the breakpoint will trigger on any statement on the line.</param>
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>The line breakpoint that was set.</returns>
public virtual LineBreakpoint SetLineBreakpoint(string path, int line, int column, ScriptBlock action, int? runspaceId) =>
throw new PSNotImplementedException();
/// <summary>
/// Sets a variable breakpoint in the current runspace in the debugger.
/// </summary>
/// <param name="variableName">The name of the variable that will trigger the breakpoint. This value may not be null.</param>
/// <param name="accessMode">The variable access mode that will trigger the breakpoint.</param>
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
/// <param name="path">The path to the script file where the breakpoint may be hit. If null, the breakpoint may be hit anywhere the variable is accessed using the specified access mode.</param>
/// <returns>The variable breakpoint that was set.</returns>
public VariableBreakpoint SetVariableBreakpoint(string variableName, VariableAccessMode accessMode, ScriptBlock action, string path) =>
SetVariableBreakpoint(variableName, accessMode, action, path, runspaceId: null);
/// <summary>
/// Sets a variable breakpoint in the debugger.
/// </summary>
/// <param name="variableName">The name of the variable that will trigger the breakpoint. This value may not be null.</param>
/// <param name="accessMode">The variable access mode that will trigger the breakpoint.</param>
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
/// <param name="path">The path to the script file where the breakpoint may be hit. If null, the breakpoint may be hit anywhere the variable is accessed using the specified access mode.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>The variable breakpoint that was set.</returns>
public virtual VariableBreakpoint SetVariableBreakpoint(string variableName, VariableAccessMode accessMode, ScriptBlock action, string path, int? runspaceId) =>
throw new PSNotImplementedException();
/// <summary>
/// Removes a breakpoint from the debugger in the current runspace.
/// </summary>
/// <param name="breakpoint">The breakpoint to remove from the debugger. This value may not be null.</param>
/// <returns>True if the breakpoint was removed from the debugger; false otherwise.</returns>
public bool RemoveBreakpoint(Breakpoint breakpoint) =>
RemoveBreakpoint(breakpoint, runspaceId: null);
/// <summary>
/// Removes a breakpoint from the debugger.
/// </summary>
/// <param name="breakpoint">The breakpoint to remove from the debugger. This value may not be null.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>True if the breakpoint was removed from the debugger; false otherwise.</returns>
public virtual bool RemoveBreakpoint(Breakpoint breakpoint, int? runspaceId) =>
throw new PSNotImplementedException();
/// <summary>
/// Enables a breakpoint in the debugger in the current runspace.
/// </summary>
/// <param name="breakpoint">The breakpoint to enable in the debugger. This value may not be null.</param>
/// <returns>The updated breakpoint if it was found; null if the breakpoint was not found in the debugger.</returns>
public Breakpoint EnableBreakpoint(Breakpoint breakpoint) =>
EnableBreakpoint(breakpoint, runspaceId: null);
/// <summary>
/// Enables a breakpoint in the debugger.
/// </summary>
/// <param name="breakpoint">The breakpoint to enable in the debugger. This value may not be null.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>The updated breakpoint if it was found; null if the breakpoint was not found in the debugger.</returns>
public virtual Breakpoint EnableBreakpoint(Breakpoint breakpoint, int? runspaceId) =>
throw new PSNotImplementedException();
/// <summary>
/// Disables a breakpoint in the debugger in the current runspace.
/// </summary>
/// <param name="breakpoint">The breakpoint to enable in the debugger. This value may not be null.</param>
/// <returns>The updated breakpoint if it was found; null if the breakpoint was not found in the debugger.</returns>
public Breakpoint DisableBreakpoint(Breakpoint breakpoint) =>
DisableBreakpoint(breakpoint, runspaceId: null);
/// <summary>
/// Disables a breakpoint in the debugger.
/// </summary>
/// <param name="breakpoint">The breakpoint to enable in the debugger. This value may not be null.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>The updated breakpoint if it was found; null if the breakpoint was not found in the debugger.</returns>
public virtual Breakpoint DisableBreakpoint(Breakpoint breakpoint, int? runspaceId) =>
throw new PSNotImplementedException();
/// <summary>
/// Resets the command processor source information so that it is
/// updated with latest information on the next debug stop.
/// </summary>
public virtual void ResetCommandProcessorSource()
{
throw new PSNotImplementedException();
}
/// <summary>
/// Sets debugger stepping mode.
/// </summary>
/// <param name="enabled">True if stepping is to be enabled.</param>
public virtual void SetDebuggerStepMode(bool enabled)
{
throw new PSNotImplementedException();
}
#endregion
#region Internal Methods
/// <summary>
/// Breaks into the debugger.
/// </summary>
/// <param name="triggerObject">The object that triggered the breakpoint, if there is one.</param>
internal virtual void Break(object triggerObject = null)
{
throw new PSNotImplementedException();
}
/// <summary>
/// Returns script position message of current execution stack item.
/// This is used for WDAC audit mode logging for script information enhancement.
/// </summary>
/// <returns>Script position message string.</returns>
internal virtual string GetCurrentScriptPosition()
{
throw new PSNotImplementedException();
}
/// <summary>
/// Passes the debugger command to the internal script debugger command processor. This
/// is used internally to handle debugger commands such as list, help, etc.
/// </summary>
/// <param name="command">Command string.</param>
/// <param name="output">Output collection.</param>
/// <returns>DebuggerCommand containing information on whether and how the command was processed.</returns>
internal virtual DebuggerCommand InternalProcessCommand(string command, IList<PSObject> output)
{
throw new PSNotImplementedException();
}
/// <summary>
/// Creates a source list based on root script debugger source information if available, with
/// the current source line highlighted. This is used internally for nested runspace debugging
/// where the runspace command is run in context of a parent script.
/// </summary>
/// <param name="lineNum">Current source line.</param>
/// <param name="output">Output collection.</param>
/// <returns>True if source listed successfully.</returns>
internal virtual bool InternalProcessListCommand(int lineNum, IList<PSObject> output)
{
throw new PSNotImplementedException();
}
/// <summary>
/// Sets up debugger to debug provided job or its child jobs.
/// </summary>
/// <param name="job">
/// Job object that is either a debuggable job or a container of
/// debuggable child jobs.
/// </param>
/// <param name="breakAll">
/// If true, the debugger automatically invokes a break all when it
/// attaches to the job.
/// </param>
internal virtual void DebugJob(Job job, bool breakAll) =>
throw new PSNotImplementedException();
/// <summary>
/// Removes job from debugger job list and pops the its
/// debugger from the active debugger stack.
/// </summary>
/// <param name="job">Job.</param>
internal virtual void StopDebugJob(Job job)
{
throw new PSNotImplementedException();
}
/// <summary>
/// GetActiveDebuggerCallStack.
/// </summary>
/// <returns>Array of stack frame objects of active debugger.</returns>
internal virtual CallStackFrame[] GetActiveDebuggerCallStack()
{
throw new PSNotImplementedException();
}
/// <summary>
/// Method to add the provided runspace information to the debugger
/// for monitoring of debugger events. This is used to implement nested
/// debugging of runspaces.
/// </summary>
/// <param name="args">PSEntityCreatedRunspaceEventArgs.</param>
internal virtual void StartMonitoringRunspace(PSMonitorRunspaceInfo args)
{
throw new PSNotImplementedException();
}
/// <summary>
/// Method to end the monitoring of a runspace for debugging events.
/// </summary>
/// <param name="args">PSEntityCreatedRunspaceEventArgs.</param>
internal virtual void EndMonitoringRunspace(PSMonitorRunspaceInfo args)
{
throw new PSNotImplementedException();
}
/// <summary>
/// If a debug stop event is currently pending then this method will release
/// the event to continue processing.
/// </summary>
internal virtual void ReleaseSavedDebugStop()
{
throw new PSNotImplementedException();
}
/// <summary>
/// Sets up debugger to debug provided Runspace in a nested debug session.
/// </summary>
/// <param name="runspace">
/// The runspace to debug.
/// </param>
/// <param name="breakAll">
/// If true, the debugger automatically invokes a break all when it
/// attaches to the runspace.
/// </param>
internal virtual void DebugRunspace(Runspace runspace, bool breakAll) =>
throw new PSNotImplementedException();
/// <summary>
/// Removes the provided Runspace from the nested "active" debugger state.
/// </summary>
/// <param name="runspace">Runspace.</param>
internal virtual void StopDebugRunspace(Runspace runspace)
{
throw new PSNotImplementedException();
}
/// <summary>
/// Raises the NestedDebuggingCancelledEvent event.
/// </summary>
internal void RaiseNestedDebuggingCancelEvent()
{
// Raise event on worker thread.
Threading.ThreadPool.QueueUserWorkItem(
(state) =>
{
try
{
NestedDebuggingCancelledEvent.SafeInvoke<EventArgs>(this, null);
}
catch (Exception)
{
}
});
}
#endregion
#region Runspace Debug Processing Methods
/// <summary>
/// Adds the provided Runspace object to the runspace debugger processing queue.
/// The queue will then raise the StartRunspaceDebugProcessing events for each runspace to allow
/// a host script debugger implementation to provide an active debugging session.
/// </summary>
/// <param name="runspace">Runspace to debug.</param>
internal virtual void QueueRunspaceForDebug(Runspace runspace)
{
throw new PSNotImplementedException();
}
/// <summary>
/// Causes the CancelRunspaceDebugProcessing event to be raised which notifies subscribers that current debugging
/// sessions should be cancelled.
/// </summary>
public virtual void CancelDebuggerProcessing()
{
throw new PSNotImplementedException();
}
#endregion
#region Members
internal const string CannotProcessCommandNotStopped = "Debugger:CannotProcessCommandNotStopped";
internal const string CannotEnableDebuggerSteppingInvalidMode = "Debugger:CannotEnableDebuggerSteppingInvalidMode";
private static readonly Guid s_instanceId = new Guid();
#endregion
}
#endregion
#region ScriptDebugger class
/// <summary>
/// Holds the debugging information for a Monad Shell session.
/// </summary>
internal sealed class ScriptDebugger : Debugger, IDisposable
{
#region constructors
internal ScriptDebugger(ExecutionContext context)
{
_context = context;
_inBreakpoint = false;
_idToBreakpoint = new ConcurrentDictionary<int, Breakpoint>();
// The string key is function context file path. The int key is sequencePoint index.
_pendingBreakpoints = new ConcurrentDictionary<string, ConcurrentDictionary<int, LineBreakpoint>>(StringComparer.OrdinalIgnoreCase);
_boundBreakpoints = new ConcurrentDictionary<string, Tuple<WeakReference, ConcurrentDictionary<int, LineBreakpoint>>>(StringComparer.OrdinalIgnoreCase);
_commandBreakpoints = new ConcurrentDictionary<int, CommandBreakpoint>();
_variableBreakpoints = new ConcurrentDictionary<string, ConcurrentDictionary<int, VariableBreakpoint>>(StringComparer.OrdinalIgnoreCase);
_steppingMode = SteppingMode.None;
_callStack = new CallStackList { _callStackList = new List<CallStackInfo>() };
_runningJobs = new Dictionary<Guid, PSJobStartEventArgs>();
_activeDebuggers = new ConcurrentStack<Debugger>();
_debuggerStopEventArgs = new ConcurrentStack<DebuggerStopEventArgs>();
_syncObject = new object();
_syncActiveDebuggerStopObject = new object();
_runningRunspaces = new Dictionary<Guid, PSMonitorRunspaceInfo>();
}
/// <summary>
/// Static constructor.
/// </summary>
static ScriptDebugger()
{
s_processDebugPromptMatch = StringUtil.Format(@"""[{0}:", DebuggerStrings.NestedRunspaceDebuggerPromptProcessName);
}
#endregion constructors
#region properties
/// <summary>
/// True when debugger is stopped at a breakpoint.
/// </summary>
public override bool InBreakpoint
{
get
{
if (_inBreakpoint)
{
return _inBreakpoint;
}
Debugger activeDebugger;
if (_activeDebuggers.TryPeek(out activeDebugger))
{
return activeDebugger.InBreakpoint;
}
return false;
}
}
internal override bool IsPushed
{
get { return (!_activeDebuggers.IsEmpty); }
}
/// <summary>
/// Returns true if the debugger is preserving a DebuggerStopEvent
/// event. Use ReleaseSavedDebugStop() to allow event to process.
/// </summary>
internal override bool IsPendingDebugStopEvent
{
get
{
return ((_preserveDebugStopEvent != null) && !_preserveDebugStopEvent.IsSet);
}
}
/// <summary>
/// Returns true if debugger has been set to stepInto mode.
/// </summary>
internal override bool IsDebuggerSteppingEnabled
{
get
{
return ((_context._debuggingMode == (int)InternalDebugMode.Enabled) &&
(_currentDebuggerAction == DebuggerResumeAction.StepInto) &&
(_steppingMode != SteppingMode.None));
}
}
private bool? _isLocalSession;
private bool IsLocalSession
{
get
{
// Remote debug sessions always have a ServerRemoteHost. Otherwise it is a local session.
_isLocalSession ??= !((_context.InternalHost.ExternalHost != null) &&
(_context.InternalHost.ExternalHost is System.Management.Automation.Remoting.ServerRemoteHost));
return _isLocalSession.Value;
}
}
/// <summary>
/// Gets or sets the object that triggered the current breakpoint.
/// </summary>
private object TriggerObject { get; set; }
#endregion properties
#region internal methods
#region Reset Debugger
/// <summary>
/// Resets debugger to initial state.
/// </summary>
internal void ResetDebugger()
{
SetDebugMode(DebugModes.None);
SetInternalDebugMode(InternalDebugMode.Disabled);
_steppingMode = SteppingMode.None;
_inBreakpoint = false;
_idToBreakpoint.Clear();
_pendingBreakpoints.Clear();
_boundBreakpoints.Clear();
_commandBreakpoints.Clear();
_variableBreakpoints.Clear();
s_emptyBreakpointList.Clear();
_callStack.Clear();
_overOrOutFrame = null;
_commandProcessor = new DebuggerCommandProcessor();
_currentInvocationInfo = null;
_inBreakpoint = false;
_psDebuggerCommand = null;
_savedIgnoreScriptDebug = false;
_isLocalSession = null;
_nestedDebuggerStop = false;
_debuggerStopEventArgs.Clear();
_lastActiveDebuggerAction = DebuggerResumeAction.Continue;
_currentDebuggerAction = DebuggerResumeAction.Continue;
_previousDebuggerAction = DebuggerResumeAction.Continue;
_nestedRunningFrame = null;
_nestedDebuggerStop = false;
_processingOutputCount = 0;
_preserveUnhandledDebugStopEvent = false;
ClearRunningJobList();
ClearRunningRunspaceList();
_activeDebuggers.Clear();
ReleaseSavedDebugStop();
SetDebugMode(DebugModes.Default);
}
#endregion
#region Call stack management
// Called from generated code on entering the script function, called once for each dynamicparam, begin, or end
// block, and once for each object written to the pipeline. Also called when entering a trap.
internal void EnterScriptFunction(FunctionContext functionContext)
{
Diagnostics.Assert(functionContext._executionContext == _context, "Wrong debugger is being used.");
var invocationInfo = (InvocationInfo)functionContext._localsTuple.GetAutomaticVariable(AutomaticVariable.MyInvocation);
var newCallStackInfo = new CallStackInfo
{
InvocationInfo = invocationInfo,
File = functionContext._file,
DebuggerStepThrough = functionContext._debuggerStepThrough,
FunctionContext = functionContext,
IsFrameHidden = functionContext._debuggerHidden,
};
_callStack.Add(newCallStackInfo);
if (_context._debuggingMode > 0)
{
var scriptCommandInfo = invocationInfo.MyCommand as ExternalScriptInfo;
if (scriptCommandInfo != null)
{
RegisterScriptFile(scriptCommandInfo);
}
bool checkLineBp = CheckCommand(invocationInfo);
SetupBreakpoints(functionContext);
if (functionContext._debuggerStepThrough && _overOrOutFrame == null && _steppingMode == SteppingMode.StepIn)
{
// Treat like step out, but only if we're not already stepping out
ResumeExecution(DebuggerResumeAction.StepOut);
}
if (checkLineBp)
{
OnSequencePointHit(functionContext);
}
if (_context.PSDebugTraceLevel > 1 && !functionContext._debuggerStepThrough && !functionContext._debuggerHidden)
{
TraceScriptFunctionEntry(functionContext);
}
}
}
private void SetupBreakpoints(FunctionContext functionContext)
{
var scriptDebugData = _mapScriptToBreakpoints.GetValue(functionContext._sequencePoints,
_ => Tuple.Create(new Dictionary<int, List<LineBreakpoint>>(),
new BitArray(functionContext._sequencePoints.Length)));
functionContext._boundBreakpoints = scriptDebugData.Item1;
functionContext._breakPoints = scriptDebugData.Item2;
SetPendingBreakpoints(functionContext);
}
// Called after exiting the script function, called once for each dynamicparam, begin, or end
// block, and once for each object written to the pipeline. Also called when leaving a trap.
internal void ExitScriptFunction()
{
// If it's stepping over to exit the current frame, we need to clear the _overOrOutFrame,
// so that we will stop at the next statement in the outer frame.
if (_callStack.Last() == _overOrOutFrame)
{
_overOrOutFrame = null;
}
_callStack.RemoveAt(_callStack.Count - 1);
// Don't disable step mode if the user enabled runspace debugging (UnhandledBreakpointMode == Wait)
if ((_callStack.Count == 0) && (UnhandledBreakpointMode != UnhandledBreakpointProcessingMode.Wait))
{
// If we've popped the last entry, don't step into anything else (like prompt, suggestions, etc.)
_steppingMode = SteppingMode.None;
_currentDebuggerAction = DebuggerResumeAction.Continue;
_previousDebuggerAction = DebuggerResumeAction.Continue;
}
}
internal void RegisterScriptFile(ExternalScriptInfo scriptCommandInfo)
{
RegisterScriptFile(scriptCommandInfo.Path, scriptCommandInfo.ScriptContents);
}
internal void RegisterScriptFile(string path, string scriptContents)
{
Tuple<WeakReference, ConcurrentDictionary<int, LineBreakpoint>> boundBreakpoints;
if (!_boundBreakpoints.TryGetValue(path, out boundBreakpoints))
{
_boundBreakpoints[path] = Tuple.Create(new WeakReference(scriptContents), new ConcurrentDictionary<int, LineBreakpoint>());
}
else
{
// If script contents have changed, or if the file got collected, we must rebind the breakpoints.
string oldScriptContents;
boundBreakpoints.Item1.TryGetTarget(out oldScriptContents);
if (oldScriptContents == null || !oldScriptContents.Equals(scriptContents, StringComparison.Ordinal))
{
UnbindBoundBreakpoints(boundBreakpoints.Item2.Values.ToList());
_boundBreakpoints[path] = Tuple.Create(new WeakReference(scriptContents), new ConcurrentDictionary<int, LineBreakpoint>());
}
}
}
#endregion Call stack management
#region setting breakpoints
internal void AddBreakpointCommon(Breakpoint breakpoint)
{
if (_context._debuggingMode == 0)
{
SetInternalDebugMode(InternalDebugMode.Enabled);
}
_idToBreakpoint[breakpoint.Id] = breakpoint;
OnBreakpointUpdated(new BreakpointUpdatedEventArgs(breakpoint, BreakpointUpdateType.Set, _idToBreakpoint.Count));
}
private CommandBreakpoint AddCommandBreakpoint(CommandBreakpoint breakpoint)
{
AddBreakpointCommon(breakpoint);
_commandBreakpoints[breakpoint.Id] = breakpoint;
return breakpoint;
}
private LineBreakpoint AddLineBreakpoint(LineBreakpoint breakpoint)
{
AddBreakpointCommon(breakpoint);
AddPendingBreakpoint(breakpoint);
return breakpoint;
}
private void AddPendingBreakpoint(LineBreakpoint breakpoint)
{
_pendingBreakpoints.AddOrUpdate(
breakpoint.Script,
new ConcurrentDictionary<int, LineBreakpoint> { [breakpoint.Id] = breakpoint },
(_, dictionary) => { dictionary.TryAdd(breakpoint.Id, breakpoint); return dictionary; });
}
private void AddNewBreakpoint(Breakpoint breakpoint)
{
LineBreakpoint lineBreakpoint = breakpoint as LineBreakpoint;
if (lineBreakpoint != null)
{
AddLineBreakpoint(lineBreakpoint);
return;
}
CommandBreakpoint cmdBreakpoint = breakpoint as CommandBreakpoint;
if (cmdBreakpoint != null)
{
AddCommandBreakpoint(cmdBreakpoint);
return;
}
VariableBreakpoint varBreakpoint = breakpoint as VariableBreakpoint;
if (varBreakpoint != null)
{
AddVariableBreakpoint(varBreakpoint);
}
}
internal VariableBreakpoint AddVariableBreakpoint(VariableBreakpoint breakpoint)
{
AddBreakpointCommon(breakpoint);
if (!_variableBreakpoints.TryGetValue(breakpoint.Variable, out ConcurrentDictionary<int, VariableBreakpoint> breakpoints))
{
breakpoints = new ConcurrentDictionary<int, VariableBreakpoint>();
_variableBreakpoints[breakpoint.Variable] = breakpoints;
}
breakpoints[breakpoint.Id] = breakpoint;
return breakpoint;
}
private void UpdateBreakpoints(FunctionContext functionContext)
{
if (functionContext._breakPoints == null)
{
// This should be rare - setting a breakpoint inside a script, but debugger hadn't started.
SetupBreakpoints(functionContext);
}
else
{
// Check pending breakpoints to see if any apply to this script.
if (string.IsNullOrEmpty(functionContext._file))
{
return;
}
if (_pendingBreakpoints.TryGetValue(functionContext._file, out var dictionary) && !dictionary.IsEmpty)
{
SetPendingBreakpoints(functionContext);
}
}
}
/// <summary>
/// Raises the BreakpointUpdated event.
/// </summary>
/// <param name="e"></param>
private void OnBreakpointUpdated(BreakpointUpdatedEventArgs e)
{
RaiseBreakpointUpdatedEvent(e);
}
#endregion setting breakpoints
#region removing breakpoints
internal bool RemoveVariableBreakpoint(VariableBreakpoint breakpoint) =>
_variableBreakpoints[breakpoint.Variable].Remove(breakpoint.Id, out _);
internal bool RemoveCommandBreakpoint(CommandBreakpoint breakpoint) =>
_commandBreakpoints.Remove(breakpoint.Id, out _);
internal bool RemoveLineBreakpoint(LineBreakpoint breakpoint)
{
bool removed = false;
if (_pendingBreakpoints.TryGetValue(breakpoint.Script, out var dictionary))
{
removed = dictionary.Remove(breakpoint.Id, out _);
}
Tuple<WeakReference, ConcurrentDictionary<int, LineBreakpoint>> value;
if (_boundBreakpoints.TryGetValue(breakpoint.Script, out value))
{
removed = value.Item2.Remove(breakpoint.Id, out _);
}
return removed;
}
#endregion removing breakpoints
#region finding breakpoints
// The bit array is used to detect if a breakpoint is set or not for a given scriptblock. This bit array
// is checked when hitting sequence points. Enabling/disabling a line breakpoint is as simple as flipping
// the bit.
private readonly ConditionalWeakTable<IScriptExtent[], Tuple<Dictionary<int, List<LineBreakpoint>>, BitArray>> _mapScriptToBreakpoints =
new ConditionalWeakTable<IScriptExtent[], Tuple<Dictionary<int, List<LineBreakpoint>>, BitArray>>();
/// <summary>
/// Checks for command breakpoints.
/// </summary>
internal bool CheckCommand(InvocationInfo invocationInfo)
{
var functionContext = _callStack.LastFunctionContext();
if (functionContext != null && functionContext._debuggerHidden)
{
// Never stop in DebuggerHidden scripts, don't even call the actions on breakpoints.
return false;
}
List<Breakpoint> breakpoints =
_commandBreakpoints.Values.Where(bp => bp.Enabled && bp.Trigger(invocationInfo)).ToList<Breakpoint>();
bool checkLineBp = true;
if (breakpoints.Count > 0)
{
breakpoints = TriggerBreakpoints(breakpoints);
if (breakpoints.Count > 0)
{
var breakInvocationInfo =
functionContext != null
? new InvocationInfo(invocationInfo.MyCommand, functionContext.CurrentPosition)
: null;
OnDebuggerStop(breakInvocationInfo, breakpoints);
checkLineBp = false;
}
}
return checkLineBp;
}
internal void CheckVariableRead(string variableName)
{
var breakpointsToTrigger = GetVariableBreakpointsToTrigger(variableName, read: true);
if (breakpointsToTrigger != null && breakpointsToTrigger.Count > 0)
{
TriggerVariableBreakpoints(breakpointsToTrigger);
}
}
internal void CheckVariableWrite(string variableName)
{
var breakpointsToTrigger = GetVariableBreakpointsToTrigger(variableName, read: false);
if (breakpointsToTrigger != null && breakpointsToTrigger.Count > 0)
{
TriggerVariableBreakpoints(breakpointsToTrigger);
}
}
private List<VariableBreakpoint> GetVariableBreakpointsToTrigger(string variableName, bool read)
{
Diagnostics.Assert(_context._debuggingMode == 1, "breakpoints only hit when debugging mode is 1");
var functionContext = _callStack.LastFunctionContext();
if (functionContext != null && functionContext._debuggerHidden)
{
// Never stop in DebuggerHidden scripts, don't even call the action on any breakpoint.
return null;
}
try
{
SetInternalDebugMode(InternalDebugMode.Disabled);
ConcurrentDictionary<int, VariableBreakpoint> breakpoints;
if (!_variableBreakpoints.TryGetValue(variableName, out breakpoints))
{
// $PSItem is an alias for $_. We don't use PSItem internally, but a user might
// have set a bp on $PSItem, so look for that if appropriate.
if (SpecialVariables.IsUnderbar(variableName))
{
_variableBreakpoints.TryGetValue(SpecialVariables.PSItem, out breakpoints);
}
}
if (breakpoints == null)
return null;
var callStackInfo = _callStack.Last();
var currentScriptFile = callStackInfo?.File;
return breakpoints.Values.Where(bp => bp.Trigger(currentScriptFile, read: read)).ToList();
}
finally
{
SetInternalDebugMode(InternalDebugMode.Enabled);
}
}
internal void TriggerVariableBreakpoints(List<VariableBreakpoint> breakpoints)
{
var functionContext = _callStack.LastFunctionContext();
var invocationInfo = functionContext != null ? new InvocationInfo(null, functionContext.CurrentPosition, _context) : null;
OnDebuggerStop(invocationInfo, breakpoints.ToList<Breakpoint>());
}
// Return the line breakpoints bound in a specific script block (used when a sequence point
// is hit, to find which breakpoints are set on that sequence point.)
internal Dictionary<int, List<LineBreakpoint>> GetBoundBreakpoints(IScriptExtent[] sequencePoints)
{
Tuple<Dictionary<int, List<LineBreakpoint>>, BitArray> tuple;
if (_mapScriptToBreakpoints.TryGetValue(sequencePoints, out tuple))
{
return tuple.Item1;
}
return null;
}
#endregion finding breakpoints
#region triggering breakpoints
private List<Breakpoint> TriggerBreakpoints(List<Breakpoint> breakpoints)
{
Diagnostics.Assert(_context._debuggingMode == 1, "breakpoints only hit when debugging mode == 1");
List<Breakpoint> breaks = new List<Breakpoint>();
try
{
SetInternalDebugMode(InternalDebugMode.InScriptStop);
foreach (Breakpoint breakpoint in breakpoints)
{
if (breakpoint.Enabled)
{
try
{
// Ensure that code being processed during breakpoint triggers
// act like they are broken into the debugger.
_inBreakpoint = true;
if (breakpoint.Trigger() == Breakpoint.BreakpointAction.Break)
{
breaks.Add(breakpoint);
}
}
finally
{
_inBreakpoint = false;
}
}
}
}
finally
{
SetInternalDebugMode(InternalDebugMode.Enabled);
}
return breaks;
}
internal void OnSequencePointHit(FunctionContext functionContext)
{
// TraceLine uses ColumnNumber and expects it to be 1 based. For
// extents added by the engine and not user code the value can be
// set to 0 causing an exception. This skips those types of extents
// as tracing them wouldn't be useful for the end user anyway.
if (_context.ShouldTraceStatement &&
!_callStack.Last().IsFrameHidden &&
!functionContext._debuggerStepThrough &&
functionContext.CurrentPosition is not EmptyScriptExtent &&
(functionContext.CurrentPosition is InternalScriptExtent ||
functionContext.CurrentPosition.StartColumnNumber > 0))
{
TraceLine(functionContext.CurrentPosition);
}
// If a nested debugger received a stop debug command then all debugging
// should stop.
if (_nestedDebuggerStop)
{
_nestedDebuggerStop = false;
_currentDebuggerAction = DebuggerResumeAction.Continue;
ResumeExecution(DebuggerResumeAction.Stop);
}
UpdateBreakpoints(functionContext);
if (_steppingMode == SteppingMode.StepIn &&
(_overOrOutFrame == null || _callStack.Last() == _overOrOutFrame))
{
if (!_callStack.Last().IsFrameHidden)
{
_overOrOutFrame = null;
StopOnSequencePoint(functionContext, s_emptyBreakpointList);
}
else if (_overOrOutFrame == null)
{
// Treat like step out, but only if we're not already stepping out
ResumeExecution(DebuggerResumeAction.StepOut);
}
}
else
{
if (functionContext._breakPoints[functionContext._currentSequencePointIndex])
{
if (functionContext._boundBreakpoints.TryGetValue(functionContext._currentSequencePointIndex, out var sequencePointBreakpoints))
{
var enabledBreakpoints = new List<Breakpoint>();
foreach (Breakpoint breakpoint in sequencePointBreakpoints)
{
if (breakpoint.Enabled)
{
enabledBreakpoints.Add(breakpoint);
}
}
if (enabledBreakpoints.Count > 0)
{
enabledBreakpoints = TriggerBreakpoints(enabledBreakpoints);
if (enabledBreakpoints.Count > 0)
{
StopOnSequencePoint(functionContext, enabledBreakpoints);
}
}
}
}
}
}
#endregion triggering breakpoints
#endregion internal methods
#region private members
[DebuggerDisplay("{FunctionContext.CurrentPosition}")]
private sealed class CallStackInfo
{
internal InvocationInfo InvocationInfo { get; set; }
internal string File { get; set; }
internal bool DebuggerStepThrough { get; set; }
internal FunctionContext FunctionContext { get; set; }
/// <summary>
/// The frame is hidden due to the <see cref="DebuggerHiddenAttribute"/> attribute.
/// No breakpoints will be set and no stepping in/through.
/// </summary>
internal bool IsFrameHidden { get; set; }
internal bool TopFrameAtBreakpoint { get; set; }
}
private struct CallStackList
{
internal List<CallStackInfo> _callStackList;
internal void Add(CallStackInfo item)
{
lock (_callStackList)
{
_callStackList.Add(item);
}
}
internal void RemoveAt(int index)
{
lock (_callStackList)
{
_callStackList.RemoveAt(index);
}
}
internal CallStackInfo this[int index]
{
get
{
lock (_callStackList)
{
return ((index > -1) && (index < _callStackList.Count)) ? _callStackList[index] : null;
}
}
}
internal CallStackInfo Last()
{
lock (_callStackList)
{
return (_callStackList.Count > 0) ? _callStackList[_callStackList.Count - 1] : null;
}
}
internal FunctionContext LastFunctionContext()
{
var last = Last();
return last?.FunctionContext;
}
internal bool Any()
{
lock (_callStackList)
{
return _callStackList.Count > 0;
}
}
internal int Count
{
get
{
lock (_callStackList)
{
return _callStackList.Count;
}
}
}
internal CallStackInfo[] ToArray()
{
lock (_callStackList)
{
return _callStackList.ToArray();
}
}
internal void Clear()
{
lock (_callStackList)
{
_callStackList.Clear();
}
}
}
private readonly ExecutionContext _context;
private readonly ConcurrentDictionary<string, ConcurrentDictionary<int, LineBreakpoint>> _pendingBreakpoints;
private readonly ConcurrentDictionary<string, Tuple<WeakReference, ConcurrentDictionary<int, LineBreakpoint>>> _boundBreakpoints;
private readonly ConcurrentDictionary<int, CommandBreakpoint> _commandBreakpoints;
private readonly ConcurrentDictionary<string, ConcurrentDictionary<int, VariableBreakpoint>> _variableBreakpoints;
private readonly ConcurrentDictionary<int, Breakpoint> _idToBreakpoint;
private SteppingMode _steppingMode;
private CallStackInfo _overOrOutFrame;
private CallStackList _callStack;
private static readonly List<Breakpoint> s_emptyBreakpointList = new List<Breakpoint>();
private DebuggerCommandProcessor _commandProcessor = new DebuggerCommandProcessor();
private InvocationInfo _currentInvocationInfo;
private bool _inBreakpoint;
private PowerShell _psDebuggerCommand;
// Job debugger integration.
private bool _nestedDebuggerStop;
private readonly Dictionary<Guid, PSJobStartEventArgs> _runningJobs;
private readonly ConcurrentStack<Debugger> _activeDebuggers;
private readonly ConcurrentStack<DebuggerStopEventArgs> _debuggerStopEventArgs;
private DebuggerResumeAction _lastActiveDebuggerAction;
private DebuggerResumeAction _currentDebuggerAction;
private DebuggerResumeAction _previousDebuggerAction;
private CallStackInfo _nestedRunningFrame;
private readonly object _syncObject;
private readonly object _syncActiveDebuggerStopObject;
private int _processingOutputCount;
private ManualResetEventSlim _processingOutputCompleteEvent = new ManualResetEventSlim(true);
// Runspace debugger integration.
private readonly Dictionary<Guid, PSMonitorRunspaceInfo> _runningRunspaces;
private const int _jobCallStackOffset = 2;
private const int _runspaceCallStackOffset = 1;
private bool _preserveUnhandledDebugStopEvent;
private ManualResetEventSlim _preserveDebugStopEvent;
// Process runspace debugger
private readonly Lazy<ConcurrentQueue<StartRunspaceDebugProcessingEventArgs>> _runspaceDebugQueue = new Lazy<ConcurrentQueue<StartRunspaceDebugProcessingEventArgs>>();
private volatile int _processingRunspaceDebugQueue;
private ManualResetEventSlim _runspaceDebugCompleteEvent;
// System is locked down when true. Used to disable debugger on lock down.
private bool? _isSystemLockedDown;
private static readonly string s_processDebugPromptMatch;
#endregion private members
#region private methods
/// <summary>
/// Raises the DebuggerStop event.
/// </summary>
private void OnDebuggerStop(InvocationInfo invocationInfo, List<Breakpoint> breakpoints)
{
Diagnostics.Assert(breakpoints != null, "The list of breakpoints should not be null");
LocalRunspace localRunspace = _context.CurrentRunspace as LocalRunspace;
Diagnostics.Assert(localRunspace != null, "Debugging is only supported on local runspaces");
if (localRunspace.PulsePipeline != null && localRunspace.PulsePipeline == localRunspace.GetCurrentlyRunningPipeline())
{
_context.EngineHostInterface.UI.WriteWarningLine(
breakpoints.Count > 0
? string.Format(CultureInfo.CurrentCulture, DebuggerStrings.WarningBreakpointWillNotBeHit,
breakpoints[0])
: new InvalidOperationException().Message);
return;
}
_currentInvocationInfo = invocationInfo;
_steppingMode = SteppingMode.None;
// Optionally wait for a debug stop event subscriber if requested.
_inBreakpoint = true;
if (!WaitForDebugStopSubscriber())
{
// No subscriber. Ignore this debug stop event.
_inBreakpoint = false;
return;
}
bool oldQuestionMarkVariableValue = _context.QuestionMarkVariableValue;
_context.SetVariable(SpecialVariables.PSDebugContextVarPath, new PSDebugContext(invocationInfo, breakpoints, TriggerObject));
FunctionInfo defaultPromptInfo = null;
string originalPromptString = null;
bool hadDefaultPrompt = false;
try
{
Collection<PSObject> items = _context.SessionState.InvokeProvider.Item.Get("function:\\prompt");
if ((items != null) && (items.Count > 0))
{
defaultPromptInfo = items[0].BaseObject as FunctionInfo;
originalPromptString = defaultPromptInfo.Definition as string;
if (originalPromptString.Equals(InitialSessionState.DefaultPromptFunctionText, StringComparison.OrdinalIgnoreCase) ||
originalPromptString.Trim().StartsWith(s_processDebugPromptMatch, StringComparison.OrdinalIgnoreCase))
{
hadDefaultPrompt = true;
}
}
}
catch (ItemNotFoundException)
{
// Ignore, it means they don't have the default prompt
}
// Change the context language mode before updating the prompt script.
// This way the new prompt scriptblock will pick up the current context language mode.
PSLanguageMode? originalLanguageMode = null;
if (_context.UseFullLanguageModeInDebugger &&
(_context.LanguageMode != PSLanguageMode.FullLanguage))
{
originalLanguageMode = _context.LanguageMode;
_context.LanguageMode = PSLanguageMode.FullLanguage;
}
// Update the prompt to the debug prompt
if (hadDefaultPrompt)
{
int index = originalPromptString.IndexOf('"', StringComparison.OrdinalIgnoreCase);
if (index > -1)
{
// Fix up prompt.
++index;
string debugPrompt = string.Concat("\"[DBG]: ", originalPromptString.AsSpan(index, originalPromptString.Length - index));
defaultPromptInfo.Update(
ScriptBlock.Create(debugPrompt), true, ScopedItemOptions.Unspecified);
}
else
{
hadDefaultPrompt = false;
}
}
RunspaceAvailability previousAvailability = _context.CurrentRunspace.RunspaceAvailability;
_context.CurrentRunspace.UpdateRunspaceAvailability(
_context.CurrentRunspace.GetCurrentlyRunningPipeline() != null
? RunspaceAvailability.AvailableForNestedCommand
: RunspaceAvailability.Available,
true);
Diagnostics.Assert(_context._debuggingMode == 1, "Should only be stopping when debugger is on.");
try
{
SetInternalDebugMode(InternalDebugMode.InScriptStop);
if (_callStack.Any())
{
// Get-PSCallStack shouldn't report any frames above this frame, so mark it. One alternative
// to marking the frame would be to not push new frames while debugging, but that limits our
// ability to give a full callstack if there are errors during eval.
_callStack.Last().TopFrameAtBreakpoint = true;
}
// Reset list lines.
_commandProcessor.Reset();
// Save a copy of the stop arguments.
DebuggerStopEventArgs copyArgs = new DebuggerStopEventArgs(invocationInfo, breakpoints);
_debuggerStopEventArgs.Push(copyArgs);
// Blocking call to raise debugger stop event.
DebuggerStopEventArgs e = new DebuggerStopEventArgs(invocationInfo, breakpoints);
RaiseDebuggerStopEvent(e);
ResumeExecution(e.ResumeAction);
}
finally
{
SetInternalDebugMode(InternalDebugMode.Enabled);
if (_callStack.Any())
{
_callStack.Last().TopFrameAtBreakpoint = false;
}
_context.CurrentRunspace.UpdateRunspaceAvailability(previousAvailability, true);
if (originalLanguageMode.HasValue)
{
_context.LanguageMode = originalLanguageMode.Value;
}
_context.EngineSessionState.RemoveVariable(SpecialVariables.PSDebugContext);
if (hadDefaultPrompt)
{
// Restore the prompt if they had our default
defaultPromptInfo.Update(
ScriptBlock.Create(originalPromptString), true, ScopedItemOptions.Unspecified);
}
DebuggerStopEventArgs oldArgs;
_debuggerStopEventArgs.TryPop(out oldArgs);
_context.QuestionMarkVariableValue = oldQuestionMarkVariableValue;
_inBreakpoint = false;
}
}
/// <summary>
/// Resumes execution after a breakpoint/step event has been handled.
/// </summary>
private void ResumeExecution(DebuggerResumeAction action)
{
_previousDebuggerAction = _currentDebuggerAction;
_currentDebuggerAction = action;
switch (action)
{
case DebuggerResumeAction.StepInto:
_steppingMode = SteppingMode.StepIn;
_overOrOutFrame = null;
break;
case DebuggerResumeAction.StepOut:
if (_callStack.Count > 1)
{
// When we pop to the parent frame, we'll clear _overOrOutFrame (so OnSequencePointHit
// will stop) and continue with a step.
_steppingMode = SteppingMode.StepIn;
_overOrOutFrame = _callStack[_callStack.Count - 2];
}
else
{
// Stepping out of the top frame is just like continue (allow hitting
// breakpoints in the current frame, but otherwise just go.)
goto case DebuggerResumeAction.Continue;
}
break;
case DebuggerResumeAction.StepOver:
_steppingMode = SteppingMode.StepIn;
_overOrOutFrame = _callStack.Last();
break;
case DebuggerResumeAction.Continue:
// nothing to do, just continue
_steppingMode = SteppingMode.None;
_overOrOutFrame = null;
break;
case DebuggerResumeAction.Stop:
_steppingMode = SteppingMode.None;
_overOrOutFrame = null;
throw new TerminateException();
default:
Debug.Fail("Received an unknown action: " + action);
break;
}
}
/// <summary>
/// Blocking call that blocks until a release occurs via ReleaseSavedDebugStop().
/// </summary>
/// <returns>True if there is a DebuggerStop event subscriber.</returns>
private bool WaitForDebugStopSubscriber()
{
if (!IsDebuggerStopEventSubscribed())
{
if (_preserveUnhandledDebugStopEvent)
{
// Lazily create the event object.
_preserveDebugStopEvent ??= new ManualResetEventSlim(true);
// Set the event handle to non-signaled.
if (!_preserveDebugStopEvent.IsSet)
{
Diagnostics.Assert(false, "The _preserveDebugStop event handle should always be in the signaled state at this point.");
return false;
}
_preserveDebugStopEvent.Reset();
// Wait indefinitely for a signal event.
_preserveDebugStopEvent.Wait();
return IsDebuggerStopEventSubscribed();
}
return false;
}
return true;
}
private enum SteppingMode
{
StepIn,
None
}
// When a script file changes, we need to rebind all breakpoints in that script.
private void UnbindBoundBreakpoints(List<LineBreakpoint> boundBreakpoints)
{
foreach (var breakpoint in boundBreakpoints)
{
// Also remove unbound breakpoints from the script to breakpoint map.
Tuple<Dictionary<int, List<LineBreakpoint>>, BitArray> lineBreakTuple;
if (_mapScriptToBreakpoints.TryGetValue(breakpoint.SequencePoints, out lineBreakTuple))
{
if (lineBreakTuple.Item1.TryGetValue(breakpoint.SequencePointIndex, out var lineBreakList))
{
lineBreakList.Remove(breakpoint);
}
}
breakpoint.SequencePoints = null;
breakpoint.SequencePointIndex = -1;
breakpoint.BreakpointBitArray = null;
AddPendingBreakpoint(breakpoint);
}
boundBreakpoints.Clear();
}
private void SetPendingBreakpoints(FunctionContext functionContext)
{
var currentScriptFile = functionContext._file;
// If we're not in a file, we can't have any line breakpoints.
if (currentScriptFile == null)
return;
if (!_pendingBreakpoints.TryGetValue(currentScriptFile, out var breakpoints) || breakpoints.IsEmpty)
{
return;
}
// Normally we register a script file when the script is run or the module is imported,
// but if there weren't any breakpoints when the script was run and the script was dotted,
// we will end up here with pending breakpoints, but we won't have cached the list of
// breakpoints in the script.
RegisterScriptFile(currentScriptFile, functionContext.CurrentPosition.StartScriptPosition.GetFullScript());
Tuple<Dictionary<int, List<LineBreakpoint>>, BitArray> tuple;
if (!_mapScriptToBreakpoints.TryGetValue(functionContext._sequencePoints, out tuple))
{
Diagnostics.Assert(false, "If the script block is still alive, the entry should not be collected.");
}
Diagnostics.Assert(tuple.Item1 == functionContext._boundBreakpoints, "What's up?");
foreach ((int breakpointId, LineBreakpoint breakpoint) in breakpoints)
{
bool bound = false;
if (breakpoint.TrySetBreakpoint(currentScriptFile, functionContext))
{
if (_context._debuggingMode == 0)
{
SetInternalDebugMode(InternalDebugMode.Enabled);
}
bound = true;
if (tuple.Item1.TryGetValue(breakpoint.SequencePointIndex, out var list))
{
list.Add(breakpoint);
}
else
{
tuple.Item1.Add(breakpoint.SequencePointIndex, new List<LineBreakpoint> { breakpoint });
}
// We need to keep track of any breakpoints that are bound in each script because they may
// need to be rebound if the script changes.
var boundBreakpoints = _boundBreakpoints[currentScriptFile].Item2;
boundBreakpoints[breakpoint.Id] = breakpoint;
}
if (bound)
{
breakpoints.TryRemove(breakpointId, out _);
}
}
// Here could check if all breakpoints for the current functionContext were bound, but because there is no atomic
// api for conditional removal we either need to lock, or do some trickery that has possibility of race conditions.
// Instead we keep the item in the dictionary with 0 breakpoint count. This should not be a big issue,
// because it is single entry per file that had breakpoints, so there won't be thousands of files in a session.
}
private void StopOnSequencePoint(FunctionContext functionContext, List<Breakpoint> breakpoints)
{
if (functionContext._debuggerHidden)
{
// Never stop in a DebuggerHidden scriptblock.
return;
}
if (functionContext._sequencePoints.Length == 1 &&
functionContext._scriptBlock != null &&
object.ReferenceEquals(functionContext._sequencePoints[0], functionContext._scriptBlock.Ast.Extent))
{
// If the script is empty or only defines functions, we used the script block extent as a sequence point, but that
// was only intended for error reporting, it was not meant to be hit as a breakpoint.
return;
}
var invocationInfo = new InvocationInfo(null, functionContext.CurrentPosition, _context);
OnDebuggerStop(invocationInfo, breakpoints);
}
private enum InternalDebugMode
{
InPushedStop = -2,
InScriptStop = -1,
Disabled = 0,
Enabled = 1
}
/// <summary>
/// Sets the internal Execution context debug mode given the
/// current DebugMode setting.
/// </summary>
/// <param name="mode">Internal debug mode.</param>
private void SetInternalDebugMode(InternalDebugMode mode)
{
lock (_syncObject)
{
// Disable script debugger when in system lock down mode
if (IsSystemLockedDown)
{
if (_context._debuggingMode != (int)InternalDebugMode.Disabled)
{
_context._debuggingMode = (int)InternalDebugMode.Disabled;
}
return;
}
switch (mode)
{
case InternalDebugMode.InPushedStop:
case InternalDebugMode.InScriptStop:
case InternalDebugMode.Disabled:
_context._debuggingMode = (int)mode;
break;
case InternalDebugMode.Enabled:
_context._debuggingMode = CanEnableDebugger ?
(int)InternalDebugMode.Enabled : (int)InternalDebugMode.Disabled;
break;
}
}
}
private bool CanEnableDebugger
{
get
{
// The debugger can be enabled if we are not in DebugMode.None and if we are
// not in a local session set only to RemoteScript.
return !((DebugMode == DebugModes.RemoteScript) && IsLocalSession) && (DebugMode != DebugModes.None);
}
}
private bool CanDisableDebugger
{
get
{
// The debugger can be disabled if there are no breakpoints
// left and if we are not currently stepping in the debugger.
return _idToBreakpoint.IsEmpty &&
_currentDebuggerAction != DebuggerResumeAction.StepInto &&
_currentDebuggerAction != DebuggerResumeAction.StepOver &&
_currentDebuggerAction != DebuggerResumeAction.StepOut;
}
}
private bool IsSystemLockedDown
{
get
{
if (_isSystemLockedDown == null)
{
lock (_syncObject)
{
_isSystemLockedDown ??= (System.Management.Automation.Security.SystemPolicy.GetSystemLockdownPolicy() ==
System.Management.Automation.Security.SystemEnforcementMode.Enforce);
}
}
return _isSystemLockedDown.Value;
}
}
private void CheckForBreakpointSupport()
{
if (IsSystemLockedDown)
{
// Local script debugging is not supported in locked down mode
throw new PSNotSupportedException();
}
}
#region Enable debug stepping
[Flags]
private enum EnableNestedType
{
None = 0x0,
NestedJob = 0x1,
NestedRunspace = 0x2
}
private void EnableDebuggerStepping(EnableNestedType nestedType)
{
if (DebugMode == DebugModes.None)
{
throw new PSInvalidOperationException(
DebuggerStrings.CannotEnableDebuggerSteppingInvalidMode,
null,
Debugger.CannotEnableDebuggerSteppingInvalidMode,
ErrorCategory.InvalidOperation,
null);
}
lock (_syncObject)
{
if (_context._debuggingMode == 0)
{
SetInternalDebugMode(InternalDebugMode.Enabled);
}
Debugger activeDebugger;
if (_activeDebuggers.TryPeek(out activeDebugger))
{
// Set active debugger to StepInto mode.
activeDebugger.SetDebugMode(DebugModes.LocalScript | DebugModes.RemoteScript);
activeDebugger.SetDebuggerStepMode(true);
}
else
{
// Set script debugger to StepInto mode.
ResumeExecution(DebuggerResumeAction.StepInto);
}
}
// Look for any runspaces with debuggers and set to setp mode.
if ((nestedType & EnableNestedType.NestedRunspace) == EnableNestedType.NestedRunspace)
{
SetRunspaceListToStep(true);
}
}
/// <summary>
/// Restores debugger back to non-step mode.
/// </summary>
private void DisableDebuggerStepping()
{
if (!IsDebuggerSteppingEnabled) { return; }
lock (_syncObject)
{
ResumeExecution(DebuggerResumeAction.Continue);
RestoreInternalDebugMode();
Debugger activeDebugger;
if (_activeDebuggers.TryPeek(out activeDebugger))
{
activeDebugger.SetDebuggerStepMode(false);
}
}
SetRunningJobListToStep(false);
SetRunspaceListToStep(false);
}
private void RestoreInternalDebugMode()
{
InternalDebugMode restoreMode = ((DebugMode != DebugModes.None) && (!_idToBreakpoint.IsEmpty)) ? InternalDebugMode.Enabled : InternalDebugMode.Disabled;
SetInternalDebugMode(restoreMode);
}
#endregion
#endregion
#region Debugger Overrides
/// <summary>
/// Set ScriptDebugger action.
/// </summary>
/// <param name="resumeAction">DebuggerResumeAction.</param>
public override void SetDebuggerAction(DebuggerResumeAction resumeAction)
{
throw new PSNotSupportedException(
StringUtil.Format(DebuggerStrings.CannotSetDebuggerAction));
}
/// <summary>
/// GetDebuggerStopped.
/// </summary>
/// <returns>DebuggerStopEventArgs.</returns>
public override DebuggerStopEventArgs GetDebuggerStopArgs()
{
DebuggerStopEventArgs rtnArgs;
if (_debuggerStopEventArgs.TryPeek(out rtnArgs))
{
return rtnArgs;
}
return null;
}
/// <summary>
/// ProcessCommand.
/// </summary>
/// <param name="command">PowerShell command.</param>
/// <param name="output">Output.</param>
/// <returns>DebuggerCommandResults.</returns>
public override DebuggerCommandResults ProcessCommand(PSCommand command, PSDataCollection<PSObject> output)
{
if (command == null)
{
throw new PSArgumentNullException(nameof(command));
}
if (output == null)
{
throw new PSArgumentNullException(nameof(output));
}
if (!DebuggerStopped)
{
throw new PSInvalidOperationException(
DebuggerStrings.CannotProcessDebuggerCommandNotStopped,
null,
Debugger.CannotProcessCommandNotStopped,
ErrorCategory.InvalidOperation,
null);
}
//
// Allow an active pushed debugger to process commands
//
DebuggerCommandResults results = ProcessCommandForActiveDebugger(command, output);
if (results != null)
{
return results;
}
//
// Otherwise let root script debugger handle it.
//
if (_context.CurrentRunspace is not LocalRunspace localRunspace)
{
throw new PSInvalidOperationException(
DebuggerStrings.CannotProcessDebuggerCommandNotStopped,
null,
Debugger.CannotProcessCommandNotStopped,
ErrorCategory.InvalidOperation,
null);
}
try
{
using (_psDebuggerCommand = PowerShell.Create())
{
if (localRunspace.GetCurrentlyRunningPipeline() != null)
{
_psDebuggerCommand.SetIsNested(true);
}
_psDebuggerCommand.Runspace = localRunspace;
_psDebuggerCommand.Commands = command;
foreach (var cmd in _psDebuggerCommand.Commands.Commands)
{
cmd.MergeMyResults(PipelineResultTypes.All, PipelineResultTypes.Output);
}
PSDataCollection<PSObject> internalOutput = new PSDataCollection<PSObject>();
internalOutput.DataAdded += (sender, args) =>
{
foreach (var item in internalOutput.ReadAll())
{
if (item == null) { continue; }
DebuggerCommand dbgCmd = item.BaseObject as DebuggerCommand;
if (dbgCmd != null)
{
bool executedByDebugger = (dbgCmd.ResumeAction != null || dbgCmd.ExecutedByDebugger);
results = new DebuggerCommandResults(dbgCmd.ResumeAction, executedByDebugger);
}
else
{
output.Add(item);
}
}
};
// Allow any exceptions to propagate.
_psDebuggerCommand.InvokeWithDebugger(null, internalOutput, null, false);
}
}
finally
{
_psDebuggerCommand = null;
}
return results ?? new DebuggerCommandResults(null, false);
}
/// <summary>
/// StopProcessCommand.
/// </summary>
public override void StopProcessCommand()
{
//
// If we have a pushed debugger then stop that command.
//
if (StopCommandForActiveDebugger())
{
return;
}
PowerShell ps = _psDebuggerCommand;
ps?.BeginStop(null, null);
}
/// <summary>
/// Set debug mode.
/// </summary>
/// <param name="mode"></param>
public override void SetDebugMode(DebugModes mode)
{
lock (_syncObject)
{
// Restrict local script debugger mode when in system lock down.
// DebugModes enum flags provide a combination of values. To disable local script debugging
// we have to disallow 'LocalScript' and 'Default' flags and only allow 'None' or 'RemoteScript'
// flags exclusively. This allows only no debugging 'None' or remote debugging 'RemoteScript'.
if (IsSystemLockedDown && (mode != DebugModes.None) && (mode != DebugModes.RemoteScript))
{
mode = DebugModes.RemoteScript;
}
base.SetDebugMode(mode);
if (!CanEnableDebugger)
{
SetInternalDebugMode(InternalDebugMode.Disabled);
}
else if ((!_idToBreakpoint.IsEmpty) && (_context._debuggingMode == 0))
{
// Set internal debugger to active.
SetInternalDebugMode(InternalDebugMode.Enabled);
}
}
}
/// <summary>
/// Returns current call stack.
/// </summary>
/// <returns>IEnumerable of CallStackFrame objects.</returns>
public override IEnumerable<CallStackFrame> GetCallStack()
{
CallStackInfo[] callStack = _callStack.ToArray();
if (callStack.Length > 0)
{
int startingIndex = callStack.Length - 1;
for (int i = startingIndex; i >= 0; i--)
{
if (callStack[i].TopFrameAtBreakpoint)
{
startingIndex = i;
break;
}
}
for (int i = startingIndex; i >= 0; i--)
{
var funcContext = callStack[i].FunctionContext;
yield return new CallStackFrame(funcContext, callStack[i].InvocationInfo);
}
}
}
/// <summary>
/// True when debugger is active with breakpoints.
/// </summary>
public override bool IsActive
{
get
{
int debuggerState = _context._debuggingMode;
return (debuggerState != 0);
}
}
/// <summary>
/// Resets the command processor source information so that it is
/// updated with latest information on the next debug stop.
/// </summary>
public override void ResetCommandProcessorSource()
{
_commandProcessor.Reset();
}
/// <summary>
/// Sets debugger stepping mode.
/// </summary>
/// <param name="enabled">True if stepping is to be enabled.</param>
public override void SetDebuggerStepMode(bool enabled)
{
if (enabled)
{
EnableDebuggerStepping(EnableNestedType.NestedJob | EnableNestedType.NestedRunspace);
}
else
{
DisableDebuggerStepping();
}
}
/// <summary>
/// Breaks into the debugger.
/// </summary>
/// <param name="triggerObject">The object that triggered the breakpoint, if there is one.</param>
internal override void Break(object triggerObject = null)
{
if (!IsDebugHandlerSubscribed &&
(UnhandledBreakpointMode == UnhandledBreakpointProcessingMode.Ignore))
{
// No debugger attached and runspace debugging is not enabled. Enable runspace debugging here
// so that this command is effective.
UnhandledBreakpointMode = UnhandledBreakpointProcessingMode.Wait;
}
// Store the triggerObject so that we can add it to PSDebugContext
TriggerObject = triggerObject;
// Set debugger to step mode so that a break can occur.
SetDebuggerStepMode(true);
// If the debugger is enabled and we are not in a breakpoint, trigger an immediate break in the current location
if (_context._debuggingMode > 0)
{
using (IEnumerator<CallStackFrame> enumerator = GetCallStack().GetEnumerator())
{
if (enumerator.MoveNext())
{
OnSequencePointHit(enumerator.Current.FunctionContext);
}
}
}
}
/// <summary>
/// Returns script position message of current execution stack item.
/// This is used for WDAC audit mode logging for script information enhancement.
/// </summary>
/// <returns>Script position message string.</returns>
internal override string GetCurrentScriptPosition()
{
using (IEnumerator<CallStackFrame> enumerator = GetCallStack().GetEnumerator())
{
if (enumerator.MoveNext())
{
var functionContext = enumerator.Current.FunctionContext;
if (functionContext is not null)
{
var invocationInfo = new InvocationInfo(commandInfo: null, functionContext.CurrentPosition, _context);
return $"\n{invocationInfo.PositionMessage}";
}
}
}
return null;
}
/// <summary>
/// Passes the debugger command to the internal script debugger command processor. This
/// is used internally to handle debugger commands such as list, help, etc.
/// </summary>
/// <param name="command">Command string.</param>
/// <param name="output">Output.</param>
/// <returns>DebuggerCommand containing information on whether and how the command was processed.</returns>
internal override DebuggerCommand InternalProcessCommand(string command, IList<PSObject> output)
{
if (!DebuggerStopped)
{
return new DebuggerCommand(command, null, false, false);
}
// "Exit" command should always result with "Continue" behavior for legacy compatibility.
if (command.Equals("exit", StringComparison.OrdinalIgnoreCase))
{
return new DebuggerCommand(command, DebuggerResumeAction.Continue, false, true);
}
return _commandProcessor.ProcessCommand(null, command, _currentInvocationInfo, output);
}
/// <summary>
/// Creates a source list based on root script debugger source information if available, with
/// the current source line highlighted. This is used internally for nested runspace debugging
/// where the runspace command is run in context of a parent script.
/// </summary>
/// <param name="lineNum">Current source line.</param>
/// <param name="output">Output collection.</param>
/// <returns>True if source listed successfully.</returns>
internal override bool InternalProcessListCommand(int lineNum, IList<PSObject> output)
{
if (!DebuggerStopped || (_currentInvocationInfo == null)) { return false; }
// Create an Invocation object that has full source script from script debugger plus
// line information provided from caller.
string fullScript = _currentInvocationInfo.GetFullScript();
ScriptPosition startScriptPosition = new ScriptPosition(
_currentInvocationInfo.ScriptName,
lineNum,
_currentInvocationInfo.ScriptPosition.StartScriptPosition.Offset,
_currentInvocationInfo.Line,
fullScript);
ScriptPosition endScriptPosition = new ScriptPosition(
_currentInvocationInfo.ScriptName,
lineNum,
_currentInvocationInfo.ScriptPosition.StartScriptPosition.Offset,
_currentInvocationInfo.Line,
fullScript);
InvocationInfo tempInvocationInfo = InvocationInfo.Create(
_currentInvocationInfo.MyCommand,
new ScriptExtent(
startScriptPosition,
endScriptPosition)
);
_commandProcessor.ProcessListCommand(tempInvocationInfo, output);
return true;
}
/// <summary>
/// IsRemote.
/// </summary>
internal override bool IsRemote
{
get
{
Debugger activeDebugger;
if (_activeDebuggers.TryPeek(out activeDebugger))
{
return (activeDebugger is RemotingJobDebugger);
}
return false;
}
}
/// <summary>
/// Array of stack frame objects of active debugger if any,
/// otherwise null.
/// </summary>
/// <returns>CallStackFrame[].</returns>
internal override CallStackFrame[] GetActiveDebuggerCallStack()
{
Debugger activeDebugger;
if (_activeDebuggers.TryPeek(out activeDebugger))
{
return activeDebugger.GetCallStack().ToArray();
}
return null;
}
/// <summary>
/// Sets how the debugger deals with breakpoint events that are not handled.
/// Ignore - This is the default behavior and ignores any breakpoint event
/// if there is no handler. Releases any preserved event.
/// Wait - This mode preserves a breakpoint event until a handler is
/// subscribed.
/// </summary>
internal override UnhandledBreakpointProcessingMode UnhandledBreakpointMode
{
get
{
return (_preserveUnhandledDebugStopEvent) ? UnhandledBreakpointProcessingMode.Wait : UnhandledBreakpointProcessingMode.Ignore;
}
set
{
switch (value)
{
case UnhandledBreakpointProcessingMode.Wait:
_preserveUnhandledDebugStopEvent = true;
break;
case UnhandledBreakpointProcessingMode.Ignore:
_preserveUnhandledDebugStopEvent = false;
ReleaseSavedDebugStop();
break;
}
}
}
#region Breakpoints
/// <summary>
/// Adds the provided set of breakpoints to the debugger.
/// </summary>
/// <param name="breakpoints">The breakpoints to set.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
public override void SetBreakpoints(IEnumerable<Breakpoint> breakpoints, int? runspaceId)
{
if (runspaceId.HasValue)
{
GetRunspaceDebugger(runspaceId.Value).SetBreakpoints(breakpoints);
return;
}
foreach (Breakpoint bp in breakpoints)
{
switch (bp)
{
case CommandBreakpoint commandBreakpoint:
AddCommandBreakpoint(commandBreakpoint);
continue;
case LineBreakpoint lineBreakpoint:
AddLineBreakpoint(lineBreakpoint);
continue;
case VariableBreakpoint variableBreakpoint:
AddVariableBreakpoint(variableBreakpoint);
continue;
}
}
}
/// <summary>
/// Get a breakpoint by id, primarily for Enable/Disable/Remove-PSBreakpoint cmdlets.
/// </summary>
/// <param name="id">Id of the breakpoint you want.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
public override Breakpoint GetBreakpoint(int id, int? runspaceId)
{
if (runspaceId.HasValue)
{
return GetRunspaceDebugger(runspaceId.Value).GetBreakpoint(id);
}
_idToBreakpoint.TryGetValue(id, out Breakpoint breakpoint);
return breakpoint;
}
/// <summary>
/// Returns breakpoints primarily for the Get-PSBreakpoint cmdlet.
/// </summary>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
public override List<Breakpoint> GetBreakpoints(int? runspaceId)
{
if (runspaceId.HasValue)
{
return GetRunspaceDebugger(runspaceId.Value).GetBreakpoints();
}
return (from bp in _idToBreakpoint.Values orderby bp.Id select bp).ToList();
}
/// <summary>
/// Sets a command breakpoint in the debugger.
/// </summary>
/// <param name="command">The name of the command that will trigger the breakpoint. This value may not be null.</param>
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
/// <param name="path">The path to the script file where the breakpoint may be hit. If null, the breakpoint may be hit anywhere the command is invoked.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns></returns>
public override CommandBreakpoint SetCommandBreakpoint(string command, ScriptBlock action, string path, int? runspaceId)
{
if (runspaceId.HasValue)
{
return GetRunspaceDebugger(runspaceId.Value).SetCommandBreakpoint(command, action, path);
}
Diagnostics.Assert(!string.IsNullOrEmpty(command), "Caller to verify command is not null or empty.");
WildcardPattern pattern = WildcardPattern.Get(command, WildcardOptions.Compiled | WildcardOptions.IgnoreCase);
CheckForBreakpointSupport();
return AddCommandBreakpoint(new CommandBreakpoint(path, pattern, command, action));
}
/// <summary>
/// Sets a line breakpoint in the debugger.
/// </summary>
/// <param name="path">The path to the script file where the breakpoint may be hit. This value may not be null.</param>
/// <param name="line">The line in the script file where the breakpoint may be hit. This value must be greater than or equal to 1.</param>
/// <param name="column">The column in the script file where the breakpoint may be hit. If 0, the breakpoint will trigger on any statement on the line.</param>
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>A LineBreakpoint</returns>
public override LineBreakpoint SetLineBreakpoint(string path, int line, int column, ScriptBlock action, int? runspaceId)
{
if (runspaceId.HasValue)
{
return GetRunspaceDebugger(runspaceId.Value).SetLineBreakpoint(path, line, column, action);
}
Diagnostics.Assert(path != null, "Caller to verify path is not null.");
Diagnostics.Assert(line > 0, "Caller to verify line is greater than 0.");
CheckForBreakpointSupport();
return AddLineBreakpoint(new LineBreakpoint(path, line, column, action));
}
/// <summary>
/// Sets a variable breakpoint in the debugger.
/// </summary>
/// <param name="variableName">The name of the variable that will trigger the breakpoint. This value may not be null.</param>
/// <param name="accessMode">The variable access mode that will trigger the breakpoint.</param>
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
/// <param name="path">The path to the script file where the breakpoint may be hit. If null, the breakpoint may be hit anywhere the variable is accessed using the specified access mode.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>A VariableBreakpoint that was set.</returns>
public override VariableBreakpoint SetVariableBreakpoint(string variableName, VariableAccessMode accessMode, ScriptBlock action, string path, int? runspaceId)
{
if (runspaceId.HasValue)
{
return GetRunspaceDebugger(runspaceId.Value).SetVariableBreakpoint(variableName, accessMode, action, path);
}
Diagnostics.Assert(!string.IsNullOrEmpty(variableName), "Caller to verify variableName is not null or empty.");
CheckForBreakpointSupport();
return AddVariableBreakpoint(new VariableBreakpoint(path, variableName, accessMode, action));
}
/// <summary>
/// This is the implementation of the Remove-PSBreakpoint cmdlet.
/// </summary>
/// <param name="breakpoint">Id of the breakpoint you want.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
public override bool RemoveBreakpoint(Breakpoint breakpoint, int? runspaceId)
{
if (runspaceId.HasValue)
{
return GetRunspaceDebugger(runspaceId.Value).RemoveBreakpoint(breakpoint);
}
Diagnostics.Assert(breakpoint != null, "Caller to verify the breakpoint is not null.");
if (_idToBreakpoint.Remove(breakpoint.Id, out _))
{
breakpoint.RemoveSelf(this);
if (CanDisableDebugger)
{
SetInternalDebugMode(InternalDebugMode.Disabled);
}
OnBreakpointUpdated(new BreakpointUpdatedEventArgs(breakpoint, BreakpointUpdateType.Removed, _idToBreakpoint.Count));
return true;
}
return false;
}
/// <summary>
/// This is the implementation of the Enable-PSBreakpoint cmdlet.
/// </summary>
/// <param name="breakpoint">Id of the breakpoint you want.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
public override Breakpoint EnableBreakpoint(Breakpoint breakpoint, int? runspaceId)
{
if (runspaceId.HasValue)
{
return GetRunspaceDebugger(runspaceId.Value).EnableBreakpoint(breakpoint);
}
Diagnostics.Assert(breakpoint != null, "Caller to verify the breakpoint is not null.");
if (_idToBreakpoint.TryGetValue(breakpoint.Id, out _))
{
breakpoint.SetEnabled(true);
OnBreakpointUpdated(new BreakpointUpdatedEventArgs(breakpoint, BreakpointUpdateType.Enabled, _idToBreakpoint.Count));
return breakpoint;
}
return null;
}
/// <summary>
/// This is the implementation of the Disable-PSBreakpoint cmdlet.
/// </summary>
/// <param name="breakpoint">Id of the breakpoint you want.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
public override Breakpoint DisableBreakpoint(Breakpoint breakpoint, int? runspaceId)
{
if (runspaceId.HasValue)
{
return GetRunspaceDebugger(runspaceId.Value).DisableBreakpoint(breakpoint);
}
Diagnostics.Assert(breakpoint != null, "Caller to verify the breakpoint is not null.");
if (_idToBreakpoint.TryGetValue(breakpoint.Id, out _))
{
breakpoint.SetEnabled(false);
OnBreakpointUpdated(new BreakpointUpdatedEventArgs(breakpoint, BreakpointUpdateType.Disabled, _idToBreakpoint.Count));
return breakpoint;
}
return null;
}
private static Debugger GetRunspaceDebugger(int runspaceId)
{
if (!Runspace.RunspaceDictionary.TryGetValue(runspaceId, out WeakReference<Runspace> wr))
{
throw new PSArgumentException(string.Format(DebuggerStrings.InvalidRunspaceId, runspaceId));
}
if (!wr.TryGetTarget(out Runspace rs))
{
throw new PSArgumentException(DebuggerStrings.UnableToGetRunspace);
}
return rs.Debugger;
}
#endregion Breakpoints
#region Job Debugging
/// <summary>
/// Sets up debugger to debug provided job or its child jobs.
/// </summary>
/// <param name="job">
/// Job object that is either a debuggable job or a container of
/// debuggable child jobs.
/// </param>
/// <param name="breakAll">
/// If true, the debugger automatically invokes a break all when it
/// attaches to the job.
/// </param>
internal override void DebugJob(Job job, bool breakAll)
{
if (job == null) { throw new PSArgumentNullException(nameof(job)); }
lock (_syncObject)
{
if (_context._debuggingMode < 0)
{
throw new RuntimeException(DebuggerStrings.CannotStartJobDebuggingDebuggerBusy);
}
}
// If a debuggable job was passed in then add it to the
// job running list.
bool jobsAdded = TryAddDebugJob(job, breakAll);
if (!jobsAdded)
{
// Otherwise treat as parent Job and iterate over child jobs.
foreach (Job childJob in job.ChildJobs)
{
if (TryAddDebugJob(childJob, breakAll) && !jobsAdded)
{
jobsAdded = true;
}
}
}
if (!jobsAdded)
{
throw new PSInvalidOperationException(DebuggerStrings.NoDebuggableJobsFound);
}
}
private bool TryAddDebugJob(Job job, bool breakAll)
{
IJobDebugger debuggableJob = job as IJobDebugger;
if ((debuggableJob != null) && (debuggableJob.Debugger != null) &&
((job.JobStateInfo.State == JobState.Running) || (job.JobStateInfo.State == JobState.AtBreakpoint)))
{
// Check to see if job is already stopped in debugger.
bool jobDebugAlreadyStopped = debuggableJob.Debugger.InBreakpoint;
// Add to running job list with debugger set to step into.
SetDebugJobAsync(debuggableJob, false);
AddToJobRunningList(
new PSJobStartEventArgs(job, debuggableJob.Debugger, false),
breakAll ? DebuggerResumeAction.StepInto : DebuggerResumeAction.Continue);
// Raise debug stop event if job is already in stopped state.
if (jobDebugAlreadyStopped)
{
RemotingJobDebugger remoteJobDebugger = debuggableJob.Debugger as RemotingJobDebugger;
if (remoteJobDebugger != null)
{
remoteJobDebugger.CheckStateAndRaiseStopEvent();
}
else
{
Diagnostics.Assert(false, "Should never get debugger stopped job that is not of RemotingJobDebugger type.");
}
}
return true;
}
return false;
}
/// <summary>
/// Removes job from debugger job list and pops its
/// debugger from the active debugger stack.
/// </summary>
/// <param name="job">Job.</param>
internal override void StopDebugJob(Job job)
{
// Parameter validation.
if (job == null) { throw new PSArgumentNullException(nameof(job)); }
SetInternalDebugMode(InternalDebugMode.Disabled);
RemoveFromRunningJobList(job);
SetDebugJobAsync(job as IJobDebugger, true);
foreach (var cJob in job.ChildJobs)
{
RemoveFromRunningJobList(cJob);
SetDebugJobAsync(cJob as IJobDebugger, true);
}
RestoreInternalDebugMode();
}
/// <summary>
/// Helper method to set a IJobDebugger job CanDebug property.
/// </summary>
/// <param name="debuggableJob">IJobDebugger.</param>
/// <param name="isAsync">Boolean.</param>
internal static void SetDebugJobAsync(IJobDebugger debuggableJob, bool isAsync)
{
if (debuggableJob != null)
{
debuggableJob.IsAsync = isAsync;
}
}
#endregion
#region Runspace Debugging
/// <summary>
/// Sets up debugger to debug provided Runspace in a nested debug session.
/// </summary>
/// <param name="runspace">
/// Runspace to debug.
/// </param>
/// <param name="breakAll">
/// When true, this command will invoke a BreakAll when the debugger is
/// first attached.
/// </param>
internal override void DebugRunspace(Runspace runspace, bool breakAll)
{
if (runspace == null)
{
throw new PSArgumentNullException(nameof(runspace));
}
if (runspace.RunspaceStateInfo.State != RunspaceState.Opened)
{
throw new PSInvalidOperationException(
string.Format(CultureInfo.InvariantCulture, DebuggerStrings.RunspaceDebuggingInvalidRunspaceState, runspace.RunspaceStateInfo.State)
);
}
lock (_syncObject)
{
if (_context._debuggingMode < 0)
{
throw new PSInvalidOperationException(DebuggerStrings.RunspaceDebuggingDebuggerBusy);
}
}
if (runspace.Debugger == null)
{
throw new PSInvalidOperationException(
string.Format(CultureInfo.InvariantCulture, DebuggerStrings.RunspaceDebuggingNoRunspaceDebugger, runspace.Name));
}
if (runspace.Debugger.DebugMode == DebugModes.None)
{
throw new PSInvalidOperationException(DebuggerStrings.RunspaceDebuggingDebuggerIsOff);
}
AddToRunningRunspaceList(new PSStandaloneMonitorRunspaceInfo(runspace));
if (!runspace.Debugger.InBreakpoint && breakAll)
{
EnableDebuggerStepping(EnableNestedType.NestedRunspace);
}
}
/// <summary>
/// Removes the provided Runspace from the nested "active" debugger state.
/// </summary>
/// <param name="runspace">Runspace.</param>
internal override void StopDebugRunspace(Runspace runspace)
{
if (runspace == null) { throw new PSArgumentNullException(nameof(runspace)); }
SetInternalDebugMode(InternalDebugMode.Disabled);
RemoveFromRunningRunspaceList(runspace);
RestoreInternalDebugMode();
}
#endregion
#region Runspace Debug Processing
/// <summary>
/// Adds the provided Runspace object to the runspace debugger processing queue.
/// The queue will then raise the StartRunspaceDebugProcessing events for each runspace to allow
/// a host script debugger implementation to provide an active debugging session.
/// </summary>
/// <param name="runspace">Runspace to debug.</param>
internal override void QueueRunspaceForDebug(Runspace runspace)
{
runspace.StateChanged += RunspaceStateChangedHandler;
runspace.AvailabilityChanged += RunspaceAvailabilityChangedHandler;
_runspaceDebugQueue.Value.Enqueue(new StartRunspaceDebugProcessingEventArgs(runspace));
StartRunspaceForDebugQueueProcessing();
}
/// <summary>
/// Causes the CancelRunspaceDebugProcessing event to be raised which notifies subscribers that these debugging
/// sessions should be cancelled.
/// </summary>
public override void CancelDebuggerProcessing()
{
// Empty runspace debugger processing queue and then notify any subscribers.
ReleaseInternalRunspaceDebugProcessing(null, true);
try
{
RaiseCancelRunspaceDebugProcessingEvent();
}
catch (Exception)
{ }
}
private void ReleaseInternalRunspaceDebugProcessing(object sender, bool emptyQueue = false)
{
Runspace runspace = sender as Runspace;
if (runspace != null)
{
runspace.StateChanged -= RunspaceStateChangedHandler;
runspace.AvailabilityChanged -= RunspaceAvailabilityChangedHandler;
}
if (emptyQueue && _runspaceDebugQueue.IsValueCreated)
{
StartRunspaceDebugProcessingEventArgs args;
while (_runspaceDebugQueue.Value.TryDequeue(out args))
{
args.Runspace.StateChanged -= RunspaceStateChangedHandler;
args.Runspace.AvailabilityChanged -= RunspaceAvailabilityChangedHandler;
try
{
args.Runspace.Debugger.UnhandledBreakpointMode = UnhandledBreakpointProcessingMode.Ignore;
}
catch (Exception) { }
}
}
if (_runspaceDebugCompleteEvent != null)
{
try
{
_runspaceDebugCompleteEvent.Set();
}
catch (ObjectDisposedException) { }
}
}
private void RunspaceStateChangedHandler(object sender, RunspaceStateEventArgs args)
{
switch (args.RunspaceStateInfo.State)
{
case RunspaceState.Closed:
case RunspaceState.Broken:
case RunspaceState.Disconnected:
ReleaseInternalRunspaceDebugProcessing(sender);
break;
}
}
private void RunspaceAvailabilityChangedHandler(object sender, RunspaceAvailabilityEventArgs args)
{
if (args.RunspaceAvailability == RunspaceAvailability.Available)
{
ReleaseInternalRunspaceDebugProcessing(sender);
}
}
#endregion
#endregion
#region Job debugger integration
private void AddToJobRunningList(PSJobStartEventArgs jobArgs, DebuggerResumeAction startAction)
{
bool newJob = false;
lock (_syncObject)
{
jobArgs.Job.StateChanged += HandleJobStateChanged;
if (jobArgs.Job.IsPersistentState(jobArgs.Job.JobStateInfo.State))
{
jobArgs.Job.StateChanged -= HandleJobStateChanged;
return;
}
if (!_runningJobs.ContainsKey(jobArgs.Job.InstanceId))
{
// For now ignore WF jobs started asynchronously from script.
if (jobArgs.IsAsync) { return; }
// Turn on output processing monitoring on workflow job so that
// the debug stop events can coordinate with end of output processing.
jobArgs.Job.OutputProcessingStateChanged += HandleOutputProcessingStateChanged;
jobArgs.Job.MonitorOutputProcessing = true;
_runningJobs.Add(jobArgs.Job.InstanceId, jobArgs);
jobArgs.Debugger.DebuggerStop += HandleMonitorRunningJobsDebuggerStop;
newJob = true;
}
}
if (newJob)
{
jobArgs.Debugger.SetParent(
this,
_idToBreakpoint.Values.ToArray<Breakpoint>(),
startAction,
_context.EngineHostInterface.ExternalHost,
_context.SessionState.Path.CurrentLocation);
}
else
{
// If job already in collection then make sure start action is set.
// Note that this covers the case where Debug-Job was performed on
// an async job, which then becomes sync, the user continues execution
// and then wants to break (step mode) into the debugger *again*.
jobArgs.Debugger.SetDebuggerStepMode(true);
}
}
private void SetRunningJobListToStep(bool enableStepping)
{
PSJobStartEventArgs[] runningJobs;
lock (_syncObject)
{
runningJobs = _runningJobs.Values.ToArray();
}
foreach (var item in runningJobs)
{
try
{
item.Debugger.SetDebuggerStepMode(enableStepping);
}
catch (PSNotImplementedException) { }
}
}
private void SetRunspaceListToStep(bool enableStepping)
{
PSMonitorRunspaceInfo[] runspaceList;
lock (_syncObject)
{
runspaceList = _runningRunspaces.Values.ToArray();
}
foreach (var item in runspaceList)
{
try
{
Debugger nestedDebugger = item.NestedDebugger;
nestedDebugger?.SetDebuggerStepMode(enableStepping);
}
catch (PSNotImplementedException) { }
}
}
private void RemoveFromRunningJobList(Job job)
{
job.StateChanged -= HandleJobStateChanged;
job.OutputProcessingStateChanged -= HandleOutputProcessingStateChanged;
PSJobStartEventArgs jobArgs = null;
lock (_syncObject)
{
if (_runningJobs.TryGetValue(job.InstanceId, out jobArgs))
{
jobArgs.Debugger.DebuggerStop -= HandleMonitorRunningJobsDebuggerStop;
_runningJobs.Remove(job.InstanceId);
}
}
if (jobArgs != null)
{
// Pop from active debugger stack.
lock (_syncActiveDebuggerStopObject)
{
Debugger activeDebugger;
if (_activeDebuggers.TryPeek(out activeDebugger))
{
if (activeDebugger.Equals(jobArgs.Debugger))
{
PopActiveDebugger();
}
}
}
}
}
private void ClearRunningJobList()
{
PSJobStartEventArgs[] runningJobs = null;
lock (_syncObject)
{
if (_runningJobs.Count > 0)
{
runningJobs = new PSJobStartEventArgs[_runningJobs.Values.Count];
_runningJobs.Values.CopyTo(runningJobs, 0);
}
}
if (runningJobs != null)
{
foreach (var item in runningJobs)
{
RemoveFromRunningJobList(item.Job);
}
}
}
private bool PushActiveDebugger(Debugger debugger, int callstackOffset)
{
// Don't push active debugger if script debugger disabled debugging.
if (_context._debuggingMode == -1) { return false; }
// Disable script debugging while another debugger is running.
// -1 - Indicates script debugging is disabled from script debugger.
// -2 - Indicates script debugging is disabled from pushed active debugger.
SetInternalDebugMode(InternalDebugMode.InPushedStop);
// Save running calling frame.
_nestedRunningFrame = _callStack[_callStack.Count - callstackOffset];
_commandProcessor.Reset();
// Make active debugger.
_activeDebuggers.Push(debugger);
return true;
}
private Debugger PopActiveDebugger()
{
Debugger poppedDebugger = null;
if (_activeDebuggers.TryPop(out poppedDebugger))
{
int runningJobCount;
lock (_syncObject)
{
runningJobCount = _runningJobs.Count;
}
if (runningJobCount == 0)
{
// If we are back to the root debugger and are in step mode, ensure
// that the root debugger is in step mode to continue stepping.
switch (_lastActiveDebuggerAction)
{
case DebuggerResumeAction.StepInto:
case DebuggerResumeAction.StepOver:
case DebuggerResumeAction.StepOut:
// Set script debugger to step mode after the WF running
// script completes.
_steppingMode = SteppingMode.StepIn;
_overOrOutFrame = _nestedRunningFrame;
_nestedRunningFrame = null;
break;
case DebuggerResumeAction.Stop:
_nestedDebuggerStop = true;
break;
default:
ResumeExecution(DebuggerResumeAction.Continue);
break;
}
// Allow script debugger to continue in debugging mode.
_processingOutputCount = 0;
SetInternalDebugMode(InternalDebugMode.Enabled);
_currentDebuggerAction = _lastActiveDebuggerAction;
_lastActiveDebuggerAction = DebuggerResumeAction.Continue;
}
}
return poppedDebugger;
}
private void HandleActiveJobDebuggerStop(object sender, DebuggerStopEventArgs args)
{
// If we are debugging nested runspaces then ignore job debugger stops
if (_runningRunspaces.Count > 0) { return; }
// Forward active debugger event.
if (args != null)
{
// Save copy of arguments.
DebuggerStopEventArgs copyArgs = new DebuggerStopEventArgs(
args.InvocationInfo,
new Collection<Breakpoint>(args.Breakpoints),
args.ResumeAction);
_debuggerStopEventArgs.Push(copyArgs);
CallStackInfo savedCallStackItem = null;
try
{
// Wait for up to 5 seconds for output processing to complete.
_processingOutputCompleteEvent.Wait(5000);
// Fix up call stack representing this WF call.
savedCallStackItem = FixUpCallStack();
// Blocking call that raises stop event.
RaiseDebuggerStopEvent(args);
_lastActiveDebuggerAction = args.ResumeAction;
}
finally
{
RestoreCallStack(savedCallStackItem);
_debuggerStopEventArgs.TryPop(out copyArgs);
}
}
}
private CallStackInfo FixUpCallStack()
{
// Remove the top level call stack item, which is
// the PS script that starts the workflow. The workflow
// debugger will add its call stack in its GetCallStack()
// override.
int count = _callStack.Count;
CallStackInfo item = null;
if (count > 1)
{
item = _callStack.Last();
_callStack.RemoveAt(count - 1);
}
return item;
}
private void RestoreCallStack(CallStackInfo item)
{
if (item != null)
{
_callStack.Add(item);
}
}
private void HandleMonitorRunningJobsDebuggerStop(object sender, DebuggerStopEventArgs args)
{
if (!IsJobDebuggingMode())
{
// Ignore job debugger stop.
args.ResumeAction = DebuggerResumeAction.Continue;
return;
}
Debugger senderDebugger = sender as Debugger;
bool pushSucceeded = false;
lock (_syncActiveDebuggerStopObject)
{
Debugger activeDebugger = null;
if (_activeDebuggers.TryPeek(out activeDebugger))
{
if (activeDebugger.Equals(senderDebugger))
{
HandleActiveJobDebuggerStop(sender, args);
return;
}
if (IsRunningWFJobsDebugger(activeDebugger))
{
// Replace current job active debugger by first popping.
PopActiveDebugger();
}
}
pushSucceeded = PushActiveDebugger(senderDebugger, _jobCallStackOffset);
}
// Handle debugger stop outside lock.
if (pushSucceeded)
{
// Forward the debug stop event.
HandleActiveJobDebuggerStop(sender, args);
}
}
private bool IsJobDebuggingMode()
{
return ((((DebugMode & DebugModes.LocalScript) == DebugModes.LocalScript) && IsLocalSession) ||
(((DebugMode & DebugModes.RemoteScript) == DebugModes.RemoteScript) && !IsLocalSession));
}
private bool IsRunningWFJobsDebugger(Debugger debugger)
{
lock (_syncObject)
{
foreach (var item in _runningJobs.Values)
{
if (item.Debugger.Equals(debugger))
{
return true;
}
}
}
return false;
}
private void HandleJobStateChanged(object sender, JobStateEventArgs args)
{
Job job = sender as Job;
if (job.IsPersistentState(args.JobStateInfo.State))
{
RemoveFromRunningJobList(job);
}
}
private void HandleOutputProcessingStateChanged(object sender, OutputProcessingStateEventArgs e)
{
lock (_syncObject)
{
if (e.ProcessingOutput)
{
if (++_processingOutputCount == 1)
{
_processingOutputCompleteEvent.Reset();
}
}
else if (_processingOutputCount > 0)
{
if (--_processingOutputCount == 0)
{
_processingOutputCompleteEvent.Set();
}
}
}
}
private DebuggerCommandResults ProcessCommandForActiveDebugger(PSCommand command, PSDataCollection<PSObject> output)
{
// Check for debugger "detach" command which is only applicable to nested debugging.
bool detachCommand = ((command.Commands.Count > 0) &&
((command.Commands[0].CommandText.Equals("Detach", StringComparison.OrdinalIgnoreCase)) ||
(command.Commands[0].CommandText.Equals("d", StringComparison.OrdinalIgnoreCase))));
Debugger activeDebugger;
if (_activeDebuggers.TryPeek(out activeDebugger))
{
if (detachCommand)
{
// Exit command means to cancel the nested debugger session. This needs to be done by the
// owner of the session so we raise an event and release the debugger stop.
UnhandledBreakpointMode = UnhandledBreakpointProcessingMode.Ignore;
RaiseNestedDebuggingCancelEvent();
return new DebuggerCommandResults(DebuggerResumeAction.Continue, true);
}
else if ((command.Commands.Count > 0) &&
(command.Commands[0].CommandText.IndexOf(".EnterNestedPrompt()", StringComparison.OrdinalIgnoreCase) > 0))
{
// Prevent a host EnterNestedPrompt() call from occurring in an active debugger.
// Host nested prompt makes no sense in this case and can cause host to stop responding depending on host implementation.
throw new PSNotSupportedException();
}
// Get current debugger stop breakpoint info.
DebuggerStopEventArgs stopArgs;
if (_debuggerStopEventArgs.TryPeek(out stopArgs))
{
string commandText = command.Commands[0].CommandText;
// Check to see if this is a resume command that we handle here.
DebuggerCommand dbgCommand = _commandProcessor.ProcessBasicCommand(commandText);
if (dbgCommand != null &&
dbgCommand.ResumeAction != null)
{
_lastActiveDebuggerAction = dbgCommand.ResumeAction.Value;
return new DebuggerCommandResults(dbgCommand.ResumeAction, true);
}
}
return activeDebugger.ProcessCommand(command, output);
}
if (detachCommand)
{
// Detach command only applies to nested debugging. So if there isn't any active debugger then emit error.
throw new PSInvalidOperationException(DebuggerStrings.InvalidDetachCommand);
}
return null;
}
private bool StopCommandForActiveDebugger()
{
Debugger activeDebugger;
if (_activeDebuggers.TryPeek(out activeDebugger))
{
activeDebugger.StopProcessCommand();
return true;
}
return false;
}
#endregion
#region Runspace debugger integration
internal override void StartMonitoringRunspace(PSMonitorRunspaceInfo runspaceInfo)
{
if (runspaceInfo == null || runspaceInfo.Runspace == null) { return; }
if ((runspaceInfo.Runspace.Debugger != null) &&
runspaceInfo.Runspace.Debugger.Equals(this))
{
Debug.Fail("Nested debugger cannot be the root debugger.");
return;
}
DebuggerResumeAction startAction = (_currentDebuggerAction == DebuggerResumeAction.StepInto) ?
DebuggerResumeAction.StepInto : DebuggerResumeAction.Continue;
AddToRunningRunspaceList(runspaceInfo.Copy());
}
internal override void EndMonitoringRunspace(PSMonitorRunspaceInfo runspaceInfo)
{
if (runspaceInfo == null || runspaceInfo.Runspace == null) { return; }
RemoveFromRunningRunspaceList(runspaceInfo.Runspace);
}
/// <summary>
/// If a debug stop event is currently pending then this method will release
/// the event to continue processing.
/// </summary>
internal override void ReleaseSavedDebugStop()
{
if (IsPendingDebugStopEvent)
{
_preserveDebugStopEvent.Set();
}
}
private void AddToRunningRunspaceList(PSMonitorRunspaceInfo args)
{
Runspace runspace = args.Runspace;
runspace.StateChanged += HandleRunspaceStateChanged;
RunspaceState rsState = runspace.RunspaceStateInfo.State;
if (rsState == RunspaceState.Broken ||
rsState == RunspaceState.Closed ||
rsState == RunspaceState.Disconnected)
{
runspace.StateChanged -= HandleRunspaceStateChanged;
return;
}
lock (_syncObject)
{
if (!_runningRunspaces.ContainsKey(runspace.InstanceId))
{
_runningRunspaces.Add(runspace.InstanceId, args);
}
}
// It is possible for the debugger to be non-null at this point if a runspace
// is being reused.
SetUpDebuggerOnRunspace(runspace);
}
private void RemoveFromRunningRunspaceList(Runspace runspace)
{
runspace.StateChanged -= HandleRunspaceStateChanged;
// Remove from running list.
PSMonitorRunspaceInfo runspaceInfo = null;
lock (_syncObject)
{
if (_runningRunspaces.TryGetValue(runspace.InstanceId, out runspaceInfo))
{
_runningRunspaces.Remove(runspace.InstanceId);
}
}
// Clean up nested debugger.
NestedRunspaceDebugger nestedDebugger = runspaceInfo?.NestedDebugger;
if (nestedDebugger != null)
{
nestedDebugger.DebuggerStop -= HandleMonitorRunningRSDebuggerStop;
nestedDebugger.Dispose();
// If current active debugger, then pop.
lock (_syncActiveDebuggerStopObject)
{
Debugger activeDebugger;
if (_activeDebuggers.TryPeek(out activeDebugger))
{
if (activeDebugger.Equals(nestedDebugger))
{
PopActiveDebugger();
}
}
}
}
}
private void ClearRunningRunspaceList()
{
PSMonitorRunspaceInfo[] runningRunspaces = null;
lock (_syncObject)
{
if (_runningRunspaces.Count > 0)
{
runningRunspaces = new PSMonitorRunspaceInfo[_runningRunspaces.Count];
_runningRunspaces.Values.CopyTo(runningRunspaces, 0);
}
}
if (runningRunspaces != null)
{
foreach (var item in runningRunspaces)
{
RemoveFromRunningRunspaceList(item.Runspace);
}
}
}
private void HandleRunspaceStateChanged(object sender, RunspaceStateEventArgs e)
{
Runspace runspace = sender as Runspace;
bool remove = false;
switch (e.RunspaceStateInfo.State)
{
// Detect transition to Opened state.
case RunspaceState.Opened:
remove = !SetUpDebuggerOnRunspace(runspace);
break;
// Detect any transition to a finished runspace.
case RunspaceState.Broken:
case RunspaceState.Closed:
case RunspaceState.Disconnected:
remove = true;
break;
}
if (remove)
{
RemoveFromRunningRunspaceList(runspace);
}
}
private void HandleMonitorRunningRSDebuggerStop(object sender, DebuggerStopEventArgs args)
{
if (sender == null || args == null) { return; }
Debugger senderDebugger = sender as Debugger;
bool pushSucceeded = false;
lock (_syncActiveDebuggerStopObject)
{
Debugger activeDebugger;
if (_activeDebuggers.TryPeek(out activeDebugger))
{
// Replace current runspace debugger by first popping the old debugger.
if (IsRunningRSDebugger(activeDebugger))
{
PopActiveDebugger();
}
}
// Get nested debugger runspace info.
if (senderDebugger is not NestedRunspaceDebugger nestedDebugger) { return; }
PSMonitorRunspaceType runspaceType = nestedDebugger.RunspaceType;
// Fix up invocation info script extents for embedded nested debuggers where the script source is
// from the parent.
args.InvocationInfo = nestedDebugger.FixupInvocationInfo(args.InvocationInfo);
// Finally push the runspace debugger.
pushSucceeded = PushActiveDebugger(senderDebugger, _runspaceCallStackOffset);
}
// Handle debugger stop outside lock.
if (pushSucceeded)
{
// Forward the debug stop event.
// This method will always pop the debugger after debugger stop completes.
HandleActiveRunspaceDebuggerStop(sender, args);
}
}
private void HandleActiveRunspaceDebuggerStop(object sender, DebuggerStopEventArgs args)
{
// Save copy of arguments.
DebuggerStopEventArgs copyArgs = new DebuggerStopEventArgs(
args.InvocationInfo,
new Collection<Breakpoint>(args.Breakpoints),
args.ResumeAction);
_debuggerStopEventArgs.Push(copyArgs);
// Forward active debugger event.
try
{
// Blocking call that raises the stop event.
RaiseDebuggerStopEvent(args);
_lastActiveDebuggerAction = args.ResumeAction;
}
catch (Exception)
{
// Catch all external user generated exceptions thrown on event thread.
}
finally
{
_debuggerStopEventArgs.TryPop(out copyArgs);
PopActiveDebugger();
}
}
private bool IsRunningRSDebugger(Debugger debugger)
{
lock (_syncObject)
{
foreach (var item in _runningRunspaces.Values)
{
if (item.Runspace.Debugger.Equals(debugger))
{
return true;
}
}
}
return false;
}
private bool SetUpDebuggerOnRunspace(Runspace runspace)
{
PSMonitorRunspaceInfo runspaceInfo = null;
lock (_syncObject)
{
_runningRunspaces.TryGetValue(runspace.InstanceId, out runspaceInfo);
}
// Create nested debugger wrapper if it is not already created and if
// the runspace debugger is available.
if ((runspace.Debugger != null) &&
(runspaceInfo != null) &&
(runspaceInfo.NestedDebugger == null))
{
try
{
NestedRunspaceDebugger nestedDebugger = runspaceInfo.CreateDebugger(this);
runspaceInfo.NestedDebugger = nestedDebugger;
nestedDebugger.DebuggerStop += HandleMonitorRunningRSDebuggerStop;
if (((_lastActiveDebuggerAction == DebuggerResumeAction.StepInto) || (_currentDebuggerAction == DebuggerResumeAction.StepInto)) &&
!nestedDebugger.IsActive)
{
nestedDebugger.SetDebuggerStepMode(true);
}
// If the nested debugger has a pending (saved) debug stop then
// release it here now that we have the debug stop handler added.
// Note that the DebuggerStop event is raised on the original execution
// thread in the debugger (not this thread).
nestedDebugger.CheckStateAndRaiseStopEvent();
return true;
}
catch (InvalidRunspaceStateException) { }
}
return false;
}
#endregion
#region Runspace Debug Processing
private void StartRunspaceForDebugQueueProcessing()
{
int startThread = Interlocked.CompareExchange(ref _processingRunspaceDebugQueue, 1, 0);
if (startThread == 0)
{
var thread = new System.Threading.Thread(
new ThreadStart(DebuggerQueueThreadProc));
thread.Start();
}
}
private void DebuggerQueueThreadProc()
{
StartRunspaceDebugProcessingEventArgs runspaceDebugProcessArgs;
while (_runspaceDebugQueue.Value.TryDequeue(out runspaceDebugProcessArgs))
{
if (IsStartRunspaceDebugProcessingEventSubscribed())
{
try
{
RaiseStartRunspaceDebugProcessingEvent(runspaceDebugProcessArgs);
}
catch (Exception) { }
}
else
{
// If there are no ProcessDebugger event subscribers then default to handling internally.
runspaceDebugProcessArgs.UseDefaultProcessing = true;
}
// Check for internal handling request.
if (runspaceDebugProcessArgs.UseDefaultProcessing)
{
try
{
ProcessRunspaceDebugInternally(runspaceDebugProcessArgs.Runspace);
}
catch (Exception) { }
}
}
Interlocked.CompareExchange(ref _processingRunspaceDebugQueue, 0, 1);
if (!_runspaceDebugQueue.Value.IsEmpty)
{
StartRunspaceForDebugQueueProcessing();
}
}
private void ProcessRunspaceDebugInternally(Runspace runspace)
{
WaitForReadyDebug();
DebugRunspace(runspace, breakAll: true);
// Block this event thread until debugging has ended.
WaitForDebugComplete();
// Ensure runspace debugger is not stopped in break mode.
if (runspace.Debugger.InBreakpoint)
{
try
{
runspace.Debugger.UnhandledBreakpointMode = UnhandledBreakpointProcessingMode.Ignore;
}
catch (Exception) { }
}
StopDebugRunspace(runspace);
// If we return to local script execution in step mode then ensure the debugger is enabled.
_nestedDebuggerStop = false;
if ((_steppingMode == SteppingMode.StepIn) && (_currentDebuggerAction != DebuggerResumeAction.Stop) && (_context._debuggingMode == 0))
{
SetInternalDebugMode(InternalDebugMode.Enabled);
}
RaiseRunspaceProcessingCompletedEvent(
new ProcessRunspaceDebugEndEventArgs(runspace));
}
private void WaitForReadyDebug()
{
// Wait up to ten seconds
System.Threading.Thread.Sleep(500);
int count = 0;
bool debugReady = false;
do
{
System.Threading.Thread.Sleep(250);
debugReady = IsDebuggerReady();
} while (!debugReady && (count++ < 40));
if (!debugReady) { throw new PSInvalidOperationException(); }
}
private bool IsDebuggerReady()
{
return (!this.IsPushed && !this.InBreakpoint && (this._context._debuggingMode > -1) && (this._context.InternalHost.NestedPromptCount == 0));
}
private void WaitForDebugComplete()
{
if (_runspaceDebugCompleteEvent == null)
{
_runspaceDebugCompleteEvent = new ManualResetEventSlim(false);
}
else
{
_runspaceDebugCompleteEvent.Reset();
}
_runspaceDebugCompleteEvent.Wait();
}
#endregion
#region IDisposable
/// <summary>
/// Dispose.
/// </summary>
public void Dispose()
{
// Ensure all job event handlers are removed.
PSJobStartEventArgs[] runningJobs;
lock (_syncObject)
{
runningJobs = _runningJobs.Values.ToArray();
}
foreach (var item in runningJobs)
{
Job job = item.Job;
if (job != null)
{
job.StateChanged -= HandleJobStateChanged;
job.OutputProcessingStateChanged -= HandleOutputProcessingStateChanged;
}
}
_processingOutputCompleteEvent.Dispose();
_processingOutputCompleteEvent = null;
if (_preserveDebugStopEvent != null)
{
_preserveDebugStopEvent.Dispose();
_preserveDebugStopEvent = null;
}
if (_runspaceDebugCompleteEvent != null)
{
_runspaceDebugCompleteEvent.Dispose();
_runspaceDebugCompleteEvent = null;
}
}
#endregion
#region Tracing
internal void EnableTracing(int traceLevel, bool? step)
{
// Enable might actually be disabling depending on the arguments.
if (traceLevel < 1 && (step == null || !(bool)step))
{
DisableTracing();
return;
}
_savedIgnoreScriptDebug = _context.IgnoreScriptDebug;
_context.IgnoreScriptDebug = false;
_context.PSDebugTraceLevel = traceLevel;
if (step != null)
{
_context.PSDebugTraceStep = (bool)step;
}
SetInternalDebugMode(InternalDebugMode.Enabled);
}
internal void DisableTracing()
{
_context.IgnoreScriptDebug = _savedIgnoreScriptDebug;
_context.PSDebugTraceLevel = 0;
_context.PSDebugTraceStep = false;
if (CanDisableDebugger)
{
SetInternalDebugMode(InternalDebugMode.Disabled);
}
}
private bool _savedIgnoreScriptDebug = false;
internal void Trace(string messageId, string resourceString, params object[] args)
{
ActionPreference pref = ActionPreference.Continue;
string message;
if (args == null || args.Length == 0)
{
// Don't format in case the string contains literal curly braces
message = resourceString;
}
else
{
message = StringUtil.Format(resourceString, args);
}
if (string.IsNullOrEmpty(message))
{
message = "Could not load text for msh script tracing message id '" + messageId + "'";
Diagnostics.Assert(false, message);
}
((InternalHostUserInterface)_context.EngineHostInterface.UI).WriteDebugLine(message, ref pref);
}
internal void TraceLine(IScriptExtent extent)
{
string msg = PositionUtilities.BriefMessage(extent.StartScriptPosition);
InternalHostUserInterface ui = (InternalHostUserInterface)_context.EngineHostInterface.UI;
ActionPreference pref = _context.PSDebugTraceStep ?
ActionPreference.Inquire : ActionPreference.Continue;
ui.WriteDebugLine(msg, ref pref);
if (pref == ActionPreference.Continue)
_context.PSDebugTraceStep = false;
}
internal void TraceScriptFunctionEntry(FunctionContext functionContext)
{
var methodName = functionContext._functionName;
if (string.IsNullOrEmpty(functionContext._file))
{
Trace("TraceEnteringFunction", ParserStrings.TraceEnteringFunction, methodName);
}
else
{
Trace("TraceEnteringFunctionDefinedInFile", ParserStrings.TraceEnteringFunctionDefinedInFile, methodName, functionContext._file);
}
}
internal void TraceVariableSet(string varName, object value)
{
// Don't trace into debugger hidden or debugger step through unless the trace level > 2.
if (_callStack.Any() && _context.PSDebugTraceLevel <= 2)
{
// Skip trace messages in hidden/step through frames.
var frame = _callStack.Last();
if (frame.IsFrameHidden || frame.DebuggerStepThrough)
{
return;
}
}
// If the value is an IEnumerator, we don't attempt to get its string format via 'ToStringParser' method,
// because 'ToStringParser' would iterate through the enumerator to get the individual elements, which will
// make irreversible changes to the enumerator.
bool isValueAnIEnumerator = PSObject.Base(value) is IEnumerator;
string valAsString = isValueAnIEnumerator ? nameof(IEnumerator) : PSObject.ToStringParser(_context, value);
int msgLength = 60 - varName.Length;
if (valAsString.Length > msgLength)
{
valAsString = valAsString.Substring(0, msgLength) + PSObjectHelper.Ellipsis;
}
Trace("TraceVariableAssignment", ParserStrings.TraceVariableAssignment, varName, valAsString);
}
#endregion Tracing
}
#endregion
#region NestedRunspaceDebugger
/// <summary>
/// Base class for nested runspace debugger wrapper.
/// </summary>
internal abstract class NestedRunspaceDebugger : Debugger, IDisposable
{
#region Members
private bool _isDisposed;
protected Runspace _runspace;
protected Debugger _wrappedDebugger;
#endregion
#region Properties
/// <summary>
/// Type of runspace being monitored for debugging.
/// </summary>
public PSMonitorRunspaceType RunspaceType { get; }
/// <summary>
/// Unique parent debugger identifier for monitored runspace.
/// </summary>
public Guid ParentDebuggerId
{
get;
private set;
}
#endregion
#region Constructors
/// <summary>
/// Creates an instance of NestedRunspaceDebugger.
/// </summary>
/// <param name="runspace">Runspace.</param>
/// <param name="runspaceType">Runspace type.</param>
/// <param name="parentDebuggerId">Debugger Id of parent.</param>
protected NestedRunspaceDebugger(
Runspace runspace,
PSMonitorRunspaceType runspaceType,
Guid parentDebuggerId)
{
if (runspace == null || runspace.Debugger == null)
{
throw new PSArgumentNullException(nameof(runspace));
}
_runspace = runspace;
_wrappedDebugger = runspace.Debugger;
base.SetDebugMode(_wrappedDebugger.DebugMode);
RunspaceType = runspaceType;
ParentDebuggerId = parentDebuggerId;
// Handlers for wrapped debugger events.
_wrappedDebugger.BreakpointUpdated += HandleBreakpointUpdated;
_wrappedDebugger.DebuggerStop += HandleDebuggerStop;
}
#endregion
#region Overrides
/// <summary>
/// Adds the provided set of breakpoints to the debugger.
/// </summary>
/// <param name="breakpoints">Breakpoints.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
public override void SetBreakpoints(IEnumerable<Breakpoint> breakpoints, int? runspaceId) =>
_wrappedDebugger.SetBreakpoints(breakpoints, runspaceId);
/// <summary>
/// Process debugger or PowerShell command/script.
/// </summary>
/// <param name="command">PowerShell command.</param>
/// <param name="output">Output collection.</param>
/// <returns>DebuggerCommandResults.</returns>
public override DebuggerCommandResults ProcessCommand(PSCommand command, PSDataCollection<PSObject> output)
{
if (_isDisposed) { return new DebuggerCommandResults(null, false); }
// Preprocess debugger commands.
string cmd = command.Commands[0].CommandText.Trim();
if (cmd.Equals("prompt", StringComparison.OrdinalIgnoreCase))
{
return HandlePromptCommand(output);
}
if (cmd.Equals("k", StringComparison.OrdinalIgnoreCase) ||
cmd.StartsWith("Get-PSCallStack", StringComparison.OrdinalIgnoreCase))
{
return HandleCallStack(output);
}
if (cmd.Equals("l", StringComparison.OrdinalIgnoreCase) ||
cmd.Equals("list", StringComparison.OrdinalIgnoreCase))
{
if (HandleListCommand(output))
{
return new DebuggerCommandResults(null, true);
}
}
return _wrappedDebugger.ProcessCommand(command, output);
}
/// <summary>
/// Get a breakpoint by id.
/// </summary>
/// <param name="id">Id of the breakpoint you want.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
public override Breakpoint GetBreakpoint(int id, int? runspaceId) =>
_wrappedDebugger.GetBreakpoint(id, runspaceId);
/// <summary>
/// Returns breakpoints on a runspace.
/// </summary>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>A list of breakpoints in a runspace.</returns>
public override List<Breakpoint> GetBreakpoints(int? runspaceId) =>
_wrappedDebugger.GetBreakpoints(runspaceId);
/// <summary>
/// Sets a command breakpoint in the debugger.
/// </summary>
/// <param name="command">The name of the command that will trigger the breakpoint. This value may not be null.</param>
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
/// <param name="path">The path to the script file where the breakpoint may be hit. If null, the breakpoint may be hit anywhere the command is invoked.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>The command breakpoint that was set.</returns>
public override CommandBreakpoint SetCommandBreakpoint(string command, ScriptBlock action, string path, int? runspaceId) =>
_wrappedDebugger.SetCommandBreakpoint(command, action, path, runspaceId);
/// <summary>
/// Sets a line breakpoint in the debugger.
/// </summary>
/// <param name="path">The path to the script file where the breakpoint may be hit. This value may not be null.</param>
/// <param name="line">The line in the script file where the breakpoint may be hit. This value must be greater than or equal to 1.</param>
/// <param name="column">The column in the script file where the breakpoint may be hit. If 0, the breakpoint will trigger on any statement on the line.</param>
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>The line breakpoint that was set.</returns>
public override LineBreakpoint SetLineBreakpoint(string path, int line, int column, ScriptBlock action, int? runspaceId) =>
_wrappedDebugger.SetLineBreakpoint(path, line, column, action, runspaceId);
/// <summary>
/// Sets a variable breakpoint in the debugger.
/// </summary>
/// <param name="variableName">The name of the variable that will trigger the breakpoint. This value may not be null.</param>
/// <param name="accessMode">The variable access mode that will trigger the breakpoint.</param>
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
/// <param name="path">The path to the script file where the breakpoint may be hit. If null, the breakpoint may be hit anywhere the variable is accessed using the specified access mode.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>The variable breakpoint that was set.</returns>
public override VariableBreakpoint SetVariableBreakpoint(string variableName, VariableAccessMode accessMode, ScriptBlock action, string path, int? runspaceId) =>
_wrappedDebugger.SetVariableBreakpoint(variableName, accessMode, action, path, runspaceId);
/// <summary>
/// Removes a breakpoint from the debugger.
/// </summary>
/// <param name="breakpoint">The breakpoint to remove from the debugger. This value may not be null.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>True if the breakpoint was removed from the debugger; false otherwise.</returns>
public override bool RemoveBreakpoint(Breakpoint breakpoint, int? runspaceId) =>
_wrappedDebugger.RemoveBreakpoint(breakpoint, runspaceId);
/// <summary>
/// Enables a breakpoint in the debugger.
/// </summary>
/// <param name="breakpoint">The breakpoint to enable in the debugger. This value may not be null.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>The updated breakpoint if it was found; null if the breakpoint was not found in the debugger.</returns>
public override Breakpoint EnableBreakpoint(Breakpoint breakpoint, int? runspaceId) =>
_wrappedDebugger.EnableBreakpoint(breakpoint, runspaceId);
/// <summary>
/// Disables a breakpoint in the debugger.
/// </summary>
/// <param name="breakpoint">The breakpoint to enable in the debugger. This value may not be null.</param>
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
/// <returns>The updated breakpoint if it was found; null if the breakpoint was not found in the debugger.</returns>
public override Breakpoint DisableBreakpoint(Breakpoint breakpoint, int? runspaceId) =>
_wrappedDebugger.DisableBreakpoint(breakpoint, runspaceId);
/// <summary>
/// SetDebuggerAction.
/// </summary>
/// <param name="resumeAction">Debugger resume action.</param>
public override void SetDebuggerAction(DebuggerResumeAction resumeAction)
{
_wrappedDebugger.SetDebuggerAction(resumeAction);
}
/// <summary>
/// Stops running command.
/// </summary>
public override void StopProcessCommand()
{
_wrappedDebugger.StopProcessCommand();
}
/// <summary>
/// Returns current debugger stop event arguments if debugger is in
/// debug stop state. Otherwise returns null.
/// </summary>
/// <returns>DebuggerStopEventArgs.</returns>
public override DebuggerStopEventArgs GetDebuggerStopArgs()
{
return _wrappedDebugger.GetDebuggerStopArgs();
}
/// <summary>
/// Sets the debugger mode.
/// </summary>
/// <param name="mode">Debug mode.</param>
public override void SetDebugMode(DebugModes mode)
{
_wrappedDebugger.SetDebugMode(mode);
}
/// <summary>
/// Sets debugger stepping mode.
/// </summary>
/// <param name="enabled">True if stepping is to be enabled.</param>
public override void SetDebuggerStepMode(bool enabled)
{
_wrappedDebugger.SetDebuggerStepMode(enabled);
}
/// <summary>
/// Returns true if debugger is active.
/// </summary>
public override bool IsActive
{
get { return _wrappedDebugger.IsActive; }
}
/// <summary>
/// Breaks into the debugger.
/// </summary>
/// <param name="triggerObject">The object that triggered the breakpoint, if there is one.</param>
internal override void Break(object triggerObject = null)
{
_wrappedDebugger.Break(triggerObject);
}
#endregion
#region IDisposable
/// <summary>
/// Dispose.
/// </summary>
public virtual void Dispose()
{
_isDisposed = true;
if (_wrappedDebugger != null)
{
_wrappedDebugger.BreakpointUpdated -= HandleBreakpointUpdated;
_wrappedDebugger.DebuggerStop -= HandleDebuggerStop;
}
_wrappedDebugger = null;
_runspace = null;
// Call GC.SuppressFinalize since this is an unsealed type, in case derived types
// have finalizers.
GC.SuppressFinalize(this);
}
#endregion
#region Protected Methods
protected virtual void HandleDebuggerStop(object sender, DebuggerStopEventArgs e)
{
this.RaiseDebuggerStopEvent(e);
}
protected virtual void HandleBreakpointUpdated(object sender, BreakpointUpdatedEventArgs e)
{
this.RaiseBreakpointUpdatedEvent(e);
}
protected virtual DebuggerCommandResults HandlePromptCommand(PSDataCollection<PSObject> output)
{
// Nested debugged runspace prompt should look like:
// [ComputerName]: [DBG]: [Process:<id>]: [RunspaceName]: PS C:\>
string computerName = _runspace.ConnectionInfo?.ComputerName;
const string processPartPattern = "{0}[{1}:{2}]:{3}";
string processPart = StringUtil.Format(processPartPattern,
@"""",
DebuggerStrings.NestedRunspaceDebuggerPromptProcessName,
@"$($PID)",
@"""");
const string locationPart = @"""PS $($executionContext.SessionState.Path.CurrentLocation)> """;
string promptScript = "'[DBG]: '" + " + " + processPart + " + " + "' [" + CodeGeneration.EscapeSingleQuotedStringContent(_runspace.Name) + "]: '" + " + " + locationPart;
// Get the command prompt from the wrapped debugger.
PSCommand promptCommand = new PSCommand();
promptCommand.AddScript(promptScript);
PSDataCollection<PSObject> promptOutput = new PSDataCollection<PSObject>();
_wrappedDebugger.ProcessCommand(promptCommand, promptOutput);
string promptString = (promptOutput.Count == 1) ? promptOutput[0].BaseObject as string : string.Empty;
var nestedPromptString = new System.Text.StringBuilder();
// For remote runspaces display computer name in prompt.
if (!string.IsNullOrEmpty(computerName))
{
nestedPromptString.Append("[" + computerName + "]:");
}
nestedPromptString.Append(promptString);
// Fix up for non-remote runspaces since the runspace is not in a nested prompt
// but the root runspace is.
if (string.IsNullOrEmpty(computerName))
{
nestedPromptString.Insert(nestedPromptString.Length - 1, ">");
}
output.Add(nestedPromptString.ToString());
return new DebuggerCommandResults(null, true);
}
protected virtual DebuggerCommandResults HandleCallStack(PSDataCollection<PSObject> output)
{
throw new PSNotImplementedException();
}
protected virtual bool HandleListCommand(PSDataCollection<PSObject> output)
{
return false;
}
#endregion
#region Internal Methods
/// <summary>
/// Attempts to fix up the debugger stop invocation information so that
/// the correct stack and source can be displayed in the debugger, for
/// cases where the debugged runspace is called inside a parent script,
/// such as with script Invoke-Command cases.
/// </summary>
/// <param name="debugStopInvocationInfo"></param>
/// <returns>InvocationInfo.</returns>
internal virtual InvocationInfo FixupInvocationInfo(InvocationInfo debugStopInvocationInfo)
{
// Default is no fix up.
return debugStopInvocationInfo;
}
internal bool IsSameDebugger(Debugger testDebugger)
{
return _wrappedDebugger.Equals(testDebugger);
}
/// <summary>
/// Checks to see if the runspace debugger is in a preserved debug
/// stop state, and if so then allows the debugger stop event to
/// continue processing and raise the event.
/// </summary>
internal void CheckStateAndRaiseStopEvent()
{
RemoteDebugger remoteDebugger = _wrappedDebugger as RemoteDebugger;
if (remoteDebugger != null)
{
// Have remote debugger raise existing debugger stop event.
remoteDebugger.CheckStateAndRaiseStopEvent();
}
else if (this._wrappedDebugger.IsPendingDebugStopEvent)
{
// Release local debugger preserved debugger stop event.
this._wrappedDebugger.ReleaseSavedDebugStop();
}
else
{
// If this is a remote server debugger then we want to convert the pending remote
// debugger stop to a local debugger stop event for this Debug-Runspace to handle.
ServerRemoteDebugger serverRemoteDebugger = this._wrappedDebugger as ServerRemoteDebugger;
serverRemoteDebugger?.ReleaseAndRaiseDebugStopLocal();
}
}
/// <summary>
/// Gets the callstack of the nested runspace.
/// </summary>
/// <returns></returns>
internal PSDataCollection<PSObject> GetRSCallStack()
{
// Get call stack from wrapped debugger
PSCommand cmd = new PSCommand();
cmd.AddCommand("Get-PSCallStack");
PSDataCollection<PSObject> callStackOutput = new PSDataCollection<PSObject>();
_wrappedDebugger.ProcessCommand(cmd, callStackOutput);
return callStackOutput;
}
#endregion
}
/// <summary>
/// Wrapper class for runspace debugger where it is running in no known
/// embedding scenario and is assumed to be running independently of
/// any other running script.
/// </summary>
internal sealed class StandaloneRunspaceDebugger : NestedRunspaceDebugger
{
#region Constructor
/// <summary>
/// Constructor.
/// </summary>
/// <param name="runspace">Runspace.</param>
public StandaloneRunspaceDebugger(
Runspace runspace)
: base(runspace, PSMonitorRunspaceType.Standalone, Guid.Empty)
{ }
#endregion
#region Overrides
protected override DebuggerCommandResults HandleCallStack(PSDataCollection<PSObject> output)
{
PSDataCollection<PSObject> callStackOutput = GetRSCallStack();
// Display call stack info as formatted.
using (PowerShell ps = PowerShell.Create())
{
ps.AddCommand("Out-String").AddParameter("Stream", true);
ps.Invoke(callStackOutput, output);
}
return new DebuggerCommandResults(null, true);
}
protected override void HandleDebuggerStop(object sender, DebuggerStopEventArgs e)
{
object runningCmd = null;
try
{
runningCmd = DrainAndBlockRemoteOutput();
this.RaiseDebuggerStopEvent(e);
}
finally
{
RestoreRemoteOutput(runningCmd);
}
}
#endregion
#region Private Methods
private object DrainAndBlockRemoteOutput()
{
// We do this only for remote runspaces.
if (_runspace is not RemoteRunspace remoteRunspace) { return null; }
var runningPowerShell = remoteRunspace.GetCurrentBasePowerShell();
if (runningPowerShell != null)
{
runningPowerShell.WaitForServicingComplete();
runningPowerShell.SuspendIncomingData();
return runningPowerShell;
}
else
{
var runningPipe = remoteRunspace.GetCurrentlyRunningPipeline();
if (runningPipe != null)
{
runningPipe.DrainIncomingData();
runningPipe.SuspendIncomingData();
return runningPipe;
}
}
return null;
}
private static void RestoreRemoteOutput(object runningCmd)
{
if (runningCmd == null) { return; }
var runningPowerShell = runningCmd as PowerShell;
if (runningPowerShell != null)
{
runningPowerShell.ResumeIncomingData();
}
else
{
var runningPipe = runningCmd as Pipeline;
runningPipe?.ResumeIncomingData();
}
}
#endregion
}
/// <summary>
/// Wrapper class for runspace debugger where the runspace is being used in an
/// embedded scenario such as Invoke-Command command inside script.
/// </summary>
internal sealed class EmbeddedRunspaceDebugger : NestedRunspaceDebugger
{
#region Members
private PowerShell _command;
private Debugger _rootDebugger;
private ScriptBlockAst _parentScriptBlockAst;
private DebuggerStopEventArgs _sendDebuggerArgs;
#endregion
#region Constructors
/// <summary>
/// Constructor for runspaces executing from script.
/// </summary>
/// <param name="runspace">Runspace to debug.</param>
/// <param name="command">PowerShell command.</param>
/// <param name="rootDebugger">Root debugger.</param>
/// <param name="runspaceType">Runspace to monitor type.</param>
/// <param name="parentDebuggerId">Parent debugger Id.</param>
public EmbeddedRunspaceDebugger(
Runspace runspace,
PowerShell command,
Debugger rootDebugger,
PSMonitorRunspaceType runspaceType,
Guid parentDebuggerId)
: base(runspace, runspaceType, parentDebuggerId)
{
if (rootDebugger == null)
{
throw new PSArgumentNullException(nameof(rootDebugger));
}
_command = command;
_rootDebugger = rootDebugger;
}
#endregion
#region Overrides
protected override void HandleDebuggerStop(object sender, DebuggerStopEventArgs e)
{
_sendDebuggerArgs = new DebuggerStopEventArgs(
e.InvocationInfo,
new Collection<Breakpoint>(e.Breakpoints),
e.ResumeAction);
object remoteRunningCmd = null;
try
{
// For remote debugging drain/block output channel.
remoteRunningCmd = DrainAndBlockRemoteOutput();
this.RaiseDebuggerStopEvent(_sendDebuggerArgs);
}
finally
{
RestoreRemoteOutput(remoteRunningCmd);
// Return user determined resume action.
e.ResumeAction = _sendDebuggerArgs.ResumeAction;
}
}
protected override DebuggerCommandResults HandleCallStack(PSDataCollection<PSObject> output)
{
// First get call stack from wrapped debugger
PSCommand cmd = new PSCommand();
cmd.AddCommand("Get-PSCallStack");
PSDataCollection<PSObject> callStackOutput = new PSDataCollection<PSObject>();
_wrappedDebugger.ProcessCommand(cmd, callStackOutput);
// Next get call stack from parent debugger.
PSDataCollection<CallStackFrame> callStack = _rootDebugger.GetCallStack().ToArray();
// Combine call stack info.
foreach (var item in callStack)
{
callStackOutput.Add(new PSObject(item));
}
// Display call stack info as formatted.
using (PowerShell ps = PowerShell.Create())
{
ps.AddCommand("Out-String").AddParameter("Stream", true);
ps.Invoke(callStackOutput, output);
}
return new DebuggerCommandResults(null, true);
}
protected override bool HandleListCommand(PSDataCollection<PSObject> output)
{
if ((_sendDebuggerArgs != null) && (_sendDebuggerArgs.InvocationInfo != null))
{
return _rootDebugger.InternalProcessListCommand(_sendDebuggerArgs.InvocationInfo.ScriptLineNumber, output);
}
return false;
}
/// <summary>
/// Attempts to fix up the debugger stop invocation information so that
/// the correct stack and source can be displayed in the debugger, for
/// cases where the debugged runspace is called inside a parent script,
/// such as with script Invoke-Command cases.
/// </summary>
/// <param name="debugStopInvocationInfo">Invocation information from debugger stop.</param>
/// <returns>InvocationInfo.</returns>
internal override InvocationInfo FixupInvocationInfo(InvocationInfo debugStopInvocationInfo)
{
if (debugStopInvocationInfo == null) { return null; }
// Check to see if this nested debug stop is called from within
// a known parent source.
int dbStopLineNumber = debugStopInvocationInfo.ScriptLineNumber;
CallStackFrame topItem = null;
var parentActiveStack = _rootDebugger.GetActiveDebuggerCallStack();
if ((parentActiveStack != null) && (parentActiveStack.Length > 0))
{
topItem = parentActiveStack[0];
}
else
{
var parentStack = _rootDebugger.GetCallStack().ToArray();
if ((parentStack != null) && (parentStack.Length > 0))
{
topItem = parentStack[0];
dbStopLineNumber--;
}
}
InvocationInfo debugInvocationInfo = CreateInvocationInfoFromParent(
topItem,
dbStopLineNumber,
debugStopInvocationInfo.ScriptPosition.StartColumnNumber,
debugStopInvocationInfo.ScriptPosition.EndColumnNumber);
return debugInvocationInfo ?? debugStopInvocationInfo;
}
#endregion
#region IDisposable
/// <summary>
/// Dispose.
/// </summary>
public override void Dispose()
{
base.Dispose();
_rootDebugger = null;
_parentScriptBlockAst = null;
_command = null;
_sendDebuggerArgs = null;
}
#endregion
#region Private Methods
private InvocationInfo CreateInvocationInfoFromParent(
CallStackFrame parentStackFrame,
int debugLineNumber,
int debugStartColNumber,
int debugEndColNumber)
{
if (parentStackFrame == null) { return null; }
// Attempt to find parent script file create script block with Ast to
// find correct line and offset adjustments.
if ((_parentScriptBlockAst == null) &&
!string.IsNullOrEmpty(parentStackFrame.ScriptName) &&
System.IO.File.Exists(parentStackFrame.ScriptName))
{
ParseError[] errors;
Token[] tokens;
_parentScriptBlockAst = Parser.ParseInput(
System.IO.File.ReadAllText(parentStackFrame.ScriptName),
out tokens, out errors);
}
if (_parentScriptBlockAst != null)
{
int callingLineNumber = parentStackFrame.ScriptLineNumber;
StatementAst debugStatement = null;
StatementAst callingStatement = _parentScriptBlockAst.Find(
ast => ast is StatementAst && (ast.Extent.StartLineNumber == callingLineNumber), true) as StatementAst;
if (callingStatement != null)
{
// Find first statement in calling statement.
StatementAst firstStatement = callingStatement.Find(
ast => ast is StatementAst && ast.Extent.StartLineNumber > callingLineNumber, true) as StatementAst;
if (firstStatement != null)
{
int adjustedLineNumber = firstStatement.Extent.StartLineNumber + debugLineNumber - 1;
debugStatement = callingStatement.Find(
ast => ast is StatementAst && ast.Extent.StartLineNumber == adjustedLineNumber, true) as StatementAst;
}
}
if (debugStatement != null)
{
int endColNum = debugStartColNumber + (debugEndColNumber - debugStartColNumber) - 2;
string statementExtentText = FixUpStatementExtent(debugStatement.Extent.StartColumnNumber - 1, debugStatement.Extent.Text);
ScriptPosition scriptStartPosition = new ScriptPosition(
parentStackFrame.ScriptName,
debugStatement.Extent.StartLineNumber,
debugStartColNumber,
statementExtentText);
ScriptPosition scriptEndPosition = new ScriptPosition(
parentStackFrame.ScriptName,
debugStatement.Extent.EndLineNumber,
endColNum,
statementExtentText);
return InvocationInfo.Create(
parentStackFrame.InvocationInfo.MyCommand,
new ScriptExtent(
scriptStartPosition,
scriptEndPosition)
);
}
}
return null;
}
private static string FixUpStatementExtent(int startColNum, string stateExtentText)
{
Text.StringBuilder sb = new Text.StringBuilder();
sb.Append(' ', startColNum);
sb.Append(stateExtentText);
return sb.ToString();
}
private object DrainAndBlockRemoteOutput()
{
// We only do this for remote runspaces.
if (_runspace is not RemoteRunspace) { return null; }
try
{
if (_command != null)
{
_command.WaitForServicingComplete();
_command.SuspendIncomingData();
return _command;
}
Pipeline runningCmd = _runspace.GetCurrentlyRunningPipeline();
if (runningCmd != null)
{
runningCmd.DrainIncomingData();
runningCmd.SuspendIncomingData();
return runningCmd;
}
}
catch (PSNotSupportedException)
{ }
return null;
}
private static void RestoreRemoteOutput(object runningCmd)
{
if (runningCmd == null) { return; }
PowerShell command = runningCmd as PowerShell;
if (command != null)
{
command.ResumeIncomingData();
}
else
{
Pipeline pipelineCommand = runningCmd as Pipeline;
pipelineCommand?.ResumeIncomingData();
}
}
#endregion
}
#endregion
#region DebuggerCommandResults
/// <summary>
/// Command results returned from Debugger.ProcessCommand.
/// </summary>
public sealed class DebuggerCommandResults
{
#region Properties
/// <summary>
/// Resume action.
/// </summary>
public DebuggerResumeAction? ResumeAction
{
get;
private set;
}
/// <summary>
/// True if debugger evaluated command. Otherwise evaluation was
/// performed by PowerShell.
/// </summary>
public bool EvaluatedByDebugger { get; }
#endregion
#region Constructors
private DebuggerCommandResults()
{ }
/// <summary>
/// Constructor.
/// </summary>
/// <param name="resumeAction">Resume action.</param>
/// <param name="evaluatedByDebugger">True if evaluated by debugger.</param>
public DebuggerCommandResults(
DebuggerResumeAction? resumeAction,
bool evaluatedByDebugger)
{
ResumeAction = resumeAction;
EvaluatedByDebugger = evaluatedByDebugger;
}
#endregion
}
#endregion
#region DebuggerCommandProcessor
/// <summary>
/// This class is used to pre-process the command read by the host when it is in debug mode; its
/// main intention is to implement the debugger commands ("s", "c", "o", etc)
/// </summary>
internal class DebuggerCommandProcessor
{
// debugger commands
private const string ContinueCommand = "continue";
private const string ContinueShortcut = "c";
private const string GetStackTraceShortcut = "k";
private const string HelpCommand = "h";
private const string HelpShortcut = "?";
private const string ListCommand = "list";
private const string ListShortcut = "l";
private const string StepCommand = "stepInto";
private const string StepShortcut = "s";
private const string StepOutCommand = "stepOut";
private const string StepOutShortcut = "o";
private const string StepOverCommand = "stepOver";
private const string StepOverShortcut = "v";
private const string StopCommand = "quit";
private const string StopShortcut = "q";
private const string DetachCommand = "detach";
private const string DetachShortcut = "d";
// default line count for the list command
private const int DefaultListLineCount = 16;
// table of debugger commands
private readonly Dictionary<string, DebuggerCommand> _commandTable;
// the Help command
private readonly DebuggerCommand _helpCommand;
// the List command
private readonly DebuggerCommand _listCommand;
// last command processed
private DebuggerCommand _lastCommand;
// the source script split into lines
private string[] _lines;
// last line displayed by the list command
private int _lastLineDisplayed;
private const string Crlf = "\x000D\x000A";
/// <summary>
/// Creates the table of debugger commands.
/// </summary>
public DebuggerCommandProcessor()
{
_commandTable = new Dictionary<string, DebuggerCommand>(StringComparer.OrdinalIgnoreCase);
_commandTable[StepCommand] = _commandTable[StepShortcut] = new DebuggerCommand(StepCommand, DebuggerResumeAction.StepInto, repeatOnEnter: true, executedByDebugger: false);
_commandTable[StepOutCommand] = _commandTable[StepOutShortcut] = new DebuggerCommand(StepOutCommand, DebuggerResumeAction.StepOut, repeatOnEnter: false, executedByDebugger: false);
_commandTable[StepOverCommand] = _commandTable[StepOverShortcut] = new DebuggerCommand(StepOverCommand, DebuggerResumeAction.StepOver, repeatOnEnter: true, executedByDebugger: false);
_commandTable[ContinueCommand] = _commandTable[ContinueShortcut] = new DebuggerCommand(ContinueCommand, DebuggerResumeAction.Continue, repeatOnEnter: false, executedByDebugger: false);
_commandTable[StopCommand] = _commandTable[StopShortcut] = new DebuggerCommand(StopCommand, DebuggerResumeAction.Stop, repeatOnEnter: false, executedByDebugger: false);
_commandTable[GetStackTraceShortcut] = new DebuggerCommand("get-pscallstack", null, repeatOnEnter: false, executedByDebugger: false);
_commandTable[HelpCommand] = _commandTable[HelpShortcut] = _helpCommand = new DebuggerCommand(HelpCommand, null, repeatOnEnter: false, executedByDebugger: true);
_commandTable[ListCommand] = _commandTable[ListShortcut] = _listCommand = new DebuggerCommand(ListCommand, null, repeatOnEnter: true, executedByDebugger: true);
_commandTable[string.Empty] = new DebuggerCommand(string.Empty, null, repeatOnEnter: false, executedByDebugger: true);
}
/// <summary>
/// Resets any state in the command processor.
/// </summary>
public void Reset()
{
_lines = null;
}
/// <summary>
/// Process the command read by the host and returns the DebuggerResumeAction or the command
/// that the host should execute (see comments in the DebuggerCommand class above).
/// </summary>
public DebuggerCommand ProcessCommand(PSHost host, string command, InvocationInfo invocationInfo)
{
return _lastCommand = DoProcessCommand(host, command, invocationInfo, null);
}
/// <summary>
/// ProcessCommand.
/// </summary>
/// <param name="host"></param>
/// <param name="command"></param>
/// <param name="invocationInfo"></param>
/// <param name="output"></param>
/// <returns></returns>
public DebuggerCommand ProcessCommand(PSHost host, string command, InvocationInfo invocationInfo, IList<PSObject> output)
{
DebuggerCommand dbgCommand = DoProcessCommand(host, command, invocationInfo, output);
if (dbgCommand.ExecutedByDebugger || (dbgCommand.ResumeAction != null)) { _lastCommand = dbgCommand; }
return dbgCommand;
}
/// <summary>
/// Process list command with provided line number.
/// </summary>
/// <param name="invocationInfo">Current InvocationInfo.</param>
/// <param name="output">Output.</param>
public void ProcessListCommand(InvocationInfo invocationInfo, IList<PSObject> output)
{
DoProcessCommand(null, "list", invocationInfo, output);
}
/// <summary>
/// Looks up string command and if it is a debugger command returns the
/// corresponding DebuggerCommand object.
/// </summary>
/// <param name="command">String command.</param>
/// <returns>DebuggerCommand or null.</returns>
public DebuggerCommand ProcessBasicCommand(string command)
{
if (command.Length == 0 && _lastCommand != null && _lastCommand.RepeatOnEnter)
{
return _lastCommand;
}
DebuggerCommand debuggerCommand;
if (_commandTable.TryGetValue(command, out debuggerCommand))
{
if (debuggerCommand.ExecutedByDebugger || (debuggerCommand.ResumeAction != null)) { _lastCommand = debuggerCommand; }
return debuggerCommand;
}
return null;
}
/// <summary>
/// Helper for ProcessCommand.
/// </summary>
private DebuggerCommand DoProcessCommand(PSHost host, string command, InvocationInfo invocationInfo, IList<PSObject> output)
{
// check for <enter>
if (command.Length == 0 && _lastCommand != null && _lastCommand.RepeatOnEnter)
{
if (_lastCommand == _listCommand)
{
if (_lines != null && _lastLineDisplayed < _lines.Length)
{
DisplayScript(host, output, invocationInfo, _lastLineDisplayed + 1, DefaultListLineCount);
}
return _listCommand;
}
command = _lastCommand.Command;
}
// Check for the list command using a regular expression
Regex listCommandRegex = new Regex(@"^l(ist)?(\s+(?<start>\S+))?(\s+(?<count>\S+))?$", RegexOptions.IgnoreCase);
Match match = listCommandRegex.Match(command);
if (match.Success)
{
DisplayScript(host, output, invocationInfo, match);
return _listCommand;
}
// Check for the rest of the debugger commands
DebuggerCommand debuggerCommand = null;
if (_commandTable.TryGetValue(command, out debuggerCommand))
{
// Check for the help command
if (debuggerCommand == _helpCommand)
{
DisplayHelp(host, output);
}
return debuggerCommand;
}
// Else return the same command
return new DebuggerCommand(command, null, false, false);
}
/// <summary>
/// Displays the help text for the debugger commands.
/// </summary>
private static void DisplayHelp(PSHost host, IList<PSObject> output)
{
WriteLine(string.Empty, host, output);
WriteLine(StringUtil.Format(DebuggerStrings.StepHelp, StepShortcut, StepCommand), host, output);
WriteLine(StringUtil.Format(DebuggerStrings.StepOverHelp, StepOverShortcut, StepOverCommand), host, output);
WriteLine(StringUtil.Format(DebuggerStrings.StepOutHelp, StepOutShortcut, StepOutCommand), host, output);
WriteLine(string.Empty, host, output);
WriteLine(StringUtil.Format(DebuggerStrings.ContinueHelp, ContinueShortcut, ContinueCommand), host, output);
WriteLine(StringUtil.Format(DebuggerStrings.StopHelp, StopShortcut, StopCommand), host, output);
WriteLine(StringUtil.Format(DebuggerStrings.DetachHelp, DetachShortcut, DetachCommand), host, output);
WriteLine(string.Empty, host, output);
WriteLine(StringUtil.Format(DebuggerStrings.GetStackTraceHelp, GetStackTraceShortcut), host, output);
WriteLine(string.Empty, host, output);
WriteLine(StringUtil.Format(DebuggerStrings.ListHelp, ListShortcut, ListCommand), host, output);
WriteLine(StringUtil.Format(DebuggerStrings.AdditionalListHelp1), host, output);
WriteLine(StringUtil.Format(DebuggerStrings.AdditionalListHelp2), host, output);
WriteLine(StringUtil.Format(DebuggerStrings.AdditionalListHelp3), host, output);
WriteLine(string.Empty, host, output);
WriteLine(StringUtil.Format(DebuggerStrings.EnterHelp, StepCommand, StepOverCommand, ListCommand), host, output);
WriteLine(string.Empty, host, output);
WriteLine(StringUtil.Format(DebuggerStrings.HelpCommandHelp, HelpShortcut, HelpCommand), host, output);
WriteLine("\n", host, output);
WriteLine(StringUtil.Format(DebuggerStrings.PromptHelp), host, output);
WriteLine(string.Empty, host, output);
}
/// <summary>
/// Executes the list command.
/// </summary>
private void DisplayScript(PSHost host, IList<PSObject> output, InvocationInfo invocationInfo, Match match)
{
if (invocationInfo == null) { return; }
//
// Get the source code for the script
//
if (_lines == null)
{
string scriptText = invocationInfo.GetFullScript();
if (string.IsNullOrEmpty(scriptText))
{
WriteErrorLine(StringUtil.Format(DebuggerStrings.NoSourceCode), host, output);
return;
}
_lines = scriptText.Split(new string[] { "\r\n", "\r", "\n" }, StringSplitOptions.None);
}
//
// Get the starting line
//
int start = Math.Max(invocationInfo.ScriptLineNumber - 5, 1);
if (match.Groups["start"].Value.Length > 0)
{
try
{
start = int.Parse(match.Groups["start"].Value, CultureInfo.CurrentCulture.NumberFormat);
}
catch
{
WriteErrorLine(StringUtil.Format(DebuggerStrings.BadStartFormat, _lines.Length), host, output);
return;
}
if (start <= 0 || start > _lines.Length)
{
WriteErrorLine(StringUtil.Format(DebuggerStrings.BadStartFormat, _lines.Length), host, output);
return;
}
}
//
// Get the line count
//
int count = DefaultListLineCount;
if (match.Groups["count"].Value.Length > 0)
{
try
{
count = int.Parse(match.Groups["count"].Value, CultureInfo.CurrentCulture.NumberFormat);
}
catch
{
WriteErrorLine(StringUtil.Format(DebuggerStrings.BadCountFormat, _lines.Length), host, output);
return;
}
// Limit requested line count to maximum number of existing lines
count = (count > _lines.Length) ? _lines.Length : count;
if (count <= 0)
{
WriteErrorLine(DebuggerStrings.BadCountFormat, host, output);
return;
}
}
//
// Execute the command
//
DisplayScript(host, output, invocationInfo, start, count);
}
/// <summary>
/// Executes the list command.
/// </summary>
private void DisplayScript(PSHost host, IList<PSObject> output, InvocationInfo invocationInfo, int start, int count)
{
WriteCR(host, output);
for (int lineNumber = start; lineNumber <= _lines.Length && lineNumber < start + count; lineNumber++)
{
WriteLine(
lineNumber == invocationInfo.ScriptLineNumber
? string.Format(CultureInfo.CurrentCulture, "{0,5}:* {1}", lineNumber, _lines[lineNumber - 1])
: string.Format(CultureInfo.CurrentCulture, "{0,5}: {1}", lineNumber, _lines[lineNumber - 1]),
host,
output);
_lastLineDisplayed = lineNumber;
}
WriteCR(host, output);
}
private static void WriteLine(string line, PSHost host, IList<PSObject> output)
{
host?.UI.WriteLine(line);
output?.Add(new PSObject(line));
}
private static void WriteCR(PSHost host, IList<PSObject> output)
{
host?.UI.WriteLine();
output?.Add(new PSObject(Crlf));
}
private static void WriteErrorLine(string error, PSHost host, IList<PSObject> output)
{
host?.UI.WriteErrorLine(error);
output?.Add(
new PSObject(
new ErrorRecord(
new RuntimeException(error),
"DebuggerError",
ErrorCategory.InvalidOperation,
null)));
}
}
/// <summary>
/// Class used to hold the output of the DebuggerCommandProcessor.
/// </summary>
internal class DebuggerCommand
{
public DebuggerCommand(string command, DebuggerResumeAction? action, bool repeatOnEnter, bool executedByDebugger)
{
ResumeAction = action;
Command = command;
RepeatOnEnter = repeatOnEnter;
ExecutedByDebugger = executedByDebugger;
}
/// <summary>
/// If ResumeAction is not null it indicates that the host must exit the debugger
/// and resume execution of the suspended pipeline; the debugger will use the
/// value of this property to decide how to resume the pipeline (i.e. step into,
/// step-over, continue, etc)
/// </summary>
public DebuggerResumeAction? ResumeAction { get; }
/// <summary>
/// When ResumeAction is null, this property indicates the command that the
/// host should pass to the PowerShell engine.
/// </summary>
public string Command { get; }
/// <summary>
/// If true, the host should repeat this command if the next command in an empty line (enter)
/// </summary>
public bool RepeatOnEnter { get; }
/// <summary>
/// If true, the command was executed by the debugger and the host should ignore the command.
/// </summary>
public bool ExecutedByDebugger { get; }
}
#endregion
#region PSDebugContext class
/// <summary>
/// This class exposes the information about the debugger that is available via $PSDebugContext.
/// </summary>
public class PSDebugContext
{
/// <summary>
/// Initializes a new instance of the <see cref="PSDebugContext"/> class.
/// </summary>
/// <param name="invocationInfo">The invocation information for the current command.</param>
/// <param name="breakpoints">The breakpoint(s) that caused the script to break in the debugger.</param>
public PSDebugContext(InvocationInfo invocationInfo, List<Breakpoint> breakpoints)
: this(invocationInfo, breakpoints, triggerObject: null)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="PSDebugContext"/> class.
/// </summary>
/// <param name="invocationInfo">The invocation information for the current command.</param>
/// <param name="breakpoints">The breakpoint(s) that caused the script to break in the debugger.</param>
/// <param name="triggerObject">The object that caused the script to break in the debugger.</param>
public PSDebugContext(InvocationInfo invocationInfo, List<Breakpoint> breakpoints, object triggerObject)
{
if (breakpoints == null)
{
throw new PSArgumentNullException(nameof(breakpoints));
}
this.InvocationInfo = invocationInfo;
this.Breakpoints = breakpoints.ToArray();
this.Trigger = triggerObject;
}
/// <summary>
/// InvocationInfo of the command currently being executed.
/// </summary>
public InvocationInfo InvocationInfo { get; }
/// <summary>
/// If not empty, indicates that the execution was suspended because one or more breakpoints
/// were hit. Otherwise, the execution was suspended as part of a step operation.
/// </summary>
public Breakpoint[] Breakpoints { get; }
/// <summary>
/// Gets the object that triggered the current dynamic breakpoint.
/// </summary>
public object Trigger { get; }
}
#endregion
#region CallStackFrame class
/// <summary>
/// A call stack item returned by the Get-PSCallStack cmdlet.
/// </summary>
public sealed class CallStackFrame
{
/// <summary>
/// Constructor.
/// </summary>
/// <param name="invocationInfo">Invocation Info.</param>
public CallStackFrame(InvocationInfo invocationInfo)
: this(null, invocationInfo)
{
}
/// <summary>
/// Constructor.
/// </summary>
/// <param name="functionContext">Function context.</param>
/// <param name="invocationInfo">Invocation Info.</param>
internal CallStackFrame(FunctionContext functionContext, InvocationInfo invocationInfo)
{
if (invocationInfo == null)
{
throw new PSArgumentNullException(nameof(invocationInfo));
}
if (functionContext != null)
{
this.InvocationInfo = invocationInfo;
FunctionContext = functionContext;
this.Position = functionContext.CurrentPosition;
}
else
{
// WF functions do not have functionContext. Use InvocationInfo.
this.InvocationInfo = invocationInfo;
this.Position = invocationInfo.ScriptPosition;
FunctionContext = new FunctionContext();
FunctionContext._functionName = invocationInfo.ScriptName;
}
}
/// <summary>
/// File name of the current location, or null if the frame is not associated to a script.
/// </summary>
public string ScriptName
{
get { return Position.File; }
}
/// <summary>
/// Line number of the current location, or 0 if the frame is not associated to a script.
/// </summary>
public int ScriptLineNumber
{
get { return Position.StartLineNumber; }
}
/// <summary>
/// The InvocationInfo of the command.
/// </summary>
public InvocationInfo InvocationInfo { get; }
/// <summary>
/// The position information for the current position in the frame. Null if the frame is not
/// associated with a script.
/// </summary>
public IScriptExtent Position { get; }
/// <summary>
/// The name of the function associated with this frame.
/// </summary>
public string FunctionName { get { return FunctionContext._functionName; } }
internal FunctionContext FunctionContext { get; }
/// <summary>
/// Returns a formatted string containing the ScriptName and ScriptLineNumber.
/// </summary>
public string GetScriptLocation()
{
if (string.IsNullOrEmpty(this.ScriptName))
{
return DebuggerStrings.NoFile;
}
return StringUtil.Format(DebuggerStrings.LocationFormat, Path.GetFileName(this.ScriptName), this.ScriptLineNumber);
}
/// <summary>
/// Return a dictionary with the names and values of variables that are "local"
/// to the frame.
/// </summary>
/// <returns></returns>
public Dictionary<string, PSVariable> GetFrameVariables()
{
var result = new Dictionary<string, PSVariable>(StringComparer.OrdinalIgnoreCase);
if (FunctionContext._executionContext == null) { return result; }
var scope = FunctionContext._executionContext.EngineSessionState.CurrentScope;
while (scope != null)
{
if (scope.LocalsTuple == FunctionContext._localsTuple)
{
// We can ignore any dotted scopes.
break;
}
if (scope.DottedScopes != null && scope.DottedScopes.Any(s => s == FunctionContext._localsTuple))
{
var dottedScopes = scope.DottedScopes.ToArray();
int i;
// Skip dotted scopes above the current scope
for (i = 0; i < dottedScopes.Length; ++i)
{
if (dottedScopes[i] == FunctionContext._localsTuple)
break;
}
for (; i < dottedScopes.Length; ++i)
{
dottedScopes[i].GetVariableTable(result, true);
}
break;
}
scope = scope.Parent;
}
FunctionContext._localsTuple.GetVariableTable(result, true);
return result;
}
/// <summary>
/// ToString override.
/// </summary>
public override string ToString()
{
return StringUtil.Format(DebuggerStrings.StackTraceFormat, FunctionName,
ScriptName ?? DebuggerStrings.NoFile, ScriptLineNumber);
}
}
#endregion
}
namespace System.Management.Automation.Internal
{
#region DebuggerUtils
/// <summary>
/// Debugger Utilities class.
/// </summary>
[SuppressMessage("Microsoft.MSInternal", "CA903:InternalNamespaceShouldNotContainPublicTypes", Justification = "Needed Internal use only")]
public static class DebuggerUtils
{
private static readonly SortedSet<string> s_noHistoryCommandNames = new SortedSet<string>(StringComparer.OrdinalIgnoreCase)
{
"prompt",
"Set-PSDebuggerAction",
"Get-PSDebuggerStopArgs",
"Set-PSDebugMode",
"TabExpansion2"
};
/// <summary>
/// Helper method to determine if command should be added to debugger
/// history.
/// </summary>
/// <param name="command">Command string.</param>
/// <returns>True if command can be added to history.</returns>
public static bool ShouldAddCommandToHistory(string command)
{
if (command == null)
{
throw new PSArgumentNullException(nameof(command));
}
lock (s_noHistoryCommandNames)
{
return !(s_noHistoryCommandNames.Contains(command, StringComparer.OrdinalIgnoreCase));
}
}
/// <summary>
/// Start monitoring a runspace on the target debugger.
/// </summary>
/// <param name="debugger">Target debugger.</param>
/// <param name="runspaceInfo">PSMonitorRunspaceInfo.</param>
public static void StartMonitoringRunspace(Debugger debugger, PSMonitorRunspaceInfo runspaceInfo)
{
if (debugger == null)
{
throw new PSArgumentNullException(nameof(debugger));
}
if (runspaceInfo == null)
{
throw new PSArgumentNullException(nameof(runspaceInfo));
}
debugger.StartMonitoringRunspace(runspaceInfo);
}
/// <summary>
/// End monitoring a runspace on the target debugger.
/// </summary>
/// <param name="debugger">Target debugger.</param>
/// <param name="runspaceInfo">PSMonitorRunspaceInfo.</param>
public static void EndMonitoringRunspace(Debugger debugger, PSMonitorRunspaceInfo runspaceInfo)
{
if (debugger == null)
{
throw new PSArgumentNullException(nameof(debugger));
}
if (runspaceInfo == null)
{
throw new PSArgumentNullException(nameof(runspaceInfo));
}
debugger.EndMonitoringRunspace(runspaceInfo);
}
}
#region PSMonitorRunspaceEvent
/// <summary>
/// PSMonitorRunspaceEvent.
/// </summary>
[SuppressMessage("Microsoft.MSInternal", "CA903:InternalNamespaceShouldNotContainPublicTypes", Justification = "Needed Internal use only")]
public enum PSMonitorRunspaceType
{
/// <summary>
/// Standalone runspace.
/// </summary>
Standalone = 0,
/// <summary>
/// Runspace from remote Invoke-Command script.
/// </summary>
InvokeCommand,
}
/// <summary>
/// Runspace information for monitoring runspaces for debugging.
/// </summary>
[SuppressMessage("Microsoft.MSInternal", "CA903:InternalNamespaceShouldNotContainPublicTypes", Justification = "Needed Internal use only")]
public abstract class PSMonitorRunspaceInfo
{
#region Properties
/// <summary>
/// Created Runspace.
/// </summary>
public Runspace Runspace { get; }
/// <summary>
/// Type of runspace for monitoring.
/// </summary>
public PSMonitorRunspaceType RunspaceType { get; }
/// <summary>
/// Nested debugger wrapper for runspace debugger.
/// </summary>
internal NestedRunspaceDebugger NestedDebugger { get; set; }
#endregion
#region Constructors
private PSMonitorRunspaceInfo() { }
/// <summary>
/// Constructor.
/// </summary>
/// <param name="runspace">Runspace.</param>
/// <param name="runspaceType">Runspace type.</param>
protected PSMonitorRunspaceInfo(
Runspace runspace,
PSMonitorRunspaceType runspaceType)
{
if (runspace == null)
{
throw new PSArgumentNullException(nameof(runspace));
}
Runspace = runspace;
RunspaceType = runspaceType;
}
#endregion
#region Methods
/// <summary>
/// Returns a copy of this object.
/// </summary>
/// <returns></returns>
internal abstract PSMonitorRunspaceInfo Copy();
/// <summary>
/// Creates an instance of a NestedRunspaceDebugger.
/// </summary>
/// <param name="rootDebugger">Root debugger or null.</param>
/// <returns>NestedRunspaceDebugger.</returns>
internal abstract NestedRunspaceDebugger CreateDebugger(Debugger rootDebugger);
#endregion
}
/// <summary>
/// Standalone runspace information for monitoring runspaces for debugging.
/// </summary>
[SuppressMessage("Microsoft.MSInternal", "CA903:InternalNamespaceShouldNotContainPublicTypes", Justification = "Needed Internal use only")]
public sealed class PSStandaloneMonitorRunspaceInfo : PSMonitorRunspaceInfo
{
#region Constructor
/// <summary>
/// Creates instance of PSStandaloneMonitorRunspaceInfo.
/// </summary>
/// <param name="runspace">Runspace to monitor.</param>
public PSStandaloneMonitorRunspaceInfo(
Runspace runspace)
: base(runspace, PSMonitorRunspaceType.Standalone)
{ }
#endregion
#region Overrides
/// <summary>
/// Returns a copy of this object.
/// </summary>
/// <returns></returns>
internal override PSMonitorRunspaceInfo Copy()
{
return new PSStandaloneMonitorRunspaceInfo(Runspace);
}
/// <summary>
/// Creates an instance of a NestedRunspaceDebugger.
/// </summary>
/// <param name="rootDebugger">Root debugger or null.</param>
/// <returns>NestedRunspaceDebugger wrapper.</returns>
internal override NestedRunspaceDebugger CreateDebugger(Debugger rootDebugger)
{
return new StandaloneRunspaceDebugger(Runspace);
}
#endregion
}
/// <summary>
/// Embedded runspaces running in context of a parent script, used for monitoring
/// runspace debugging.
/// </summary>
[SuppressMessage("Microsoft.MSInternal", "CA903:InternalNamespaceShouldNotContainPublicTypes", Justification = "Needed Internal use only")]
public sealed class PSEmbeddedMonitorRunspaceInfo : PSMonitorRunspaceInfo
{
#region Properties
/// <summary>
/// PowerShell command to run. Can be null.
/// </summary>
public PowerShell Command { get; }
/// <summary>
/// Unique parent debugger identifier.
/// </summary>
public Guid ParentDebuggerId { get; private set; }
#endregion
#region Constructor
/// <summary>
/// Creates instance of PSEmbeddedMonitorRunspaceInfo.
/// </summary>
/// <param name="runspace">Runspace to monitor.</param>
/// <param name="runspaceType">Type of runspace.</param>
/// <param name="command">Running command.</param>
/// <param name="parentDebuggerId">Unique parent debugger id or null.</param>
public PSEmbeddedMonitorRunspaceInfo(
Runspace runspace,
PSMonitorRunspaceType runspaceType,
PowerShell command,
Guid parentDebuggerId)
: base(runspace, runspaceType)
{
Command = command;
ParentDebuggerId = parentDebuggerId;
}
#endregion
#region Overrides
/// <summary>
/// Returns a copy of this object.
/// </summary>
/// <returns></returns>
internal override PSMonitorRunspaceInfo Copy()
{
return new PSEmbeddedMonitorRunspaceInfo(
Runspace,
RunspaceType,
Command,
ParentDebuggerId);
}
/// <summary>
/// Creates an instance of a NestedRunspaceDebugger.
/// </summary>
/// <param name="rootDebugger">Root debugger or null.</param>
/// <returns>NestedRunspaceDebugger wrapper.</returns>
internal override NestedRunspaceDebugger CreateDebugger(Debugger rootDebugger)
{
return new EmbeddedRunspaceDebugger(
Runspace,
Command,
rootDebugger,
RunspaceType,
ParentDebuggerId);
}
#endregion
}
#endregion
#endregion
}
|