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
|
# Copyright (C) 2017-2020 ycmd contributors
#
# This file is part of ycmd.
#
# ycmd is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ycmd is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with ycmd. If not, see <http://www.gnu.org/licenses/>.
from functools import partial
import abc
import collections
import contextlib
import json
import logging
import os
import socket
import time
import queue
import subprocess
import threading
from watchdog.events import PatternMatchingEventHandler
from watchdog.observers import Observer
from ycmd import extra_conf_store, responses, utils
from ycmd.completers.completer import Completer, CompletionsCache
from ycmd.completers.completer_utils import GetFileContents, GetFileLines
from ycmd.utils import LOGGER
from ycmd.completers.language_server import language_server_protocol as lsp
NO_HOVER_INFORMATION = 'No hover information.'
# All timeout values are in seconds
REQUEST_TIMEOUT_COMPLETION = 5
REQUEST_TIMEOUT_INITIALISE = 30
REQUEST_TIMEOUT_COMMAND = 30
CONNECTION_TIMEOUT = 5
# Size of the notification ring buffer
MAX_QUEUED_MESSAGES = 250
PROVIDERS_MAP = {
'codeActionProvider': (
lambda self, request_data, args: self.GetCodeActions( request_data )
),
'declarationProvider': (
lambda self, request_data, args: self.GoTo( request_data,
[ 'Declaration' ] )
),
'definitionProvider': (
lambda self, request_data, args: self.GoTo( request_data, [ 'Definition' ] )
),
( 'definitionProvider', 'declarationProvider' ): (
lambda self, request_data, args: self.GoTo( request_data,
[ 'Definition',
'Declaration' ] )
),
'documentFormattingProvider': (
lambda self, request_data, args: self.Format( request_data )
),
'executeCommandProvider': (
lambda self, request_data, args: self.ExecuteCommand( request_data,
args )
),
'implementationProvider': (
lambda self, request_data, args: self.GoTo( request_data,
[ 'Implementation' ] )
),
'referencesProvider': (
lambda self, request_data, args: self.GoTo( request_data,
[ 'References' ] )
),
'renameProvider': (
lambda self, request_data, args: self.RefactorRename( request_data, args )
),
'typeDefinitionProvider': (
lambda self, request_data, args: self.GoTo( request_data,
[ 'TypeDefinition' ] )
),
'workspaceSymbolProvider': (
lambda self, request_data, args: self.GoToSymbol( request_data, args )
),
'documentSymbolProvider': (
lambda self, request_data, args: self.GoToDocumentOutline( request_data )
)
}
# Each command is mapped to a list of providers. This allows a command to use
# another provider if the LSP server doesn't support the main one. For instance,
# GoToDeclaration is mapped to the same provider as GoToDefinition if there is
# no declaration provider. A tuple of providers is also allowed for commands
# like GoTo where it's convenient to jump to the declaration if already on the
# definition and vice versa.
DEFAULT_SUBCOMMANDS_MAP = {
'ExecuteCommand': [ 'executeCommandProvider' ],
'FixIt': [ 'codeActionProvider' ],
'GoToDefinition': [ 'definitionProvider' ],
'GoToDeclaration': [ 'declarationProvider', 'definitionProvider' ],
'GoTo': [ ( 'definitionProvider', 'declarationProvider' ),
'definitionProvider' ],
'GoToType': [ 'typeDefinitionProvider' ],
'GoToImplementation': [ 'implementationProvider' ],
'GoToReferences': [ 'referencesProvider' ],
'RefactorRename': [ 'renameProvider' ],
'Format': [ 'documentFormattingProvider' ],
'GoToSymbol': [ 'workspaceSymbolProvider' ],
'GoToDocumentOutline': [ 'documentSymbolProvider' ],
}
class NoHoverInfoException( Exception ):
""" Raised instead of RuntimeError for empty hover responses, to allow
completers to easily distinguish empty hover from other errors."""
pass # pragma: no cover
class ResponseTimeoutException( Exception ):
"""Raised by LanguageServerConnection if a request exceeds the supplied
time-to-live."""
pass # pragma: no cover
class ResponseAbortedException( Exception ):
"""Raised by LanguageServerConnection if a request is canceled due to the
server shutting down."""
pass # pragma: no cover
class ResponseFailedException( Exception ):
"""Raised by LanguageServerConnection if a request returns an error"""
def __init__( self, error ):
self.error_code = error.get( 'code' ) or 0
self.error_message = error.get( 'message' ) or "No message"
super().__init__( f'Request failed: { self.error_code }: '
f'{ self.error_message }' )
class IncompatibleCompletionException( Exception ):
"""Internal exception returned when a completion item is encountered which is
not supported by ycmd, or where the completion item is invalid."""
pass # pragma: no cover
class LanguageServerConnectionTimeout( Exception ):
"""Raised by LanguageServerConnection if the connection to the server is not
established with the specified timeout."""
pass # pragma: no cover
class LanguageServerConnectionStopped( Exception ):
"""Internal exception raised by LanguageServerConnection when the server is
successfully shut down according to user request."""
pass # pragma: no cover
class Response:
"""Represents a blocking pending request.
LanguageServerCompleter handles create an instance of this class for each
request that expects a response and wait for its response synchronously by
calling |AwaitResponse|.
The LanguageServerConnection message pump thread calls |ResponseReceived| when
the associated response is read, which triggers the |AwaitResponse| method to
handle the actual response"""
def __init__( self, response_callback=None ):
"""In order to receive a callback in the message pump thread context, supply
a method taking ( response, message ) in |response_callback|. Note that
|response| is _this object_, not the calling object, and message is the
message that was received. NOTE: This should not normally be used. Instead
users should synchronously wait on AwaitResponse."""
self._event = threading.Event()
self._message = None
self._response_callback = response_callback
def ResponseReceived( self, message ):
"""Called by the message pump thread when the response with corresponding ID
is received from the server. Triggers the message received event and calls
any configured message-pump-thread callback."""
self._message = message
self._event.set()
if self._response_callback:
self._response_callback( self, message )
def Abort( self ):
"""Called when the server is shutting down."""
self.ResponseReceived( None )
def AwaitResponse( self, timeout ):
"""Called by clients to wait synchronously for either a response to be
received or for |timeout| seconds to have passed.
Returns the message, or:
- throws ResponseFailedException if the request fails
- throws ResponseTimeoutException in case of timeout
- throws ResponseAbortedException in case the server is shut down."""
self._event.wait( timeout )
if not self._event.is_set():
raise ResponseTimeoutException( 'Response Timeout' )
if self._message is None:
raise ResponseAbortedException( 'Response Aborted' )
if 'error' in self._message:
error = self._message[ 'error' ]
raise ResponseFailedException( error )
return self._message
class LanguageServerConnection( threading.Thread ):
"""
Abstract language server communication object.
This connection runs as a thread and is generally only used directly by
LanguageServerCompleter, but is instantiated, started and stopped by
concrete LanguageServerCompleter implementations.
Implementations of this class are required to provide the following methods:
- TryServerConnectionBlocking: Connect to the server and return when the
connection is established
- Shutdown: Close any sockets or channels prior to the thread exit
- IsConnected: Whether the socket is connected
- WriteData: Write some data to the server
- ReadData: Read some data from the server, blocking until some data is
available
Threads:
LSP is by its nature an asynchronous protocol. There are request-reply like
requests and unsolicited notifications. Receipt of the latter is mandatory,
so we cannot rely on there being a bottle thread executing a client request.
So we need a message pump and dispatch thread. This is actually the
LanguageServerConnection, which implements Thread. It's main method simply
listens on the socket/stream and dispatches complete messages to the
LanguageServerCompleter. It does this:
- For requests: Using python event objects, wrapped in the Response class
- For notifications: via a synchronized Queue.
NOTE: Some handling is done in the dispatch thread. There are certain
notifications which we have to handle when we get them, such as:
- Initialization messages
- Diagnostics
In these cases, we allow some code to be executed inline within the dispatch
thread, as there is no other thread guaranteed to execute. These are handled
by callback functions and mutexes.
Using this class in concrete LanguageServerCompleter implementations:
Startup
- Call Start() and AwaitServerConnection()
- AwaitServerConnection() throws LanguageServerConnectionTimeout if the
server fails to connect in a reasonable time.
Shutdown
- Call Stop() prior to shutting down the downstream server (see
LanguageServerCompleter.ShutdownServer to do that part)
- Call Close() to close any remaining streams. Do this in a request thread.
DO NOT CALL THIS FROM THE DISPATCH THREAD. That is, Close() must not be
called from a callback supplied to GetResponseAsync, or in any callback or
method with a name like "*InPollThread". The result would be a deadlock.
Footnote: Why does this interface exist?
Language servers are at liberty to provide their communication interface
over any transport. Typically, this is either stdio or a socket (though some
servers require multiple sockets). This interface abstracts the
implementation detail of the communication from the transport, allowing
concrete completers to choose the right transport according to the
downstream server (i.e. Whatever works best).
If in doubt, use the StandardIOLanguageServerConnection as that is the
simplest. Socket-based connections often require the server to connect back
to us, which can lead to complexity and possibly blocking.
"""
@abc.abstractmethod
def TryServerConnectionBlocking( self ):
pass # pragma: no cover
def _CancelWatchdogThreads( self ):
for observer in self._observers:
observer.stop()
observer.join()
def Shutdown( self ):
self._CancelWatchdogThreads()
@abc.abstractmethod
def IsConnected( self ):
pass
@abc.abstractmethod
def WriteData( self, data ):
pass # pragma: no cover
@abc.abstractmethod
def ReadData( self, size=-1 ):
pass # pragma: no cover
def __init__( self,
project_directory,
watchdog_factory,
workspace_conf_handler,
notification_handler = None ):
super().__init__()
self._watchdog_factory = watchdog_factory
self._workspace_conf_handler = workspace_conf_handler
self._project_directory = project_directory
self._last_id = 0
self._responses = {}
self._response_mutex = threading.Lock()
self._notifications = queue.Queue( maxsize=MAX_QUEUED_MESSAGES )
self._connection_event = threading.Event()
self._stop_event = threading.Event()
self._notification_handler = notification_handler
self._collector = RejectCollector()
self._observers = []
@contextlib.contextmanager
def CollectApplyEdits( self, collector ):
old_collector = self._collector
self._collector = collector
try:
yield
finally:
self._collector = old_collector
def run( self ):
try:
# Wait for the connection to fully establish (this runs in the thread
# context, so we block until a connection is received or there is a
# timeout, which throws an exception)
self.TryServerConnectionBlocking()
self._connection_event.set()
# Blocking loop which reads whole messages and calls _DispatchMessage
self._ReadMessages()
except LanguageServerConnectionStopped:
# Abort any outstanding requests
with self._response_mutex:
for _, response in self._responses.items():
response.Abort()
self._responses.clear()
LOGGER.debug( 'Connection was closed cleanly' )
except Exception:
LOGGER.exception( 'The language server communication channel closed '
'unexpectedly. Issue a RestartServer command to '
'recover.' )
# Abort any outstanding requests
with self._response_mutex:
for _, response in self._responses.items():
response.Abort()
self._responses.clear()
# Close any remaining sockets or files
self.Shutdown()
def Start( self ):
# Wraps the fact that this class inherits (privately, in a sense) from
# Thread.
self.start()
def Stop( self ):
self._stop_event.set()
def Close( self ):
self.Shutdown()
try:
self.join()
except RuntimeError:
LOGGER.exception( "Shutting down dispatch thread while it isn't active" )
# This actually isn't a problem in practice.
def IsStopped( self ):
return self._stop_event.is_set()
def NextRequestId( self ):
with self._response_mutex:
self._last_id += 1
return self._last_id
def GetResponseAsync( self, request_id, message, response_callback=None ):
"""Issue a request to the server and return immediately. If a response needs
to be handled, supply a method taking ( response, message ) in
response_callback. Note |response| is the instance of Response and message
is the message received from the server.
Returns the Response instance created."""
response = Response( response_callback )
with self._response_mutex:
assert request_id not in self._responses
self._responses[ request_id ] = response
LOGGER.debug( 'TX: Sending message: %r', message )
self.WriteData( message )
return response
def GetResponse( self, request_id, message, timeout ):
"""Issue a request to the server and await the response. See
Response.AwaitResponse for return values and exceptions."""
response = self.GetResponseAsync( request_id, message )
return response.AwaitResponse( timeout )
def SendNotification( self, message ):
"""Issue a notification to the server. A notification is "fire and forget";
no response will be received and nothing is returned."""
LOGGER.debug( 'TX: Sending notification: %r', message )
self.WriteData( message )
def SendResponse( self, message ):
"""Send a response message. This is a message which is not a notification,
but still requires no further response from the server."""
LOGGER.debug( 'TX: Sending response: %r', message )
self.WriteData( message )
def AwaitServerConnection( self ):
"""Language server completer implementations should call this after starting
the server and the message pump (Start()) to await successful connection to
the server being established.
Returns no meaningful value, but may throw LanguageServerConnectionTimeout
in the event that the server does not connect promptly. In that case,
clients should shut down their server and reset their state."""
self._connection_event.wait( timeout = CONNECTION_TIMEOUT )
if not self._connection_event.is_set():
raise LanguageServerConnectionTimeout(
'Timed out waiting for server to connect' )
def _ReadMessages( self ):
"""Main message pump. Within the message pump thread context, reads messages
from the socket/stream by calling self.ReadData in a loop and dispatch
complete messages by calling self._DispatchMessage.
When the server is shut down cleanly, raises
LanguageServerConnectionStopped"""
data = bytes( b'' )
while True:
data, read_bytes, headers = self._ReadHeaders( data )
if 'Content-Length' not in headers:
# FIXME: We could try and recover this, but actually the message pump
# just fails.
raise ValueError( "Missing 'Content-Length' header" )
content_length = int( headers[ 'Content-Length' ] )
# We need to read content_length bytes for the payload of this message.
# This may be in the remainder of `data`, but equally we may need to read
# more data from the socket.
content = bytes( b'' )
content_read = 0
if read_bytes < len( data ):
# There are bytes left in data, use them
data = data[ read_bytes: ]
# Read up to content_length bytes from data
content_to_read = min( content_length, len( data ) )
content += data[ : content_to_read ]
content_read += len( content )
read_bytes = content_to_read
while content_read < content_length:
# There is more content to read, but data is exhausted - read more from
# the socket
data = self.ReadData( content_length - content_read )
content_to_read = min( content_length - content_read, len( data ) )
content += data[ : content_to_read ]
content_read += len( content )
read_bytes = content_to_read
LOGGER.debug( 'RX: Received message: %r', content )
# lsp will convert content to Unicode
self._DispatchMessage( lsp.Parse( content ) )
# We only consumed len( content ) of data. If there is more, we start
# again with the remainder and look for headers
data = data[ read_bytes : ]
def _ReadHeaders( self, data ):
"""Starting with the data in |data| read headers from the stream/socket
until a full set of headers has been consumed. Returns a tuple (
- data: any remaining unused data from |data| or the socket
- read_bytes: the number of bytes of returned data that have been consumed
- headers: a dictionary whose keys are the header names and whose values
are the header values
)"""
# LSP defines only 2 headers, of which only 1 is useful (Content-Length).
# Headers end with an empty line, and there is no guarantee that a single
# socket or stream read will contain only a single message, or even a whole
# message.
headers_complete = False
prefix = bytes( b'' )
headers = {}
while not headers_complete:
read_bytes = 0
last_line = 0
if len( data ) == 0:
data = self.ReadData()
while read_bytes < len( data ):
if utils.ToUnicode( data[ read_bytes: ] )[ 0 ] == '\n':
line = prefix + data[ last_line : read_bytes ].strip()
prefix = bytes( b'' )
last_line = read_bytes
if not line.strip():
headers_complete = True
read_bytes += 1
break
else:
try:
key, value = utils.ToUnicode( line ).split( ':', 1 )
headers[ key.strip() ] = value.strip()
except Exception:
LOGGER.exception( 'Received invalid protocol data from server: '
+ str( line ) )
raise
read_bytes += 1
if not headers_complete:
prefix = data[ last_line : ]
data = bytes( b'' )
return data, read_bytes, headers
def _HandleDynamicRegistrations( self, request ):
for reg in request[ 'params' ][ 'registrations' ]:
if reg[ 'method' ] == 'workspace/didChangeWatchedFiles':
globs = []
for watcher in reg[ 'registerOptions' ][ 'watchers' ]:
# TODO: Take care of watcher kinds. Not everything needs
# to be watched for create, modify *and* delete actions.
pattern = os.path.join( self._project_directory,
watcher[ 'globPattern' ] )
if os.path.isdir( pattern ):
pattern = os.path.join( pattern, '**' )
globs.append( pattern )
observer = Observer()
observer.schedule( self._watchdog_factory( globs ),
self._project_directory,
recursive = True )
observer.start()
self._observers.append( observer )
self.SendResponse( lsp.Void( request ) )
def _ServerToClientRequest( self, request ):
method = request[ 'method' ]
try:
if method == 'workspace/applyEdit':
self._collector.CollectApplyEdit( request, self )
elif method == 'workspace/configuration':
response = self._workspace_conf_handler( request )
if response is not None:
self.SendResponse( lsp.Accept( request, response ) )
else:
self.SendResponse( lsp.Reject( request, lsp.Errors.MethodNotFound ) )
elif method == 'client/registerCapability':
self._HandleDynamicRegistrations( request )
elif method == 'client/unregisterCapability':
for reg in request[ 'params' ][ 'unregisterations' ]:
if reg[ 'method' ] == 'workspace/didChangeWatchedFiles':
self._CancelWatchdogThreads()
self.SendResponse( lsp.Void( request ) )
elif method == 'workspace/workspaceFolders':
self.SendResponse(
lsp.Accept( request,
lsp.WorkspaceFolders( self._project_directory ) ) )
else: # method unknown - reject
self.SendResponse( lsp.Reject( request, lsp.Errors.MethodNotFound ) )
return
except Exception:
LOGGER.exception( "Handling server to client request failed for request "
"%s, rejecting it. This is probably a bug in ycmd.",
request )
# unhandled, or failed; reject the request
self.SendResponse( lsp.Reject( request, lsp.Errors.MethodNotFound ) )
def _DispatchMessage( self, message ):
"""Called in the message pump thread context when a complete message was
read. For responses, calls the Response object's ResponseReceived method, or
for notifications (unsolicited messages from the server), simply accumulates
them in a Queue which is polled by the long-polling mechanism in
LanguageServerCompleter."""
if 'id' in message:
message_id = message[ 'id' ]
if message_id is None:
return
if 'method' in message:
# This is a server->client request, which requires a response.
self._ServerToClientRequest( message )
else:
# This is a response to the message with id message[ 'id' ]
with self._response_mutex:
assert message_id in self._responses
self._responses[ message_id ].ResponseReceived( message )
del self._responses[ message_id ]
else:
# This is a notification
self._AddNotificationToQueue( message )
# If there is an immediate (in-message-pump-thread) handler configured,
# call it.
if self._notification_handler:
try:
self._notification_handler( self, message )
except Exception:
LOGGER.exception( 'Handling message in poll thread failed: %s',
message )
def _AddNotificationToQueue( self, message ):
while True:
try:
self._notifications.put_nowait( message )
return
except queue.Full:
pass
# The queue (ring buffer) is full. This indicates either a slow
# consumer or the message poll is not running. In any case, rather than
# infinitely queueing, discard the oldest message and try again.
try:
self._notifications.get_nowait()
except queue.Empty:
# This is only a theoretical possibility to prevent this thread
# blocking in the unlikely event that all elements are removed from
# the queue between put_nowait and get_nowait. Unfortunately, this
# isn't testable without a debugger, so coverage will show up red.
pass # pragma: no cover
class StandardIOLanguageServerConnection( LanguageServerConnection ):
"""Concrete language server connection using stdin/stdout to communicate with
the server. This should be the default choice for concrete completers."""
def __init__( self,
project_directory,
watchdog_factory,
server_stdin,
server_stdout,
workspace_conf_handler,
notification_handler = None ):
super().__init__( project_directory,
watchdog_factory,
workspace_conf_handler,
notification_handler )
self._server_stdin = server_stdin
self._server_stdout = server_stdout
# NOTE: All access to the stdin/out objects must be synchronised due to the
# long-running `read` operations that are done on stdout, and how our
# shutdown request will come from another (arbitrary) thread. It is not
# legal in Python to close a stdio file while there is a pending read. This
# can lead to IOErrors due to "concurrent operations' on files.
# See https://stackoverflow.com/q/29890603/2327209
self._stdin_lock = threading.Lock()
self._stdout_lock = threading.Lock()
def TryServerConnectionBlocking( self ):
# standard in/out don't need to wait for the server to connect to us
return True
def IsConnected( self ):
# TODO ? self._server_stdin.closed / self._server_stdout.closed?
return True
def Shutdown( self ):
super().Shutdown()
with self._stdin_lock:
if not self._server_stdin.closed:
self._server_stdin.close()
with self._stdout_lock:
if not self._server_stdout.closed:
self._server_stdout.close()
def WriteData( self, data ):
with self._stdin_lock:
self._server_stdin.write( data )
self._server_stdin.flush()
def ReadData( self, size=-1 ):
data = None
with self._stdout_lock:
if not self._server_stdout.closed:
if size > -1:
data = self._server_stdout.read( size )
else:
data = self._server_stdout.readline()
if not data:
# No data means the connection was severed. Connection severed when (not
# self.IsStopped()) means the server died unexpectedly.
if self.IsStopped():
raise LanguageServerConnectionStopped()
raise RuntimeError( "Connection to server died" )
return data
class TCPSingleStreamConnection( LanguageServerConnection ):
# Connection timeout in seconds
TCP_CONNECT_TIMEOUT = 10
def __init__( self,
project_directory,
watchdog_factory,
port,
workspace_conf_handler,
notification_handler = None ):
super().__init__( project_directory,
watchdog_factory,
workspace_conf_handler,
notification_handler )
self.port = port
self._client_socket = None
def TryServerConnectionBlocking( self ):
LOGGER.info( "Connecting to localhost:%s", self.port )
expiration = time.time() + TCPSingleStreamConnection.TCP_CONNECT_TIMEOUT
reason = RuntimeError( f"Timeout connecting to port { self.port }" )
while True:
if time.time() > expiration:
LOGGER.error( "Timed out after %s seconds connecting to port %s",
TCPSingleStreamConnection.TCP_CONNECT_TIMEOUT,
self.port )
raise reason
try:
self._client_socket = socket.create_connection( ( '127.0.0.1',
self.port ) )
LOGGER.info( "Language server connection successful on port %s",
self.port )
return True
except IOError as e:
reason = e
time.sleep( 0.1 )
def IsConnected( self ):
return bool( self._client_socket )
def Shutdown( self ):
super().Shutdown()
self._client_socket.close()
def WriteData( self, data ):
assert self._connection_event.is_set()
assert self._client_socket
total_sent = 0
while total_sent < len( data ):
try:
sent = self._client_socket.send( data[ total_sent: ] )
except OSError:
sent = 0
if sent == 0:
raise RuntimeError( 'Socket was closed when writing' )
total_sent += sent
def ReadData( self, size=-1 ):
assert self._connection_event.is_set()
assert self._client_socket
chunks = []
bytes_read = 0
while bytes_read < size or size < 0:
try:
if size < 0:
chunk = self._client_socket.recv( 2048 )
else:
chunk = self._client_socket.recv( min( size - bytes_read , 2048 ) )
except OSError:
chunk = ''
if chunk == '':
# The socket was closed
if self.IsStopped():
raise LanguageServerConnectionStopped()
raise RuntimeError( 'Scoket closed unexpectedly when reading' )
if size < 0:
# We just return whatever we read
return chunk
# Otherwise, keep reading if there's more data requested
chunks.append( chunk )
bytes_read += len( chunk )
return b''.join( chunks )
class LanguageServerCompleter( Completer ):
"""
Abstract completer implementation for Language Server Protocol. Concrete
implementations are required to:
- Handle downstream server state and create a LanguageServerConnection,
returning it in GetConnection
- Set its notification handler to self.GetDefaultNotificationHandler()
- See below for Startup/Shutdown instructions
- Optionally handle server-specific command responses in
HandleServerCommandResponse
- Optionally override GetCustomSubcommands to return subcommand handlers
that cannot be detected from the capabilities response.
- Optionally override AdditionalLogFiles for logs other than stderr
- Optionally override ExtraDebugItems for anything that should be in the
/debug_info response, that isn't covered by default
- Optionally override GetServerEnvironment if the server needs to be run
with specific environment variables.
- Implement the following Completer abstract methods:
- GetServerName
- GetCommandLine
- SupportedFiletypes
- DebugInfo
- Shutdown
- ServerIsHealthy : Return True if the server is _running_
- StartServer : Return True if the server was started.
- Optionally override methods to customise behavior:
- ConvertNotificationToMessage
- GetCompleterName
- GetProjectDirectory
- GetProjectRootFiles
- GetTriggerCharacters
- GetDefaultNotificationHandler
- HandleNotificationInPollThread
- Language
Startup
- Startup is initiated for you in OnFileReadyToParse
- The StartServer method is only called once (reset with ServerReset)
- See also LanguageServerConnection requirements
Shutdown
- Call ShutdownServer and wait for the downstream server to exit
- Call ServerReset to clear down state
- See also LanguageServerConnection requirements
Completions
- The implementation should not require any code to support completions
- (optional) Override GetCodepointForCompletionRequest if you wish to change
the completion position (e.g. if you want to pass the "query" to the
server)
Diagnostics
- The implementation should not require any code to support diagnostics
Sub-commands
- The sub-commands map is bespoke to the implementation, but generally, this
class attempts to provide all of the pieces where it can generically.
- By default, the subcommands are detected from the server's capabilities.
The logic for this is in DEFAULT_SUBCOMMANDS_MAP (and implemented by
_DiscoverSubcommandSupport).
- By default FixIt should work, but for example, jdt.ls doesn't implement
CodeActions correctly and forces clients to handle it differently.
For these cases, completers can override any of:
- CodeActionLiteralToFixIt
- CodeActionCommandToFixIt
- CommandToFixIt
- Other commands not covered by DEFAULT_SUBCOMMANDS_MAP are bespoke to the
completer and should be returned by GetCustomSubcommands:
- GetType/GetDoc are bespoke to the downstream server, though this class
provides GetHoverResponse which is useful in this context.
GetCustomSubcommands needs not contain GetType/GetDoc if the member
functions implementing GetType/GetDoc are named GetType/GetDoc.
"""
def GetConnection( self ):
"""Method that can be implemented by derived classes to return an instance
of LanguageServerConnection appropriate for the language server in
question"""
return self._connection
def HandleServerCommandResponse( self,
request_data,
edits,
command_response ):
pass # pragma: no cover
# Resolve all completion items up-front
RESOLVE_ALL = True
# Don't resolve any completion items, but prepare them for resolve
RESOLVE_NONE = False
def __init__( self, user_options, connection_type = 'stdio' ):
super().__init__( user_options )
self._connection_type = connection_type
# _server_info_mutex synchronises access to the state of the
# LanguageServerCompleter object. There are a number of threads at play
# here which might want to change properties of this object:
# - Each client request (handled by concrete completers) executes in a
# separate thread and might call methods requiring us to synchronise the
# server's view of file state with our own. We protect from clobbering
# by doing all server-file-state operations under this mutex.
# - There are certain events that we handle in the message pump thread,
# like some parts of initialization. We must protect against concurrent
# access to our internal state (such as the server file state, and
# stored data about the server itself) when we are calling methods on
# this object from the message pump). We synchronise on this mutex for
# that.
# - We need to make sure that multiple client requests don't try to start
# or stop the server simultaneously, so we also do all server
# start/stop/etc. operations under this mutex
# - Acquiring this mutex from the poll thread can lead to deadlocks.
# Currently, this is avoided by using _latest_diagnostics_mutex to
# access _latest_diagnostics, as that is the only resource shared with
# the poll thread.
self._server_info_mutex = threading.Lock()
self.ServerReset()
# LSP allows servers to return an incomplete list of completions. The cache
# cannot be used in that case and the current column must be sent to the
# language server for the subsequent completion requests; otherwise, the
# server will return the same incomplete list. When that list is complete,
# two cases are considered:
# - the starting column was sent to the server: cache is valid for the
# whole completion;
# - the current column was sent to the server: cache stays valid while the
# cached query is a prefix of the subsequent queries.
self._completions_cache = LanguageServerCompletionsCache()
self._completer_name = self.__class__.__name__.replace( 'Completer', '' )
self._language = self._completer_name.lower()
self._on_file_ready_to_parse_handlers = []
self.RegisterOnFileReadyToParse(
lambda self, request_data:
self._UpdateServerWithFileContents( request_data )
)
self._signature_help_disabled = user_options[ 'disable_signature_help' ]
self._server_keep_logfiles = user_options[ 'server_keep_logfiles' ]
self._stdout_file = None
self._stderr_file = None
self._server_started = False
self._Reset()
def _Reset( self ):
self.ServerReset()
self._connection = None
self._server_handle = None
if not self._server_keep_logfiles and self._stdout_file:
utils.RemoveIfExists( self._stdout_file )
self._stdout_file = None
if not self._server_keep_logfiles and self._stderr_file:
utils.RemoveIfExists( self._stderr_file )
self._stderr_file = None
def ServerReset( self ):
"""Clean up internal state related to the running server instance.
Implementations are required to call this after disconnection and killing
the downstream server."""
self._server_file_state = lsp.ServerFileStateStore()
self._latest_diagnostics_mutex = threading.Lock()
self._latest_diagnostics = collections.defaultdict( list )
self._sync_type = 'None'
self._initialize_response = None
self._initialize_event = threading.Event()
self._on_initialize_complete_handlers = []
self._server_capabilities = None
self._is_completion_provider = False
self._resolve_completion_items = False
self._project_directory = None
self._settings = {}
self._extra_conf_dir = None
self._semantic_token_atlas = None
def GetCompleterName( self ):
return self._completer_name
def Language( self ):
return self._language
def StartServer( self, request_data ):
try:
with self._server_info_mutex:
return self._StartServerNoLock( request_data )
except LanguageServerConnectionTimeout:
LOGGER.error( '%s failed to start, or did not connect successfully',
self.GetServerName() )
self.Shutdown()
return False
def _StartServerNoLock( self, request_data ):
LOGGER.info( 'Starting %s: %s',
self.GetServerName(),
self.GetCommandLine() )
self._project_directory = self.GetProjectDirectory( request_data )
if self._connection_type == 'tcp':
if self.GetCommandLine():
self._stderr_file = utils.CreateLogfile(
f'{ utils.MakeSafeFileNameString( self.GetServerName() ) }_stderr' )
self._stdout_file = utils.CreateLogfile(
f'{ utils.MakeSafeFileNameString( self.GetServerName() ) }_stdout' )
with utils.OpenForStdHandle( self._stderr_file ) as stderr:
with utils.OpenForStdHandle( self._stdout_file ) as stdout:
self._server_handle = utils.SafePopen(
self.GetCommandLine(),
stdin = subprocess.PIPE,
stdout = stdout,
stderr = stderr,
env = self.GetServerEnvironment() )
self._connection = TCPSingleStreamConnection(
self._project_directory,
lambda globs: WatchdogHandler( self, globs ),
self._port,
lambda request: self.WorkspaceConfigurationResponse( request ),
self.GetDefaultNotificationHandler() )
else:
self._stderr_file = utils.CreateLogfile(
f'{ utils.MakeSafeFileNameString( self.GetServerName() ) }_stderr' )
with utils.OpenForStdHandle( self._stderr_file ) as stderr:
self._server_handle = utils.SafePopen(
self.GetCommandLine(),
stdin = subprocess.PIPE,
stdout = subprocess.PIPE,
stderr = stderr,
env = self.GetServerEnvironment() )
self._connection = (
StandardIOLanguageServerConnection(
self._project_directory,
lambda globs: WatchdogHandler( self, globs ),
self._server_handle.stdin,
self._server_handle.stdout,
lambda request: self.WorkspaceConfigurationResponse( request ),
self.GetDefaultNotificationHandler() )
)
self._connection.Start()
self._connection.AwaitServerConnection()
if self._server_handle:
LOGGER.info( '%s started with PID %s',
self.GetServerName(),
self._server_handle.pid )
return True
def Shutdown( self ):
with self._server_info_mutex:
LOGGER.info( 'Shutting down %s...', self.GetServerName() )
# Tell the connection to expect the server to disconnect
if self._connection:
self._connection.Stop()
if not self.ServerIsHealthy():
LOGGER.info( '%s is not running', self.GetServerName() )
self._Reset()
return
if self._server_handle:
LOGGER.info( 'Stopping %s with PID %s',
self.GetServerName(),
self._server_handle.pid )
try:
with self._server_info_mutex:
self.ShutdownServer()
# By this point, the server should have shut down and terminated. To
# ensure that isn't blocked, we close all of our connections and wait
# for the process to exit.
#
# If, after a small delay, the server has not shut down we do NOT kill
# it; we expect that it will shut itself down eventually. This is
# predominantly due to strange process behaviour on Windows.
# NOTE: While waiting for the connection to close, we must _not_ hold any
# locks (in fact, we must not hold locks that might be needed when
# processing messages in the poll thread - i.e. notifications).
# This is crucial, as the server closing (asynchronously) might
# involve _other activities_ if there are messages in the queue (e.g. on
# the socket) and we need to store/handle them in the message pump
# (such as notifications) or even the initialise response.
if self._connection:
# Actually this sits around waiting for the connection thraed to exit
self._connection.Close()
if self._server_handle:
for stream in [ self._server_handle.stdout,
self._server_handle.stdin ]:
if stream and not stream.closed:
stream.close()
with self._server_info_mutex:
utils.WaitUntilProcessIsTerminated( self._server_handle,
timeout = 30 )
LOGGER.info( '%s stopped', self.GetServerName() )
except Exception:
LOGGER.exception( 'Error while stopping %s', self.GetServerName() )
# We leave the process running. Hopefully it will eventually die of its
# own accord.
with self._server_info_mutex:
# Tidy up our internal state, even if the completer server didn't close
# down cleanly.
self._Reset()
def ShutdownServer( self ):
"""Send the shutdown and possibly exit request to the server.
Implementations must call this prior to closing the LanguageServerConnection
or killing the downstream server."""
# Language server protocol requires orderly shutdown of the downstream
# server by first sending a shutdown request, and on its completion sending
# and exit notification (which does not receive a response). Some buggy
# servers exit on receipt of the shutdown request, so we handle that too.
if self._ServerIsInitialized():
request_id = self.GetConnection().NextRequestId()
msg = lsp.Shutdown( request_id )
try:
self.GetConnection().GetResponse( request_id,
msg,
REQUEST_TIMEOUT_INITIALISE )
except ResponseAbortedException:
# When the language server (heinously) dies handling the shutdown
# request, it is aborted. Just return - we're done.
return
except Exception:
# Ignore other exceptions from the server and send the exit request
# anyway
LOGGER.exception( 'Shutdown request failed. Ignoring' )
if self.ServerIsHealthy():
self.GetConnection().SendNotification( lsp.Exit() )
# If any threads are waiting for the initialize exchange to complete,
# release them, as there is no chance of getting a response now.
if ( self._initialize_response is not None and
not self._initialize_event.is_set() ):
self._initialize_response = None
self._initialize_event.set()
def _RestartServer( self, request_data, *args, **kwargs ):
self.Shutdown()
self._StartAndInitializeServer( request_data, *args, **kwargs )
def _ServerIsInitialized( self ):
"""Returns True if the server is running and the initialization exchange has
completed successfully. Implementations must not issue requests until this
method returns True."""
if not self.ServerIsHealthy():
return False
if self._initialize_event.is_set():
# We already got the initialize response
return True
if self._initialize_response is None:
# We never sent the initialize response
return False
# Initialize request in progress. Will be handled asynchronously.
return False
def ServerIsHealthy( self ):
if not self.GetCommandLine():
return self._connection and self._connection.IsConnected()
else:
return utils.ProcessIsRunning( self._server_handle )
def ServerIsReady( self ):
return self._ServerIsInitialized()
def ShouldUseNowInner( self, request_data ):
# We should only do _anything_ after the initialize exchange has completed.
return ( self.ServerIsReady() and
super().ShouldUseNowInner( request_data ) )
def GetCodepointForCompletionRequest( self, request_data ):
"""Returns the 1-based codepoint offset on the current line at which to make
the completion request"""
return self._completions_cache.GetCodepointForCompletionRequest(
request_data )
def ComputeCandidatesInner( self, request_data, codepoint ):
if not self._is_completion_provider:
return None, False
self._UpdateServerWithCurrentFileContents( request_data )
request_id = self.GetConnection().NextRequestId()
msg = lsp.Completion( request_id, request_data, codepoint )
response = self.GetConnection().GetResponse( request_id,
msg,
REQUEST_TIMEOUT_COMPLETION )
result = response.get( 'result' ) or []
if isinstance( result, list ):
items = result
is_incomplete = False
else:
items = result[ 'items' ]
is_incomplete = result[ 'isIncomplete' ]
# Note: _CandidatesFromCompletionItems does a lot of work on the actual
# completion text to ensure that the returned text and start_codepoint are
# applicable to our model of a single start column.
#
# Unfortunately (perhaps) we have to do this both here and in
# DetailCandidates when resolve is required. This is because the filtering
# should be based on ycmd's version of the insertion_text. Fortunately it's
# likely much quicker to do the simple calculations inline rather than a
# series of potentially many blocking server round trips.
return ( self._CandidatesFromCompletionItems(
items,
LanguageServerCompleter.RESOLVE_NONE,
request_data ),
is_incomplete )
def _GetCandidatesFromSubclass( self, request_data ):
cache_completions = self._completions_cache.GetCompletionsIfCacheValid(
request_data )
if cache_completions:
return cache_completions
codepoint = self.GetCodepointForCompletionRequest( request_data )
raw_completions, is_incomplete = self.ComputeCandidatesInner( request_data,
codepoint )
self._completions_cache.Update( request_data,
raw_completions,
is_incomplete )
return raw_completions
def DetailCandidates( self, request_data, completions ):
if not self._resolve_completion_items:
return completions
if not self.ShouldDetailCandidateList( completions ):
return completions
# Note: _CandidatesFromCompletionItems does a lot of work on the actual
# completion text to ensure that the returned text and start_codepoint are
# applicable to our model of a single start column.
#
# While we did this before, this time round we will have much better data to
# do it on, and the new calculated value is dependent on the set of filtered
# data, possibly leading to significantly smaller overlap with existing
# text. See the fixup algorithm for more details on that.
return self._CandidatesFromCompletionItems(
[ c[ 'extra_data' ][ 'item' ] for c in completions ],
LanguageServerCompleter.RESOLVE_ALL,
request_data )
def DetailSingleCandidate( self, request_data, completions, to_resolve ):
completion = completions[ to_resolve ]
if not self._resolve_completion_items:
return completion
return self._CandidatesFromCompletionItems(
[ completion[ 'extra_data' ][ 'item' ] ],
LanguageServerCompleter.RESOLVE_ALL,
request_data )[ 0 ]
def _ResolveCompletionItem( self, item ):
try:
resolve_id = self.GetConnection().NextRequestId()
resolve = lsp.ResolveCompletion( resolve_id, item )
response = self.GetConnection().GetResponse(
resolve_id,
resolve,
REQUEST_TIMEOUT_COMPLETION )
item.clear()
item.update( response[ 'result' ] )
except ResponseFailedException:
LOGGER.exception( 'A completion item could not be resolved. Using '
'basic data' )
return item
def _ShouldResolveCompletionItems( self ):
# We might not actually need to issue the resolve request if the server
# claims that it doesn't support it. However, we still might need to fix up
# the completion items.
return ( self._server_capabilities.get( 'completionProvider' ) or {} ).get(
'resolveProvider', False )
def _CandidatesFromCompletionItems( self,
items,
resolve_completions,
request_data ):
"""Issue the resolve request for each completion item in |items|, then fix
up the items such that a single start codepoint is used."""
#
# Important note on the following logic:
#
# Language server protocol requires that clients support textEdits in
# completion items. It imposes some restrictions on the textEdit, namely:
# * the edit range must cover at least the original requested position,
# * and that it is on a single line.
#
# We only get textEdits (usually) for items which were successfully
# resolved. Otherwise we just get insertion text, which might overlap the
# existing text.
#
# Importantly there is no restriction that all edits start and end at the
# same point.
#
# ycmd protocol only supports a single start column, so we must post-process
# the completion items to work out a single start column to use, as follows:
# * read all completion items text and start codepoint and store them
# * store the minimum start codepoint encountered
# * go back through the completion items and modify them so that they
# contain enough text to start from the minimum start codepoint
# * set the completion start codepoint to the minimum start point
#
# The last part involves reading the original source text and padding out
# completion items so that they all start at the same point.
#
# This is neither particularly pretty nor efficient, but it is necessary.
# Significant completions, such as imports, do not work without it in
# jdt.ls.
#
completions = []
start_codepoints = []
unique_start_codepoints = []
min_start_codepoint = request_data[ 'start_codepoint' ]
# First generate all of the completion items and store their
# start_codepoints. Then, we fix-up the completion texts to use the
# earliest start_codepoint by borrowing text from the original line.
for idx, item in enumerate( items ):
this_tem_is_resolved = item.get( '_resolved', False )
if ( resolve_completions and
not this_tem_is_resolved and
self._resolve_completion_items ):
self._ResolveCompletionItem( item )
item[ '_resolved' ] = True
this_tem_is_resolved = True
try:
insertion_text, extra_data, start_codepoint = (
_InsertionTextForItem( request_data, item ) )
except IncompatibleCompletionException:
LOGGER.exception( 'Ignoring incompatible completion suggestion %s',
item )
continue
if not resolve_completions and self._resolve_completion_items:
extra_data = {} if extra_data is None else extra_data
# Deferred resolve - the client must read this and send the
# /resolve_completion request to update the candidate set
extra_data[ 'resolve' ] = idx
# Store the actual item in the extra_data area of the completion item.
# We'll use this later to do the resolve.
extra_data[ 'item' ] = item
min_start_codepoint = min( min_start_codepoint, start_codepoint )
# Build a ycmd-compatible completion for the text as we received it. Later
# we might modify insertion_text should we see a lower start codepoint.
completions.append( _CompletionItemToCompletionData(
insertion_text,
item,
extra_data ) )
start_codepoints.append( start_codepoint )
if start_codepoint not in unique_start_codepoints:
unique_start_codepoints.append( start_codepoint )
if ( len( completions ) > 1 and
len( unique_start_codepoints ) > 1 and
min_start_codepoint != request_data[ 'start_codepoint' ] ):
# We need to fix up the completions, go do that
return _FixUpCompletionPrefixes( completions,
start_codepoints,
request_data,
min_start_codepoint )
request_data[ 'start_codepoint' ] = min_start_codepoint
return completions
def SignatureHelpAvailable( self ):
if self._signature_help_disabled:
return responses.SignatureHelpAvailalability.NOT_AVAILABLE
if not self.ServerIsReady():
return responses.SignatureHelpAvailalability.PENDING
if bool( self._server_capabilities.get( 'signatureHelpProvider' ) ):
return responses.SignatureHelpAvailalability.AVAILABLE
else:
return responses.SignatureHelpAvailalability.NOT_AVAILABLE
def ComputeSignaturesInner( self, request_data ):
if not self.ServerIsReady():
return {}
if not self._server_capabilities.get( 'signatureHelpProvider' ):
return {}
self._UpdateServerWithCurrentFileContents( request_data )
request_id = self.GetConnection().NextRequestId()
msg = lsp.SignatureHelp( request_id, request_data )
response = self.GetConnection().GetResponse( request_id,
msg,
REQUEST_TIMEOUT_COMPLETION )
result = response[ 'result' ]
if result is None:
return {}
for sig in result[ 'signatures' ]:
sig_label = sig[ 'label' ]
end = 0
if sig.get( 'parameters' ) is None:
sig[ 'parameters' ] = []
for arg in sig[ 'parameters' ]:
arg_label = arg[ 'label' ]
if not isinstance( arg_label, list ):
begin = sig[ 'label' ].find( arg_label, end )
end = begin + len( arg_label )
else:
begin, end = arg_label
arg[ 'label' ] = [
utils.CodepointOffsetToByteOffset( sig_label, begin + 1 ) - 1,
utils.CodepointOffsetToByteOffset( sig_label, end + 1 ) - 1 ]
result.setdefault( 'activeParameter', 0 )
result.setdefault( 'activeSignature', 0 )
return result
def ComputeSemanticTokens( self, request_data ):
if not self._initialize_event.wait( REQUEST_TIMEOUT_COMPLETION ):
return {}
if not self._ServerIsInitialized():
return {}
if not self._semantic_token_atlas:
return {}
range_supported = self._server_capabilities[ 'semanticTokensProvider' ].get(
'range', False )
self._UpdateServerWithCurrentFileContents( request_data )
request_id = self.GetConnection().NextRequestId()
body = lsp.SemanticTokens( request_id, range_supported, request_data )
for _ in RetryOnFailure( [ lsp.Errors.ContentModified ] ):
response = self._connection.GetResponse(
request_id,
body,
3 * REQUEST_TIMEOUT_COMPLETION )
if response is None:
return {}
filename = request_data[ 'filepath' ]
contents = GetFileLines( request_data, filename )
result = response.get( 'result' ) or {}
tokens = _DecodeSemanticTokens( self._semantic_token_atlas,
result.get( 'data' ) or [],
filename,
contents )
return {
'tokens': tokens
}
def ComputeInlayHints( self, request_data ):
if not self._initialize_event.wait( REQUEST_TIMEOUT_COMPLETION ):
return []
if not self._ServerIsInitialized():
return []
if 'inlayHintProvider' not in self._server_capabilities:
return []
self._UpdateServerWithCurrentFileContents( request_data )
request_id = self.GetConnection().NextRequestId()
body = lsp.InlayHints( request_id, request_data )
for _ in RetryOnFailure( [ lsp.Errors.ContentModified ] ):
response = self._connection.GetResponse(
request_id,
body,
3 * REQUEST_TIMEOUT_COMPLETION )
if response is None:
return []
file_contents = GetFileLines( request_data, request_data[ 'filepath' ] )
def BuildLabel( label_or_labels ):
if isinstance( label_or_labels, list ):
return ' '.join( label[ 'value' ] for label in label_or_labels )
return label_or_labels
def BuildInlayHint( inlay_hint: dict ):
try:
kind = lsp.INLAY_HINT_KIND[ inlay_hint[ 'kind' ] ]
except KeyError:
kind = 'Unknown'
return {
'kind': kind,
'position': responses.BuildLocationData(
_BuildLocationAndDescription(
request_data[ 'filepath' ],
file_contents,
inlay_hint[ 'position' ] )[ 0 ]
),
'label': BuildLabel( inlay_hint[ 'label' ] ),
'paddingLeft': inlay_hint.get( 'paddingLeft', False ),
'paddingRight': inlay_hint.get( 'paddingRight', False ),
}
return [ BuildInlayHint( h ) for h in response.get( 'result' ) or [] ]
def GetDetailedDiagnostic( self, request_data ):
self._UpdateServerWithFileContents( request_data )
current_line_lsp = request_data[ 'line_num' ] - 1
current_file = request_data[ 'filepath' ]
if not self._latest_diagnostics:
return responses.BuildDisplayMessageResponse(
'Diagnostics are not ready yet.' )
with self._latest_diagnostics_mutex:
diagnostics = list( self._latest_diagnostics[
lsp.FilePathToUri( current_file ) ] )
if not diagnostics:
return responses.BuildDisplayMessageResponse(
'No diagnostics for current file.' )
current_column = lsp.CodepointsToUTF16CodeUnits(
GetFileLines( request_data, current_file )[ current_line_lsp ],
request_data[ 'column_codepoint' ] )
minimum_distance = None
message = 'No diagnostics for current line.'
for diagnostic in diagnostics:
start = diagnostic[ 'range' ][ 'start' ]
end = diagnostic[ 'range' ][ 'end' ]
if current_line_lsp < start[ 'line' ] or end[ 'line' ] < current_line_lsp:
continue
point = { 'line': current_line_lsp, 'character': current_column }
distance = _DistanceOfPointToRange( point, diagnostic[ 'range' ] )
if minimum_distance is None or distance < minimum_distance:
message = diagnostic[ 'message' ]
if distance == 0:
break
minimum_distance = distance
return responses.BuildDisplayMessageResponse( message )
@abc.abstractmethod
def GetServerName( self ):
""" A string representing a human readable name of the server."""
pass # pragma: no cover
def GetServerEnvironment( self ):
""" None or a dictionary containing the environment variables. """
return None
@abc.abstractmethod
def GetCommandLine( self ):
""" An override in a concrete class needs to return a list of cli arguments
for starting the LSP server."""
pass # pragma: no cover
def WorkspaceConfigurationResponse( self, request ):
"""If the concrete completer wants to respond to workspace/configuration
requests, it should override this method."""
return None
def ExtraCapabilities( self ):
""" If the server is a special snowflake that need special attention,
override this to supply special snowflake capabilities."""
return {}
def AdditionalLogFiles( self ):
""" Returns the list of server logs other than stderr. """
return []
def ExtraDebugItems( self, request_data ):
""" A list of DebugInfoItems """
return []
def DebugInfo( self, request_data ):
with self._server_info_mutex:
extras = self.CommonDebugItems() + self.ExtraDebugItems( request_data )
logfiles = [ self._stdout_file,
self._stderr_file ] + self.AdditionalLogFiles()
server = responses.DebugInfoServer(
name = self.GetServerName(),
handle = self._server_handle,
executable = self.GetCommandLine(),
port = self._port if self._connection_type == 'tcp' else None,
logfiles = logfiles,
extras = extras )
return responses.BuildDebugInfoResponse( name = self.GetCompleterName(),
servers = [ server ] )
def GetCustomSubcommands( self ):
"""Return a list of subcommand definitions to be used in conjunction with
the subcommands detected by _DiscoverSubcommandSupport. The return is a dict
whose keys are the subcommand and whose values are either:
- a callable, as compatible with GetSubcommandsMap, or
- a dict, compatible with DEFAULT_SUBCOMMANDS_MAP including a checker and
a callable.
If there are no custom subcommands, an empty dict should be returned."""
return {}
def GetSubcommandsMap( self ):
commands = {}
commands.update( DEFAULT_SUBCOMMANDS_MAP )
commands.update( {
'StopServer': (
lambda self, request_data, args: self.Shutdown()
),
'RestartServer': (
lambda self, request_data, args: self._RestartServer( request_data )
),
} )
if hasattr( self, 'GetDoc' ):
commands[ 'GetDoc' ] = (
lambda self, request_data, args: self.GetDoc( request_data )
)
if hasattr( self, 'GetType' ):
commands[ 'GetType' ] = (
lambda self, request_data, args: self.GetType( request_data )
)
if ( self._server_capabilities and
'callHierarchyProvider' in self._server_capabilities ):
commands[ 'GoToCallees' ] = (
lambda self, request_data, args:
self.CallHierarchy( request_data, [ 'outgoing' ] )
)
commands[ 'GoToCallers' ] = (
lambda self, request_data, args:
self.CallHierarchy( request_data, [ 'incoming' ] )
)
commands.update( self.GetCustomSubcommands() )
return self._DiscoverSubcommandSupport( commands )
def _GetSubcommandProvider( self, provider_list ):
if not self._server_capabilities:
LOGGER.warning( "Can't determine subcommands: not initialized yet" )
capabilities = {}
else:
capabilities = self._server_capabilities
for providers in provider_list:
if isinstance( providers, tuple ):
if all( capabilities.get( provider ) for provider in providers ):
return providers
if capabilities.get( providers ):
return providers
return None
def _DiscoverSubcommandSupport( self, commands ):
subcommands_map = {}
for command, handler in commands.items():
if isinstance( handler, list ):
provider = self._GetSubcommandProvider( handler )
if provider:
LOGGER.info( 'Found %s support for command %s in %s',
provider,
command,
self.Language() )
subcommands_map[ command ] = PROVIDERS_MAP[ provider ]
else:
LOGGER.info( 'No support for %s command in server for %s',
command,
self.Language() )
else:
LOGGER.info( 'Always supporting %s for %s',
command,
self.Language() )
subcommands_map[ command ] = handler
return subcommands_map
def DefaultSettings( self, request_data ):
return {}
def _GetSettingsFromExtraConf( self, request_data ):
# The DefaultSettings method returns only the 'language server" ('ls')
# settings, but self._settings is a wider dict containing a 'ls' key and any
# other keys that we might want to add (e.g. 'project_directory',
# 'capabilities', etc.)
merged_ls_settings = self.DefaultSettings( request_data )
# If there is no extra-conf, the total settings are just the defaults:
self._settings = {
'ls': merged_ls_settings
}
module = extra_conf_store.ModuleForSourceFile( request_data[ 'filepath' ] )
if module:
# The user-defined settings may contain a 'ls' key, which override (merge
# with) the DefaultSettings, and any other keys we specify generically for
# all LSP-based completers (such as 'project_directory').
user_settings = self.GetSettings( module, request_data )
# Merge any user-supplied 'ls' settings with the defaults
if 'ls' in user_settings:
merged_ls_settings.update( user_settings[ 'ls' ] )
user_settings[ 'ls' ] = merged_ls_settings
self._settings = user_settings
# Only return the dir if it was found in the paths; we don't want to use
# the path of the global extra conf as a project root dir.
if not extra_conf_store.IsGlobalExtraConfModule( module ):
LOGGER.debug( 'Using path %s for extra_conf_dir',
os.path.dirname( module.__file__ ) )
return os.path.dirname( module.__file__ )
# No local extra conf
return None
def _StartAndInitializeServer( self, request_data, *args, **kwargs ):
"""Starts the server and sends the initialize request, assuming the start is
successful. |args| and |kwargs| are passed through to the underlying call to
StartServer. In general, completers don't need to call this as it is called
automatically in OnFileReadyToParse, but this may be used in completer
subcommands that require restarting the underlying server."""
self._server_started = False
self._extra_conf_dir = self._GetSettingsFromExtraConf( request_data )
# Only attempt to start the server once. Set this after above call as it may
# throw an exception
self._server_started = True
if self.StartServer( request_data, *args, **kwargs ):
self._SendInitialize( request_data )
def OnFileReadyToParse( self, request_data ):
if not self.ServerIsHealthy() and not self._server_started:
# We have to get the settings before starting the server, as this call
# might throw UnknownExtraConf.
self._StartAndInitializeServer( request_data )
if not self.ServerIsHealthy():
return
# If we haven't finished initializing yet, we need to queue up all functions
# registered on the FileReadyToParse event and in particular
# _UpdateServerWithFileContents in reverse order of registration. This
# ensures that the server is up to date as soon as we are able to send more
# messages. This is important because server start up can be quite slow and
# we must not block the user, while we must keep the server synchronized.
if not self._initialize_event.is_set():
for handler in reversed( self._on_file_ready_to_parse_handlers ):
self._OnInitializeComplete( partial( handler,
request_data = request_data ) )
return
for handler in reversed( self._on_file_ready_to_parse_handlers ):
handler( self, request_data )
# Return the latest diagnostics that we have received.
#
# NOTE: We also return diagnostics asynchronously via the long-polling
# mechanism to avoid timing issues with the servers asynchronous publication
# of diagnostics.
#
# However, we _also_ return them here to refresh diagnostics after, say
# changing the active file in the editor, or for clients not supporting the
# polling mechanism.
filepath = request_data[ 'filepath' ]
uri = lsp.FilePathToUri( filepath )
contents = GetFileLines( request_data, filepath )
with self._latest_diagnostics_mutex:
if uri in self._latest_diagnostics:
diagnostics = [ _BuildDiagnostic( contents, uri, diag )
for diag in self._latest_diagnostics[ uri ] ]
return responses.BuildDiagnosticResponse(
diagnostics, filepath, self.max_diagnostics_to_display )
def PollForMessagesInner( self, request_data, timeout ):
# If there are messages pending in the queue, return them immediately
messages = self._GetPendingMessages( request_data )
if messages:
return messages
# Otherwise, block until we get one or we hit the timeout.
return self._AwaitServerMessages( request_data, timeout )
def _GetPendingMessages( self, request_data ):
"""Convert any pending notifications to messages and return them in a list.
If there are no messages pending, returns an empty list. Returns False if an
error occurred and no further polling should be attempted."""
messages = []
if not self._initialize_event.is_set():
# The request came before we started up, there cannot be any messages
# pending, and in any case they will be handled later.
return messages
try:
while True:
if not self.GetConnection():
# The server isn't running or something. Don't re-poll.
return False
notification = self.GetConnection()._notifications.get_nowait()
message = self.ConvertNotificationToMessage( request_data,
notification )
if message:
messages.append( message )
except queue.Empty:
# We drained the queue
pass
return messages
def _AwaitServerMessages( self, request_data, timeout ):
"""Block until either we receive a notification, or a timeout occurs.
Returns one of the following:
- a list containing a single message
- True if a timeout occurred, and the poll should be restarted
- False if an error occurred, and no further polling should be attempted
"""
try:
while True:
if not self._initialize_event.is_set():
# The request came before we started up, wait for startup to complete,
# then tell the client to re-send the request. Note, we perform this
# check on every iteration, as the server may be legitimately
# restarted while this loop is running.
self._initialize_event.wait( timeout=timeout )
# If the timeout is hit waiting for the server to be ready, after we
# tried to start the server, we return False and kill the message
# poll.
return not self._server_started or self._initialize_event.is_set()
if not self.GetConnection():
# The server isn't running or something. Don't re-poll, as this will
# just cause errors.
return False
notification = self.GetConnection()._notifications.get(
timeout = timeout )
message = self.ConvertNotificationToMessage( request_data,
notification )
if message:
return [ message ]
except queue.Empty:
return True
def GetDefaultNotificationHandler( self ):
"""Return a notification handler method suitable for passing to
LanguageServerConnection constructor"""
def handler( server, notification ):
self.HandleNotificationInPollThread( notification )
return handler
def HandleNotificationInPollThread( self, notification ):
"""Called by the LanguageServerConnection in its message pump context when a
notification message arrives."""
if notification[ 'method' ] == 'textDocument/publishDiagnostics':
# Some clients might not use a message poll, so we must store the
# diagnostics and return them in OnFileReadyToParse. We also need these
# for correct FixIt handling, as they are part of the FixIt context.
params = notification[ 'params' ]
# Since percent-encoded strings are not canonical, they can choose to use
# upper case or lower case letters, also there are some characters that
# can be encoded or not. Therefore, we convert them back and forth
# according to our implementation to make sure they are in a canonical
# form for access later on.
try:
uri = lsp.FilePathToUri( lsp.UriToFilePath( params[ 'uri' ] ) )
except lsp.InvalidUriException:
# Ignore diagnostics for URIs we don't recognise
LOGGER.debug(
f'Ignoring diagnostics for unrecognized URI: { params[ "uri" ] }' )
return
with self._latest_diagnostics_mutex:
self._latest_diagnostics[ uri ] = params[ 'diagnostics' ]
def ConvertNotificationToMessage( self, request_data, notification ):
"""Convert the supplied server notification to a ycmd message. Returns None
if the notification should be ignored.
Implementations may override this method to handle custom notifications, but
must always call the base implementation for unrecognized notifications."""
if notification[ 'method' ] == 'window/showMessage':
return responses.BuildDisplayMessageResponse(
notification[ 'params' ][ 'message' ] )
if notification[ 'method' ] == 'textDocument/publishDiagnostics':
params = notification[ 'params' ]
uri = params[ 'uri' ]
try:
filepath = lsp.UriToFilePath( uri )
except lsp.InvalidUriException:
LOGGER.exception( 'Ignoring diagnostics for unrecognized URI' )
return None
with self._server_info_mutex:
if filepath in self._server_file_state:
contents = utils.SplitLines(
self._server_file_state[ filepath ].contents )
else:
contents = GetFileLines( request_data, filepath )
diagnostics = [ _BuildDiagnostic( contents, uri, x )
for x in params[ 'diagnostics' ] ]
return {
'diagnostics': responses.BuildDiagnosticResponse(
diagnostics, filepath, self.max_diagnostics_to_display ),
'filepath': filepath
}
if notification[ 'method' ] == 'window/logMessage':
log_level = [
None, # 1-based enum from LSP
logging.ERROR,
logging.WARNING,
logging.INFO,
logging.DEBUG,
]
params = notification[ 'params' ]
LOGGER.log( log_level[ int( params[ 'type' ] ) ],
'Server reported: %s',
params[ 'message' ] )
return None
def _AnySupportedFileType( self, file_types ):
for supported in self.SupportedFiletypes():
if supported in file_types:
return True
return False
def _UpdateServerWithCurrentFileContents( self, request_data ):
file_name = request_data[ 'filepath' ]
contents = GetFileContents( request_data, file_name )
filetypes = request_data[ 'filetypes' ]
with self._server_info_mutex:
self._RefreshFileContentsUnderLock( file_name, contents, filetypes )
def _UpdateServerWithFileContents( self, request_data ):
"""Update the server with the current contents of all open buffers, and
close any buffers no longer open.
This method should be called frequently and in any event before a
synchronous operation."""
with self._server_info_mutex:
self._UpdateDirtyFilesUnderLock( request_data )
files_to_purge = self._UpdateSavedFilesUnderLock( request_data )
self._PurgeMissingFilesUnderLock( files_to_purge )
def _RefreshFileContentsUnderLock( self, file_name, contents, file_types ):
file_state = self._server_file_state[ file_name ]
action = file_state.GetDirtyFileAction( contents )
LOGGER.debug( 'Refreshing file %s: State is %s/action %s',
file_name,
file_state.state,
action )
if action == lsp.ServerFileState.OPEN_FILE:
msg = lsp.DidOpenTextDocument( file_state,
file_types,
contents )
self.GetConnection().SendNotification( msg )
elif action == lsp.ServerFileState.CHANGE_FILE:
# FIXME: DidChangeTextDocument doesn't actually do anything
# different from DidOpenTextDocument other than send the right
# message, because we don't actually have a mechanism for generating
# the diffs. This isn't strictly necessary, but might lead to
# performance problems.
msg = lsp.DidChangeTextDocument( file_state, contents )
self.GetConnection().SendNotification( msg )
def _UpdateDirtyFilesUnderLock( self, request_data ):
for file_name, file_data in request_data[ 'file_data' ].items():
if not self._AnySupportedFileType( file_data[ 'filetypes' ] ):
LOGGER.debug( 'Not updating file %s, it is not a supported filetype: '
'%s not in %s',
file_name,
file_data[ 'filetypes' ],
self.SupportedFiletypes() )
continue
self._RefreshFileContentsUnderLock( file_name,
file_data[ 'contents' ],
file_data[ 'filetypes' ] )
def _UpdateSavedFilesUnderLock( self, request_data ):
files_to_purge = []
for file_name, file_state in self._server_file_state.items():
if file_name in request_data[ 'file_data' ]:
continue
# We also need to tell the server the contents of any files we have said
# are open, but are not 'dirty' in the editor. This is because after
# sending a didOpen notification, we own the contents of the file.
#
# So for any file that is in the server map, and open, but not supplied in
# the request, we check to see if its on-disk contents match the latest in
# the server. If they don't, we send an update.
#
# FIXME: This is really inefficient currently, as it reads the entire file
# on every update. It might actually be better to close files which have
# been saved and are no longer "dirty", though that would likely be less
# efficient for downstream servers which cache e.g. AST.
try:
contents = GetFileContents( request_data, file_name )
except IOError:
LOGGER.exception( 'Error getting contents for open file: %s',
file_name )
# The file no longer exists (it might have been a temporary file name)
# or it is no longer accessible, so we should state that it is closed.
# If it were still open it would have been in the request_data.
#
# We have to do this in a separate loop because we can't change
# self._server_file_state while iterating it.
files_to_purge.append( file_name )
continue
action = file_state.GetSavedFileAction( contents )
if action == lsp.ServerFileState.CHANGE_FILE:
msg = lsp.DidChangeTextDocument( file_state, contents )
self.GetConnection().SendNotification( msg )
return files_to_purge
def _PurgeMissingFilesUnderLock( self, files_to_purge ):
# ycmd clients only send buffers which have changed, and are required to
# send BufferUnload autocommand when files are closed.
for file_name in files_to_purge:
self._PurgeFileFromServer( file_name )
def OnFileSave( self, request_data ):
if not self.ServerIsReady():
return
if self._sync_type != 'None':
sync = self._server_capabilities[ 'textDocumentSync' ]
file_name = request_data[ 'filepath' ]
contents = None
if isinstance( sync, dict ):
save = sync.get( 'save' )
if save in [ None, False ]:
return
if isinstance( save, dict ) and save.get( 'includeText' ):
contents = request_data[ 'file_data' ][ file_name ][ 'contents' ]
file_state = self._server_file_state[ file_name ]
msg = lsp.DidSaveTextDocument( file_state, contents )
self.GetConnection().SendNotification( msg )
def OnBufferUnload( self, request_data ):
if not self.ServerIsHealthy():
return
# If we haven't finished initializing yet, we need to queue up a call to
# _PurgeFileFromServer. This ensures that the server is up to date
# as soon as we are able to send more messages. This is important because
# server start up can be quite slow and we must not block the user, while we
# must keep the server synchronized.
if not self._initialize_event.is_set():
self._OnInitializeComplete(
lambda self: self._PurgeFileFromServer( request_data[ 'filepath' ] ) )
return
self._PurgeFileFromServer( request_data[ 'filepath' ] )
def _PurgeFileFromServer( self, file_path ):
file_state = self._server_file_state[ file_path ]
action = file_state.GetFileCloseAction()
if action == lsp.ServerFileState.CLOSE_FILE:
msg = lsp.DidCloseTextDocument( file_state )
self.GetConnection().SendNotification( msg )
del self._server_file_state[ file_state.filename ]
def GetProjectRootFiles( self ):
"""Returns a list of files that indicate the root of the project.
It should be easier to override just this method than the whole
GetProjectDirectory."""
return []
def GetProjectDirectory( self, request_data ):
"""Return the directory in which the server should operate. Language server
protocol and most servers have a concept of a 'project directory'. Where a
concrete completer can detect this better, it should override this method,
but otherwise, we default as follows:
- If the user specified 'project_directory' in their extra conf
'Settings', use that.
- try to find files from GetProjectRootFiles and use the
first directory from there
- if there's an extra_conf file, use that directory
- otherwise if we know the client's cwd, use that
- otherwise use the directory of the file that we just opened
Note: None of these are ideal. Ycmd doesn't really have a notion of project
directory and therefore neither do any of our clients.
NOTE: Must be called _after_ _GetSettingsFromExtraConf, as it uses
self._settings and self._extra_conf_dir
"""
if 'project_directory' in self._settings:
return utils.AbsolutePath( self._settings[ 'project_directory' ],
self._extra_conf_dir )
project_root_files = self.GetProjectRootFiles()
if project_root_files:
for folder in utils.PathsToAllParentFolders( request_data[ 'filepath' ] ):
for root_file in project_root_files:
if os.path.isfile( os.path.join( folder, root_file ) ):
return folder
if self._extra_conf_dir:
return self._extra_conf_dir
if 'working_dir' in request_data:
return request_data[ 'working_dir' ]
return os.path.dirname( request_data[ 'filepath' ] )
def _SendInitialize( self, request_data ):
"""Sends the initialize request asynchronously.
This must be called immediately after establishing the connection with the
language server. Implementations must not issue further requests to the
server until the initialize exchange has completed. This can be detected by
calling this class's implementation of _ServerIsInitialized.
_GetSettingsFromExtraConf must be called before calling this method, as this
method release on self._extra_conf_dir.
It is called before starting the server in OnFileReadyToParse."""
with self._server_info_mutex:
assert not self._initialize_response
request_id = self.GetConnection().NextRequestId()
# FIXME: According to the discussion on
# https://github.com/Microsoft/language-server-protocol/issues/567
# the settings on the Initialize request are somehow subtly different from
# the settings supplied in didChangeConfiguration, though it's not exactly
# clear how/where that is specified.
msg = lsp.Initialize( request_id,
self._project_directory,
self.ExtraCapabilities(),
self._settings.get( 'ls', {} ) )
def response_handler( response, message ):
if message is None:
return
self._HandleInitializeInPollThread( message )
self._initialize_response = self.GetConnection().GetResponseAsync(
request_id,
msg,
response_handler )
def GetTriggerCharacters( self, server_trigger_characters ):
"""Given the server trigger characters supplied in the initialize response,
returns the trigger characters to merge with the ycmd-defined ones. By
default, all server trigger characters are merged in. Note this might not be
appropriate in all cases as ycmd's own triggering mechanism is more
sophisticated (regex based) than LSP's (single character). If the
server-supplied single-character triggers are not useful, override this
method to return an empty list or None."""
return server_trigger_characters
def GetSignatureTriggerCharacters( self, server_trigger_characters ):
"""Same as _GetTriggerCharacters but for signature help."""
return server_trigger_characters
def _SetUpSemanticTokenAtlas( self, capabilities: dict ):
server_config = capabilities.get( 'semanticTokensProvider' )
if server_config is None:
return
server_full_support = server_config.get( 'full' )
if server_full_support == {}:
server_full_support = True
if not server_full_support:
return
self._semantic_token_atlas = TokenAtlas( server_config[ 'legend' ] )
def _HandleInitializeInPollThread( self, response ):
"""Called within the context of the LanguageServerConnection's message pump
when the initialize request receives a response."""
with self._server_info_mutex:
self._server_capabilities = response[ 'result' ][ 'capabilities' ]
self._resolve_completion_items = self._ShouldResolveCompletionItems()
if self._resolve_completion_items:
LOGGER.info( '%s: Language server requires resolve request',
self.Language() )
else:
LOGGER.info( '%s: Language server does not require resolve request',
self.Language() )
self._is_completion_provider = (
'completionProvider' in self._server_capabilities )
self._SetUpSemanticTokenAtlas( self._server_capabilities )
if 'textDocumentSync' in self._server_capabilities:
sync = self._server_capabilities[ 'textDocumentSync' ]
SYNC_TYPE = [
'None',
'Full',
'Incremental'
]
# The sync type can either be a number or an object. Because it's
# important to make things difficult.
if isinstance( sync, dict ):
if 'change' in sync:
sync = sync[ 'change' ]
else:
sync = 0
elif isinstance( sync, int ):
if sync < 0 or sync > 2:
sync = 0
else:
sync = 0
self._sync_type = SYNC_TYPE[ sync ]
LOGGER.info( '%s: Language server requires sync type of %s',
self.Language(),
self._sync_type )
# Update our semantic triggers if they are supplied by the server
if self.completion_triggers is not None:
server_trigger_characters = (
( self._server_capabilities.get( 'completionProvider' ) or {} )
.get( 'triggerCharacters' ) or []
)
LOGGER.debug( '%s: Server declares trigger characters: %s',
self.Language(),
server_trigger_characters )
trigger_characters = self.GetTriggerCharacters(
server_trigger_characters )
if trigger_characters:
LOGGER.info( '%s: Using trigger characters for semantic triggers: %s',
self.Language(),
','.join( trigger_characters ) )
self.completion_triggers.SetServerSemanticTriggers(
trigger_characters )
if self._signature_triggers is not None:
server_trigger_characters = (
( self._server_capabilities.get( 'signatureHelpProvider' ) or {} )
.get( 'triggerCharacters' ) or []
)
LOGGER.debug( '%s: Server declares signature trigger characters: %s',
self.Language(),
server_trigger_characters )
trigger_characters = self.GetSignatureTriggerCharacters(
server_trigger_characters )
if trigger_characters:
LOGGER.info( '%s: Using characters for signature triggers: %s',
self.Language(),
','.join( trigger_characters ) )
self.SetSignatureHelpTriggers( trigger_characters )
# We must notify the server that we received the initialize response (for
# no apparent reason, other than that's what the protocol says).
self.GetConnection().SendNotification( lsp.Initialized() )
# Some language servers require the use of didChangeConfiguration event,
# even though it is not clear in the specification that it is mandatory,
# nor when it should be sent. VSCode sends it immediately after
# initialized notification, so we do the same.
# FIXME: According to
# https://github.com/Microsoft/language-server-protocol/issues/567 the
# configuration should be send in response to a workspace/configuration
# request?
self.GetConnection().SendNotification(
lsp.DidChangeConfiguration( self._settings.get( 'ls', {} ) ) )
# Notify the other threads that we have completed the initialize exchange.
self._initialize_response = None
self._initialize_event.set()
# Fire any events that are pending on the completion of the initialize
# exchange. Typically, this will be calls to _UpdateServerWithFileContents
# or something that occurred while we were waiting.
for handler in self._on_initialize_complete_handlers:
handler( self )
self._on_initialize_complete_handlers = []
def _OnInitializeComplete( self, handler ):
"""Register a function to be called when the initialize exchange completes.
The function |handler| will be called on successful completion of the
initialize exchange with a single argument |self|, which is the |self|
passed to this method.
If the server is shut down or reset, the callback is not called."""
self._on_initialize_complete_handlers.append( handler )
def RegisterOnFileReadyToParse( self, handler ):
self._on_file_ready_to_parse_handlers.append( handler )
def GetHoverResponse( self, request_data ):
"""Return the raw LSP response to the hover request for the supplied
context. Implementations can use this for e.g. GetDoc and GetType requests,
depending on the particular server response."""
if not self._ServerIsInitialized():
raise RuntimeError( 'Server is initializing. Please wait.' )
self._UpdateServerWithFileContents( request_data )
request_id = self.GetConnection().NextRequestId()
response = self.GetConnection().GetResponse(
request_id,
lsp.Hover( request_id, request_data ),
REQUEST_TIMEOUT_COMMAND )
result = response[ 'result' ]
if result:
return result[ 'contents' ]
raise NoHoverInfoException( NO_HOVER_INFORMATION )
def _GoToRequest( self, request_data, handler ):
request_id = self.GetConnection().NextRequestId()
try:
result = self.GetConnection().GetResponse(
request_id,
getattr( lsp, handler )( request_id, request_data ),
REQUEST_TIMEOUT_COMMAND )[ 'result' ]
except ResponseFailedException:
result = None
if not result:
raise RuntimeError( 'Cannot jump to location' )
if not isinstance( result, list ):
return [ result ]
return result
def GoTo( self, request_data, handlers ):
"""Issues a GoTo request for each handler in |handlers| until it returns
multiple locations or a location the cursor does not belong since the user
wants to jump somewhere else. If that's the last handler, the location is
returned anyway."""
if not self.ServerIsReady():
raise RuntimeError( 'Server is initializing. Please wait.' )
self._UpdateServerWithFileContents( request_data )
if len( handlers ) == 1:
result = self._GoToRequest( request_data, handlers[ 0 ] )
else:
for handler in handlers:
result = self._GoToRequest( request_data, handler )
if len( result ) > 1 or not _CursorInsideLocation( request_data,
result[ 0 ] ):
break
return _LocationListToGoTo( request_data, result )
def GoToSymbol( self, request_data, args ):
if not self.ServerIsReady():
raise RuntimeError( 'Server is initializing. Please wait.' )
self._UpdateServerWithFileContents( request_data )
if len( args ) < 1:
raise RuntimeError( 'Must specify something to search for' )
query = args[ 0 ]
request_id = self.GetConnection().NextRequestId()
response = self.GetConnection().GetResponse(
request_id,
lsp.WorkspaceSymbol( request_id, query ),
REQUEST_TIMEOUT_COMMAND )
result = response.get( 'result' ) or []
return _SymbolInfoListToGoTo( request_data, result )
def GoToDocumentOutline( self, request_data ):
if not self.ServerIsReady():
raise RuntimeError( 'Server is initializing. Please wait.' )
self._UpdateServerWithFileContents( request_data )
request_id = self.GetConnection().NextRequestId()
message = lsp.DocumentSymbol( request_id, request_data )
response = self.GetConnection().GetResponse( request_id,
message,
REQUEST_TIMEOUT_COMMAND )
result = response.get( 'result' ) or []
# We should only receive SymbolInformation (not DocumentSymbol)
if any( 'range' in s for s in result ):
raise ValueError(
"Invalid server response; DocumentSymbol not supported" )
return _SymbolInfoListToGoTo( request_data, result )
def CallHierarchy( self, request_data, args ):
if not self.ServerIsReady():
raise RuntimeError( 'Server is initializing. Please wait.' )
self._UpdateServerWithFileContents( request_data )
request_id = self.GetConnection().NextRequestId()
message = lsp.PrepareCallHierarchy( request_id, request_data )
prepare_response = self.GetConnection().GetResponse(
request_id,
message,
REQUEST_TIMEOUT_COMMAND )
preparation_item = prepare_response.get( 'result' ) or []
if not preparation_item:
raise RuntimeError( f'No { args[ 0 ] } calls found.' )
assert len( preparation_item ) == 1, (
'Not available: Multiple hierarchies were received, '
'this is not currently supported.' )
preparation_item = preparation_item[ 0 ]
request_id = self.GetConnection().NextRequestId()
message = lsp.CallHierarchy( request_id, args[ 0 ], preparation_item )
response = self.GetConnection().GetResponse( request_id,
message,
REQUEST_TIMEOUT_COMMAND )
result = response.get( 'result' ) or []
goto_response = []
for hierarchy_item in result:
description = hierarchy_item.get( 'from', hierarchy_item.get( 'to' ) )
filepath = lsp.UriToFilePath( description[ 'uri' ] )
start_position = hierarchy_item[ 'fromRanges' ][ 0 ][ 'start' ]
goto_line = start_position[ 'line' ]
try:
line_value = GetFileLines( request_data, filepath )[ goto_line ]
except IndexError:
continue
goto_column = utils.CodepointOffsetToByteOffset(
line_value,
lsp.UTF16CodeUnitsToCodepoints(
line_value,
start_position[ 'character' ] ) )
goto_response.append( responses.BuildGoToResponse(
filepath,
goto_line + 1,
goto_column + 1,
description[ 'name' ] ) )
if goto_response:
return goto_response
raise RuntimeError( f'No { args[ 0 ] } calls found.' )
def GetCodeActions( self, request_data ):
"""Performs the codeAction request and returns the result as a FixIt
response."""
if not self.ServerIsReady():
raise RuntimeError( 'Server is initializing. Please wait.' )
self._UpdateServerWithFileContents( request_data )
request_id = self.GetConnection().NextRequestId()
cursor_range_ls = lsp.Range( request_data )
with self._latest_diagnostics_mutex:
# _latest_diagnostics contains LSP rnages, _not_ YCM ranges
file_diagnostics = list( self._latest_diagnostics[
lsp.FilePathToUri( request_data[ 'filepath' ] ) ] )
matched_diagnostics = [
d for d in file_diagnostics if lsp.RangesOverlap( d[ 'range' ],
cursor_range_ls )
]
# If we didn't find any overlapping the strict range/character. Find any
# that overlap line of the cursor.
if not matched_diagnostics and 'range' not in request_data:
matched_diagnostics = [
d for d in file_diagnostics
if lsp.RangesOverlapLines( d[ 'range' ], cursor_range_ls )
]
code_actions = self.GetConnection().GetResponse(
request_id,
lsp.CodeAction( request_id,
request_data,
cursor_range_ls,
matched_diagnostics ),
REQUEST_TIMEOUT_COMMAND )
return self.CodeActionResponseToFixIts( request_data,
code_actions[ 'result' ] )
def CodeActionResponseToFixIts( self, request_data, code_actions ):
if code_actions is None:
return responses.BuildFixItResponse( [] )
fixits = []
for code_action in code_actions:
if 'edit' in code_action:
# TODO: Start supporting a mix of WorkspaceEdits and Commands
# once there's a need for such
assert 'command' not in code_action
# This is a WorkspaceEdit literal
fixits.append( self.CodeActionLiteralToFixIt( request_data,
code_action ) )
continue
# Either a CodeAction or a Command
assert 'command' in code_action
action_command = code_action[ 'command' ]
if isinstance( action_command, dict ):
# CodeAction with a 'command' rather than 'edit'
fixits.append( self.CodeActionCommandToFixIt( request_data,
code_action ) )
continue
# It is a Command
fixits.append( self.CommandToFixIt( request_data, code_action ) )
# Show a list of actions to the user to select which one to apply.
# This is (probably) a more common workflow for "code action".
result = [ r for r in fixits if r ]
if len( result ) == 1:
fixit = result[ 0 ]
if hasattr( fixit, 'resolve' ):
# Be nice and resolve the fixit to save on roundtrips
unresolved_fixit = {
'command': fixit.command,
'text': fixit.text,
'resolve': fixit.resolve
}
return self._ResolveFixit( request_data, unresolved_fixit )
return responses.BuildFixItResponse( result )
def CodeActionLiteralToFixIt( self, request_data, code_action_literal ):
return WorkspaceEditToFixIt(
request_data,
code_action_literal[ 'edit' ],
code_action_literal[ 'title' ],
code_action_literal.get( 'kind' ) )
def CodeActionCommandToFixIt( self, request_data, code_action_command ):
command = code_action_command[ 'command' ]
return self.CommandToFixIt(
request_data,
command,
code_action_command.get( 'kind' ) )
def CommandToFixIt( self, request_data, command, kind = None ):
return responses.UnresolvedFixIt( command,
command[ 'title' ],
kind )
def RefactorRename( self, request_data, args ):
"""Issues the rename request and returns the result as a FixIt response."""
if not self.ServerIsReady():
raise RuntimeError( 'Server is initializing. Please wait.' )
if len( args ) != 1:
raise ValueError( 'Please specify a new name to rename it to.\n'
'Usage: RefactorRename <new name>' )
self._UpdateServerWithFileContents( request_data )
new_name = args[ 0 ]
request_id = self.GetConnection().NextRequestId()
try:
response = self.GetConnection().GetResponse(
request_id,
lsp.Rename( request_id, request_data, new_name ),
REQUEST_TIMEOUT_COMMAND )
except ResponseFailedException:
raise RuntimeError( 'Cannot rename the symbol under cursor.' )
fixit = WorkspaceEditToFixIt( request_data, response[ 'result' ] )
if not fixit:
raise RuntimeError( 'Cannot rename the symbol under cursor.' )
return responses.BuildFixItResponse( [ fixit ] )
def Format( self, request_data ):
"""Issues the formatting or rangeFormatting request (depending on the
presence of a range) and returns the result as a FixIt response."""
if not self.ServerIsReady():
raise RuntimeError( 'Server is initializing. Please wait.' )
self._UpdateServerWithFileContents( request_data )
request_data[ 'options' ].update(
self.AdditionalFormattingOptions( request_data ) )
request_id = self.GetConnection().NextRequestId()
if 'range' in request_data:
message = lsp.RangeFormatting( request_id, request_data )
else:
message = lsp.Formatting( request_id, request_data )
response = self.GetConnection().GetResponse( request_id,
message,
REQUEST_TIMEOUT_COMMAND )
filepath = request_data[ 'filepath' ]
contents = GetFileLines( request_data, filepath )
chunks = [ responses.FixItChunk( text_edit[ 'newText' ],
_BuildRange( contents,
filepath,
text_edit[ 'range' ] ) )
for text_edit in response[ 'result' ] or [] ]
return responses.BuildFixItResponse( [ responses.FixIt(
responses.Location( request_data[ 'line_num' ],
request_data[ 'column_num' ],
request_data[ 'filepath' ] ),
chunks ) ] )
def _ResolveFixit( self, request_data, fixit ):
if not fixit[ 'resolve' ]:
return { 'fixits': [ fixit ] }
unresolved_fixit = fixit[ 'command' ]
collector = EditCollector()
with self.GetConnection().CollectApplyEdits( collector ):
self.GetCommandResponse(
request_data,
unresolved_fixit[ 'command' ],
unresolved_fixit[ 'arguments' ] )
# Return a ycmd fixit
response = collector.requests
assert len( response ) < 2
if not response:
return responses.BuildFixItResponse( [ responses.FixIt(
responses.Location( request_data[ 'line_num' ],
request_data[ 'column_num' ],
request_data[ 'filepath' ] ),
[] ) ] )
fixit = WorkspaceEditToFixIt(
request_data,
response[ 0 ][ 'edit' ],
unresolved_fixit[ 'title' ] )
return responses.BuildFixItResponse( [ fixit ] )
def ResolveFixit( self, request_data ):
return self._ResolveFixit( request_data, request_data[ 'fixit' ] )
def ExecuteCommand( self, request_data, args ):
if not args:
raise ValueError( 'Must specify a command to execute' )
# We don't have any actual knowledge of the responses here. Unfortunately,
# the LSP "commands" require client/server specific understanding of the
# commands.
collector = EditCollector()
with self.GetConnection().CollectApplyEdits( collector ):
command_response = self.GetCommandResponse( request_data,
args[ 0 ],
args[ 1: ] )
edits = collector.requests
response = self.HandleServerCommandResponse( request_data,
edits,
command_response )
if response is not None:
return response
if len( edits ):
fixits = [ WorkspaceEditToFixIt(
request_data,
e[ 'edit' ],
'' ) for e in edits ]
return responses.BuildFixItResponse( fixits )
return responses.BuildDetailedInfoResponse( json.dumps( command_response,
indent = 2 ) )
def GetCommandResponse( self, request_data, command, arguments ):
if not self.ServerIsReady():
raise RuntimeError( 'Server is initializing. Please wait.' )
self._UpdateServerWithFileContents( request_data )
request_id = self.GetConnection().NextRequestId()
message = lsp.ExecuteCommand( request_id, command, arguments )
response = self.GetConnection().GetResponse( request_id,
message,
REQUEST_TIMEOUT_COMMAND )
return response[ 'result' ]
def CommonDebugItems( self ):
def ServerStateDescription():
if not self.ServerIsHealthy():
return 'Dead'
if not self._ServerIsInitialized():
return 'Starting...'
return 'Initialized'
return [ responses.DebugInfoItem( 'Server State',
ServerStateDescription() ),
responses.DebugInfoItem( 'Project Directory',
self._project_directory ),
responses.DebugInfoItem(
'Settings',
json.dumps( self._settings.get( 'ls', {} ),
indent = 2,
sort_keys = True ) ) ]
def _DistanceOfPointToRange( point, range ):
"""Calculate the distance from a point to a range.
Assumes point is covered by lines in the range.
Returns 0 if point is already inside range. """
start = range[ 'start' ]
end = range[ 'end' ]
# Single-line range.
if start[ 'line' ] == end[ 'line' ]:
# 0 if point is within range, otherwise distance from start/end.
return max( 0, point[ 'character' ] - end[ 'character' ],
start[ 'character' ] - point[ 'character' ] )
if start[ 'line' ] == point[ 'line' ]:
return max( 0, start[ 'character' ] - point[ 'character' ] )
if end[ 'line' ] == point[ 'line' ]:
return max( 0, point[ 'character' ] - end[ 'character' ] )
# If not on the first or last line, then point is within range for sure.
return 0
def _CompletionItemToCompletionData( insertion_text, item, fixits ):
# Since we send completionItemKind capabilities, we guarantee to handle
# values outside our value set and fall back to a default.
try:
kind = lsp.ITEM_KIND[ item.get( 'kind' ) or 0 ]
except IndexError:
kind = lsp.ITEM_KIND[ 0 ] # Fallback to None for unsupported kinds.
documentation = item.get( 'documentation' ) or ''
if isinstance( documentation, dict ):
documentation = documentation[ 'value' ]
return responses.BuildCompletionData(
insertion_text,
extra_menu_info = item.get( 'detail' ),
detailed_info = item[ 'label' ] + '\n\n' + documentation,
menu_text = item[ 'label' ],
kind = kind,
extra_data = fixits )
def _FixUpCompletionPrefixes( completions,
start_codepoints,
request_data,
min_start_codepoint ):
"""Fix up the insertion texts so they share the same start_codepoint by
borrowing text from the source."""
line = request_data[ 'line_value' ]
for completion, start_codepoint in zip( completions, start_codepoints ):
to_borrow = start_codepoint - min_start_codepoint
if to_borrow > 0:
borrow = line[ start_codepoint - to_borrow - 1 : start_codepoint - 1 ]
new_insertion_text = borrow + completion[ 'insertion_text' ]
completion[ 'insertion_text' ] = new_insertion_text
# Finally, remove any common prefix
common_prefix_len = len( os.path.commonprefix(
[ c[ 'insertion_text' ] for c in completions ] ) )
for completion in completions:
completion[ 'insertion_text' ] = completion[ 'insertion_text' ][
common_prefix_len : ]
# The start column is the earliest start point that we fixed up plus the
# length of the common prefix that we subsequently removed.
#
# Phew! That was hard work.
request_data[ 'start_codepoint' ] = min_start_codepoint + common_prefix_len
return completions
def _InsertionTextForItem( request_data, item ):
"""Determines the insertion text for the completion item |item|, and any
additional FixIts that need to be applied when selecting it.
Returns a tuple (
- insertion_text = the text to insert
- fixits = ycmd fixit which needs to be applied additionally when
selecting this completion
- start_codepoint = the start column at which the text should be inserted
)"""
# We do not support completion types of "Snippet". This is implicit in that we
# don't say it is a "capability" in the initialize request.
# Abort this request if the server is buggy and ignores us.
assert lsp.INSERT_TEXT_FORMAT[
item.get( 'insertTextFormat' ) or 1 ] == 'PlainText'
fixits = None
start_codepoint = request_data[ 'start_codepoint' ]
# We will always have one of insertText or label
if 'insertText' in item and item[ 'insertText' ]:
insertion_text = item[ 'insertText' ]
else:
insertion_text = item[ 'label' ]
additional_text_edits = []
# Per the protocol, textEdit takes precedence over insertText, and must be
# on the same line (and containing) the originally requested position. These
# are a pain, and require fixing up later in some cases, as most of our
# clients won't be able to apply arbitrary edits (only 'completion', as
# opposed to 'content assist').
if 'textEdit' in item and item[ 'textEdit' ]:
text_edit = item[ 'textEdit' ]
start_codepoint = _GetCompletionItemStartCodepointOrReject( text_edit,
request_data )
insertion_text = text_edit[ 'newText' ]
if '\n' in insertion_text:
# jdt.ls can return completions which generate code, such as
# getters/setters and entire anonymous classes.
#
# In order to support this we would need to do something like:
# - invent some insertion_text based on label/insertText (or perhaps
# '<snippet>'
# - insert a textEdit in additionalTextEdits which deletes this
# insertion
# - or perhaps just modify this textEdit to undo that change?
# - or perhaps somehow support insertion_text of '' (this doesn't work
# because of filtering/sorting, etc.).
# - insert this textEdit in additionalTextEdits
#
# These textEdits would need a lot of fixing up and is currently out of
# scope.
#
# These sorts of completions aren't really in the spirit of ycmd at the
# moment anyway. So for now, we just ignore this candidate.
raise IncompatibleCompletionException( insertion_text )
else:
# Calculate the start codepoint based on the overlapping text in the
# insertion text and the existing text. This is the behavior of Visual
# Studio Code and therefore de-facto undocumented required behavior of LSP
# clients.
start_codepoint -= FindOverlapLength( request_data[ 'prefix' ],
insertion_text )
additional_text_edits.extend( item.get( 'additionalTextEdits' ) or [] )
if additional_text_edits:
filepath = request_data[ 'filepath' ]
contents = GetFileLines( request_data, filepath )
chunks = [ responses.FixItChunk( e[ 'newText' ],
_BuildRange( contents,
filepath,
e[ 'range' ] ) )
for e in additional_text_edits ]
fixits = responses.BuildFixItResponse(
[ responses.FixIt( chunks[ 0 ].range.start_, chunks ) ] )
return insertion_text, fixits, start_codepoint
def FindOverlapLength( line_value, insertion_text ):
"""Return the length of the longest suffix of |line_value| which is a prefix
of |insertion_text|"""
# Credit: https://neil.fraser.name/news/2010/11/04/
# Example of what this does:
# line_value: import com.
# insertion_text: com.youcompleteme.test
# Overlap: ^..^
# Overlap Len: 4
# Calculated as follows:
# - truncate:
# line_value = import com.
# insertion_text = com.youcomp
# - assume overlap length 1
# overlap_text = "."
# position = 3
# overlap set to be 4
# com. compared with com.: longest_overlap = 4
# - assume overlap length 5
# overlap_text = " com."
# position = -1
# return 4 (from previous iteration)
# More complex example: 'Some CoCo' vs 'CoCo Bean'
# No truncation
# Iter 1 (overlap = 1): p('o') = 1, overlap = 2, Co==Co, best = 2 (++)
# Iter 2 (overlap = 3): p('oCo') = 1 overlap = 4, CoCo==CoCo, best = 4 (++)
# Iter 3 (overlap = 5): p(' CoCo') = -1, return 4
# And the non-overlap case "aaab" "caab":
# Iter 1 (overlap = 1): p('b') = 3, overlap = 4, aaab!=caab, return 0
line_value_len = len( line_value )
insertion_text_len = len( insertion_text )
# Bail early if either are empty
if line_value_len == 0 or insertion_text_len == 0:
return 0
# Truncate so that they are the same length. Keep the overlapping sections
# (suffix of line_value, prefix of insertion_text).
if line_value_len > insertion_text_len:
line_value = line_value[ -insertion_text_len : ]
elif insertion_text_len > line_value_len:
insertion_text = insertion_text[ : line_value_len ]
# Worst case is full overlap, but that's trivial to check.
if insertion_text == line_value:
return min( line_value_len, insertion_text_len )
longest_matching_overlap = 0
# Assume a single-character of overlap, and find where this appears (if at
# all) in the insertion_text
overlap = 1
while True:
# Find the position of the overlap-length suffix of line_value within
# insertion_text
overlap_text = line_value[ -overlap : ]
position = insertion_text.find( overlap_text )
# If it isn't found, then we're done, return the last known overlap length.
if position == -1:
return longest_matching_overlap
# Assume that all of the characters up to where this suffix was found
# overlap. If they do, assume 1 more character of overlap, and continue.
# Otherwise, we're done.
overlap += position
# If the overlap section matches, then we know this is the longest overlap
# we've seen so far.
if line_value[ -overlap : ] == insertion_text[ : overlap ]:
longest_matching_overlap = overlap
overlap += 1
def _GetCompletionItemStartCodepointOrReject( text_edit, request_data ):
edit_range = text_edit[ 'range' ]
# Conservatively rejecting candidates that breach the protocol
if edit_range[ 'start' ][ 'line' ] != edit_range[ 'end' ][ 'line' ]:
new_text = text_edit[ 'newText' ]
raise IncompatibleCompletionException(
f"The TextEdit '{ new_text }' spans multiple lines" )
file_contents = GetFileLines( request_data, request_data[ 'filepath' ] )
line_value = file_contents[ edit_range[ 'start' ][ 'line' ] ]
start_codepoint = lsp.UTF16CodeUnitsToCodepoints(
line_value,
edit_range[ 'start' ][ 'character' ] + 1 )
if start_codepoint > request_data[ 'start_codepoint' ]:
new_text = text_edit[ 'newText' ]
raise IncompatibleCompletionException(
f"The TextEdit '{ new_text }' starts after the start position" )
return start_codepoint
def _LocationListToGoTo( request_data, positions ):
"""Convert a LSP list of locations to a ycmd GoTo response."""
try:
if len( positions ) > 1:
return [
responses.BuildGoToResponseFromLocation(
*_LspLocationToLocationAndDescription( request_data, position ) )
for position in positions
]
return responses.BuildGoToResponseFromLocation(
*_LspLocationToLocationAndDescription( request_data, positions[ 0 ] ) )
except ( IndexError, KeyError ):
raise RuntimeError( 'Cannot jump to location' )
def _SymbolInfoListToGoTo( request_data, symbols ):
"""Convert a list of LSP SymbolInformation into a YCM GoTo response"""
def BuildGoToLocationFromSymbol( symbol ):
location, line_value = _LspLocationToLocationAndDescription(
request_data,
symbol[ 'location' ] )
description = ( f'{ lsp.SYMBOL_KIND[ symbol[ "kind" ] ] }: '
f'{ symbol[ "name" ] }' )
goto = responses.BuildGoToResponseFromLocation( location,
description )
goto[ 'extra_data' ] = {
'kind': lsp.SYMBOL_KIND[ symbol[ 'kind' ] ],
'name': symbol[ 'name' ],
}
return goto
locations = [ BuildGoToLocationFromSymbol( s ) for s in
sorted( symbols,
key = lambda s: ( s[ 'kind' ], s[ 'name' ] ) ) ]
if not locations:
raise RuntimeError( "Symbol not found" )
elif len( locations ) == 1:
return locations[ 0 ]
else:
return locations
def _LspLocationToLocationAndDescription( request_data, location ):
"""Convert a LSP Location to a ycmd location."""
try:
filename = lsp.UriToFilePath( location[ 'uri' ] )
file_contents = GetFileLines( request_data, filename )
except lsp.InvalidUriException:
LOGGER.debug( 'Invalid URI, file contents not available in GoTo' )
filename = ''
file_contents = []
except IOError:
# It's possible to receive positions for files which no longer exist (due to
# race condition). UriToFilePath doesn't throw IOError, so we can assume
# that filename is already set.
LOGGER.exception( 'A file could not be found when determining a '
'GoTo location' )
file_contents = []
return _BuildLocationAndDescription( filename,
file_contents,
location[ 'range' ][ 'start' ] )
def _LspToYcmdLocation( file_contents, location ):
"""Converts a LSP location to a ycmd one. Returns a tuple of (
- the contents of the line of |location|
- the line number of |location|
- the byte offset converted from the UTF-16 offset of |location|
)"""
line_num = location[ 'line' ] + 1
try:
line_value = file_contents[ location[ 'line' ] ]
return line_value, line_num, utils.CodepointOffsetToByteOffset(
line_value,
lsp.UTF16CodeUnitsToCodepoints( line_value,
location[ 'character' ] + 1 ) )
except IndexError:
# This can happen when there are stale diagnostics in OnFileReadyToParse,
# just return the value as-is.
return '', line_num, location[ 'character' ] + 1
def _CursorInsideLocation( request_data, location ):
try:
filepath = lsp.UriToFilePath( location[ 'uri' ] )
except lsp.InvalidUriException:
LOGGER.debug( 'Invalid URI, assume cursor is not inside the location' )
return False
if request_data[ 'filepath' ] != filepath:
return False
line = request_data[ 'line_num' ]
column = request_data[ 'column_num' ]
file_contents = GetFileLines( request_data, filepath )
lsp_range = location[ 'range' ]
_, start_line, start_column = _LspToYcmdLocation( file_contents,
lsp_range[ 'start' ] )
if ( line < start_line or
( line == start_line and column < start_column ) ):
return False
_, end_line, end_column = _LspToYcmdLocation( file_contents,
lsp_range[ 'end' ] )
if ( line > end_line or
( line == end_line and column > end_column ) ):
return False
return True
def _BuildLocationAndDescription( filename, file_contents, location ):
"""Returns a tuple of (
- ycmd Location for the supplied filename and LSP location
- contents of the line at that location
)
Importantly, converts from LSP Unicode offset to ycmd byte offset."""
line_value, line, column = _LspToYcmdLocation( file_contents, location )
return responses.Location( line, column, filename = filename ), line_value
def _BuildRange( contents, filename, r ):
"""Returns a ycmd range from a LSP range |r|."""
return responses.Range( _BuildLocationAndDescription( filename,
contents,
r[ 'start' ] )[ 0 ],
_BuildLocationAndDescription( filename,
contents,
r[ 'end' ] )[ 0 ] )
def _BuildDiagnostic( contents, uri, diag ):
"""Return a ycmd diagnostic from a LSP diagnostic."""
try:
filename = lsp.UriToFilePath( uri )
except lsp.InvalidUriException:
LOGGER.debug( 'Invalid URI received for diagnostic' )
filename = ''
r = _BuildRange( contents, filename, diag[ 'range' ] )
diag_text = diag[ 'message' ]
try:
code = diag[ 'code' ]
diag_text += " [" + str( code ) + "]"
except KeyError:
# code field doesn't exist.
pass
return responses.Diagnostic(
ranges = [ r ],
location = r.start_,
location_extent = r,
text = diag_text,
kind = lsp.SEVERITY[ diag.get( 'severity' ) or 1 ].upper() )
def TextEditToChunks( request_data, uri, text_edit ):
"""Returns a list of FixItChunks from a LSP textEdit."""
try:
filepath = lsp.UriToFilePath( uri )
except lsp.InvalidUriException:
LOGGER.debug( 'Invalid filepath received in TextEdit' )
filepath = ''
contents = GetFileLines( request_data, filepath )
return [
responses.FixItChunk( change[ 'newText' ],
_BuildRange( contents,
filepath,
change[ 'range' ] ) )
for change in text_edit
]
def WorkspaceEditToFixIt( request_data,
workspace_edit,
text='',
kind = None ):
"""Converts a LSP workspace edit to a ycmd FixIt suitable for passing to
responses.BuildFixItResponse."""
if not workspace_edit:
return None
if 'changes' in workspace_edit:
chunks = []
# We sort the filenames to make the response stable. Edits are applied in
# strict sequence within a file, but apply to files in arbitrary order.
# However, it's important for the response to be stable for the tests.
for uri in sorted( workspace_edit[ 'changes' ].keys() ):
chunks.extend( TextEditToChunks( request_data,
uri,
workspace_edit[ 'changes' ][ uri ] ) )
else:
chunks = []
for text_document_edit in workspace_edit[ 'documentChanges' ]:
uri = text_document_edit[ 'textDocument' ][ 'uri' ]
edits = text_document_edit[ 'edits' ]
chunks.extend( TextEditToChunks( request_data, uri, edits ) )
return responses.FixIt(
responses.Location( request_data[ 'line_num' ],
request_data[ 'column_num' ],
request_data[ 'filepath' ] ),
chunks,
text,
kind )
class LanguageServerCompletionsCache( CompletionsCache ):
"""Cache of computed LSP completions for a particular request."""
def Invalidate( self ):
with self._access_lock:
super().InvalidateNoLock()
self._is_incomplete = False
self._use_start_column = True
def Update( self, request_data, completions, is_incomplete ):
with self._access_lock:
super().UpdateNoLock( request_data, completions )
self._is_incomplete = is_incomplete
if is_incomplete:
self._use_start_column = False
def GetCodepointForCompletionRequest( self, request_data ):
with self._access_lock:
if self._use_start_column:
return request_data[ 'start_codepoint' ]
return request_data[ 'column_codepoint' ]
# Must be called under the lock.
def _IsQueryPrefix( self, request_data ):
return request_data[ 'query' ].startswith( self._request_data[ 'query' ] )
def GetCompletionsIfCacheValid( self,
request_data,
**kwargs ):
with self._access_lock:
if ( ( not self._is_incomplete
or kwargs.get( 'ignore_incomplete' ) ) and
( self._use_start_column or self._IsQueryPrefix( request_data ) ) ):
return super().GetCompletionsIfCacheValidNoLock( request_data )
return None
class RejectCollector:
def CollectApplyEdit( self, request, connection ):
connection.SendResponse( lsp.ApplyEditResponse( request, False ) )
class EditCollector:
def __init__( self ):
self.requests = []
def CollectApplyEdit( self, request, connection ):
self.requests.append( request[ 'params' ] )
connection.SendResponse( lsp.ApplyEditResponse( request, True ) )
class WatchdogHandler( PatternMatchingEventHandler ):
def __init__( self, server, patterns ):
super().__init__( patterns )
self._server = server
def on_created( self, event ):
if self._server.ServerIsReady():
with self._server._server_info_mutex:
msg = lsp.DidChangeWatchedFiles( event.src_path, 'create' )
self._server.GetConnection().SendNotification( msg )
def on_modified( self, event ):
if self._server.ServerIsReady():
with self._server._server_info_mutex:
msg = lsp.DidChangeWatchedFiles( event.src_path, 'modify' )
self._server.GetConnection().SendNotification( msg )
def on_deleted( self, event ):
if self._server.ServerIsReady():
with self._server._server_info_mutex:
msg = lsp.DidChangeWatchedFiles( event.src_path, 'delete' )
self._server.GetConnection().SendNotification( msg )
class TokenAtlas:
def __init__( self, legend ):
self.tokenTypes = legend[ 'tokenTypes' ]
self.tokenModifiers = legend[ 'tokenModifiers' ]
def _DecodeSemanticTokens( atlas, token_data, filename, contents ):
# We decode the tokens on the server because that's not blocking the user,
# whereas decoding in the client would be.
assert len( token_data ) % 5 == 0
class Token:
line = 0
start_character = 0
num_characters = 0
token_type = 0
token_modifiers = 0
def DecodeModifiers( self, tokenModifiers ):
modifiers = []
bit_index = 0
while True:
bit_value = pow( 2, bit_index )
if bit_value > self.token_modifiers:
break
if self.token_modifiers & bit_value:
modifiers.append( tokenModifiers[ bit_index ] )
bit_index += 1
return modifiers
last_token = Token()
tokens = []
for token_index in range( 0, len( token_data ), 5 ):
token = Token()
token.line = last_token.line + token_data[ token_index ]
token.start_character = token_data[ token_index + 1 ]
if token.line == last_token.line:
token.start_character += last_token.start_character
token.num_characters = token_data[ token_index + 2 ]
token.token_type = token_data[ token_index + 3 ]
token.token_modifiers = token_data[ token_index + 4 ]
tokens.append( {
'range': responses.BuildRangeData( _BuildRange(
contents,
filename,
{
'start': {
'line': token.line,
'character': token.start_character,
},
'end': {
'line': token.line,
'character': token.start_character + token.num_characters,
}
}
) ),
'type': atlas.tokenTypes[ token.token_type ],
'modifiers': token.DecodeModifiers( atlas.tokenModifiers )
} )
last_token = token
return tokens
def RetryOnFailure( expected_error_codes, num_retries = 3 ):
for i in range( num_retries ):
try:
yield
break
except ResponseFailedException as e:
if i < ( num_retries - 1 ) and e.error_code in expected_error_codes:
continue
else:
raise
|