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
|
------------------------------------------------------------------------------
-- G P S --
-- --
-- Copyright (C) 2001-2018, AdaCore --
-- --
-- This is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. This software is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
-- TABILITY 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 distributed with this software; see file --
-- COPYING3. If not, go to http://www.gnu.org/licenses for a complete copy --
-- of the license. --
------------------------------------------------------------------------------
with Ada.Strings.Fixed; use Ada.Strings.Fixed;
with Ada.Unchecked_Deallocation;
with System; use System;
with GNAT.Expect; use GNAT.Expect;
with GNAT.OS_Lib; use GNAT.OS_Lib;
with GNAT.Regpat; use GNAT.Regpat;
with GNATCOLL.Arg_Lists; use GNATCOLL.Arg_Lists;
with GNATCOLL.Iconv; use GNATCOLL.Iconv;
with GNATCOLL.Traces; use GNATCOLL.Traces;
with GNATCOLL.Scripts.Gtkada; use GNATCOLL.Scripts, GNATCOLL.Scripts.Gtkada;
with GNATCOLL.Utils; use GNATCOLL.Utils;
with GNATCOLL.VFS; use GNATCOLL.VFS;
with Glib; use Glib;
with Glib.Main; use Glib.Main;
with Glib.Convert;
with Glib.Values; use Glib.Values;
with Glib.Object; use Glib.Object;
with Glib.Properties; use Glib.Properties;
with Glib.Unicode; use Glib.Unicode;
with Gdk.Keyval; use Gdk.Keyval;
with Gdk.Types; use Gdk, Gdk.Types;
with Gdk.Types.Keysyms; use Gdk.Types.Keysyms;
with Gdk.Event; use Gdk.Event;
with Gdk.RGBA; use Gdk.RGBA;
with Gtk.Box; use Gtk.Box;
with Gtk.Enums; use Gtk.Enums;
with Gtk.Handlers;
with Gtk.Main;
with Gtk.Scrolled_Window; use Gtk.Scrolled_Window;
with Gtk.Style_Context; use Gtk.Style_Context;
with Gtk.Text_Buffer; use Gtk.Text_Buffer;
with Gtk.Text_View; use Gtk.Text_View;
with Gtk.Text_Iter; use Gtk.Text_Iter;
with Gtk.Text_Mark; use Gtk.Text_Mark;
with Gtk.Text_Tag; use Gtk.Text_Tag;
with Gtk.Text_Tag_Table; use Gtk.Text_Tag_Table;
with Gtk.Toolbar; use Gtk.Toolbar;
with Gtk.Widget; use Gtk.Widget;
with Gtk.Selection_Data; use Gtk.Selection_Data;
with Gtk.Arguments; use Gtk.Arguments;
with Gtkada.Handlers; use Gtkada.Handlers;
with Gtkada.Terminal; use Gtkada.Terminal;
with Gtkada.MDI; use Gtkada.MDI;
with Pango.Enums; use Pango.Enums;
with Config; use Config;
with Histories; use Histories;
with GUI_Utils; use GUI_Utils;
with GPS.Default_Styles; use GPS.Default_Styles;
with GPS.Kernel.MDI; use GPS.Kernel.MDI;
with GPS.Kernel.Modules.UI; use GPS.Kernel.Modules.UI;
with GPS.Kernel.Scripts; use GPS.Kernel.Scripts;
with GPS.Kernel.Style_Manager; use GPS.Kernel.Style_Manager;
with GPS.Kernel.Hooks; use GPS.Kernel.Hooks;
with GPS.Stock_Icons; use GPS.Stock_Icons;
package body Interactive_Consoles is
Me : constant Trace_Handle := Create ("GPS.KERNEL.INTERACTIVE_CONSOLE");
package Console_Idle is new Glib.Main.Generic_Sources (Interactive_Console);
---------------------------------
-- Interactive_Virtual_Console --
---------------------------------
type Interactive_Virtual_Console_Record is
new Virtual_Console_Record
with record
Console : Interactive_Console;
Script : Scripting_Language;
Took_Grab : Natural := 0;
Child : MDI_Child := null;
-- MDI_Child cached, used in Insert_Error
end record;
type Interactive_Virtual_Console
is access all Interactive_Virtual_Console_Record'Class;
overriding procedure Ref
(Console : access Interactive_Virtual_Console_Record);
overriding procedure Unref
(Console : access Interactive_Virtual_Console_Record);
overriding procedure Insert_Text
(Console : access Interactive_Virtual_Console_Record; Txt : String);
overriding procedure Insert_Log
(Console : access Interactive_Virtual_Console_Record; Txt : String);
overriding procedure Insert_Prompt
(Console : access Interactive_Virtual_Console_Record; Txt : String);
overriding procedure Insert_Error
(Console : access Interactive_Virtual_Console_Record; Txt : String);
overriding procedure Grab_Events
(Console : access Interactive_Virtual_Console_Record; Grab : Boolean);
overriding procedure Set_As_Default_Console
(Console : access Interactive_Virtual_Console_Record;
Script : GNATCOLL.Scripts.Scripting_Language);
overriding procedure Set_Data_Primitive
(Instance : Class_Instance;
Console : access Interactive_Virtual_Console_Record);
overriding function Get_Instance
(Script : access Scripting_Language_Record'Class;
Console : access Interactive_Virtual_Console_Record)
return Class_Instance;
overriding procedure Process_Pending_Events_Primitive
(Console : access Interactive_Virtual_Console_Record);
overriding function Read
(Console : access Interactive_Virtual_Console_Record;
Size : Integer;
Whole_Line : Boolean) return String;
overriding procedure Clear
(Console : access Interactive_Virtual_Console_Record);
-- See inherited subprograms
type Hyper_Link_Tag_Record is new Gtk_Text_Tag_Record with null record;
-- Special tags to highlight hyper links
-----------------------
-- Local subprograms --
-----------------------
procedure Mark_Set_Handler
(Console : access Gtk_Widget_Record'Class;
Params : Glib.Values.GValues);
-- Prevent cursor movements before the prompt
function Button_Press_Handler
(Object : access Gtk_Widget_Record'Class;
Event : Gdk_Event) return Boolean;
-- Handler for the "button_press_event" signal
function Button_Release_Handler
(Object : access Gtk_Widget_Record'Class;
Params : Glib.Values.GValues) return Boolean;
-- Handler for the "button_release_event" signal
function Key_Press_Handler
(Object : access Gtk_Widget_Record'Class;
Event : Gdk_Event) return Boolean;
-- Handler for the "key_press_event" signal
procedure Selection_Received_Handler
(Widget : access Gtk_Widget_Record'Class;
Params : Glib.Values.GValues);
-- Handler for the "selection_received" signal
procedure Size_Allocate_Handler
(Widget : access Gtk_Widget_Record'Class;
Params : Glib.Values.GValues);
-- Handler for the "size_allocate" signal
function Delete_Event_Handler
(Object : access Gtk_Widget_Record'Class;
Event : Gdk_Event) return Boolean;
-- Handler for the "delete_event" signal
procedure Replace_Cursor (Console : Interactive_Console);
-- If the cursor is in a forbidden zone, place it at the prompt
function Place_Cursor_At_Prompt
(Console : Interactive_Console) return Boolean;
-- Place the cursor at the prompt mark
procedure Destroy_Idle (Console : in out Interactive_Console);
-- Destroy handler for idle callbacks
procedure On_Destroy (Console : access Gtk_Widget_Record'Class);
-- Called when the console is destroyed
procedure Insert_And_Execute
(Object : access Gtk_Widget_Record'Class;
Text : String);
-- Interpret "Text", an ASCII.LF separated list of commands that are
-- sequentially displayed, executed and stored in the console's history
procedure Execute_Command
(Console : Interactive_Console;
Command : String);
-- Execute Command, store it in the history, and display its result
-- in the console
procedure Display_Text_As_Prompt
(Console : access Interactive_Console_Record'Class; Txt : String);
-- Display Txt as if it was a prompt. Txt might be the empty string, which
-- only results in moving the prompt mark
procedure Insert_UTF8_With_Tag
(Console : access Interactive_Console_Record;
UTF8 : Glib.UTF8_String;
Add_LF : Boolean := True;
Highlight : Boolean := False;
Highlight_Tag : Gtk_Text_Tag;
Add_To_History : Boolean := False;
Show_Prompt : Boolean := True;
Text_Is_Input : Boolean := False);
-- Same as Insert_UTF8, but the tag to use for highlighting is specified
procedure Prepare_For_Output
(Console : access Interactive_Console_Record'Class;
Text_Is_Input : Boolean := False;
Internal : out Boolean;
Last_Iter : out Gtk_Text_Iter);
procedure Terminate_Output
(Console : access Interactive_Console_Record'Class;
Internal : Boolean;
Show_Prompt : Boolean);
-- Prepare or terminate text insertion in the console. This properly takes
-- care of the prompt, making the text read-only,... Any highlighting of
-- the text must be done separately.
procedure Replace_Zeros (S : in out String);
pragma Inline (Replace_Zeros);
-- Replace ASCII.NULs in S.
type On_Pref_Changed is new Preferences_Hooks_Function with record
Console : access Interactive_Console_Record'Class;
end record;
overriding procedure Execute
(Self : On_Pref_Changed;
Kernel : not null access Kernel_Handle_Record'Class;
Pref : Preference);
---------
-- Ref --
---------
overriding procedure Ref
(Console : access Interactive_Virtual_Console_Record) is
begin
Ref (Console.Console);
end Ref;
-----------
-- Unref --
-----------
overriding procedure Unref
(Console : access Interactive_Virtual_Console_Record) is
begin
Unref (Console.Console);
end Unref;
-----------
-- Clear --
-----------
overriding procedure Clear
(Console : access Interactive_Virtual_Console_Record) is
begin
Clear (Console.Console);
end Clear;
-----------------
-- Insert_Text --
-----------------
overriding procedure Insert_Text
(Console : access Interactive_Virtual_Console_Record; Txt : String) is
begin
if Console.Console /= null then
Insert (Console.Console,
Text => Txt,
Add_LF => False,
Show_Prompt => False);
end if;
if Console.Child = null then
Console.Child := Find_MDI_Child_From_Widget (Console.Console.View);
end if;
-- Always highlight the console when new output is displayed
Highlight_Child (Console.Child);
end Insert_Text;
----------------
-- Insert_Log --
----------------
overriding procedure Insert_Log
(Console : access Interactive_Virtual_Console_Record; Txt : String)
is
pragma Unreferenced (Console);
begin
Trace (Me, Txt);
end Insert_Log;
-------------------
-- Insert_Prompt --
-------------------
overriding procedure Insert_Prompt
(Console : access Interactive_Virtual_Console_Record; Txt : String) is
begin
if not Get_Editable (Console.Console.View)
or else Console.Console.Prompt = null
then
-- If the console does not support input, no need to display a
-- prompt.
return;
end if;
if Console.Console.Prompt.all /= "" then
-- If the console has its own prompt, so ignore the one passed in
-- parameter.
Display_Text_As_Prompt (Console.Console, Console.Console.Prompt.all);
else
Display_Text_As_Prompt (Console.Console, Txt);
end if;
end Insert_Prompt;
------------------
-- Insert_Error --
------------------
overriding procedure Insert_Error
(Console : access Interactive_Virtual_Console_Record; Txt : String) is
begin
Insert (Console.Console, Txt,
Add_LF => False,
Highlight => True,
Show_Prompt => False);
if Console.Child = null then
Console.Child := Find_MDI_Child_From_Widget (Console.Console.View);
end if;
-- Give the focus to the console when an error message is displayed
Raise_Child (Console.Child);
end Insert_Error;
-----------------
-- Grab_Events --
-----------------
overriding procedure Grab_Events
(Console : access Interactive_Virtual_Console_Record; Grab : Boolean) is
begin
if Get_Window (Console.Console) /= null then
if Grab then
-- Grab only on the first incrementation, so that subsequent calls
-- to Grab_Events for this console won't grab. Also, if we already
-- have a grab at the Gtk level (for instance when the user is
-- displaying a menu and we are running the python command as a
-- filter for that menu), no need to take another. In fact, taking
-- another would break the above scenario, since in gtkmenu.c the
-- handler for grab_notify cancels the menu when another grab is
-- taken (G305-005). Grab the mouse, keyboard,... so as to avoid
-- recursive loops in GPS (user selecting a menu
-- while python is running).
-- We only want to increment when either
-- * There is a grab and it is from us
-- (Grab_Get_Current is not null and Console.Took_Grab > 0)
-- * There is no grab
if Gtk.Main.Grab_Get_Current = null
or else Console.Took_Grab > 0
then
Console.Took_Grab := Console.Took_Grab + 1;
end if;
if Gtk.Main.Grab_Get_Current = null
and then Console.Took_Grab = 1
then
Ref (Console.Console);
Console.Console.Grab_Add;
end if;
else
-- Note: the widget might have been destroyed by the python
-- command, we need to check that it still exists.
if Console.Took_Grab = 1 then
Console.Console.Grab_Remove;
Unref (Console.Console);
end if;
if Console.Took_Grab >= 1 then
Console.Took_Grab := Console.Took_Grab - 1;
end if;
end if;
end if;
end Grab_Events;
----------------------------
-- Set_As_Default_Console --
----------------------------
overriding procedure Set_As_Default_Console
(Console : access Interactive_Virtual_Console_Record;
Script : GNATCOLL.Scripts.Scripting_Language) is
begin
Console.Script := Script;
end Set_As_Default_Console;
------------------------
-- Set_Data_Primitive --
------------------------
overriding procedure Set_Data_Primitive
(Instance : Class_Instance;
Console : access Interactive_Virtual_Console_Record) is
begin
GNATCOLL.Scripts.Gtkada.Set_Data (Instance, GObject (Console.Console));
end Set_Data_Primitive;
------------------
-- Get_Instance --
------------------
overriding function Get_Instance
(Script : access Scripting_Language_Record'Class;
Console : access Interactive_Virtual_Console_Record)
return Class_Instance is
begin
return GNATCOLL.Scripts.Gtkada.Get_Instance
(Script, GObject (Console.Console));
end Get_Instance;
--------------------------------------
-- Process_Pending_Events_Primitive --
--------------------------------------
overriding procedure Process_Pending_Events_Primitive
(Console : access Interactive_Virtual_Console_Record)
is
Ignore : Boolean;
pragma Unreferenced (Console, Ignore);
begin
-- Process all gtk+ events, so that the text becomes visible
-- immediately, even if the python program hasn't finished executing.
-- Note: since we have grabed the mouse and keyboards, events will only
-- be sent to the python console, thus avoiding recursive loops inside
-- GPS.
while Gtk.Main.Events_Pending loop
Ignore := Gtk.Main.Main_Iteration;
end loop;
end Process_Pending_Events_Primitive;
----------
-- Read --
----------
overriding function Read
(Console : access Interactive_Virtual_Console_Record;
Size : Integer;
Whole_Line : Boolean) return String
is
pragma Unreferenced (Size);
begin
return Read (Console.Console, Whole_Line);
end Read;
----------------------------
-- Get_Or_Create_Instance --
----------------------------
function Get_Or_Create_Instance
(Script : access GNATCOLL.Scripts.Scripting_Language_Record'Class;
Console : access Interactive_Console_Record'Class)
return GNATCOLL.Scripts.Class_Instance
is
Inst : Class_Instance := Get_Instance (Script, Console);
begin
if Inst = No_Class_Instance then
Inst := New_Instance
(Script, New_Class (Get_Kernel (Script), Console_Class_Name));
Set_Data (Inst, GObject (Console));
end if;
return Inst;
end Get_Or_Create_Instance;
-----------------------------------
-- Get_Or_Create_Virtual_Console --
-----------------------------------
function Get_Or_Create_Virtual_Console
(Console : access Interactive_Console_Record'Class)
return GNATCOLL.Scripts.Virtual_Console
is
begin
if Console = null then
return null;
elsif Console.Virtual = null then
Console.Virtual := new Interactive_Virtual_Console_Record;
Interactive_Virtual_Console (Console.Virtual).Console :=
Interactive_Console (Console);
end if;
return Console.Virtual;
end Get_Or_Create_Virtual_Console;
-----------------
-- Get_Console --
-----------------
function Get_Console
(Virtual : GNATCOLL.Scripts.Virtual_Console) return Interactive_Console is
begin
return Interactive_Virtual_Console (Virtual).Console;
end Get_Console;
------------------
-- Destroy_Idle --
------------------
procedure Destroy_Idle (Console : in out Interactive_Console) is
begin
Console.Idle_Id := 0;
Console.Idle_Registered := False;
end Destroy_Idle;
---------------------------
-- Enable_Prompt_Display --
---------------------------
procedure Enable_Prompt_Display
(Console : access Interactive_Console_Record;
Enable : Boolean)
is
Last_Iter : Gtk_Text_Iter;
begin
Set_Editable (Console.View, Enable);
Set_Cursor_Visible (Console.View, Enable);
Console.Input_Blocked := not Enable;
if Enable and then Console.Message_Was_Displayed then
Display_Prompt (Console);
if Console.User_Input /= null then
Get_End_Iter (Console.Buffer, Last_Iter);
Insert (Console.Buffer, Last_Iter, Console.User_Input.all);
Free (Console.User_Input);
end if;
Console.Message_Was_Displayed := False;
end if;
end Enable_Prompt_Display;
------------
-- Insert --
------------
procedure Insert
(Console : access Interactive_Console_Record;
Text : String;
Add_LF : Boolean := True;
Highlight : Boolean := False;
Add_To_History : Boolean := False;
Show_Prompt : Boolean := True;
Text_Is_Input : Boolean := False)
is
UTF8 : String := Iconv
(Input => Text,
To_Code => GNATCOLL.Iconv.UTF8,
From_Code => Locale,
Ignore_Errors => True,
Transliteration => True,
Ignore => True);
begin
Replace_Zeros (UTF8);
Insert_UTF8_With_Tag
(Console, UTF8,
Add_LF => Add_LF,
Highlight => Highlight,
Highlight_Tag => Console.Tags (Highlight_Tag),
Add_To_History => Add_To_History,
Show_Prompt => Show_Prompt,
Text_Is_Input => Text_Is_Input);
end Insert;
-----------------
-- Insert_UTF8 --
-----------------
procedure Insert_UTF8
(Console : access Interactive_Console_Record;
UTF8 : Glib.UTF8_String;
Add_LF : Boolean := True;
Highlight : Boolean := False;
Add_To_History : Boolean := False;
Show_Prompt : Boolean := True;
Text_Is_Input : Boolean := False)
is
begin
Insert_UTF8_With_Tag
(Console => Console,
UTF8 => UTF8,
Add_LF => Add_LF,
Highlight => Highlight,
Highlight_Tag => Console.Tags (Highlight_Tag),
Add_To_History => Add_To_History,
Show_Prompt => Show_Prompt,
Text_Is_Input => Text_Is_Input);
end Insert_UTF8;
-----------------
-- Clear_Input --
-----------------
procedure Clear_Input (Console : access Interactive_Console_Record) is
Prompt_Iter, Last_Iter : Gtk_Text_Iter;
begin
-- If the console is managing the prompt on its own
if Console.Prompt /= null then
Get_End_Iter (Console.Buffer, Last_Iter);
Get_Iter_At_Mark (Console.Buffer, Prompt_Iter, Console.Prompt_Mark);
Delete (Console.Buffer, Prompt_Iter, Last_Iter);
end if;
end Clear_Input;
------------------------
-- Prepare_For_Output --
------------------------
procedure Prepare_For_Output
(Console : access Interactive_Console_Record'Class;
Text_Is_Input : Boolean := False;
Internal : out Boolean;
Last_Iter : out Gtk_Text_Iter)
is
Prompt_Iter : Gtk_Text_Iter;
begin
Internal := Console.Internal_Insert;
-- Read current user input (there might be none!). Then remove it from
-- the console temporarily, so that output is not intermixed with user
-- input. It will be put back after the output in Terminate_Output.
-- However we do nothing when the console is not managing the prompt on
-- its own but letting the user do it.
if Console.Prompt /= null then
Get_End_Iter (Console.Buffer, Last_Iter);
if not Text_Is_Input and then Console.User_Input = null then
Get_Iter_At_Mark
(Console.Buffer, Prompt_Iter, Console.Prompt_Mark);
Console.User_Input := new String'
(Get_Slice (Console.Buffer, Prompt_Iter, Last_Iter));
Delete (Console.Buffer, Prompt_Iter, Last_Iter);
end if;
else
Get_Iter_At_Mark
(Console.Buffer, Last_Iter, Get_Insert (Console.Buffer));
end if;
end Prepare_For_Output;
----------------------
-- Terminate_Output --
----------------------
procedure Terminate_Output
(Console : access Interactive_Console_Record'Class;
Internal : Boolean;
Show_Prompt : Boolean)
is
Last_Iter : Gtk_Text_Iter;
Prompt_Iter : Gtk_Text_Iter;
begin
if Console.Prompt /= null then
-- Protect the text we just output so that it is not editable by
-- users
Get_Iter_At_Mark (Console.Buffer, Prompt_Iter, Console.Prompt_Mark);
Get_End_Iter (Console.Buffer, Last_Iter);
Apply_Tag
(Console.Buffer,
Console.Tags (Uneditable_Tag), Prompt_Iter, Last_Iter);
Apply_Tag
(Console.Buffer,
Console.Tags (External_Messages_Tag), Prompt_Iter, Last_Iter);
-- Move the prompt mark at the end of the output, so that user input
-- is only read from that point on.
if Show_Prompt then
Display_Prompt (Console);
else
Display_Text_As_Prompt (Console, "");
end if;
-- Put back the partial input the user had started typing (was saved
-- in Prepare_For_Ouptut).
Get_End_Iter (Console.Buffer, Last_Iter);
Insert (Console.Buffer, Last_Iter, Console.User_Input.all);
Free (Console.User_Input);
else
Scroll_Mark_Onscreen (Console.View, Get_Insert (Console.Buffer));
end if;
Console.Message_Was_Displayed := True;
Console.Internal_Insert := Internal;
end Terminate_Output;
--------------------------
-- Insert_UTF8_With_Tag --
--------------------------
procedure Insert_UTF8_With_Tag
(Console : access Interactive_Console_Record;
UTF8 : Glib.UTF8_String;
Add_LF : Boolean := True;
Highlight : Boolean := False;
Highlight_Tag : Gtk_Text_Tag;
Add_To_History : Boolean := False;
Show_Prompt : Boolean := True;
Text_Is_Input : Boolean := False)
is
Last_Iter : Gtk_Text_Iter;
Internal : Boolean;
begin
Prepare_For_Output (Console, Text_Is_Input, Internal, Last_Iter);
if Add_LF then
if Highlight then
Insert_With_Tags
(Console.Buffer, Last_Iter, UTF8 & ASCII.LF,
Highlight_Tag);
else
Insert (Console.Buffer, Last_Iter, UTF8 & ASCII.LF);
end if;
elsif Highlight then
Insert_With_Tags (Console.Buffer, Last_Iter, UTF8, Highlight_Tag);
else
-- Do not display GtkWarnings coming from python under Windows,
-- since they are usually harmless, and cause confusion in the
-- test suite and on users.
if Host = Windows
and then UTF8'Length > 17
and then UTF8
(UTF8'First .. UTF8'First + 16) = "sys:1: GtkWarning"
then
Trace (Me, UTF8);
else
Insert (Console.Buffer, Last_Iter, UTF8);
end if;
end if;
if not Text_Is_Input then
if Add_To_History and then Console.History /= null then
if UTF8 (UTF8'Last) = ASCII.LF then
Histories.Add_To_History
(Console.History.all, History_Key (Console.Key.all),
UTF8 (UTF8'First .. UTF8'Last - 1));
else
Histories.Add_To_History
(Console.History.all, History_Key (Console.Key.all), UTF8);
end if;
end if;
Terminate_Output (Console, Internal, Show_Prompt);
end if;
end Insert_UTF8_With_Tag;
-----------------
-- Is_Editable --
-----------------
function Is_Editable
(Console : access Interactive_Console_Record) return Boolean is
begin
return not Console.Input_Blocked;
end Is_Editable;
--------------------------
-- Button_Press_Handler --
--------------------------
function Button_Press_Handler
(Object : access Gtk_Widget_Record'Class;
Event : Gdk_Event) return Boolean
is
pragma Unreferenced (Event);
Console : constant Interactive_Console := Interactive_Console (Object);
begin
Console.Button_Press := True;
return False;
exception
when E : others =>
Trace (Me, E);
return False;
end Button_Press_Handler;
----------------------------
-- Button_Release_Handler --
----------------------------
function Button_Release_Handler
(Object : access Gtk_Widget_Record'Class;
Params : Glib.Values.GValues) return Boolean
is
pragma Unreferenced (Params);
Console : constant Interactive_Console := Interactive_Console (Object);
Cursor_Iter, Start_Iter : Gtk_Text_Iter;
Link : Hyper_Links := Console.Links;
Success : Boolean;
begin
Console.Button_Press := False;
if Link /= null then
Get_Iter_At_Mark (Console.Buffer, Cursor_Iter, Console.Insert_Mark);
while Link /= null loop
if Has_Tag (Cursor_Iter, Link.Tag) then
Copy (Source => Cursor_Iter, Dest => Start_Iter);
Success := Begins_Tag (Start_Iter, Link.Tag);
if not Success then
Backward_To_Tag_Toggle (Start_Iter, Link.Tag, Success);
end if;
if Success then
Success := Ends_Tag (Cursor_Iter, Link.Tag);
if not Success then
Forward_To_Tag_Toggle (Cursor_Iter, Link.Tag, Success);
end if;
if Success then
On_Click
(Link.Callback,
Get_Text (Console.Buffer, Start_Iter, Cursor_Iter));
end if;
end if;
exit;
end if;
Link := Link.Next;
end loop;
end if;
Replace_Cursor (Console);
return False;
exception
when E : others =>
Trace (Me, E);
return False;
end Button_Release_Handler;
---------------------------
-- Size_Allocate_Handler --
---------------------------
procedure Size_Allocate_Handler
(Widget : access Gtk_Widget_Record'Class;
Params : Glib.Values.GValues)
is
Alloc : Gtk_Allocation_Access;
Console : constant Interactive_Console := Interactive_Console (Widget);
begin
-- The purpose of this callback is to workaround a bug in Gtk+: when
-- the size of this console is too small, an infinite loop can occur,
-- with Gtk+ hesitating between displaying either the horizontal or the
-- vertical scrollbar, the presence of one causing the other one to be
-- removed, causing it to be also removed, and back again.
--
-- To fix this, we change the policy of the scrollbars to Always when
-- the width is too small.
Alloc := Get_Allocation (Nth (Params, 1));
-- The value 25 here is hoped to be large enough to be greater than the
-- width of one scrollbar in any theme.
if Alloc.Width < 25 then
Set_Policy (Console.Scrolled, Policy_Always, Policy_Always);
else
Set_Policy (Console.Scrolled, Policy_Automatic, Policy_Automatic);
end if;
exception
when E : others => Trace (Me, E);
end Size_Allocate_Handler;
-------------------
-- Replace_Zeros --
-------------------
procedure Replace_Zeros (S : in out String) is
begin
for C in S'Range loop
if S (C) = ASCII.NUL then
S (C) := '0';
end if;
end loop;
end Replace_Zeros;
--------------------------------
-- Selection_Received_Handler --
--------------------------------
procedure Selection_Received_Handler
(Widget : access Gtk_Widget_Record'Class;
Params : Glib.Values.GValues)
is
Console : constant Interactive_Console := Interactive_Console (Widget);
Args : constant Gtk_Args := Gtk_Args (Params);
Data : constant Gtk_Selection_Data := From_Object
(Get_Address (Nth (Args, 1)));
Tmp : Boolean := False;
begin
if Get_Length (Data) > 0 then
declare
Str : constant String := Strip_CR (Get_Data_As_String (Data));
Index : Natural;
Next : Natural;
begin
if Console.On_Key /= null then
-- We execute the callback for each input character. If at
-- least one of them returns True, we will not process Str
-- through the standard console mechanism.
-- The string is UTF8, since it comes from gtk+
Index := Str'First;
while Index <= Str'Last loop
Next := UTF8_Next_Char (Str, Index);
Tmp := Tmp
or Console.On_Key
(Console,
Modifier => 0,
Uni => UTF8_Get_Char (Str (Index .. Next - 1)),
User_Data => Console.Key_User_Data);
Index := Next;
end loop;
end if;
if Tmp then
Gtk.Handlers.Emit_Stop_By_Name
(Console.View, Signal_Selection_Received);
else
Insert_And_Execute (Console, Str);
end if;
end;
end if;
exception
when E : others => Trace (Me, E);
end Selection_Received_Handler;
--------------------------
-- Delete_Event_Handler --
--------------------------
function Delete_Event_Handler
(Object : access Gtk_Widget_Record'Class;
Event : Gdk_Event) return Boolean
is
pragma Unreferenced (Event);
Console : constant Interactive_Console := Interactive_Console (Object);
begin
if Console.Idle_Registered
and then Console.Idle_Id /= 0
then
Remove (Console.Idle_Id);
Console.Idle_Id := 0;
end if;
-- When a Gtk_Text_View is deleted, a "mark_set" signal is sent
-- internally, which causes an additional idle callback to be
-- registered through Mark_Set_Handler.
-- The following two lines are used to prevent adding unnecessary
-- idle callbacks when we are deleting the console.
Console.Internal_Insert := True;
Console.Idle_Registered := True;
return False;
exception
when E : others =>
Trace (Me, E);
return False;
end Delete_Event_Handler;
--------------------------------
-- Default_Completion_Handler --
--------------------------------
function Default_Completion_Handler
(Input : String;
View : access Gtk.Text_View.Gtk_Text_View_Record'Class;
User_Data : System.Address) return String_List_Utils.String_List.Vector
is
pragma Unreferenced (User_Data);
use String_Lists;
Console : constant Interactive_Console := From_View (View);
Completions : String_Lists.List;
begin
return Result : String_List_Utils.String_List.Vector do
if Console.Virtual /= null
and then Interactive_Virtual_Console
(Console.Virtual).Script /= null
then
Complete (Interactive_Virtual_Console (Console.Virtual).Script,
Input, Completions);
for Item of Completions loop
Result.Append (Item);
end loop;
end if;
end return;
end Default_Completion_Handler;
-------------------------------
-- Default_Interrupt_Handler --
-------------------------------
function Default_Interrupt_Handler
(Console : access Interactive_Console_Record'Class;
User_Data : System.Address) return Boolean
is
pragma Unreferenced (User_Data);
begin
if Console.Virtual /= null
and then Interactive_Virtual_Console (Console.Virtual).Script /= null
then
return Interrupt
(Interactive_Virtual_Console (Console.Virtual).Script);
end if;
return False;
end Default_Interrupt_Handler;
-----------------------------
-- Default_Command_Handler --
-----------------------------
function Default_Command_Handler
(Console : access Interactive_Console_Record'Class;
Input : String;
User_Data : System.Address) return String
is
pragma Unreferenced (User_Data);
begin
if Console.Virtual /= null
and then Interactive_Virtual_Console (Console.Virtual).Script /= null
then
declare
Errors : aliased Boolean;
begin
Execute_Command
(Script => Interactive_Virtual_Console (Console.Virtual).Script,
CL => Parse_String
(Input,
Command_Line_Treatment
(Interactive_Virtual_Console (Console.Virtual).Script)),
Show_Command => False,
Hide_Output => False,
Errors => Errors);
-- Preserve the focus on the console after an interactive
-- execution, although the command might have destroyed the MDI
if Get_MDI (Console.Kernel) /= null then
Grab_Toplevel_Focus (Get_MDI (Console.Kernel), Console.View);
end if;
-- Output is done via the scripting language already
return "";
end;
end if;
return "";
exception
when E : others =>
Trace (Me, E);
return "";
end Default_Command_Handler;
---------------
-- Interrupt --
---------------
function Interrupt
(Console : access Interactive_Console_Record'Class) return Boolean is
begin
if Console.Interrupt /= null then
return Console.Interrupt (Console, Console.Interrupt_User_Data);
end if;
return False;
end Interrupt;
-----------------------
-- Key_Press_Handler --
-----------------------
function Key_Press_Handler
(Object : access Gtk_Widget_Record'Class;
Event : Gdk_Event) return Boolean
is
Console : constant Interactive_Console :=
Interactive_Console (Object);
Key : constant Gdk_Key_Type := Get_Key_Val (Event);
Prompt_Iter : Gtk_Text_Iter;
Last_Iter : Gtk_Text_Iter;
Ignore : Boolean;
begin
if Console.On_Key /= null then
if Console.On_Key (Console => Console,
Modifier => Get_State (Event),
Key => Key,
Uni => To_Unicode (Key),
User_Data => Console.Key_User_Data)
then
return True;
end if;
end if;
case Key is
when GDK_Up | GDK_Down =>
if Console.Input_Blocked or else Console.Waiting_For_Input then
return True;
end if;
declare
Hist : constant String_List_Access := Get_History
(Console.History.all, History_Key (Console.Key.all));
begin
if Hist /= null then
if Key = GDK_Up
and then
Console.Current_Position + Hist'First < Hist'Last
then
Console.Current_Position := Console.Current_Position + 1;
elsif Key = GDK_Down
and then Console.Current_Position /= -1
then
Console.Current_Position :=
Console.Current_Position - 1;
end if;
Get_Iter_At_Mark
(Console.Buffer, Prompt_Iter, Console.Prompt_Mark);
Get_End_Iter (Console.Buffer, Last_Iter);
Delete (Console.Buffer, Prompt_Iter, Last_Iter);
if Console.Current_Position /= -1 then
Insert
(Console.Buffer, Prompt_Iter,
Hist (Hist'First + Console.Current_Position).all);
end if;
Get_End_Iter (Console.Buffer, Prompt_Iter);
Place_Cursor (Console.Buffer, Prompt_Iter);
Ignore := Scroll_To_Iter
(Console.View,
Iter => Prompt_Iter,
Within_Margin => 0.0,
Use_Align => False,
Xalign => 0.0,
Yalign => 0.0);
end if;
end;
return True;
when GDK_Tab | GDK_KP_Tab =>
if Console.Completion = null or else Console.Waiting_For_Input then
return False;
else
if Console.Completion = Default_Completion_Handler'Access then
Do_Completion
(View => Console.View,
Completion => Default_Completion_Handler'Access,
Prompt_End_Mark => Console.Prompt_Mark,
Uneditable_Tag => Console.Tags (Uneditable_Tag),
User_Data => Console.Completion_User_Data);
else
Do_Completion
(View => Console.View,
Completion => Console.Completion,
Prompt_End_Mark => Console.Prompt_Mark,
Uneditable_Tag => Console.Tags (Uneditable_Tag),
User_Data => Console.Completion_User_Data);
end if;
Console.Internal_Insert := False;
return True;
end if;
when GDK_Return | GDK_KP_Enter =>
if Console.Input_Blocked then
return True;
end if;
Get_End_Iter (Console.Buffer, Last_Iter);
Insert (Console.Buffer, Last_Iter, (1 => ASCII.LF));
if Console.Waiting_For_Input then
Gtk.Main.Main_Quit;
return True;
end if;
if Console.Handler = null then
return True;
end if;
Get_Iter_At_Mark
(Console.Buffer, Prompt_Iter, Console.Prompt_Mark);
Get_End_Iter (Console.Buffer, Last_Iter);
Backward_Char (Last_Iter, Ignore);
declare
Command : constant String :=
Get_Slice (Console.Buffer, Prompt_Iter, Last_Iter);
H : String_List_Access;
begin
if Command = ""
and then Console.Empty_Equals_Repeat
and then Console.History /= null
then
-- Move the prompt mark, since the text has been submitted
-- and should not be submitted again later.
if not Console.Command_Received then
Display_Prompt (Console);
return True;
end if;
H := Get_History
(Console.History.all, History_Key (Console.Key.all));
if H /= null
and then H (H'First) /= null
then
Insert
(Console.Buffer, Last_Iter,
H (H'First + Console.Current_Position + 1).all);
Execute_Command
(Console,
H (H'First + Console.Current_Position + 1).all);
return True;
end if;
else
-- Move the prompt mark, so that what the user has typed
-- is not moved back to after the output of the command, as
-- if the user was still typing it
Display_Text_As_Prompt (Console, "");
end if;
Execute_Command (Console, Command);
Console.Command_Received := True;
end;
return True;
when others =>
return False;
end case;
exception
when E : others =>
Trace (Me, E);
return False;
end Key_Press_Handler;
----------------------------
-- Display_Text_As_Prompt --
----------------------------
procedure Display_Text_As_Prompt
(Console : access Interactive_Console_Record'Class; Txt : String)
is
First_Iter : Gtk_Text_Iter;
Prompt_Iter : Gtk_Text_Iter;
Offset : Gint;
begin
if not Console.Input_Blocked then
Get_End_Iter (Console.Buffer, First_Iter);
Offset := Get_Offset (First_Iter);
if Txt /= "" then
Insert (Console.Buffer, First_Iter, Txt);
end if;
Get_End_Iter (Console.Buffer, Prompt_Iter);
Get_Iter_At_Offset (Console.Buffer, First_Iter, Offset);
Apply_Tag
(Console.Buffer,
Console.Tags (Uneditable_Tag), First_Iter, Prompt_Iter);
Apply_Tag
(Console.Buffer,
Console.Tags (Prompt_Tag), First_Iter, Prompt_Iter);
else
Get_End_Iter (Console.Buffer, Prompt_Iter);
end if;
Move_Mark (Console.Buffer, Console.Prompt_Mark, Prompt_Iter);
Scroll_Mark_Onscreen (Console.View, Console.Prompt_Mark);
end Display_Text_As_Prompt;
--------------------
-- Display_Prompt --
--------------------
procedure Display_Prompt
(Console : access Interactive_Console_Record'Class) is
begin
if Console.Prompt /= null then
Display_Text_As_Prompt (Console, Console.Prompt.all);
end if;
end Display_Prompt;
----------------------------
-- Place_Cursor_At_Prompt --
----------------------------
function Place_Cursor_At_Prompt
(Console : Interactive_Console) return Boolean
is
Prompt_Iter : Gtk_Text_Iter;
Cursor_Iter : Gtk_Text_Iter;
begin
if Console.Prompt /= null then
if Selection_Exists (Console.Buffer) then
return False;
end if;
Get_Iter_At_Mark (Console.Buffer, Prompt_Iter, Console.Prompt_Mark);
Get_Iter_At_Mark (Console.Buffer, Cursor_Iter, Console.Insert_Mark);
if Compare (Cursor_Iter, Prompt_Iter) < 0 then
Place_Cursor (Console.Buffer, Prompt_Iter);
Console.Insert_Mark := Get_Insert (Console.Buffer);
end if;
end if;
return False;
end Place_Cursor_At_Prompt;
--------------------
-- Replace_Cursor --
--------------------
procedure Replace_Cursor (Console : Interactive_Console) is
begin
if not Console.Idle_Registered then
Console.Idle_Registered := True;
Console.Idle_Id :=
Console_Idle.Idle_Add
(Place_Cursor_At_Prompt'Access,
Console,
Notify => Destroy_Idle'Access);
end if;
end Replace_Cursor;
----------------------
-- Mark_Set_Handler --
----------------------
procedure Mark_Set_Handler
(Console : access Gtk_Widget_Record'Class;
Params : Glib.Values.GValues)
is
C : constant Interactive_Console :=
Interactive_Console (Console);
Mark : constant Gtk_Text_Mark :=
Get_Text_Mark (Glib.Values.Nth (Params, 2));
Mark_Name : constant String := Get_Name (Mark);
begin
-- Prevent recursion
if Console.In_Destruction then
return;
end if;
if C.Internal_Insert then
return;
end if;
C.Internal_Insert := True;
if C.Insert_Mark = null
or else Get_Object (Mark) /= Get_Object (C.Insert_Mark)
then
-- If the mark corresponds to a cursor position, set the stored
-- Insert_Mark accordingly.
if Mark_Name = "insert"
or else Mark_Name = "gtk_drag_target"
then
C.Insert_Mark := Mark;
end if;
end if;
if not C.Button_Press then
Replace_Cursor (C);
end if;
C.Internal_Insert := False;
exception
when E : others => Trace (Me, E);
end Mark_Set_Handler;
----------------
-- On_Destroy --
----------------
procedure On_Destroy (Console : access Gtk_Widget_Record'Class) is
C : constant Interactive_Console := Interactive_Console (Console);
begin
if C.Idle_Registered
and then C.Idle_Id /= 0
then
Remove (C.Idle_Id);
C.Idle_Id := 0;
end if;
Delete_Hyper_Links (C);
for J in C.Tags'Range loop
Unref (C.Tags (J));
end loop;
Free (C.Key);
Free (C.Prompt);
Free (C.User_Input);
-- Disconnect virtual console (used in scripts) and real console
if C.Virtual /= null then
if Interactive_Virtual_Console (C.Virtual).Script /= null then
Set_Default_Console
(Interactive_Virtual_Console (C.Virtual).Script, null);
end if;
Interactive_Virtual_Console (C.Virtual).Console := null;
-- Do not free memory, since we could still have instances of
-- GPS.Console around. This memory will be freed when the last
-- such instance is destroyed
-- Unchecked_Free (C.Virtual);
C.Virtual := null;
end if;
end On_Destroy;
-------------
-- Gtk_New --
-------------
procedure Gtk_New
(Console : out Interactive_Console;
Kernel : access Kernel_Handle_Record'Class;
Prompt : String;
Handler : Command_Handler := Default_Command_Handler'Access;
User_Data : System.Address;
History_List : Histories.History;
Key : Histories.History_Key;
Highlight : Preference := null;
Wrap_Mode : Gtk.Enums.Gtk_Wrap_Mode := Gtk.Enums.Wrap_None;
Empty_Equals_Repeat : Boolean := False;
ANSI_Support : Boolean := False;
Manage_Prompt : Boolean := True;
Toolbar_Name : String := "") is
begin
Console := new Interactive_Console_Record;
Initialize (Console, Kernel, Prompt, Handler, User_Data,
History_List, Key, Highlight, Wrap_Mode,
Empty_Equals_Repeat, ANSI_Support, Manage_Prompt,
Toolbar_Name => Toolbar_Name);
end Gtk_New;
----------------
-- Initialize --
----------------
procedure Initialize
(Console : access Interactive_Console_Record'Class;
Kernel : access Kernel_Handle_Record'Class;
Prompt : String;
Handler : Command_Handler := Default_Command_Handler'Access;
User_Data : System.Address;
History_List : Histories.History;
Key : Histories.History_Key;
Highlight : Preference := null;
Wrap_Mode : Gtk.Enums.Gtk_Wrap_Mode;
Empty_Equals_Repeat : Boolean := False;
ANSI_Support : Boolean := False;
Manage_Prompt : Boolean := True;
Toolbar_Name : String := "")
is
Iter : Gtk_Text_Iter;
Term : Gtkada_Terminal;
begin
-- Initialize the text buffer and the text view
if Manage_Prompt then
Console.Prompt := new String'(Prompt);
end if;
Set_Command_Handler (Console, Handler, User_Data);
Console.Key := new String'(String (Key));
Console.History := History_List;
Console.Highlight := Highlight;
Initialize_Vbox (Console, Homogeneous => False);
if Toolbar_Name /= "" then
declare
Toolbar : Gtk_Toolbar;
begin
Create_Toolbar (Kernel, Toolbar, Id => Toolbar_Name);
Toolbar.Set_Icon_Size (Icon_Size_Local_Toolbar);
Toolbar.Set_Style (Toolbar_Icons);
Get_Style_Context (Toolbar).Add_Class ("gps-local-toolbar");
Console.Pack_Start (Toolbar, Expand => False, Fill => False);
Console.Set_Toolbar (Toolbar);
Toolbar.Show_All;
end;
end if;
Gtk_New (Console.Scrolled);
Console.Scrolled.Set_Policy (Policy_Automatic, Policy_Automatic);
Console.Pack_Start (Console.Scrolled, Expand => True, Fill => True);
if ANSI_Support then
Gtk_New (Term, Prevent_Cursor_Motion_With_Mouse => True);
Console.Buffer := Gtk_Text_Buffer (Term);
else
Gtk_New (Console.Buffer);
end if;
Gtk_New (Console.View, Console.Buffer);
Set_Wrap_Mode (Console.View, Wrap_Mode);
Set_Left_Margin (Console.View, 4);
-- The buffer should be destroyed when the view is destroyed
-- ??? Perhaps we should store it in the module_id, and always reuse it
-- when the console is created. This allows the user to destroy the
-- console without losing its contents.
Unref (Console.Buffer);
-- Create a new Gtk_Tag for each Console specific tag (i.e: not linker
-- with a general style defined in GPS.Default_Styles).
for J in Uneditable_Tag .. Highlight_Tag loop
Gtk_New (Console.Tags (J));
Add (Get_Tag_Table (Console.Buffer), Console.Tags (J));
end loop;
Set_Property
(Console.Tags (Uneditable_Tag), Gtk.Text_Tag.Editable_Property, False);
Set_Property
(Console.Tags (External_Messages_Tag),
Gtk.Text_Tag.Style_Property,
Pango_Style_Normal);
-- Retrieve the tag used for hyperlinks from GPS.Default_Styles, add it
-- to the buffer's tag table and tell to underline all the hyperlinks.
Console.Tags (Hyper_Links_Tag) := Get_Tag (Hyper_Links_Default_Style);
Add (Get_Tag_Table (Console.Buffer), Console.Tags (Hyper_Links_Tag));
Set_Property
(Console.Tags (Hyper_Links_Tag),
Gtk.Text_Tag.Underline_Property,
Pango_Underline_Single);
Set_Highlight_Color (Console, Highlight);
Console.Scrolled.Add (Console.View);
Console.Internal_Insert := True;
Widget_Callback.Connect (Console, Signal_Destroy, On_Destroy'Access);
Widget_Callback.Object_Connect
(Console.Buffer, Signal_Mark_Set,
Cb => Mark_Set_Handler'Access,
Slot_Object => Console);
Gtkada.Handlers.Return_Callback.Object_Connect
(Console.View, Signal_Button_Release_Event,
Button_Release_Handler'Access,
Gtk_Widget (Console),
After => False);
Gtkada.Handlers.Return_Callback.Object_Connect
(Console.View, Signal_Button_Press_Event,
Gtkada.Handlers.Return_Callback.To_Marshaller
(Button_Press_Handler'Access),
Gtk_Widget (Console),
After => False);
Gtkada.Handlers.Widget_Callback.Object_Connect
(Console.View, Signal_Selection_Received,
Selection_Received_Handler'Access,
Gtk_Widget (Console),
After => False);
Gtkada.Handlers.Widget_Callback.Object_Connect
(Console.View, Signal_Size_Allocate,
Size_Allocate_Handler'Access,
Gtk_Widget (Console),
After => False);
Gtkada.Handlers.Return_Callback.Object_Connect
(Console.View, Signal_Key_Press_Event,
Gtkada.Handlers.Return_Callback.To_Marshaller
(Key_Press_Handler'Access),
Gtk_Widget (Console),
After => False);
Gtkada.Handlers.Return_Callback.Connect
(Console, Gtk.Widget.Signal_Delete_Event,
Gtkada.Handlers.Return_Callback.To_Marshaller
(Delete_Event_Handler'Access),
After => False);
Get_End_Iter (Console.Buffer, Iter);
Console.Prompt_Mark := Create_Mark (Console.Buffer, "", Iter);
Console.Insert_Mark := Get_Insert (Console.Buffer);
Set_Completion_Handler
(Console, Default_Completion_Handler'Access, User_Data);
Set_Interrupt_Handler
(Console, Default_Interrupt_Handler'Access, User_Data);
Console.Internal_Insert := False;
Console.Empty_Equals_Repeat := Empty_Equals_Repeat;
Preferences_Changed_Hook.Add
(new On_Pref_Changed'
(Preferences_Hooks_Function with Console => Console),
Watch => Console.View);
end Initialize;
-------------------------
-- Set_Command_Handler --
-------------------------
procedure Set_Command_Handler
(Console : access Interactive_Console_Record'Class;
Handler : Command_Handler;
User_Data : System.Address) is
begin
Console.Handler := Handler;
Console.User_Data := User_Data;
end Set_Command_Handler;
-----------
-- Clear --
-----------
procedure Clear (Console : access Interactive_Console_Record) is
Start, The_End : Gtk_Text_Iter;
begin
Get_Bounds (Console.Buffer, Start, The_End);
Delete (Console.Buffer, Start, The_End);
end Clear;
--------------------
-- Set_Foreground --
--------------------
procedure Set_Foreground
(Term : not null access Interactive_Console_Record'Class;
Color : Gtkada.Terminal.Color_Kind;
Value : Gdk.RGBA.Gdk_RGBA) is
begin
if Term.Buffer.all in Gtkada.Terminal.Gtkada_Terminal_Record'Class then
Gtkada_Terminal (Term.Buffer).Set_Foreground (Color, Value);
end if;
end Set_Foreground;
--------------------
-- Set_Background --
--------------------
procedure Set_Background
(Term : not null access Interactive_Console_Record'Class;
Color : Gtkada.Terminal.Color_Kind;
Value : Gdk.RGBA.Gdk_RGBA) is
begin
if Term.Buffer.all in Gtkada.Terminal.Gtkada_Terminal_Record'Class then
Gtkada_Terminal (Term.Buffer).Set_Background (Color, Value);
end if;
end Set_Background;
----------------------------
-- Set_Completion_Handler --
----------------------------
procedure Set_Completion_Handler
(Console : access Interactive_Console_Record'Class;
Handler : GUI_Utils.Completion_Handler;
User_Data : System.Address) is
begin
Console.Completion := Handler;
Console.Completion_User_Data := User_Data;
end Set_Completion_Handler;
---------------------
-- Set_Key_Handler --
---------------------
procedure Set_Key_Handler
(Console : access Interactive_Console_Record'Class;
Handler : Key_Handler;
User_Data : System.Address := System.Null_Address) is
begin
Console.On_Key := Handler;
Console.Key_User_Data := User_Data;
end Set_Key_Handler;
---------------------------
-- Set_Interrupt_Handler --
---------------------------
procedure Set_Interrupt_Handler
(Console : access Interactive_Console_Record'Class;
Handler : Interrupt_Handler;
User_Data : System.Address := System.Null_Address) is
begin
Console.Interrupt := Handler;
Console.Interrupt_User_Data := User_Data;
end Set_Interrupt_Handler;
-------------------------
-- Set_Highlight_Color --
-------------------------
procedure Set_Highlight_Color
(Console : access Interactive_Console_Record'Class;
Pref : Preference := null)
is
Foreground : Gdk_RGBA;
Background : Gdk_RGBA;
begin
Console.Highlight := Pref;
if Pref = null then
return;
end if;
if Pref.all in Variant_Preference_Record'Class then
Foreground := Variant_Preference (Pref).Get_Pref_Fg_Color;
Background := Variant_Preference (Pref).Get_Pref_Bg_Color;
elsif Pref.all in Style_Preference_Record'Class then
Foreground := Style_Preference (Pref).Get_Pref_Fg;
Background := Style_Preference (Pref).Get_Pref_Bg;
elsif Pref.all in Color_Preference_Record'Class then
Foreground := Color_Preference (Pref).Get_Pref;
Background := Null_RGBA;
end if;
if Foreground /= Null_RGBA then
Set_Property
(Console.Tags (Highlight_Tag),
Foreground_Rgba_Property, Foreground);
end if;
if Background /= Null_RGBA then
Set_Property
(Console.Tags (Highlight_Tag),
Background_Rgba_Property, Background);
end if;
end Set_Highlight_Color;
---------------
-- Get_Chars --
---------------
function Get_Chars
(Console : access Interactive_Console_Record) return String
is
Start, The_End : Gtk_Text_Iter;
begin
Get_Bounds (Console.Buffer, Start, The_End);
return Get_Text (Start, The_End);
end Get_Chars;
-----------------
-- Get_History --
-----------------
function Get_History
(Console : access Interactive_Console_Record)
return GNAT.Strings.String_List_Access is
begin
if Console.History = null then
return null;
else
return Get_History
(Console.History.all, History_Key (Console.Key.all));
end if;
end Get_History;
------------------------
-- Insert_And_Execute --
------------------------
procedure Insert_And_Execute
(Object : access Gtk_Widget_Record'Class;
Text : String)
is
procedure Get_Next_Command
(Text : String;
Start_At : in out Natural;
Command : in out GNAT.Strings.String_Access);
-- Look into Text, starting at Start_At, for the next command
-- Commands are separated by ASCII.LF and trimmed
Console : constant Interactive_Console := Interactive_Console (Object);
Last_Iter : Gtk_Text_Iter;
Command : GNAT.Strings.String_Access;
Start_At : Natural := Text'First;
----------------------
-- Get_Next_Command --
----------------------
procedure Get_Next_Command
(Text : String;
Start_At : in out Natural;
Command : in out GNAT.Strings.String_Access)
is
End_At : Natural := Start_At - 1;
begin
-- Look for end-of-line
for J in Start_At .. Text'Last loop
if Text (J) = ASCII.LF then
End_At := J;
exit;
end if;
end loop;
if End_At < Start_At then
End_At := Text'Last;
end if;
-- Do not trim blank spaces at the beginning of the line, since
-- they might be relevant in some contexts (for instance python)
Command := new String'
(Trim (Text (Start_At .. End_At), Ada.Strings.Right));
Start_At := End_At + 1;
end Get_Next_Command;
begin
if Console.Input_Blocked then
return;
end if;
while Start_At <= Text'Last loop
Get_Next_Command (Text, Start_At, Command);
-- We also execute empty commands, since they might be relevant
-- in some contexts (python for instance)
if Command /= null and then Command.all /= "" then
Get_End_Iter (Console.Buffer, Last_Iter);
Insert (Console.Buffer, Last_Iter, Command.all);
-- Execute only if Command ends with a Line Feed.
-- ??? Should take into account input that might already be in
-- the console
if Console.Handler /= null
and then Command (Command'Last) = ASCII.LF
then
Execute_Command
(Console,
Command (Command'First .. Command'Last - 1));
end if;
end if;
Free (Command);
end loop;
exception
when E : others => Trace (Me, E);
end Insert_And_Execute;
---------------------
-- Execute_Command --
---------------------
procedure Execute_Command
(Console : Interactive_Console;
Command : String)
is
Output : GNAT.Strings.String_Access;
Prompt_Iter : Gtk_Text_Iter;
Last_Iter : Gtk_Text_Iter;
Destroyed : Boolean := False;
procedure On_Console_Destroy (Console, Data : System.Address);
pragma Convention (C, On_Console_Destroy);
procedure On_Console_Destroy (Console, Data : System.Address) is
pragma Unreferenced (Console, Data);
begin
Destroyed := True;
end On_Console_Destroy;
begin
-- Processing the command could close the console (for instance
-- executing "q" in the debugger). So we need to monitor its
-- status.
Weak_Ref (Console, On_Console_Destroy'Unrestricted_Access);
-- This call might close the console
Output := new String'
(Console.Handler (Console, Command, Console.User_Data));
if Destroyed then
return;
end if;
Weak_Unref (Console, On_Console_Destroy'Unrestricted_Access);
if Console.Handler /= Default_Command_Handler'Access then
Get_End_Iter (Console.Buffer, Last_Iter);
Insert (Console.Buffer, Last_Iter, Output.all);
end if;
if Command /= "" and then Console.History /= null then
Add_To_History
(Console.History.all,
History_Key (Console.Key.all), Command);
Console.Current_Position := -1;
end if;
Get_Iter_At_Mark (Console.Buffer, Prompt_Iter, Console.Prompt_Mark);
Get_End_Iter (Console.Buffer, Last_Iter);
Apply_Tag
(Console.Buffer,
Console.Tags (Uneditable_Tag), Prompt_Iter, Last_Iter);
if Console.Handler /= Default_Command_Handler'Access then
Display_Prompt (Console);
end if;
Free (Output);
end Execute_Command;
----------------
-- Set_Prompt --
----------------
procedure Set_Prompt
(Console : access Interactive_Console_Record; Prompt : String) is
begin
-- If the console is not managing the prompt itself, this subprogram
-- should have no effect
if Console.Prompt /= null then
Free (Console.Prompt);
Console.Prompt := new String'(Prompt);
end if;
end Set_Prompt;
--------------
-- Get_View --
--------------
function Get_View
(Console : access Interactive_Console_Record)
return Gtk.Text_View.Gtk_Text_View is
begin
return Console.View;
end Get_View;
---------------
-- From_View --
---------------
function From_View
(View : access Gtk.Text_View.Gtk_Text_View_Record'Class)
return Interactive_Console
is
P : Gtk_Widget;
begin
-- Depending on whether we have a local toolbar or not, the parent
-- tree might not be the same. So we explicitly look for the parent
-- of interest
P := Get_Parent (View);
while P /= null
and then P.all not in Interactive_Console_Record'Class
loop
P := Get_Parent (P);
end loop;
return Interactive_Console (P);
end From_View;
----------
-- Read --
----------
function Read
(Console : access Interactive_Console_Record;
Whole_Line : Boolean) return String
is
Last_Iter, Prompt_Iter : Gtk_Text_Iter;
End_Mark : Gtk_Text_Mark;
Success : Boolean;
begin
if Whole_Line then
Get_End_Iter (Console.Buffer, Last_Iter);
End_Mark := Create_Mark (Console.Buffer, "", Last_Iter);
Console.Waiting_For_Input := True;
Grab_Toplevel_Focus (Get_MDI (Console.Kernel), Get_View (Console));
Gtk.Main.Main;
Console.Waiting_For_Input := False;
Get_Iter_At_Mark (Console.Buffer, Prompt_Iter, End_Mark);
Delete_Mark (Console.Buffer, End_Mark);
Get_End_Iter (Console.Buffer, Last_Iter);
Backward_Char (Last_Iter, Success);
return Get_Slice (Console.Buffer, Prompt_Iter, Last_Iter);
else
-- Since we do not bufferize
return "";
end if;
end Read;
-----------------------
-- Create_Hyper_Link --
-----------------------
procedure Create_Hyper_Link
(Console : access Interactive_Console_Record;
Regexp : GNAT.Regpat.Pattern_Matcher;
Callback : not null access Hyper_Link_Callback_Record'Class;
Foreground : String;
Background : String;
Underline : Boolean;
Font : String)
is
Tag : Gtk_Text_Tag;
begin
-- Create a new hyperlink tag if non-empty values have been provided for
-- at least one of the parameters. Otherwise, use the defaut hyperlink
-- tag.
if Foreground /= "" or else Background /= "" or else Font /= "" then
Tag := new Hyper_Link_Tag_Record;
Gtk.Text_Tag.Initialize (Tag);
Add (Get_Tag_Table (Console.Buffer), Tag);
if Font /= "" then
Set_Property (Tag, Gtk.Text_Tag.Font_Property, Font);
end if;
if Foreground /= "" then
Set_Property (Tag, Gtk.Text_Tag.Foreground_Property, Foreground);
end if;
if Background /= "" then
Set_Property (Tag, Gtk.Text_Tag.Background_Property, Background);
end if;
if Underline then
Set_Property
(Tag, Gtk.Text_Tag.Underline_Property, Pango_Underline_Single);
end if;
else
Tag := Console.Tags (Hyper_Links_Tag);
end if;
Console.Links := new Hyper_Link_Record'
(Pattern => new Pattern_Matcher'(Regexp),
Callback => Hyper_Link_Callback (Callback),
Tag => Tag,
Next => Console.Links);
Console.Links_Count := Console.Links_Count + 1;
end Create_Hyper_Link;
------------------------
-- Delete_Hyper_Links --
------------------------
procedure Delete_Hyper_Links
(Console : access Interactive_Console_Record)
is
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(Pattern_Matcher, Pattern_Matcher_Access);
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(Hyper_Link_Callback_Record'Class, Hyper_Link_Callback);
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(Hyper_Link_Record, Hyper_Links);
procedure Get_Tag
(Tag : not null access Gtk_Text_Tag_Record'Class;
Dummy : Boolean);
-- Save given Tag into local tag array
L, L2 : Hyper_Links;
Table : constant Gtk_Text_Tag_Table := Get_Tag_Table (Console.Buffer);
Tags : array (1 .. Table.Get_Size) of Gtk_Text_Tag;
Index : Gint := 0;
-------------
-- Get_Tag --
-------------
procedure Get_Tag
(Tag : not null access Gtk_Text_Tag_Record'Class;
Dummy : Boolean)
is
pragma Unreferenced (Dummy);
begin
if Tag.all in Hyper_Link_Tag_Record'Class then
Index := Index + 1;
Tags (Index) := Gtk_Text_Tag (Tag);
end if;
end Get_Tag;
package Foreach_Tag is new Foreach_User_Data (Boolean);
begin
-- Extract all tags from the table
Foreach_Tag.Foreach (Table, Get_Tag'Access, False);
-- Destroy all tags in the table
for J in 1 .. Index loop
Table.Remove (Tags (J));
end loop;
L := Console.Links;
while L /= null loop
L2 := L.Next;
On_Destroy (L.Callback.all);
Unchecked_Free (L.Callback);
Unchecked_Free (L.Pattern);
Unchecked_Free (L);
L := L2;
end loop;
Console.Links := null;
Console.Links_Count := 0;
end Delete_Hyper_Links;
-----------------------
-- Insert_With_Links --
-----------------------
procedure Insert_With_Links
(Console : access Interactive_Console_Record;
Text : String;
Add_LF : Boolean := True;
Highlight : Boolean := False)
is
type Link_And_Location is record
Link : Hyper_Links := null;
First : Natural := Integer'Last;
Last : Natural := Integer'Last;
end record;
Locs : array (1 .. Console.Links_Count) of Link_And_Location;
-- Index in Text of the first occurrence of each regexp
Fixed : String := Text;
-- This is copy of Text argument with ASCII.NUL chars replaced by '0'
-- since Gtk+ does not handle them well.
Index : Natural := Fixed'First;
procedure Update_Pattern_Loc (L : Natural; Link : Hyper_Links);
-- Update the next location of the pattern after Index
------------------------
-- Update_Pattern_Loc --
------------------------
procedure Update_Pattern_Loc (L : Natural; Link : Hyper_Links) is
Matches : Match_Array (0 .. 1);
begin
-- Do nothing if the hyperlink does not apply to any regexp
-- (i.e : when created with Insert_Hyper_Link).
if Link.Pattern = null then
return;
end if;
Match (Link.Pattern.all, Fixed, Matches, Data_First => Index);
if Matches (0) = No_Match then
Locs (L) := (Link => Link,
First => Integer'Last,
Last => Integer'Last);
elsif Paren_Count (Link.Pattern.all) = 0 then
Locs (L) := (Link => Link,
First => Matches (0).First,
Last => Matches (0).Last);
else
Locs (L) := (Link => Link,
First => Matches (1).First,
Last => Matches (1).Last);
end if;
end Update_Pattern_Loc;
Link : Hyper_Links := Console.Links;
Min : Natural;
Min_Pattern : Natural;
Internal : Boolean;
Start_Iter, Last_Iter : Gtk_Text_Iter;
begin
Replace_Zeros (Fixed);
-- Initialize the locations array, so that we try and match the regexps
-- as few times as possible for efficiency.
for L in Locs'Range loop
Update_Pattern_Loc (L, Link);
Link := Link.Next;
end loop;
Prepare_For_Output
(Console, Text_Is_Input => False,
Internal => Internal, Last_Iter => Last_Iter);
while Index <= Fixed'Last loop
Min := Fixed'Last + 1;
Min_Pattern := Locs'Last + 1;
for L in Locs'Range loop
if Locs (L).First < Min then
Min := Locs (L).First;
Min_Pattern := L;
end if;
end loop;
if Min <= Fixed'Last then
-- Found a regexp. Insert the leading text first, no hyper link
if Min - 1 >= Index then
Get_End_Iter (Console.Buffer, Start_Iter);
if Highlight then
Insert_With_Tags
(Buffer => Console.Buffer,
Iter => Start_Iter,
Text => Glib.Convert.Locale_To_UTF8
(Fixed (Index .. Min - 1)),
Tag => Console.Tags (Highlight_Tag));
else
Insert
(Buffer => Console.Buffer,
Iter => Start_Iter,
Text => Glib.Convert.Locale_To_UTF8
(Fixed (Index .. Min - 1)));
end if;
end if;
-- Then insert the hyper link
Get_End_Iter (Console.Buffer, Start_Iter);
Insert_With_Tags
(Buffer => Console.Buffer,
Iter => Start_Iter,
Text => Glib.Convert.Locale_To_UTF8
(Fixed (Min .. Locs (Min_Pattern).Last)),
Tag => Locs (Min_Pattern).Link.Tag);
Index := Locs (Min_Pattern).Last + 1;
-- Update the locations of the matches to find the next one. This
-- is done as efficiently as possible, since we do not need to
-- refresh those for which we know the next location is later on.
for L in Locs'Range loop
if Locs (L).First < Index then
Update_Pattern_Loc (L, Locs (L).Link);
end if;
end loop;
else
-- Insert the remaining of the text
Get_End_Iter (Console.Buffer, Start_Iter);
if Highlight then
Insert_With_Tags
(Buffer => Console.Buffer,
Iter => Start_Iter,
Text => Fixed (Index .. Fixed'Last),
Tag => Console.Tags (Highlight_Tag));
else
Insert
(Buffer => Console.Buffer,
Iter => Start_Iter,
Text => Fixed (Index .. Fixed'Last));
end if;
Index := Fixed'Last + 1;
end if;
end loop;
if Add_LF then
Get_End_Iter (Console.Buffer, Start_Iter);
Insert
(Buffer => Console.Buffer,
Iter => Start_Iter,
Text => "" & ASCII.LF);
end if;
Terminate_Output (Console, Internal, Show_Prompt => False);
end Insert_With_Links;
-----------------------
-- Insert_Hyper_Link --
-----------------------
procedure Insert_Hyper_Link
(Console : not null access Interactive_Console_Record;
Text : String;
Callback : not null access Hyper_Link_Callback_Record'Class)
is
Internal : Boolean;
Last_Iter : Gtk_Text_Iter;
Tag : constant Gtk_Text_Tag := Console.Tags (Hyper_Links_Tag);
begin
-- Create the hyper link
Console.Links := new Hyper_Link_Record'
(Pattern => null,
Callback => Hyper_Link_Callback (Callback),
Tag => Tag,
Next => Console.Links);
Console.Links_Count := Console.Links_Count + 1;
-- Insert it in the console
Prepare_For_Output
(Console,
Text_Is_Input => False,
Internal => Internal,
Last_Iter => Last_Iter);
Get_End_Iter (Console.Buffer, Last_Iter);
Insert_With_Tags
(Buffer => Console.Buffer,
Iter => Last_Iter,
Text => Text,
Tag => Tag);
Terminate_Output (Console, Internal, Show_Prompt => False);
end Insert_Hyper_Link;
---------------
-- Interrupt --
---------------
overriding function Interrupt
(Child : access GPS_Console_MDI_Child_Record) return Boolean
is
Console : constant Interactive_Console :=
Interactive_Console (Get_Widget (Child));
begin
return Interrupt (Console);
end Interrupt;
-----------------------------
-- Get_Interactive_Console --
-----------------------------
function Get_Interactive_Console
(Self : access Console_Messages_Window)
return Interactive_Console is
begin
return Interactive_Console (Self.Console);
end Get_Interactive_Console;
---------------------------------
-- Get_Console_Messages_Window --
---------------------------------
function Get_Console_Messages_Window
(Self : access Interactive_Console_Record'Class)
return access Console_Messages_Window is
begin
if Self = null then
return null;
elsif Self.Console = null then
Self.Console := new Console_Messages_Window'(Console => Self);
end if;
return Self.Console;
end Get_Console_Messages_Window;
------------
-- Insert --
------------
overriding procedure Insert
(Self : not null access Console_Messages_Window;
Text : String;
Add_LF : Boolean := True;
Mode : GPS.Kernel.Message_Type)
is
use type GPS.Kernel.Message_Type;
begin
Self.Console.Insert (Text, Add_LF, Mode = GPS.Kernel.Error);
end Insert;
-----------------
-- Insert_UTF8 --
-----------------
overriding procedure Insert_UTF8
(Self : not null access Console_Messages_Window;
UTF8 : String;
Add_LF : Boolean := True;
Mode : GPS.Kernel.Message_Type)
is
use type GPS.Kernel.Message_Type;
begin
Self.Console.Insert_UTF8 (UTF8, Add_LF, Mode = GPS.Kernel.Error);
end Insert_UTF8;
-----------
-- Clear --
-----------
overriding procedure Clear
(Self : not null access Console_Messages_Window) is
begin
Self.Console.Clear;
end Clear;
-------------------
-- Raise_Console --
-------------------
overriding procedure Raise_Console
(Self : not null access Console_Messages_Window;
Give_Focus : Boolean) is
begin
Raise_Child (Find_MDI_Child_From_Widget (Self.Console), Give_Focus);
end Raise_Console;
-------------------------
-- Get_Virtual_Console --
-------------------------
overriding function Get_Virtual_Console
(Self : not null access Console_Messages_Window)
return GNATCOLL.Scripts.Virtual_Console is
begin
return Self.Console.Get_Or_Create_Virtual_Console;
end Get_Virtual_Console;
-------------
-- Execute --
-------------
overriding procedure Execute
(Self : On_Pref_Changed;
Kernel : not null access Kernel_Handle_Record'Class;
Pref : Preference)
is
pragma Unreferenced (Kernel, Pref);
begin
if Self.Console.Highlight /= null then
Set_Highlight_Color (Self.Console, Self.Console.Highlight);
end if;
end Execute;
------------
-- Export --
------------
function Export
(View : access Interactive_Console_Record;
File : GNATCOLL.VFS.Virtual_File)
return Boolean
is
Writable : Writable_File := File.Write_File;
Start, Last : Gtk_Text_Iter;
Result : Boolean := True;
begin
View.Buffer.Get_Bounds (Start, Last);
begin
Write (Writable, String'(View.Buffer.Get_Text (Start, Last)));
exception
when E : others =>
Trace (Me, E);
Result := False;
end;
Close (Writable);
return Result;
end Export;
end Interactive_Consoles;
|