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
|
/*
* Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
*
* This program 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; version 2 of the
* License.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#include "wb_sql_editor_form.h"
#include "grtdb/db_helpers.h"
#include "grtsqlparser/sql_facade.h"
#include "grtdb/editor_dbobject.h"
#include "grtdb/db_object_helpers.h"
#include "grtui/confirm_save_dialog.h"
#include "sqlide/recordset_be.h"
#include "sqlide/recordset_cdbc_storage.h"
#include "sqlide/wb_sql_editor_snippets.h"
#include "sqlide/wb_sql_editor_panel.h"
#include "sqlide/wb_sql_editor_result_panel.h"
#include "sqlide/wb_sql_editor_tree_controller.h"
#include "sqlide/sql_script_run_wizard.h"
#include "sqlide/autocomplete_object_name_cache.h"
#include "sqlide/column_width_cache.h"
#include "objimpl/db.query/db_query_Resultset.h"
#include "objimpl/wrapper/mforms_ObjectReference_impl.h"
#include "base/string_utilities.h"
#include "base/notifications.h"
#include "base/sqlstring.h"
#include "base/file_functions.h"
#include "base/file_utilities.h"
#include "base/log.h"
#include "base/boost_smart_ptr_helpers.h"
#include "base/util_functions.h"
#include "workbench/wb_command_ui.h"
#include "workbench/wb_context_names.h"
#include <mysql_connection.h>
#include <boost/foreach.hpp>
#include <boost/scoped_ptr.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/signals2/connection.hpp>
#include "grt/common.h"
#include "query_side_palette.h"
#include "mforms/menubar.h"
#include "mforms/hypertext.h" // needed for d-tor
#include "mforms/tabview.h" // needed for d-tor
#include "mforms/splitter.h" // needed for d-tor
#include "mforms/toolbar.h"
#include "mforms/code_editor.h"
#include "grtsqlparser/mysql_parser_services.h"
#include <math.h>
using namespace bec;
using namespace grt;
using namespace wb;
using namespace base;
using boost::signals2::scoped_connection;
DEFAULT_LOG_DOMAIN("SqlEditor")
static const char *SQL_EXCEPTION_MSG_FORMAT= _("Error Code: %i\n%s");
static const char *EXCEPTION_MSG_FORMAT= _("Error: %s");
#define CATCH_SQL_EXCEPTION_AND_DISPATCH(statement, log_message_index, duration) \
catch (sql::SQLException &e)\
{\
set_log_message(log_message_index, DbSqlEditorLog::ErrorMsg, strfmt(SQL_EXCEPTION_MSG_FORMAT, e.getErrorCode(), e.what()), statement, duration);\
}
#define CATCH_EXCEPTION_AND_DISPATCH(statement) \
catch (std::exception &e)\
{\
add_log_message(DbSqlEditorLog::ErrorMsg, strfmt(EXCEPTION_MSG_FORMAT, e.what()), statement, "");\
}
#define CATCH_ANY_EXCEPTION_AND_DISPATCH(statement) \
catch (sql::SQLException &e)\
{\
add_log_message(DbSqlEditorLog::ErrorMsg, strfmt(SQL_EXCEPTION_MSG_FORMAT, e.getErrorCode(), e.what()), statement, "");\
}\
CATCH_EXCEPTION_AND_DISPATCH(statement)
#define CATCH_ANY_EXCEPTION_AND_DISPATCH_TO_DEFAULT_LOG(statement) \
catch (sql::SQLException &e)\
{\
_grtm->get_grt()->send_error(strfmt(SQL_EXCEPTION_MSG_FORMAT, e.getErrorCode(), e.what()), statement);\
}\
catch (std::exception &e)\
{\
_grtm->get_grt()->send_error(strfmt(EXCEPTION_MSG_FORMAT, e.what()), statement);\
}
class Timer
{
public:
Timer(bool run_immediately) : _is_running(false), _start_timestamp(0), _duration(0)
{
if (run_immediately)
run();
}
void reset()
{
_is_running= false;
_start_timestamp= 0;
_duration= 0;
}
void run()
{
if (_is_running)
return;
_is_running= true;
_start_timestamp= timestamp();
}
void stop()
{
if (!_is_running)
return;
_is_running= false;
_duration+= timestamp() - _start_timestamp;
}
double duration()
{
return _is_running ? (_duration + timestamp() - _start_timestamp) : _duration;
}
std::string duration_formatted()
{
double d = duration(), dd;
dd = d;
int zeroes = 1;
while (dd < 1.0 && dd > 0.0)
{
zeroes++;
dd *= 10;
}
return strfmt(strfmt(_("%%.%if sec"), std::max(3, zeroes)).c_str(), d);
}
private:
bool _is_running;
double _start_timestamp;
double _duration;
};
SqlEditorForm::Ref SqlEditorForm::create(wb::WBContextSQLIDE *wbsql, const db_mgmt_ConnectionRef &conn)
{
SqlEditorForm::Ref instance(new SqlEditorForm(wbsql));
if (conn.is_valid())
instance->set_connection(conn);
return instance;
}
void SqlEditorForm::set_tab_dock(mforms::DockingPoint *dp)
{
_tabdock = dp;
grtobj()->dockingPoint(mforms_to_grt(_grtm->get_grt(), dp));
scoped_connect(_tabdock->signal_view_switched(), boost::bind(&SqlEditorForm::sql_editor_panel_switched, this));
scoped_connect(_tabdock->signal_view_undocked(), boost::bind(&SqlEditorForm::sql_editor_panel_closed, this, _1));
}
void SqlEditorForm::report_connection_failure(const std::string &error, const db_mgmt_ConnectionRef &target)
{
std::string message;
log_error("SQL editor could not be connected: %s\n", error.c_str());
mforms::App::get()->set_status_text(_("Could not connect to target database."));
if (error.find("exceeded the 'max_user_connections' resource") != std::string::npos)
{
mforms::Utilities::show_error(_("Could not Connect to Database Server"),
base::strfmt("%s\n\nMySQL Workbench requires at least 2 connections to the server, one for management purposes and another for user queries.",
error.c_str()), "OK");
return;
}
message = "Your connection attempt failed for user '%user%' from your host to server at %server%:%port%:\n %error%\n"\
"\n"\
"Please:\n"\
"1 Check that mysql is running on server %server%\n"\
"2 Check that mysql is running on port %port% (note: 3306 is the default, but this can be changed)\n"\
"3 Check the %user% has rights to connect to %server% from your address (mysql rights define what clients can connect to the server and from which machines) \n"\
"4 Make sure you are both providing a password if needed and using the correct password for %server% connecting from the host address you're connecting from";
message = bec::replace_string(message, "%user%", target->parameterValues().get_string("userName"));
message = bec::replace_string(message, "%port%", target->parameterValues().get("port").toString());
message = bec::replace_string(message, "%server%", target->parameterValues().get_string("hostName", "localhost"));
message = bec::replace_string(message, "%error%", error);
log_error("%s", (message + '\n').c_str());
mforms::Utilities::show_error(_("Cannot Connect to Database Server"), message, _("Close"));
}
void SqlEditorForm::report_connection_failure(const grt::server_denied &info, const db_mgmt_ConnectionRef &target)
{
std::string message;
log_error("Server is alive, but has login restrictions: %d, %s\n", info.errNo, info.what());
mforms::App::get()->set_status_text(_("Connection restricted"));
message = "Your connection attempt failed for user '";
message += target->parameterValues().get_string("userName");
message += "' from your host to server at ";//%server%:%port%\n";
message += target->parameterValues().get_string("hostName", "localhost");
message += ":";
message += target->parameterValues().get("port").toString() + "\n";
if (info.errNo == 3159)
message += "Only connections with enabled SSL support are accepted.\n";
else if (info.errNo == 3032)
message += "The server is in super-user mode and does not accept any other connection.\n";
message += "\nThe server response was:\n";
message += info.what();
mforms::Utilities::show_error(_("Cannot Connect to Database Server"), message, _("Close"));
}
//--------------------------------------------------------------------------------------------------
SqlEditorForm::SqlEditorForm(wb::WBContextSQLIDE *wbsql)
:
_wbsql(wbsql),
_grtm(wbsql->get_grt_manager()),
_menu(NULL), // Please use NULL where pointers are assigned, not 0, to avoid confusing the param with ctor flags or similar!
_toolbar(NULL),
_autosave_lock(NULL),
_tabdock(NULL),
_autosave_disabled(false),
_loading_workspace(false),
_cancel_connect(false),
_closing(false),
_sql_editors_serial(0),
_scratch_editors_serial(0),
_keep_alive_thread(NULL),
_aux_dbc_conn(new sql::Dbc_connection_handler()),
_usr_dbc_conn(new sql::Dbc_connection_handler()),
_last_server_running_state(UnknownState),
_auto_completion_cache(NULL),
_column_width_cache(NULL),
exec_sql_task(GrtThreadedTask::create(_grtm)),
_is_running_query(false),
_live_tree(SqlEditorTreeController::create(this)),
_side_palette_host(NULL),
_side_palette(NULL),
_history(DbSqlEditorHistory::create(_grtm)),
_serverIsOffline(false)
{
_startup_done = false;
_log = DbSqlEditorLog::create(this, _grtm, 500);
NotificationCenter::get()->add_observer(this, "GNApplicationActivated");
NotificationCenter::get()->add_observer(this, "GNMainFormChanged");
NotificationCenter::get()->add_observer(this, "GNFormTitleDidChange");
NotificationCenter::get()->add_observer(this, "GNColorsChanged");
GRTNotificationCenter::get()->add_grt_observer(this, "GRNServerStateChanged");
exec_sql_task->desc("execute sql queries");
exec_sql_task->send_task_res_msg(false);
exec_sql_task->msg_cb(boost::bind(&SqlEditorForm::add_log_message, this, _1, _2, _3, ""));
_last_log_message_timestamp = timestamp();
int keep_alive_interval= _grtm->get_app_option_int("DbSqlEditor:KeepAliveInterval", 600);
if (keep_alive_interval != 0)
{
log_debug3("Create KeepAliveInterval timer\n");
_keep_alive_thread= TimerActionThread::create(boost::bind(&SqlEditorForm::send_message_keep_alive, this), keep_alive_interval*1000);
_keep_alive_thread->on_exit.connect(boost::bind(&SqlEditorForm::reset_keep_alive_thread, this));
}
_lower_case_table_names = 0;
_continue_on_error= (_grtm->get_app_option_int("DbSqlEditor:ContinueOnError", 0) != 0);
// set initial autocommit mode value
_usr_dbc_conn->autocommit_mode= (_grtm->get_app_option_int("DbSqlEditor:AutocommitMode", 1) != 0);
}
//--------------------------------------------------------------------------------------------------
SqlEditorForm::~SqlEditorForm()
{
if (_editorRefreshPending.connected())
_editorRefreshPending.disconnect();
if (_overviewRefreshPending.connected())
_overviewRefreshPending.disconnect();
// We need to remove it from cache, if not someone will be able to login without providing PW
if (_connection.is_valid())
mforms::Utilities::forget_cached_password(_connection->hostIdentifier(), _connection->parameterValues().get_string("userName"));
if (_auto_completion_cache)
_auto_completion_cache->shutdown();
delete _column_width_cache;
// debug: ensure that close() was called when the tab is closed
if (_toolbar != NULL)
log_fatal("SqlEditorForm::close() was not called\n");
NotificationCenter::get()->remove_observer(this);
GRTNotificationCenter::get()->remove_grt_observer(this);
delete _auto_completion_cache;
delete _autosave_lock;
_autosave_lock = 0;
// Destructor can be called before the startup was finished.
// On Windows the side palette is a child of the palette host and hence gets freed when we
// free the host. On other platforms both are the same. In any case, double freeing it is
// not a good idea.
if (_side_palette_host != NULL)
_side_palette_host->release();
delete _toolbar;
delete _menu;
reset_keep_alive_thread();
}
//--------------------------------------------------------------------------------------------------
void SqlEditorForm::cancel_connect()
{
_cancel_connect = true;
}
void SqlEditorForm::check_server_problems()
{
//_lower_case_table_names
std::string compile_os;
if (_usr_dbc_conn && get_session_variable(_usr_dbc_conn->ref.get(), "version_compile_os", compile_os))
{
if ((_lower_case_table_names == 0 && (base::starts_with(compile_os, "Win") || base::starts_with(compile_os, "osx"))) ||
(_lower_case_table_names == 2 && base::starts_with(compile_os, "Win")))
mforms::Utilities::show_message_and_remember(_("Server Configuration Problems"),
"A server configuration problem was detected.\nThe server is in a system that does not properly support the selected lower_case_table_names option value. Some problems may occur.\nPlease consult the MySQL server documentation.",
_("OK"), "", "", "SQLIDE::check_server_problems::lower_case_table_names", "");
}
}
void SqlEditorForm::finish_startup()
{
setup_side_palette();
_live_tree->finish_init();
std::string cache_dir = _grtm->get_user_datadir() + "/cache/";
try
{
base::create_directory(cache_dir, 0700); // No-op if the folder already exists.
}
catch (std::exception &e)
{
log_error("Could not create %s: %s\n", cache_dir.c_str(), e.what());
}
//we moved this here, cause it needs schema_sidebar to be fully created,
//due to some race conditions that occurs sometimes
if (_grtm->get_app_option_int("DbSqlEditor:CodeCompletionEnabled") == 1 && connected())
{
try
{
_auto_completion_cache = new AutoCompleteCache(sanitize_file_name(get_session_name()),
boost::bind(&SqlEditorForm::getAuxConnection, this, _1, false), cache_dir,
boost::bind(&SqlEditorForm::on_cache_action, this, _1));
_auto_completion_cache->refresh_schema_list(); // Start fetching schema names immediately.
}
catch (std::exception &e)
{
_auto_completion_cache = NULL;
log_error("Could not create auto completion cache (%s).\n%s\n", cache_dir.c_str(), e.what());
}
}
else
log_debug("Code completion is disabled, so no name cache is created\n");
_column_width_cache = new ColumnWidthCache(sanitize_file_name(get_session_name()), cache_dir);
if (_usr_dbc_conn && !_usr_dbc_conn->active_schema.empty())
_live_tree->on_active_schema_change(_usr_dbc_conn->active_schema);
_grtm->run_once_when_idle(this, boost::bind(&SqlEditorForm::update_menu_and_toolbar, this));
this->check_server_problems();
// We need to check this before sending GRNSQLEditorOpened cause offline() function that's called
// from python which is connected to this notification will deadlock on PythonLock.
checkIfOffline();
// refresh snippets again, in case the initial load from DB is pending for shared snippets
_side_palette->refresh_snippets();
GRTNotificationCenter::get()->send_grt("GRNSQLEditorOpened", grtobj(), grt::DictRef());
int keep_alive_interval= _grtm->get_app_option_int("DbSqlEditor:KeepAliveInterval", 600);
// We have to set these variables so that the server doesn't timeout before we ping everytime
// From http://dev.mysql.com/doc/refman/5.7/en/communication-errors.html for reasones to loose the connection
// - The client had been sleeping more than wait_timeout or interactive_timeout seconds without issuing any requests to the server
// We're adding 10 seconds for communication delays
{
std::string value;
if (get_session_variable(_usr_dbc_conn->ref.get(), "wait_timeout", value) && base::atoi<int>(value) < keep_alive_interval)
exec_main_sql(base::strfmt("SET @@SESSION.wait_timeout=%d", keep_alive_interval + 10), false);
if (get_session_variable(_usr_dbc_conn->ref.get(), "interactive_timeout", value) && base::atoi<int>(value) < keep_alive_interval)
exec_main_sql(base::strfmt("SET @@SESSION.interactive_timeout=%d", keep_alive_interval + 10), false);
}
_startup_done = true;
}
//--------------------------------------------------------------------------------------------------
base::RecMutexLock SqlEditorForm::getAuxConnection(sql::Dbc_connection_handler::Ref &conn, bool lockOnly)
{
RecMutexLock lock(ensure_valid_aux_connection(false, lockOnly));
conn = _aux_dbc_conn;
return lock;
}
//--------------------------------------------------------------------------------------------------
base::RecMutexLock SqlEditorForm::getUserConnection(sql::Dbc_connection_handler::Ref &conn, bool lockOnly)
{
RecMutexLock lock(ensure_valid_usr_connection(false, lockOnly));
conn = _usr_dbc_conn;
return lock;
}
//--------------------------------------------------------------------------------------------------
db_query_EditorRef SqlEditorForm::grtobj()
{
return wbsql()->get_grt_editor_object(this);
}
//--------------------------------------------------------------------------------------------------
/**
* Returns the name for this WQE instance derived from the connection it uses.
* Used for workspace and action log.
*/
std::string SqlEditorForm::get_session_name()
{
if (_connection.is_valid())
{
std::string name = _connection->name();
if (name.empty())
name = _connection->hostIdentifier();
return name;
}
return "unconnected";
}
//--------------------------------------------------------------------------------------------------
void SqlEditorForm::restore_last_workspace()
{
std::string name = get_session_name();
if (!name.empty())
load_workspace(sanitize_file_name(name));
if (_tabdock->view_count() == 0)
new_sql_scratch_area(false);
// immediate autosave after openingls
auto_save();
// Gets the title for a NEW editor
_title = create_title();
title_changed();
}
void SqlEditorForm::title_changed()
{
base::NotificationInfo info;
info["form"] = form_id();
info["title"] = _title;
info["connection"] = _connection.is_valid() ? _connection->name() : "";
base::NotificationCenter::get()->send("GNFormTitleDidChange", this, info);
}
void SqlEditorForm::handle_grt_notification(const std::string &name, grt::ObjectRef sender, grt::DictRef info)
{
if (name == "GRNServerStateChanged")
{
db_mgmt_ConnectionRef conn(db_mgmt_ConnectionRef::cast_from(info.get("connection")));
ServerState new_state = UnknownState;
if (info.get_int("state") == 1)
{
_serverIsOffline = false;
new_state = RunningState;
}
else if (info.get_int("state") == -1)
{
_serverIsOffline = true;
new_state = OfflineState;
}
else
{
_serverIsOffline = false;
new_state = PossiblyStoppedState;
}
if (_last_server_running_state != new_state)
{
_last_server_running_state = new_state;
if ((new_state == RunningState || new_state == OfflineState) && ping())
{
// if new state is running but we're already connected, don't do anything
return;
}
// reconnect when idle, to avoid any deadlocks
if (conn.is_valid() && conn == connection_descriptor())
_grtm->run_once_when_idle(this, boost::bind(&WBContextSQLIDE::reconnect_editor, wbsql(), this));
}
}
}
void SqlEditorForm::handle_notification(const std::string &name, void *sender, base::NotificationInfo &info)
{
if (name == "GNMainFormChanged")
{
if (_side_palette)
_side_palette->close_popover();
if (info["form"] == form_id())
update_menu_and_toolbar();
}
else if (name == "GNFormTitleDidChange")
{
// Validates only if another editor to the same connection has sent the notification
if (info["form"] != form_id() && _connection.is_valid() && _connection->name() == info["connection"])
{
// This code is reached when at least 2 editors to the same host
// have been opened, so the label of the old editor (which may not
// contain the schema name should be updated with it).
update_title();
}
}
else if (name == "GNColorsChanged")
{
// Single colors or the entire color scheme changed.
update_toolbar_icons();
}
else if (name == "GNApplicationActivated")
{
check_external_file_changes();
}
}
void SqlEditorForm::reset_keep_alive_thread()
{
MutexLock keep_alive_thread_lock(_keep_alive_thread_mutex);
if (_keep_alive_thread)
{
_keep_alive_thread->stop(true);
_keep_alive_thread= NULL;
}
}
grt::StringRef SqlEditorForm::do_disconnect(grt::GRT *grt)
{
if (_usr_dbc_conn->ref.get())
{
{
RecMutexLock lock(_usr_dbc_conn_mutex);
close_connection(_usr_dbc_conn);
_usr_dbc_conn->ref.reset();
}
{
RecMutexLock lock(_aux_dbc_conn_mutex);
close_connection(_aux_dbc_conn);
_aux_dbc_conn->ref.reset();
}
}
return grt::StringRef();
}
void SqlEditorForm::close()
{
grt::ValueRef option(_grtm->get_app_option("workbench:SaveSQLWorkspaceOnClose"));
if (option.is_valid() && *grt::IntegerRef::cast_from(option))
{
_grtm->replace_status_text("Saving workspace state...");
if (_autosave_path.empty())
{
save_workspace(sanitize_file_name(get_session_name()), false);
delete _autosave_lock;
}
else
{
auto_save();
// Remove auto lock first or renaming the folder will fail.
delete _autosave_lock;
std::string new_name(base::strip_extension(_autosave_path)+".workspace");
int try_count = 0;
// Rename our temporary workspace if one exists to make it a persistent one.
if (base::file_exists(_autosave_path))
{
for (;;)
{
try
{
if (base::file_exists(new_name))
base::remove_recursive(new_name);
base::rename(_autosave_path, new_name);
}
catch (base::file_error &err)
{
std::string path(dirname(_autosave_path));
do
{
++try_count;
new_name = make_path(path, sanitize_file_name(get_session_name()).append(strfmt("-%i.workspace", try_count)));
} while (file_exists(new_name));
if (err.code() == base::already_exists)
continue;
log_warning("Could not rename autosave directory %s: %s\n",
_autosave_path.c_str(), err.what());
}
break;
}
}
}
_autosave_lock = 0;
}
else
{
delete _autosave_lock;
_autosave_lock = 0;
if (!_autosave_path.empty())
base_rmdir_recursively(_autosave_path.c_str());
}
// Ensure all processing is stopped before freeing the info structure, otherwise references
// are kept that prevent the correct deletion of the editor.
if (_tabdock)
{
for (size_t c = _tabdock->view_count(), i = 0; i < c; i++)
{
SqlEditorPanel *p = sql_editor_panel((int)i);
if (p)
p->editor_be()->stop_processing();
}
_closing = true;
_tabdock->close_all_views();
_closing = false;
}
_grtm->replace_status_text("Closing SQL Editor...");
wbsql()->editor_will_close(this);
exec_sql_task->exec(true, boost::bind(&SqlEditorForm::do_disconnect, this, _1));
exec_sql_task->disconnect_callbacks();
reset_keep_alive_thread();
_grtm->replace_status_text("SQL Editor closed");
delete _menu;
_menu = NULL;
delete _toolbar;
_toolbar = NULL;
}
std::string SqlEditorForm::get_form_context_name() const
{
return WB_CONTEXT_QUERY;
}
bool SqlEditorForm::get_session_variable(sql::Connection *dbc_conn, const std::string &name, std::string &value)
{
if (dbc_conn)
{
SqlFacade::Ref sql_facade= SqlFacade::instance_for_rdbms(rdbms());
Sql_specifics::Ref sql_specifics= sql_facade->sqlSpecifics();
std::string query= sql_specifics->query_variable(name);
if (query.empty())
return false;
boost::scoped_ptr<sql::Statement> statement(dbc_conn->createStatement());
boost::scoped_ptr<sql::ResultSet> rs(statement->executeQuery(query));
if (rs->next())
{
value= rs->getString(2);
return true;
}
}
return false;
}
void SqlEditorForm::schema_tree_did_populate()
{
if (!_pending_expand_nodes.empty() && _grtm->get_app_option_int("DbSqlEditor:SchemaTreeRestoreState", 1))
{
std::string schema, groups;
base::partition(_pending_expand_nodes, ":", schema, groups);
mforms::TreeNodeRef node = _live_tree->get_schema_tree()->get_node_for_object(schema, wb::LiveSchemaTree::Schema, "");
if (node)
{
static const char *nodes[] = {
"tables", "views", "procedures", "functions", NULL
};
node->expand();
for (int i = 0; nodes[i]; i++)
if (strstr(groups.c_str(), nodes[i]))
{
mforms::TreeNodeRef child = node->get_child(i);
if (child)
child->expand();
}
}
_pending_expand_nodes.clear();
}
}
std::string SqlEditorForm::fetch_data_from_stored_procedure(std::string proc_call, boost::shared_ptr<sql::ResultSet> &rs)
{
std::string ret_val("");
try
{
RecMutexLock aux_dbc_conn_mutex(ensure_valid_aux_connection());
std::auto_ptr<sql::Statement> stmt(_aux_dbc_conn->ref->createStatement());
stmt->execute(std::string(proc_call));
do
{
rs.reset(stmt->getResultSet());
} while(stmt->getMoreResults());
}
catch (const sql::SQLException& exc)
{
log_warning("Error retrieving data from stored procedure '%s': Error %d : %s", proc_call.c_str(), exc.getErrorCode(), exc.what());
ret_val = base::strfmt("MySQL Error : %s (code %d)", exc.what(), exc.getErrorCode());
}
return ret_val;
}
void SqlEditorForm::update_sql_mode_for_editors()
{
for (int c = sql_editor_count(), i = 0; i < c; i++)
{
SqlEditorPanel *panel = sql_editor_panel(i);
if (panel)
panel->editor_be()->set_sql_mode(_sql_mode);
}
}
void SqlEditorForm::cache_sql_mode()
{
std::string sql_mode;
if (_usr_dbc_conn && get_session_variable(_usr_dbc_conn->ref.get(), "sql_mode", sql_mode))
{
if (sql_mode != _sql_mode)
{
_sql_mode= sql_mode;
_grtm->run_once_when_idle(this, boost::bind(&SqlEditorForm::update_sql_mode_for_editors, this));
}
}
}
void SqlEditorForm::query_ps_statistics(boost::int64_t conn_id, std::map<std::string, boost::int64_t> &stats)
{
static const char *stat_fields[] = {
"EVENT_ID",
"THREAD_ID",
"TIMER_WAIT",
"LOCK_TIME",
"ERRORS",
"WARNINGS",
"ROWS_AFFECTED",
"ROWS_SENT",
"ROWS_EXAMINED",
"CREATED_TMP_DISK_TABLES",
"CREATED_TMP_TABLES",
"SELECT_FULL_JOIN",
"SELECT_FULL_RANGE_JOIN",
"SELECT_RANGE",
"SELECT_RANGE_CHECK",
"SELECT_SCAN",
"SORT_MERGE_PASSES",
"SORT_RANGE",
"SORT_ROWS",
"SORT_SCAN",
"NO_INDEX_USED",
"NO_GOOD_INDEX_USED",
NULL
};
RecMutexLock lock(ensure_valid_aux_connection());
std::auto_ptr<sql::Statement> stmt(_aux_dbc_conn->ref->createStatement());
try
{
std::auto_ptr<sql::ResultSet> result(stmt->executeQuery(base::strfmt("SELECT st.* FROM performance_schema.events_statements_current st JOIN performance_schema.threads thr ON thr.thread_id = st.thread_id WHERE thr.processlist_id = %" PRId64, conn_id)));
while (result->next())
{
for (const char **field = stat_fields; *field; ++field)
{
stats[*field] = result->getInt64(*field);
}
}
}
catch (sql::SQLException &exc)
{
log_exception("Error querying performance_schema.events_statements_current\n", exc);
}
}
std::vector<SqlEditorForm::PSStage> SqlEditorForm::query_ps_stages(boost::int64_t stmt_event_id)
{
RecMutexLock lock(ensure_valid_aux_connection());
std::auto_ptr<sql::Statement> stmt(_aux_dbc_conn->ref->createStatement());
std::vector<PSStage> stages;
try
{
std::auto_ptr<sql::ResultSet> result(stmt->executeQuery(base::strfmt("SELECT st.*"\
" FROM performance_schema.events_stages_history_long st"\
" WHERE st.nesting_event_id = %" PRId64,
stmt_event_id)));
while (result->next())
{
double wait_time = (double)result->getInt64("timer_wait") / 1000000000.0; // ps to ms
std::string event = result->getString("event_name");
// rename the stage/sql/Sending data event to something more suitable
if (event == "stage/sql/Sending data")
event = "executing (storage engine)";
bool flag = false;
for (std::vector<PSStage>::iterator iter = stages.begin(); iter != stages.end(); ++iter)
{
if (iter->name == event)
{
flag = true;
iter->wait_time += wait_time;
break;
}
}
if (!flag)
{
PSStage stage;
stage.name = event;
stage.wait_time = wait_time;
stages.push_back(stage);
}
}
}
catch (sql::SQLException &exc)
{
log_exception("Error querying performance_schema.event_stages_history\n", exc);
}
return stages;
}
std::vector<SqlEditorForm::PSWait> SqlEditorForm::query_ps_waits(boost::int64_t stmt_event_id)
{
RecMutexLock lock(ensure_valid_aux_connection());
std::auto_ptr<sql::Statement> stmt(_aux_dbc_conn->ref->createStatement());
std::vector<PSWait> waits;
try
{
std::auto_ptr<sql::ResultSet> result(stmt->executeQuery(base::strfmt("SELECT st.*"\
" FROM performance_schema.events_waits_history_long st"\
" WHERE st.nesting_event_id = %" PRId64,
stmt_event_id)));
while (result->next())
{
double wait_time = (double)result->getInt64("timer_wait") / 1000000000.0; // ps to ms
std::string event = result->getString("event_name");
bool flag = false;
for (std::vector<PSWait>::iterator iter = waits.begin(); iter != waits.end(); ++iter)
{
if (iter->name == event)
{
flag = true;
iter->wait_time += wait_time;
break;
}
}
if (!flag)
{
PSWait wait;
wait.name = event;
wait.wait_time = wait_time;
waits.push_back(wait);
}
}
}
catch (sql::SQLException &exc)
{
log_exception("Error querying performance_schema.event_waits_history\n", exc);
}
return waits;
}
SqlEditorPanel* SqlEditorForm::run_sql_in_scratch_tab(const std::string &sql, bool reuse_if_possible, bool start_collapsed)
{
SqlEditorPanel *editor;
if (!(editor = active_sql_editor_panel()) || !reuse_if_possible || !editor->is_scratch())
editor = new_sql_scratch_area(start_collapsed);
editor->editor_be()->get_editor_control()->set_text(sql.c_str());
run_editor_contents(false);
editor->editor_be()->get_editor_control()->reset_dirty();
return editor;
}
void SqlEditorForm::reset()
{
//_log->reset();
SqlEditorPanel *panel = active_sql_editor_panel();
if (panel)
panel->editor_be()->cancel_auto_completion();
}
int SqlEditorForm::add_log_message(int msg_type, const std::string &msg, const std::string &context, const std::string &duration)
{
RowId new_log_message_index= _log->add_message(msg_type, context, msg, duration);
_has_pending_log_messages= true;
refresh_log_messages(false);
if (msg_type == DbSqlEditorLog::ErrorMsg || msg_type == DbSqlEditorLog::WarningMsg)
_exec_sql_error_count++;
return (int)new_log_message_index;
}
void SqlEditorForm::set_log_message(RowId log_message_index, int msg_type, const std::string &msg, const std::string &context, const std::string &duration)
{
if (log_message_index != (RowId)-1)
{
_log->set_message(log_message_index, msg_type, context, msg, duration);
_has_pending_log_messages= true;
if (msg_type == DbSqlEditorLog::ErrorMsg || msg_type == DbSqlEditorLog::WarningMsg)
_exec_sql_error_count++;
refresh_log_messages(msg_type == DbSqlEditorLog::BusyMsg); // Force refresh only for busy messages.
}
}
void SqlEditorForm::refresh_log_messages(bool ignore_last_message_timestamp)
{
if (_has_pending_log_messages)
{
bool is_refresh_needed= ignore_last_message_timestamp;
if (!ignore_last_message_timestamp)
{
double now = timestamp();
int progress_status_update_interval = (int)(_grtm->get_app_option_int("DbSqlEditor:ProgressStatusUpdateInterval", 500) / 1000.);
if (_last_log_message_timestamp + progress_status_update_interval < now)
is_refresh_needed= true;
_last_log_message_timestamp = now;
}
if (is_refresh_needed)
{
_log->refresh();
_has_pending_log_messages= false;
}
}
}
void SqlEditorForm::init_connection(sql::Connection* dbc_conn_ref, const db_mgmt_ConnectionRef& connectionProperties, sql::Dbc_connection_handler::Ref& dbc_conn, bool user_connection)
{
db_mgmt_RdbmsRef rdbms= db_mgmt_RdbmsRef::cast_from(_connection->driver()->owner());
SqlFacade::Ref sql_facade= SqlFacade::instance_for_rdbms(rdbms);
Sql_specifics::Ref sql_specifics= sql_facade->sqlSpecifics();
// connection startup script
{
std::list<std::string> sql_script;
{
sql_specifics->get_connection_startup_script(sql_script);
bool use_ansi_quotes= (connectionProperties->parameterValues().get_int("useAnsiQuotes", 0) != 0);
if (use_ansi_quotes)
{
std::string sql= sql_specifics->setting_ansi_quotes();
if (!sql.empty())
sql_script.push_back(sql);
}
}
// check if SQL_SAFE_UPDATES should be enabled (only for user connections, don't do it for the aux connection)
if (_grtm->get_app_option_int("DbSqlEditor:SafeUpdates", 1) && user_connection)
sql_script.push_back("SET SQL_SAFE_UPDATES=1");
std::auto_ptr<sql::Statement> stmt(dbc_conn_ref->createStatement());
sql::SqlBatchExec sql_batch_exec;
sql_batch_exec(stmt.get(), sql_script);
if (!user_connection)
{
std::string sql_mode;
if (get_session_variable(dbc_conn_ref, "sql_mode", sql_mode)
&& sql_mode.find("MYSQL40") != std::string::npos)
{
// MYSQL40 used CREATE TABLE ... TYPE=<engine> instead of ENGINE=<engine>, which is not supported by our reveng code
std::vector<std::string> options(base::split(sql_mode, ","));
for (std::vector<std::string>::iterator i = options.begin(); i != options.end(); ++i)
{
if (*i == "MYSQL40")
{
options.erase(i);
break;
}
}
std::auto_ptr<sql::Statement> stmt(dbc_conn_ref->createStatement());
std::string query = base::sqlstring("SET SESSION SQL_MODE=?", 0) << base::join(options, ",");
stmt->execute(query);
}
}
}
// remember connection id
{
std::string query_connection_id= sql_specifics->query_connection_id();
if (!query_connection_id.empty())
{
std::auto_ptr<sql::Statement> stmt(dbc_conn_ref->createStatement());
stmt->execute(query_connection_id);
boost::shared_ptr<sql::ResultSet> rs(stmt->getResultSet());
rs->next();
dbc_conn->id= rs->getInt(1);
}
}
}
static void set_active_schema(SqlEditorForm::Ptr self, const std::string &schema)
{
SqlEditorForm::Ref ed(self.lock());
if (ed)
ed->active_schema(schema);
}
void SqlEditorForm::create_connection(sql::Dbc_connection_handler::Ref &dbc_conn, db_mgmt_ConnectionRef db_mgmt_conn,
boost::shared_ptr<sql::TunnelConnection> tunnel, sql::Authentication::Ref auth,
bool autocommit_mode, bool user_connection)
{
dbc_conn->is_stop_query_requested= false;
sql::DriverManager *dbc_drv_man= sql::DriverManager::getDriverManager();
db_mgmt_ConnectionRef temp_connection = db_mgmt_ConnectionRef::cast_from(grt::CopyContext(db_mgmt_conn.get_grt()).copy(db_mgmt_conn));
int read_timeout = _grtm->get_app_option_int("DbSqlEditor:ReadTimeOut");
if (read_timeout > 0)
temp_connection->parameterValues().set("OPT_READ_TIMEOUT", grt::IntegerRef(read_timeout));
int connect_timeout = _grtm->get_app_option_int("DbSqlEditor:ConnectionTimeOut");
if (connect_timeout > 0)
temp_connection->parameterValues().set("OPT_CONNECT_TIMEOUT", grt::IntegerRef(connect_timeout));
temp_connection->parameterValues().set("CLIENT_INTERACTIVE", grt::IntegerRef(1));
try
{
dbc_conn->ref= dbc_drv_man->getConnection(temp_connection, tunnel, auth,
boost::bind(&SqlEditorForm::init_connection, this, _1, _2, dbc_conn, user_connection));
note_connection_open_outcome(0); // success
}
catch (sql::SQLException &exc)
{
note_connection_open_outcome(exc.getErrorCode());
throw;
}
//! dbms-specific code
if (dbc_conn->ref->getMetaData()->getDatabaseMajorVersion() < 5)
{
throw std::runtime_error("MySQL Server version is older than 5.x, which is not supported");
}
// get SSL enabled info
{
std::auto_ptr<sql::Statement> stmt(dbc_conn->ref->createStatement());
std::auto_ptr<sql::ResultSet> result(stmt->executeQuery("SHOW SESSION STATUS LIKE 'Ssl_cipher'"));
if (result->next())
{
dbc_conn->ssl_cipher = result->getString(2);
}
}
// Activate default schema, if it's empty, use last active
if (dbc_conn->active_schema.empty())
{
std::string default_schema = temp_connection->parameterValues().get_string("schema");
if (default_schema.empty())
default_schema = temp_connection->parameterValues().get_string("DbSqlEditor:LastDefaultSchema");
if (!default_schema.empty())
{
try
{
dbc_conn->ref->setSchema(default_schema);
dbc_conn->active_schema = default_schema;
_grtm->run_once_when_idle(this, boost::bind(&set_active_schema, shared_from_this(), default_schema));
}
catch (std::exception &exc)
{
log_error("Can't restore DefaultSchema (%s): %s", default_schema.c_str(), exc.what());
temp_connection->parameterValues().gset("DbSqlEditor:LastDefaultSchema", "");
}
}
}
else
dbc_conn->ref->setSchema((dbc_conn->active_schema));
dbc_conn->ref->setAutoCommit(autocommit_mode);
dbc_conn->autocommit_mode= dbc_conn->ref->getAutoCommit();
}
struct ConnectionErrorInfo
{
sql::AuthenticationError *auth_error;
bool password_expired;
bool server_probably_down;
bool serverIsOffline;
grt::server_denied *serverException;
ConnectionErrorInfo() : auth_error(NULL), password_expired(false), server_probably_down(false), serverIsOffline(false), serverException(NULL) {}
~ConnectionErrorInfo()
{
delete auth_error;
delete serverException;
}
};
void SqlEditorForm::set_connection(db_mgmt_ConnectionRef conn)
{
if (_connection.is_valid())
log_warning("Setting connection on an editor with a connection already set\n");
_connection = conn;
_dbc_auth = sql::Authentication::create(_connection, "");
// initialize the password with a cached value
{
std::string password;
bool ok = true;
if (!mforms::Utilities::find_password(conn->hostIdentifier(),
conn->parameterValues().get_string("userName"),
password))
if (!mforms::Utilities::find_cached_password(conn->hostIdentifier(),
conn->parameterValues().get_string("userName"),
password))
ok = false;
if (ok)
_dbc_auth->set_password(password.c_str());
}
// send editor open notification again, in case the connection is being set after the connection
// tab is opened. this will be caught by the admin code to init itself
if (_startup_done)
GRTNotificationCenter::get()->send_grt("GRNSQLEditorOpened", grtobj(), grt::DictRef());
}
bool SqlEditorForm::connect(boost::shared_ptr<sql::TunnelConnection> tunnel)
{
sql::Authentication::Ref auth = _dbc_auth;//sql::Authentication::create(_connection, "");
enum PasswordMethod {
NoPassword,
KeychainPassword,
InteractivePassword
} current_method = NoPassword;
reset();
// In the 1st connection attempt, no password is supplied
// If it fails, keychain is checked and used if it exists
// If it fails, an interactive password request is made
// connect
for (;;)
{
// if an error happens in the worker thread, this ptr will be set
ConnectionErrorInfo error_ptr;
// connection must happen in the worker thread
try
{
exec_sql_task->exec(true, boost::bind(&SqlEditorForm::do_connect, this, _1, tunnel, auth, &error_ptr));
//check if user cancelled
if (_cancel_connect) //return false, so it looks like the server is down
{
close();
return false;
}
}
catch (grt::grt_runtime_error &/*err*/)
{
if (error_ptr.serverException != NULL)
throw grt::server_denied(*error_ptr.serverException);
if (error_ptr.password_expired)
throw std::runtime_error(":PASSWORD_EXPIRED");
if (!error_ptr.auth_error)
throw;
else if (error_ptr.server_probably_down || error_ptr.serverIsOffline)
return false;
//check if user cancelled
if (_cancel_connect) //return false, so it looks like the server is down
{
close();
return false;
}
if (current_method == NoPassword)
{
// lookup in keychain
std::string pwd;
if (sql::DriverManager::getDriverManager()->findStoredPassword(auth->connectionProperties(), pwd))
{
auth->set_password(pwd.c_str());
current_method = KeychainPassword;
}
else
{
// not in keychain, go straight to interactive
pwd = sql::DriverManager::getDriverManager()->requestPassword(auth->connectionProperties(), true);
auth->set_password(pwd.c_str());
current_method = InteractivePassword;
}
}
else if (current_method == KeychainPassword)
{
// now try interactive
std::string pwd = sql::DriverManager::getDriverManager()->requestPassword(auth->connectionProperties(), true);
auth->set_password(pwd.c_str());
}
else // if interactive failed, pass the exception higher up to be displayed to the user
throw;
continue;
}
break;
}
// XXX: ouch, what if we ever change the init sequence, *nobody* will look here to note the side effect.
// we should only send this after the initial connection
// assumes setup_side_palette() is called in finish_init(), signalizing that the editor was already initialized once
if (_side_palette) // we're in a thread here, so make sure the notification is sent from the main thread
{
_grtm->run_once_when_idle(this, boost::bind(&SqlEditorForm::update_connected_state, this));
}
return true;
}
//--------------------------------------------------------------------------------------------------
void SqlEditorForm::update_connected_state()
{
grt::DictRef args(_grtm->get_grt());
args.gset("connected", connected());
GRTNotificationCenter::get()->send_grt("GRNSQLEditorReconnected", grtobj(), args);
update_menu_and_toolbar();
}
//--------------------------------------------------------------------------------------------------
/**
* Little helper to create a single html line used for info output.
*/
std::string create_html_line(const std::string& name, const std::string& value)
{
return "<div style=\"padding-left: 15px\"><span style=\"color: #717171\">" + name + "</span> <i>" +
value + "</i></div>";
}
//--------------------------------------------------------------------------------------------------
grt::StringRef SqlEditorForm::do_connect(grt::GRT *grt, boost::shared_ptr<sql::TunnelConnection> tunnel, sql::Authentication::Ref &auth, ConnectionErrorInfo *err_ptr)
{
try
{
RecMutexLock aux_dbc_conn_mutex(_aux_dbc_conn_mutex);
RecMutexLock usr_dbc_conn_mutex(_usr_dbc_conn_mutex);
_aux_dbc_conn->ref.reset();
_usr_dbc_conn->ref.reset();
// connection info
_connection_details["name"] = _connection->name();
_connection_details["hostName"] = _connection->parameterValues().get_string("hostName");
_connection_details["port"] = strfmt("%li\n", (long)_connection->parameterValues().get_int("port"));
_connection_details["socket"] = _connection->parameterValues().get_string("socket");
_connection_details["driverName"] = _connection->driver()->name();
_connection_details["userName"] = _connection->parameterValues().get_string("userName");
// Connection:
_connection_info = std::string("<html><body style=\"font-family:") + DEFAULT_FONT_FAMILY +
"; font-size: 8pt\"><div style=\"color=#3b3b3b; font-weight:bold\">Connection:</div>";
_connection_info.append(create_html_line("Name: ", _connection->name()));
// Host:
if (_connection->driver()->name() == "MysqlNativeSocket")
{
#ifdef _WIN32
std::string name = _connection->parameterValues().get_string("socket", "");
if (name.empty())
name = "pipe";
#else
std::string name = _connection->parameterValues().get_string("socket", "");
if (name.empty())
name = "UNIX socket";
#endif
_connection_info.append(create_html_line("Host:", "localhost (" + name + ")"));
}
else
{
_connection_info.append(create_html_line("Host:", _connection->parameterValues().get_string("hostName")));
_connection_info.append(create_html_line("Port:", strfmt("%i", (int)_connection->parameterValues().get_int("port"))));
}
// open connections
create_connection(_aux_dbc_conn, _connection, tunnel, auth, _aux_dbc_conn->autocommit_mode, false);
create_connection(_usr_dbc_conn, _connection, tunnel, auth, _usr_dbc_conn->autocommit_mode, true);
_serverIsOffline = false;
cache_sql_mode();
try
{
{
std::string value;
get_session_variable(_usr_dbc_conn->ref.get(), "version_comment", value);
_connection_details["dbmsProductName"] = value;
get_session_variable(_usr_dbc_conn->ref.get(), "version", value);
_connection_details["dbmsProductVersion"] = value;
log_info("Opened connection '%s' to %s version %s\n", _connection->name().c_str(),
_connection_details["dbmsProductName"].c_str(),
_connection_details["dbmsProductVersion"].c_str());
}
_version = parse_version(grt, _connection_details["dbmsProductVersion"]);
_version->name(grt::StringRef(_connection_details["dbmsProductName"]));
db_query_EditorRef editor(grtobj());
if (editor.is_valid()) // this will be valid only on reconnections
editor->serverVersion(_version);
// Server:
_connection_info.append(create_html_line("Server:", _connection_details["dbmsProductName"]));
_connection_info.append(create_html_line("Version:", _connection_details["dbmsProductVersion"]));
// User:
_connection_info.append(create_html_line("Login User:", _connection->parameterValues().get_string("userName")));
// check the actual user we're logged in as
if (_usr_dbc_conn && _usr_dbc_conn->ref.get())
{
boost::scoped_ptr<sql::Statement> statement(_usr_dbc_conn->ref->createStatement());
boost::scoped_ptr<sql::ResultSet> rs(statement->executeQuery("SELECT current_user()"));
if (rs->next())
_connection_info.append(create_html_line("Current User:", rs->getString(1)));
}
_connection_info.append(create_html_line("SSL:", _usr_dbc_conn->ssl_cipher.empty() ? "Disabled" : "Using "+_usr_dbc_conn->ssl_cipher));
// get lower_case_table_names value
std::string value;
if (_usr_dbc_conn && get_session_variable(_usr_dbc_conn->ref.get(), "lower_case_table_names", value))
_lower_case_table_names = base::atoi<int>(value, 0);
parser::MySQLParserServices::Ref services = parser::MySQLParserServices::get(grt);
_work_parser_context = services->createParserContext(rdbms()->characterSets(), _version, _lower_case_table_names != 0);
_work_parser_context->use_sql_mode(_sql_mode);
}
CATCH_ANY_EXCEPTION_AND_DISPATCH(_("Get connection information"));
}
catch (sql::AuthenticationError &authException)
{
err_ptr->auth_error = new sql::AuthenticationError(authException);
throw;
}
catch (sql::SQLException &exc)
{
log_exception("SqlEditorForm: exception in do_connect method", exc);
if (exc.getErrorCode() == 1820) // ER_MUST_CHANGE_PASSWORD_LOGIN
err_ptr->password_expired = true;
else if (exc.getErrorCode() == 2013 || exc.getErrorCode() == 2003 || exc.getErrorCode() == 2002) // ERROR 2003 (HY000): Can't connect to MySQL server on X.Y.Z.W (or via socket)
{
_connection_info.append(create_html_line("", "<b><span style='color: red'>NO CONNECTION</span></b>"));
_connection_info.append("</body></html>");
add_log_message(WarningMsg, exc.what(), "Could not connect, server may not be running.", "");
err_ptr->server_probably_down = true;
if (_connection.is_valid())
{
// if there's no connection, then we continue anyway if this is a local connection or
// a remote connection with remote admin enabled..
grt::Module *m = _grtm->get_grt()->get_module("WbAdmin");
grt::BaseListRef args(_grtm->get_grt());
args.ginsert(_connection);
if (!m || *grt::IntegerRef::cast_from(m->call_function("checkConnectionForRemoteAdmin", args)) == 0)
{
log_error("Connection failed but remote admin does not seem to be available, rethrowing exception...\n");
throw;
}
log_info("Error %i connecting to server, assuming server is down and opening editor with no connection\n",
exc.getErrorCode());
}
log_info("Error %i connecting to server, assuming server is down and opening editor with no connection\n",
exc.getErrorCode());
// Create a parser with some sensible defaults if we cannot connect.
// We specify no charsets here, disabling parsing of repertoires.
parser::MySQLParserServices::Ref services = parser::MySQLParserServices::get(grt);
_work_parser_context = services->createParserContext(GrtCharacterSetsRef(grt), bec::int_to_version(grt, 50503), true);
_work_parser_context->use_sql_mode(_sql_mode);
return grt::StringRef();
}
else if (exc.getErrorCode() == 3032)
{
err_ptr->serverIsOffline = true;
_serverIsOffline = true;
add_log_message(WarningMsg, exc.what(), "Could not connect, server is in offline mode.", "");
if (_connection.is_valid())
{
// if there's no connection, then we continue anyway if this is a local connection or
// a remote connection with remote admin enabled..
_grtm->get_grt()->get_module("WbAdmin");
grt::BaseListRef args(_grtm->get_grt());
args.ginsert(_connection);
}
log_info("Error %i connecting to server, server is in offline mode. Only superuser connection are allowed. Opening editor with no connection\n",
exc.getErrorCode());
// Create a parser with some sensible defaults if we cannot connect.
// We specify no charsets here, disabling parsing of repertoires.
parser::MySQLParserServices::Ref services = parser::MySQLParserServices::get(grt);
_work_parser_context = services->createParserContext(GrtCharacterSetsRef(grt), bec::int_to_version(grt, 50503), true);
_work_parser_context->use_sql_mode(_sql_mode);
return grt::StringRef();
}
else if (exc.getErrorCode() == 3159) //require SSL, offline mode
{
err_ptr->serverException = new grt::server_denied(exc.what(), exc.getErrorCode()); // we need to change exception type so we can properly handle it in
}
// wb_context_sqlide::connect_editor
_connection_info.append("</body></html>");
throw;
}
_connection_info.append("</body></html>");
return grt::StringRef();
}
//--------------------------------------------------------------------------------------------------
/**
* Triggered when the auto completion cache switches activity. We use this to update our busy
* indicator.
*/
void SqlEditorForm::on_cache_action(bool active)
{
_live_tree->mark_busy(active);
}
//--------------------------------------------------------------------------------------------------
bool SqlEditorForm::connected() const
{
bool is_locked = false;
{
base::RecMutexTryLock tmp(_usr_dbc_conn_mutex);
is_locked = !tmp.locked(); //is conn mutex is locked by someone else, then we assume the conn is in use and thus, there'a a connection.
}
if (_usr_dbc_conn && (is_locked || _usr_dbc_conn->ref.get_ptr()))
return true; // we don't need to PING the server every time we want to check if the editor is connected
return false;
}
void SqlEditorForm::checkIfOffline()
{
base::RecMutexTryLock tmp(_usr_dbc_conn_mutex);
int counter = 1;
while(!tmp.locked())
{
if (counter >= 30)
{
log_error("Can't lock conn mutex for 30 seconds, assuming server is not offline.");
return;
}
log_debug3("Can't lock conn mutex, trying again in one sec.");
#if _WIN32
Sleep(1);
#else
sleep(1);
#endif
counter++;
tmp.retry_lock(_usr_dbc_conn_mutex);
}
std::string result;
if (_usr_dbc_conn && get_session_variable(_usr_dbc_conn->ref.get(), "offline_mode", result))
{
if (base::string_compare(result, "ON") == 0)
_serverIsOffline = true;
}
}
bool SqlEditorForm::offline()
{
if (_serverIsOffline)
return true;
if (!connected())
return false;
return _serverIsOffline;
}
bool SqlEditorForm::ping() const
{
{
base::RecMutexTryLock tmp(_usr_dbc_conn_mutex);
if (!tmp.locked()) //is conn mutex is locked by someone else, then we assume the conn is in use and thus, there'a a connection.
return true;
if (_usr_dbc_conn && _usr_dbc_conn->ref.get_ptr())
{
std::auto_ptr<sql::Statement> stmt(_usr_dbc_conn->ref->createStatement());
try
{
std::auto_ptr<sql::ResultSet> result(stmt->executeQuery("select 1"));
return true;
}
catch(const std::exception &ex)
{
log_error("Failed to ping the server: %s\n", ex.what());
}
}
}
return false;
}
base::RecMutexLock SqlEditorForm::ensure_valid_aux_connection(sql::Dbc_connection_handler::Ref &conn, bool lockOnly)
{
RecMutexLock lock(ensure_valid_dbc_connection(_aux_dbc_conn, _aux_dbc_conn_mutex, lockOnly));
conn = _aux_dbc_conn;
return lock;
}
RecMutexLock SqlEditorForm::ensure_valid_aux_connection(bool throw_on_block, bool lockOnly)
{
return ensure_valid_dbc_connection(_aux_dbc_conn, _aux_dbc_conn_mutex, throw_on_block, lockOnly);
}
RecMutexLock SqlEditorForm::ensure_valid_usr_connection(bool throw_on_block, bool lockOnly)
{
return ensure_valid_dbc_connection(_usr_dbc_conn, _usr_dbc_conn_mutex, throw_on_block, lockOnly);
}
void SqlEditorForm::close_connection(sql::Dbc_connection_handler::Ref &dbc_conn)
{
sql::Dbc_connection_handler::Ref myref(dbc_conn);
if (dbc_conn && dbc_conn->ref.get_ptr())
{
try
{
dbc_conn->ref->close();
}
catch (sql::SQLException &)
{
// ignore if the connection is already closed
}
}
}
RecMutexLock SqlEditorForm::ensure_valid_dbc_connection(sql::Dbc_connection_handler::Ref &dbc_conn, base::RecMutex &dbc_conn_mutex,
bool throw_on_block, bool lockOnly)
{
RecMutexLock mutex_lock(dbc_conn_mutex, throw_on_block);
bool valid = false;
sql::Dbc_connection_handler::Ref myref(dbc_conn);
if (dbc_conn && dbc_conn->ref.get_ptr())
{
if (lockOnly) //this is a special case, we need it in some situations like for example recordset_cdbc
return mutex_lock;
try
{
//use connector::isValid to check if server connection is valid
//this will also ping the server and reconnect if needed
valid = dbc_conn->ref->isValid();
} catch (std::exception &exc)
{
log_error("CppConn::isValid exception: %s", exc.what());
valid = false;
}
if (!valid)
{
bool user_connection = _usr_dbc_conn ? dbc_conn->ref.get_ptr() == _usr_dbc_conn->ref.get_ptr() : false;
if (dbc_conn->autocommit_mode)
{
sql::AuthenticationSet authset;
boost::shared_ptr<sql::TunnelConnection> tunnel = sql::DriverManager::getDriverManager()->getTunnel(_connection);
create_connection(dbc_conn, _connection, tunnel, sql::Authentication::Ref(), dbc_conn->autocommit_mode, user_connection);
if (!dbc_conn->ref->isClosed())
valid= true;
}
}
else
valid= true;
}
if (!valid)
throw grt::db_not_connected("DBMS connection is not available");
return mutex_lock;
}
bool SqlEditorForm::auto_commit()
{
if (_usr_dbc_conn)
return _usr_dbc_conn->autocommit_mode;
return false;
}
void SqlEditorForm::auto_commit(bool value)
{
if (!_usr_dbc_conn)
return;
{
const char *STATEMENT= value ? "AUTOCOMMIT=1" : "AUTOCOMMIT=0";
try
{
RecMutexLock usr_dbc_conn_mutex = ensure_valid_usr_connection();
_usr_dbc_conn->ref->setAutoCommit(value);
_usr_dbc_conn->autocommit_mode= _usr_dbc_conn->ref->getAutoCommit();
}
CATCH_ANY_EXCEPTION_AND_DISPATCH(STATEMENT)
}
update_menu_and_toolbar();
}
void SqlEditorForm::toggle_autocommit()
{
auto_commit(!auto_commit());
update_menu_and_toolbar();
}
void SqlEditorForm::toggle_collect_field_info()
{
if (_connection.is_valid())
_connection->parameterValues().set("CollectFieldMetadata", grt::IntegerRef(collect_field_info() ? 0 : 1));
update_menu_and_toolbar();
}
bool SqlEditorForm::collect_field_info() const
{
if (_connection.is_valid())
return _connection->parameterValues().get_int("CollectFieldMetadata", 1) != 0;
return false;
}
void SqlEditorForm::toggle_collect_ps_statement_events()
{
if (_connection.is_valid())
_connection->parameterValues().set("CollectPerfSchemaStatsForQueries", grt::IntegerRef(collect_ps_statement_events() ? 0 : 1));
update_menu_and_toolbar();
}
bool SqlEditorForm::collect_ps_statement_events() const
{
if (_connection.is_valid() && is_supported_mysql_version_at_least(rdbms_version(), 5, 6))
return _connection->parameterValues().get_int("CollectPerfSchemaStatsForQueries", 1) != 0;
return false;
}
void SqlEditorForm::cancel_query()
{
std::string query_kill_query;
{
db_mgmt_RdbmsRef rdbms= db_mgmt_RdbmsRef::cast_from(_connection->driver()->owner());
SqlFacade::Ref sql_facade= SqlFacade::instance_for_rdbms(rdbms);
Sql_specifics::Ref sql_specifics= sql_facade->sqlSpecifics();
query_kill_query= sql_specifics->query_kill_query(_usr_dbc_conn->id);
}
if (query_kill_query.empty())
return;
const char *STATEMENT= "INTERRUPT";
RowId log_message_index= add_log_message(DbSqlEditorLog::BusyMsg, _("Running..."), STATEMENT, "");
Timer timer(false);
try
{
{
RecMutexLock aux_dbc_conn_mutex(ensure_valid_aux_connection());
std::auto_ptr<sql::Statement> stmt(_aux_dbc_conn->ref->createStatement());
{
ScopeExitTrigger schedule_timer_stop(boost::bind(&Timer::stop, &timer));
timer.run();
stmt->execute(query_kill_query);
// this can potentially cause threading issues, since connector driver isn't thread-safe
//close_connection(_usr_dbc_conn);
// connection drop doesn't interrupt fetching stage (surprisingly)
// to workaround that we set special flag and check it periodically during fetching
_usr_dbc_conn->is_stop_query_requested= is_running_query();
}
}
if (_usr_dbc_conn->is_stop_query_requested)
{
_grtm->replace_status_text("Query Cancelled");
set_log_message(log_message_index, DbSqlEditorLog::NoteMsg, _("OK - Query cancelled"), STATEMENT, timer.duration_formatted());
}
else
set_log_message(log_message_index, DbSqlEditorLog::NoteMsg, _("OK - Query already completed"), STATEMENT, timer.duration_formatted());
// reconnect but only if in autocommit mode
if (_usr_dbc_conn->autocommit_mode)
{
// this will restore connection if it was established previously
exec_sql_task->execute_in_main_thread(
boost::bind(&SqlEditorForm::send_message_keep_alive, this),
false,
true);
}
}
CATCH_SQL_EXCEPTION_AND_DISPATCH(STATEMENT, log_message_index, "")
}
void SqlEditorForm::commit()
{
exec_sql_retaining_editor_contents("COMMIT", NULL, false);
}
void SqlEditorForm::rollback()
{
exec_sql_retaining_editor_contents("ROLLBACK", NULL, false);
}
void SqlEditorForm::explain_current_statement()
{
SqlEditorPanel *panel = active_sql_editor_panel();
if (panel)
{
SqlEditorResult *result = panel->add_panel_for_recordset(Recordset::Ref());
result->set_title("Explain");
grt::BaseListRef args(_grtm->get_grt());
args.ginsert(panel->grtobj());
args.ginsert(result->grtobj());
// run the visual explain plugin, so it will fill the result panel
_grtm->get_grt()->call_module_function("SQLIDEQueryAnalysis", "visualExplain", args);
}
}
// Should actually be called _retaining_old_recordsets
void SqlEditorForm::exec_sql_retaining_editor_contents(const std::string &sql_script, SqlEditorPanel* editor, bool sync, bool dont_add_limit_clause)
{
auto_save();
if (!connected())
throw grt::db_not_connected("Not connected");
if (editor)
{
editor->query_started(true);
exec_sql_task->finish_cb(boost::bind(&SqlEditorPanel::query_finished, editor), true);
exec_sql_task->fail_cb(boost::bind(&SqlEditorPanel::query_failed, editor, _1), true);
}
exec_sql_task->exec(sync,
boost::bind(&SqlEditorForm::do_exec_sql, this, _1,
weak_ptr_from(this), boost::shared_ptr<std::string>(new std::string(sql_script)),
editor, (ExecFlags)(dont_add_limit_clause?DontAddLimitClause:0),
RecordsetsRef()));
}
void SqlEditorForm::run_editor_contents(bool current_statement_only)
{
SqlEditorPanel *panel(active_sql_editor_panel());
if (panel)
{
exec_editor_sql(panel, false, current_statement_only, current_statement_only);
}
}
RecordsetsRef SqlEditorForm::exec_sql_returning_results(const std::string &sql_script, bool dont_add_limit_clause)
{
if (!connected())
throw grt::db_not_connected("Not connected");
RecordsetsRef rsets(new Recordsets());
do_exec_sql(_grtm->get_grt(), weak_ptr_from(this), boost::shared_ptr<std::string>(new std::string(sql_script)),
NULL, (ExecFlags)(dont_add_limit_clause?DontAddLimitClause:0), rsets);
return rsets;
}
/**
* Runs the current content of the given editor on the target server and returns true if the query
* was actually started (useful for the platform layers to show a busy animation).
*
* @param editor The editor whose content is to be executed.
* @param sync If true wait for completion.
* @param current_statement_only If true then only the statement where the cursor is in is executed.
* Otherwise the current selection is executed (if there is one) or
* the entire editor content.
* @param use_non_std_delimiter If true the code is wrapped with a non standard delimiter to
* allow running the sql regardless of the delimiters used by the
* user (e.g. for view/sp definitions).
* @param dont_add_limit_clause If true the automatic addition of the LIMIT clause is suppressed, which
* is used to limit on the number of return rows (avoid huge result sets
* by accident).
* @param into_result If not NULL, the resultset grid will be displayed inside it, instead of creating
* a new one in editor. The query/script must return at most one recordset.
*/
bool SqlEditorForm::exec_editor_sql(SqlEditorPanel *editor, bool sync, bool current_statement_only,
bool use_non_std_delimiter, bool dont_add_limit_clause, SqlEditorResult *into_result)
{
boost::shared_ptr<std::string> shared_sql;
if (current_statement_only)
shared_sql.reset(new std::string(editor->editor_be()->current_statement()));
else
{
std::string sql = editor->editor_be()->selected_text();
if (sql.empty())
{
std::pair<const char*, size_t> text = editor->text_data();
shared_sql.reset(new std::string(text.first, text.second));
}
else
shared_sql.reset(new std::string(sql));
}
if (shared_sql->empty())
return false;
ExecFlags flags = (ExecFlags)0;
if (use_non_std_delimiter)
flags = (ExecFlags)(flags | NeedNonStdDelimiter);
if (dont_add_limit_clause)
flags = (ExecFlags)(flags | DontAddLimitClause);
if (_grtm->get_app_option_int("DbSqlEditor:ShowWarnings", 1))
flags = (ExecFlags)(flags | ShowWarnings);
auto_save();
// If we're filling an already existing result panel, we shouldn't close the old result sets.
editor->query_started(into_result ? true : false);
exec_sql_task->finish_cb(boost::bind(&SqlEditorPanel::query_finished, editor), true);
exec_sql_task->fail_cb(boost::bind(&SqlEditorPanel::query_failed, editor, _1), true);
if (into_result)
{
RecordsetsRef rsets(new Recordsets());
exec_sql_task->exec(
sync,
boost::bind(&SqlEditorForm::do_exec_sql, this, _1, weak_ptr_from(this), shared_sql,
(SqlEditorPanel*)NULL, flags, rsets)
);
if (rsets->size() > 1)
log_error("Statement returns too many resultsets\n");
if (!rsets->empty())
into_result->set_recordset((*rsets)[0]);
}
else
exec_sql_task->exec(
sync,
boost::bind(&SqlEditorForm::do_exec_sql, this, _1, weak_ptr_from(this), shared_sql,
editor, flags, RecordsetsRef())
);
return true;
}
void SqlEditorForm::update_live_schema_tree(const std::string &sql)
{
if(_grtm)
_grtm->run_once_when_idle(this, boost::bind(&SqlEditorForm::handle_command_side_effects, this, sql));
}
grt::StringRef SqlEditorForm::do_exec_sql(grt::GRT *grt, Ptr self_ptr, boost::shared_ptr<std::string> sql,
SqlEditorPanel *editor, ExecFlags flags, RecordsetsRef result_list)
{
bool use_non_std_delimiter = (flags & NeedNonStdDelimiter) != 0;
bool dont_add_limit_clause = (flags & DontAddLimitClause) != 0;
std::map<std::string, boost::int64_t> ps_stats;
std::vector<PSStage> ps_stages;
std::vector<PSWait> ps_waits;
bool query_ps_stats = collect_ps_statement_events();
std::string query_ps_statement_events_error;
std::string statement;
int max_query_size_to_log = _grtm->get_app_option_int("DbSqlEditor:MaxQuerySizeToHistory", 0);
int limit_rows = 0;
if (_grtm->get_app_option_int("SqlEditor:LimitRows") != 0)
limit_rows = _grtm->get_app_option_int("SqlEditor:LimitRowsCount", 0);
_grtm->replace_status_text(_("Executing Query..."));
RETVAL_IF_FAIL_TO_RETAIN_WEAK_PTR (SqlEditorForm, self_ptr, self, grt::StringRef(""))
// add_log_message() will increment this variable on errors or warnings
_exec_sql_error_count = 0;
bool interrupted = true;
sql::Driver *dbc_driver= NULL;
try
{
RecMutexLock use_dbc_conn_mutex(ensure_valid_usr_connection());
dbc_driver= _usr_dbc_conn->ref->getDriver();
dbc_driver->threadInit();
bool is_running_query= true;
AutoSwap<bool> is_running_query_keeper(_is_running_query, is_running_query);
update_menu_and_toolbar();
_has_pending_log_messages= false;
ScopeExitTrigger schedule_log_messages_refresh(boost::bind(
&SqlEditorForm::refresh_log_messages, this, true));
SqlFacade::Ref sql_facade= SqlFacade::instance_for_rdbms(rdbms());
Sql_syntax_check::Ref sql_syntax_check= sql_facade->sqlSyntaxCheck();
Sql_specifics::Ref sql_specifics= sql_facade->sqlSpecifics();
bool ran_set_sql_mode = false;
bool logging_queries;
std::vector<std::pair<size_t, size_t> > statement_ranges;
sql_facade->splitSqlScript(sql->c_str(), sql->size(),
use_non_std_delimiter ? sql_specifics->non_std_sql_delimiter() : ";", statement_ranges);
if (statement_ranges.size() > 1)
{
query_ps_stats = false;
query_ps_statement_events_error = "Query stats can only be fetched when a single statement is executed.";
}
if (!max_query_size_to_log || max_query_size_to_log >= (int)sql->size())
{
logging_queries = true;
}
else
{
std::list<std::string> warning;
warning.push_back(base::strfmt("Skipping history entries for %li statements, total %li bytes", (long)statement_ranges.size(),
(long)sql->size()));
_history->add_entry(warning);
logging_queries = false;
}
// Intentionally allow any value. For values <= 0 show no result set at all.
ssize_t max_resultset_count = _grtm->get_app_option_int("DbSqlEditor::MaxResultsets", 50);
ssize_t total_result_count = (editor != NULL) ? editor->resultset_count() : 0; // Consider pinned result sets.
bool results_left = false;
std::pair<size_t, size_t> statement_range;
BOOST_FOREACH (statement_range, statement_ranges)
{
statement = sql->substr(statement_range.first, statement_range.second);
std::list<std::string> sub_statements;
sql_facade->splitSqlScript(statement, sub_statements);
size_t multiple_statement_count = sub_statements.size();
bool is_multiple_statement = (1 < multiple_statement_count);
{
statement= strip_text(statement, false, true);
if (statement.empty())
continue;
Sql_syntax_check::Statement_type statement_type= sql_syntax_check->determine_statement_type(statement);
if (Sql_syntax_check::sql_empty == statement_type)
continue;
std::string schema_name;
std::string table_name;
if (logging_queries)
{
std::list<std::string> statements;
statements.push_back(statement);
_history->add_entry(statements);
}
Recordset_cdbc_storage::Ref data_storage;
// for select queries add limit clause if specified by global option
if (!is_multiple_statement && (Sql_syntax_check::sql_select == statement_type))
{
data_storage= Recordset_cdbc_storage::create(_grtm);
data_storage->set_gather_field_info(true);
data_storage->rdbms(rdbms());
data_storage->setUserConnectionGetter(boost::bind(&SqlEditorForm::getUserConnection, this, _1, _2));
data_storage->setAuxConnectionGetter(boost::bind(&SqlEditorForm::getAuxConnection, this, _1, _2));
SqlFacade::String_tuple_list column_names;
if (!table_name.empty() || sql_facade->parseSelectStatementForEdit(statement, schema_name, table_name, column_names))
{
data_storage->schema_name(schema_name.empty() ? _usr_dbc_conn->active_schema : schema_name);
data_storage->table_name(table_name);
}
else
data_storage->readonly_reason("Statement must be a SELECT for columns of a single table with a primary key for its results to be editable.");
data_storage->sql_query(statement);
{
bool do_limit = !dont_add_limit_clause && limit_rows > 0;
data_storage->limit_rows(do_limit);
if (limit_rows > 0)
data_storage->limit_rows_count(limit_rows);
}
statement= data_storage->decorated_sql_query();
}
{
RowId log_message_index= add_log_message(DbSqlEditorLog::BusyMsg, _("Running..."), statement,
((Sql_syntax_check::sql_select == statement_type) ? "? / ?" : "?"));
bool statement_failed= false;
long long updated_rows_count= -1;
Timer statement_exec_timer(false);
Timer statement_fetch_timer(false);
boost::shared_ptr<sql::Statement> dbc_statement(_usr_dbc_conn->ref->createStatement());
bool is_result_set_first= false;
if (_usr_dbc_conn->is_stop_query_requested)
throw std::runtime_error(_("Query execution has been stopped, the connection to the DB server was not restarted, any open transaction remains open"));
try
{
{
ScopeExitTrigger schedule_statement_exec_timer_stop(boost::bind(&Timer::stop, &statement_exec_timer));
statement_exec_timer.run();
is_result_set_first= dbc_statement->execute(statement);
}
updated_rows_count= dbc_statement->getUpdateCount();
// XXX: coalesce all the special queries here and act on them *after* all queries have run.
// Especially the drop command is redirected twice to idle tasks, kicking so in totally asynchronously
// and killing any intermittent USE commands.
// Updating the UI during a run of many commands is not useful either.
if (Sql_syntax_check::sql_use == statement_type)
cache_active_schema_name();
if (Sql_syntax_check::sql_set == statement_type && statement.find("@sql_mode") != std::string::npos)
ran_set_sql_mode= true;
if (Sql_syntax_check::sql_drop == statement_type)
update_live_schema_tree(statement);
}
catch (sql::SQLException &e)
{
std::string err_msg;
// safe mode
switch (e.getErrorCode())
{
case 1046: // not default DB selected
err_msg= strfmt(_("Error Code: %i. %s\nSelect the default DB to be used by double-clicking its name in the SCHEMAS list in the sidebar."), e.getErrorCode(), e.what());
break;
case 1175: // safe mode
err_msg= strfmt(_("Error Code: %i. %s\nTo disable safe mode, toggle the option in Preferences -> SQL Editor and reconnect."), e.getErrorCode(), e.what());
break;
default:
err_msg= strfmt(_("Error Code: %i. %s"), e.getErrorCode(), e.what());
break;
}
set_log_message(log_message_index, DbSqlEditorLog::ErrorMsg, err_msg, statement, statement_exec_timer.duration_formatted());
statement_failed= true;
}
catch (std::exception &e)
{
std::string err_msg= strfmt(_("Error: %s"), e.what());
set_log_message(log_message_index, DbSqlEditorLog::ErrorMsg, err_msg, statement, statement_exec_timer.duration_formatted());
statement_failed= true;
}
if (statement_failed)
{
if (_continue_on_error)
continue; // goto next statement
else
goto stop_processing_sql_script;
}
sql::mysql::MySQL_Connection* mysql_connection = dynamic_cast<sql::mysql::MySQL_Connection*>(dbc_statement->getConnection());
sql::SQLString last_statement_info;
if (mysql_connection != NULL)
last_statement_info = mysql_connection->getLastStatementInfo();
if (updated_rows_count >= 0)
{
std::string message = strfmt(_("%lli row(s) affected"), updated_rows_count);
bool has_warning = false;
if (flags & ShowWarnings)
{
std::string warnings_message;
const sql::SQLWarning *warnings= dbc_statement->getWarnings();
if (warnings)
{
int count= 0;
const sql::SQLWarning *w = warnings;
while (w)
{
warnings_message.append(strfmt("\n%i %s", w->getErrorCode(), w->getMessage().c_str()));
count++;
w= w->getNextWarning();
}
message.append(strfmt(_(", %i warning(s):"), count));
has_warning = true;
}
if (!warnings_message.empty())
message.append(warnings_message);
}
if (!last_statement_info->empty())
message.append("\n").append(last_statement_info);
set_log_message(log_message_index, has_warning ? DbSqlEditorLog::WarningMsg : DbSqlEditorLog::OKMsg, message, statement, statement_exec_timer.duration_formatted());
}
if (query_ps_stats)
{
query_ps_statistics(_usr_dbc_conn->id, ps_stats);
ps_stages = query_ps_stages(ps_stats["EVENT_ID"]);
ps_waits = query_ps_waits(ps_stats["EVENT_ID"]);
}
int resultset_count= 0;
bool more_results= is_result_set_first;
bool reuse_log_msg= false;
if ((updated_rows_count < 0) || is_multiple_statement)
{
for (size_t processed_substatements_count= 0; processed_substatements_count < multiple_statement_count; ++processed_substatements_count)
{
do
{
if (more_results)
{
if (total_result_count == max_resultset_count)
{
int result = mforms::Utilities::show_warning(_("Maximum result count reached"),
"No further result tabs will be displayed as the maximm number has been reached. \nYou may stop the operation, leaving the connection out of sync. You'll have to got o 'Query->Reconnect to server' menu item to reset the state.\n\n Do you want to cancel the operation?",
"Yes", "No");
if (result == mforms::ResultOk)
{
add_log_message(DbSqlEditorLog::ErrorMsg, "Not more results could be displayed. Operation cancelled by user", statement, "");
dbc_statement->cancel();
dbc_statement->close();
return grt::StringRef("");
}
add_log_message(DbSqlEditorLog::WarningMsg, "Not more results will be displayed because the maximum number of result sets was reached.", statement, "");
}
if (!reuse_log_msg && ((updated_rows_count >= 0) || (resultset_count)))
log_message_index= add_log_message(DbSqlEditorLog::BusyMsg, _("Fetching..."), statement, "- / ?");
else
set_log_message(log_message_index, DbSqlEditorLog::BusyMsg, _("Fetching..."), statement, statement_exec_timer.duration_formatted() + " / ?");
reuse_log_msg= false;
boost::shared_ptr<sql::ResultSet> dbc_resultset;
{
ScopeExitTrigger schedule_statement_fetch_timer_stop(boost::bind(&Timer::stop, &statement_fetch_timer));
statement_fetch_timer.run();
// need a separate exception catcher here, because sometimes a query error
// will only throw an exception after fetching starts, which causes the busy spinner
// to be active forever, since the exception is logged in a new log_id/row
// XXX this could also be caused by a bug in Connector/C++
try
{
dbc_resultset.reset(dbc_statement->getResultSet());
}
catch (sql::SQLException &e)
{
std::string err_msg;
// safe mode
switch (e.getErrorCode())
{
case 1046: // not default DB selected
err_msg= strfmt(_("Error Code: %i. %s\nSelect the default DB to be used by double-clicking its name in the SCHEMAS list in the sidebar."), e.getErrorCode(), e.what());
break;
case 1175: // safe mode
err_msg= strfmt(_("Error Code: %i. %s\nTo disable safe mode, toggle the option in Preferences -> SQL Editor and reconnect."), e.getErrorCode(), e.what());
break;
default:
err_msg= strfmt(_("Error Code: %i. %s"), e.getErrorCode(), e.what());
break;
}
set_log_message(log_message_index, DbSqlEditorLog::ErrorMsg, err_msg, statement, statement_exec_timer.duration_formatted());
if (_continue_on_error)
continue; // goto next statement
else
goto stop_processing_sql_script;
}
}
std::string exec_and_fetch_durations=
(((updated_rows_count >= 0) || (resultset_count)) ? std::string("-") : statement_exec_timer.duration_formatted()) + " / " +
statement_fetch_timer.duration_formatted();
if (total_result_count >= max_resultset_count)
set_log_message(log_message_index, DbSqlEditorLog::OKMsg, "Row count could not be verified", statement, exec_and_fetch_durations);
else if (dbc_resultset)
{
if (!data_storage)
{
data_storage= Recordset_cdbc_storage::create(_grtm);
data_storage->set_gather_field_info(true);
data_storage->rdbms(rdbms());
data_storage->setUserConnectionGetter(boost::bind(&SqlEditorForm::getUserConnection, this, _1, _2));
data_storage->setAuxConnectionGetter(boost::bind(&SqlEditorForm::getAuxConnection, this, _1, _2));
if (table_name.empty())
data_storage->sql_query(statement);
data_storage->schema_name(schema_name);
data_storage->table_name(table_name);
}
data_storage->dbc_statement(dbc_statement);
data_storage->dbc_resultset(dbc_resultset);
data_storage->reloadable(!is_multiple_statement && (Sql_syntax_check::sql_select == statement_type));
Recordset::Ref rs= Recordset::create(exec_sql_task);
rs->is_field_value_truncation_enabled(true);
rs->apply_changes_cb= boost::bind(&SqlEditorForm::apply_changes_to_recordset, this, Recordset::Ptr(rs));
rs->generator_query(statement);
{
RecordsetData *rdata = new RecordsetData();
rdata->duration = statement_exec_timer.duration();
rdata->ps_stat_error = query_ps_statement_events_error;
rdata->ps_stat_info = ps_stats;
rdata->ps_stage_info = ps_stages;
rdata->ps_wait_info = ps_waits;
rs->set_client_data(rdata);
}
rs->data_storage(data_storage);
rs->reset(true);
if (data_storage->valid()) // query statement
{
if (result_list)
result_list->push_back(rs);
if (editor)
editor->add_panel_for_recordset_from_main(rs);
std::string statement_res_msg = base::to_string(rs->row_count()) + _(" row(s) returned");
if (!last_statement_info->empty())
statement_res_msg.append("\n").append(last_statement_info);
set_log_message(log_message_index, DbSqlEditorLog::OKMsg, statement_res_msg, statement, exec_and_fetch_durations);
}
++resultset_count;
}
else
{
reuse_log_msg= true;
}
++total_result_count;
data_storage.reset();
}
}
while ((more_results = dbc_statement->getMoreResults()));
}
}
if ((updated_rows_count < 0) && !(resultset_count))
set_log_message(log_message_index, DbSqlEditorLog::OKMsg, _("OK"), statement, statement_exec_timer.duration_formatted());
}
}
} // BOOST_FOREACH (statement, statements)
if (results_left)
{
exec_sql_task->execute_in_main_thread(
boost::bind(&mforms::Utilities::show_warning, _("Result set limit reached"), _("There were more results than "
"result tabs could be opened, because the set maximum limit was reached. You can change this "
"limit in the preferences."), _("OK"), "", ""), true, false);
}
_grtm->replace_status_text(_("Query Completed"));
interrupted = false;
stop_processing_sql_script:
if (interrupted)
_grtm->replace_status_text(_("Query interrupted"));
// try to minimize the times this is called, since this will change the state of the connection
// after a user query is ran (eg, it will reset all warnings)
if (ran_set_sql_mode)
cache_sql_mode();
}
CATCH_ANY_EXCEPTION_AND_DISPATCH(statement)
if (dbc_driver)
dbc_driver->threadEnd();
update_menu_and_toolbar();
_usr_dbc_conn->is_stop_query_requested = false;
return grt::StringRef("");
}
void SqlEditorForm::exec_management_sql(const std::string &sql, bool log)
{
sql::Dbc_connection_handler::Ref conn;
base::RecMutexLock lock(ensure_valid_aux_connection(conn));
if (conn)
{
RowId rid = log ? add_log_message(DbSqlEditorLog::BusyMsg, _("Executing "), sql, "- / ?") : 0;
boost::scoped_ptr<sql::Statement> stmt(conn->ref->createStatement());
Timer statement_exec_timer(false);
try
{
stmt->execute(sql);
}
catch (sql::SQLException &e)
{
if (log)
set_log_message(rid, DbSqlEditorLog::ErrorMsg, strfmt(SQL_EXCEPTION_MSG_FORMAT, e.getErrorCode(), e.what()), sql, "");
throw;
}
CATCH_EXCEPTION_AND_DISPATCH(sql);
if (log)
set_log_message(rid, DbSqlEditorLog::OKMsg, _("OK"), sql, statement_exec_timer.duration_formatted());
handle_command_side_effects(sql);
}
}
void SqlEditorForm::exec_main_sql(const std::string &sql, bool log)
{
base::RecMutexLock lock(ensure_valid_usr_connection());
if (_usr_dbc_conn)
{
RowId rid = log ? add_log_message(DbSqlEditorLog::BusyMsg, _("Executing "), sql, "- / ?") : 0;
boost::scoped_ptr<sql::Statement> stmt(_usr_dbc_conn->ref->createStatement());
Timer statement_exec_timer(false);
try
{
stmt->execute(sql);
}
catch (sql::SQLException &e)
{
if (log)
set_log_message(rid, DbSqlEditorLog::ErrorMsg, strfmt(SQL_EXCEPTION_MSG_FORMAT, e.getErrorCode(), e.what()), sql, "");
throw;
}
CATCH_EXCEPTION_AND_DISPATCH(sql);
if (log)
set_log_message(rid, DbSqlEditorLog::OKMsg, _("OK"), sql, statement_exec_timer.duration_formatted());
handle_command_side_effects(sql);
}
}
static wb::LiveSchemaTree::ObjectType str_to_object_type(const std::string &object_type)
{
if (object_type == "db.Table")
return LiveSchemaTree::Table;
else if (object_type == "db.View")
return LiveSchemaTree::View;
else if (object_type == "db.StoredProcedure")
return LiveSchemaTree::Procedure;
else if (object_type == "db.Function")
return LiveSchemaTree::Function;
else if (object_type == "db.Index")
return LiveSchemaTree::Index;
else if (object_type == "db.Trigger")
return LiveSchemaTree::Trigger;
else if (object_type == "db.Schema")
return LiveSchemaTree::Schema;
return LiveSchemaTree::NoneType;
}
void SqlEditorForm::handle_command_side_effects(const std::string &sql)
{
SqlFacade::Ref sql_facade= SqlFacade::instance_for_rdbms(rdbms());
std::string object_type;
std::string schema_name = active_schema();
std::vector<std::pair<std::string, std::string> > object_names;
// special hack, check for some special commands and update UI accordingly
if (sql_facade->parseDropStatement(sql, object_type, object_names) && !object_names.empty())
{
wb::LiveSchemaTree::ObjectType obj = str_to_object_type(object_type);
if (obj != wb::LiveSchemaTree::NoneType)
{
std::vector<std::pair<std::string, std::string> >::reverse_iterator rit;
if (obj == wb::LiveSchemaTree::Schema)
{
for (rit = object_names.rbegin(); rit != object_names.rend(); ++rit)
_live_tree->refresh_live_object_in_overview(obj, (*rit).first, (*rit).first, "");
if (!object_names.empty())
schema_name = object_names.back().first;
if ((schema_name.size() > 0) && (active_schema() == schema_name) && connection_descriptor().is_valid())
{
std::string default_schema= connection_descriptor()->parameterValues().get_string("schema", "");
if (schema_name == default_schema)
default_schema = "";
_grtm->run_once_when_idle(this, boost::bind(&set_active_schema, shared_from_this(), default_schema));
}
}
else
{
for (rit = object_names.rbegin(); rit != object_names.rend(); ++rit)
_live_tree->refresh_live_object_in_overview(obj, (*rit).first.empty() ? schema_name : (*rit).first, (*rit).second, "");
}
}
}
}
db_query_ResultsetRef SqlEditorForm::exec_management_query(const std::string &sql, bool log)
{
sql::Dbc_connection_handler::Ref conn;
base::RecMutexLock lock(ensure_valid_aux_connection(conn));
if (conn)
{
RowId rid = log ? add_log_message(DbSqlEditorLog::BusyMsg, _("Executing "), sql, "- / ?") : 0;
boost::scoped_ptr<sql::Statement> stmt(conn->ref->createStatement());
Timer statement_exec_timer(false);
try
{
boost::shared_ptr<sql::ResultSet> results(stmt->executeQuery(sql));
if (log)
set_log_message(rid, DbSqlEditorLog::OKMsg, _("OK"), sql, statement_exec_timer.duration_formatted());
return grtwrap_recordset(grtobj(), results);
}
catch (sql::SQLException &e)
{
if (log)
set_log_message(rid, DbSqlEditorLog::ErrorMsg, strfmt(SQL_EXCEPTION_MSG_FORMAT, e.getErrorCode(), e.what()), sql, "");
throw;
}
}
return db_query_ResultsetRef();
}
db_query_ResultsetRef SqlEditorForm::exec_main_query(const std::string &sql, bool log)
{
base::RecMutexLock lock(ensure_valid_usr_connection());
if (_usr_dbc_conn)
{
RowId rid = log ? add_log_message(DbSqlEditorLog::BusyMsg, _("Executing "), sql, "- / ?") : 0;
boost::scoped_ptr<sql::Statement> stmt(_usr_dbc_conn->ref->createStatement());
Timer statement_exec_timer(false);
try
{
boost::shared_ptr<sql::ResultSet> results(stmt->executeQuery(sql));
if (log)
set_log_message(rid, DbSqlEditorLog::OKMsg, _("OK"), sql, statement_exec_timer.duration_formatted());
return grtwrap_recordset(grtobj(), results);
}
catch (sql::SQLException &e)
{
if (log)
set_log_message(rid, DbSqlEditorLog::ErrorMsg, strfmt(SQL_EXCEPTION_MSG_FORMAT, e.getErrorCode(), e.what()), sql, "");
throw;
}
}
return db_query_ResultsetRef();
}
bool SqlEditorForm::is_running_query()
{
return _is_running_query;
}
void SqlEditorForm::continue_on_error(bool val)
{
if (_continue_on_error == val)
return;
_continue_on_error= val;
_grtm->set_app_option("DbSqlEditor:ContinueOnError", grt::IntegerRef((int)continue_on_error()));
if (_menu)
_menu->set_item_checked("query.continueOnError", continue_on_error());
set_editor_tool_items_checked("query.continueOnError", continue_on_error());
active_sql_editor_panel()->editor_be()->set_continue_on_error(continue_on_error());
}
void SqlEditorForm::send_message_keep_alive()
{
try
{
log_debug3("KeepAliveInterval tick\n");
// ping server and reset connection timeout counter
// this also checks the connection state and restores it if possible
ensure_valid_aux_connection();
ensure_valid_usr_connection();
}
catch (const std::exception &)
{
}
}
void SqlEditorForm::apply_changes_to_recordset(Recordset::Ptr rs_ptr)
{
RETURN_IF_FAIL_TO_RETAIN_WEAK_PTR (Recordset, rs_ptr, rs)
try
{
bool auto_commit = false;
// we need transaction to enforce atomicity of change set
// so if autocommit is currently enabled disable it temporarily
{
RecMutexLock usr_dbc_conn_mutex = ensure_valid_usr_connection();
auto_commit = _usr_dbc_conn->ref->getAutoCommit();
}
ScopeExitTrigger autocommit_mode_keeper;
int res= -2;
if (!auto_commit)
{
res= mforms::Utilities::show_warning(
_("Apply Changes to Recordset"),
_("Autocommit is currently disabled and a transaction might be open.\n"
"Recordset changes will be applied within that transaction and will be left uncommited until you explicitly commit it manually.\n"
"If you want it to be executed separately, click Cancel and commit the transaction first."),
_("Apply"),
_("Cancel"));
}
else
{
autocommit_mode_keeper.slot= boost::bind(
&sql::Connection::setAutoCommit, _usr_dbc_conn->ref.get(),
auto_commit);
RecMutexLock usr_dbc_conn_mutex = ensure_valid_usr_connection();
_usr_dbc_conn->ref->setAutoCommit(false);
}
if (res != mforms::ResultCancel) // only if not canceled
{
on_sql_script_run_error.disconnect_all_slots();
on_sql_script_run_progress.disconnect_all_slots();
on_sql_script_run_statistics.disconnect_all_slots();
Recordset_data_storage::Ref data_storage_ref= rs->data_storage();
Recordset_sql_storage *sql_storage= dynamic_cast<Recordset_sql_storage *>(data_storage_ref.get());
scoped_connection c1(on_sql_script_run_error.connect(boost::bind(&SqlEditorForm::add_log_message, this, DbSqlEditorLog::ErrorMsg, _2, _3, "")));
bool skip_commit;
if (auto_commit)
skip_commit = false;
else
skip_commit = true; // if we're in an open tx, then do not commit
bool is_data_changes_commit_wizard_enabled= (0 != _grtm->get_app_option_int("DbSqlEditor:IsDataChangesCommitWizardEnabled", 1));
if (is_data_changes_commit_wizard_enabled)
{
run_data_changes_commit_wizard(rs_ptr, skip_commit);
}
else
{
sql_storage->is_sql_script_substitute_enabled(false);
scoped_connection on_sql_script_run_error_conn(sql_storage->on_sql_script_run_error.connect(on_sql_script_run_error));
rs->do_apply_changes(_grtm->get_grt(), rs_ptr, Recordset_data_storage::Ptr(data_storage_ref), skip_commit);
}
// Since many messages could have been added it is possible the
// the action log has not been refresh, this triggers a refresh
refresh_log_messages(true);
}
}
CATCH_ANY_EXCEPTION_AND_DISPATCH(_("Apply changes to recordset"))
}
bool SqlEditorForm::run_data_changes_commit_wizard(Recordset::Ptr rs_ptr, bool skip_commit)
{
RETVAL_IF_FAIL_TO_RETAIN_WEAK_PTR (Recordset, rs_ptr, rs, false)
// set underlying recordset data storage to use sql substitute (potentially modified by user)
// instead of generating sql based on swap db contents
Recordset_data_storage::Ref data_storage_ref= rs->data_storage();
Recordset_sql_storage *sql_storage= dynamic_cast<Recordset_sql_storage *>(data_storage_ref.get());
if (!sql_storage)
return false;
sql_storage->init_sql_script_substitute(rs_ptr, true);
sql_storage->is_sql_script_substitute_enabled(true);
const Sql_script &sql_script= sql_storage->sql_script_substitute();;
std::string sql_script_text= Recordset_sql_storage::statements_as_sql_script(sql_script.statements);
// No need for online DDL settings or callback as we are dealing with data here, not metadata.
SqlScriptRunWizard wizard(_grtm, rdbms_version(), "", "");
scoped_connection c1(on_sql_script_run_error.connect(boost::bind(&SqlScriptApplyPage::on_error, wizard.apply_page, _1, _2, _3)));
scoped_connection c2(on_sql_script_run_progress.connect(boost::bind(&SqlScriptApplyPage::on_exec_progress, wizard.apply_page, _1)));
scoped_connection c3(on_sql_script_run_statistics.connect(boost::bind(&SqlScriptApplyPage::on_exec_stat, wizard.apply_page, _1, _2)));
wizard.values().gset("sql_script", sql_script_text);
wizard.apply_page->apply_sql_script= boost::bind(&SqlEditorForm::apply_data_changes_commit, this, _1, rs_ptr, skip_commit);
wizard.run_modal();
return !wizard.has_errors();
}
void SqlEditorForm::apply_object_alter_script(const std::string &alter_script, bec::DBObjectEditorBE* obj_editor, RowId log_id)
{
set_log_message(log_id, DbSqlEditorLog::BusyMsg, "",
obj_editor ? strfmt(_("Applying changes to %s..."), obj_editor->get_name().c_str()) : _("Applying changes..."), "");
SqlFacade::Ref sql_splitter= SqlFacade::instance_for_rdbms(rdbms());
std::list<std::string> statements;
sql_splitter->splitSqlScript(alter_script, statements);
int max_query_size_to_log = _grtm->get_app_option_int("DbSqlEditor:MaxQuerySizeToHistory", 0);
/* this doesn't really work
std::list<std::string> failback_statements;
if (obj_editor)
{
// in case of alter script failure:
// try to restore object since it could had been successfully dropped before the alter script failed
db_DatabaseObjectRef db_object= obj_editor->get_dbobject();
std::string original_object_ddl_script= db_object->customData().get_string("originalObjectDDL", "");
if (!original_object_ddl_script.empty())
{
// reuse the setting schema statement which is the first statement of the alter script
std::string sql= *statements.begin();
if ((0 == sql.find("use")) || (0 == sql.find("USE")))
failback_statements.push_back(sql);
sql_splitter->splitSqlScript(original_object_ddl_script, failback_statements);
}
}*/
sql::SqlBatchExec sql_batch_exec;
sql_batch_exec.stop_on_error(true);
// if (!failback_statements.empty())
// sql_batch_exec.failback_statements(failback_statements);
sql_batch_exec.error_cb(boost::ref(on_sql_script_run_error));
sql_batch_exec.batch_exec_progress_cb(boost::ref(on_sql_script_run_progress));
sql_batch_exec.batch_exec_stat_cb(boost::ref(on_sql_script_run_statistics));
/*
if (obj_editor)
{
on_sql_script_run_error.connect(obj_editor->on_live_object_change_error);
on_sql_script_run_progress.connect(obj_editor->on_live_object_change_progress);
on_sql_script_run_statistics.connect(obj_editor->on_live_object_change_statistics);
}*/
long sql_batch_exec_err_count= 0;
{
try
{
RecMutexLock usr_dbc_conn_mutex(ensure_valid_usr_connection(true));
std::auto_ptr<sql::Statement> stmt(_usr_dbc_conn->ref->createStatement());
sql_batch_exec_err_count= sql_batch_exec(stmt.get(), statements);
}
catch (sql::SQLException &e)
{
log_error("Exception applying SQL: %s\n", e.what());
set_log_message(log_id, DbSqlEditorLog::ErrorMsg, strfmt(SQL_EXCEPTION_MSG_FORMAT, e.getErrorCode(), e.what()), strfmt(_("Apply ALTER script for %s"), obj_editor->get_name().c_str()), "");
throw; // re-throw exception so that the wizard will see that something went wrong
}
catch (base::mutex_busy_error &)
{
log_error("usr connection busy applying SQL\n");
set_log_message(log_id, DbSqlEditorLog::ErrorMsg, strfmt(EXCEPTION_MSG_FORMAT, "Your connection to MySQL is currently busy. Please retry later."), strfmt(_("Apply ALTER script for %s"), obj_editor->get_name().c_str()), "");
throw std::runtime_error("Connection to MySQL currently busy.");
}
catch (std::exception &e)
{
log_error("Exception applying SQL: %s\n", e.what());
set_log_message(log_id, DbSqlEditorLog::ErrorMsg, strfmt(EXCEPTION_MSG_FORMAT, e.what()), strfmt(_("Apply ALTER script for %s"), obj_editor->get_name().c_str()), "");
throw;
}
}
if (!max_query_size_to_log || max_query_size_to_log >= (int)alter_script.size() )
_history->add_entry(sql_batch_exec.sql_log());
// refresh object's state only on success, to not lose changes made by user
if (obj_editor && (0 == sql_batch_exec_err_count))
{
db_DatabaseObjectRef db_object= obj_editor->get_dbobject();
set_log_message(log_id, DbSqlEditorLog::OKMsg, strfmt(_("Changes applied to %s"), obj_editor->get_name().c_str()), "", "");
// refresh state of created/altered object in physical overview
{
std::string schema_name= db_SchemaRef::can_wrap(db_object) ? std::string() : *db_object->owner()->name();
db_SchemaRef schema;
if (!schema_name.empty())
schema= db_SchemaRef::cast_from(db_object->owner());
wb::LiveSchemaTree::ObjectType db_object_type = wb::LiveSchemaTree::Any;
if (db_SchemaRef::can_wrap(db_object))
db_object_type= wb::LiveSchemaTree::Schema;
else if (db_TableRef::can_wrap(db_object))
db_object_type= wb::LiveSchemaTree::Table;
else if (db_ViewRef::can_wrap(db_object))
db_object_type= wb::LiveSchemaTree::View;
else if (db_RoutineRef::can_wrap(db_object))
{
db_RoutineRef db_routine = db_RoutineRef::cast_from(db_object);
std::string obj_type = db_routine->routineType();
if (obj_type == "function")
db_object_type= wb::LiveSchemaTree::Function;
else
db_object_type= wb::LiveSchemaTree::Procedure;
}
//_live_tree->refresh_live_object_in_overview(db_object_type, schema_name, db_object->oldName(), db_object->name());
// Run refresh on main thread, but only if there's not another refresh pending already.
if (!_overviewRefreshPending.connected())
{
_overviewRefreshPending = _grtm->run_once_when_idle(this, boost::bind(&SqlEditorTreeController::refresh_live_object_in_overview,
_live_tree, db_object_type, schema_name, db_object->oldName(), db_object->name()));
}
}
//_live_tree->refresh_live_object_in_editor(obj_editor, false);
if (!_editorRefreshPending.connected())
{
_editorRefreshPending = _grtm->run_once_when_idle(this, boost::bind(&SqlEditorTreeController::refresh_live_object_in_editor,
_live_tree, obj_editor, false));
}
}
}
void SqlEditorForm::apply_data_changes_commit(const std::string &sql_script_text, Recordset::Ptr rs_ptr, bool skip_commit)
{
RETURN_IF_FAIL_TO_RETAIN_WEAK_PTR (Recordset, rs_ptr, rs);
// this lock is supposed to be acquired lower in call-stack by SqlEditorForm::apply_changes_to_recordset
//MutexLock usr_conn_mutex= ensure_valid_usr_connection();
Recordset_data_storage::Ref data_storage_ref= rs->data_storage();
Recordset_sql_storage *sql_storage= dynamic_cast<Recordset_sql_storage *>(data_storage_ref.get());
if (!sql_storage)
return;
int max_query_size_to_log = _grtm->get_app_option_int("DbSqlEditor:MaxQuerySizeToHistory", 0);
Sql_script sql_script= sql_storage->sql_script_substitute();
sql_script.statements.clear();
SqlFacade::Ref sql_splitter= SqlFacade::instance_for_rdbms(rdbms());
sql_splitter->splitSqlScript(sql_script_text, sql_script.statements);
scoped_connection on_sql_script_run_error_conn(sql_storage->on_sql_script_run_error.connect(on_sql_script_run_error));
scoped_connection on_sql_script_run_progress_conn(sql_storage->on_sql_script_run_progress.connect(on_sql_script_run_progress));
scoped_connection on_sql_script_run_statistics_conn(sql_storage->on_sql_script_run_statistics.connect(on_sql_script_run_statistics));
sql_storage->sql_script_substitute(sql_script);
rs->do_apply_changes(_grtm->get_grt(), rs_ptr, Recordset_data_storage::Ptr(data_storage_ref), skip_commit);
if (!max_query_size_to_log || max_query_size_to_log >= (int)sql_script_text.size() )
_history->add_entry(sql_script.statements);
}
std::string SqlEditorForm::active_schema() const
{
return (_usr_dbc_conn) ? _usr_dbc_conn->active_schema : std::string();
}
/**
* Notification from the tree controller that (some) schema meta data has been refreshed. We use this
* info to update the auto completion cache - avoiding so a separate set of queries to the server.
*/
void SqlEditorForm::schema_meta_data_refreshed(const std::string &schema_name,
base::StringListPtr tables, base::StringListPtr views, base::StringListPtr procedures,
base::StringListPtr functions)
{
if (_auto_completion_cache != NULL)
{
_auto_completion_cache->update_tables(schema_name, tables);
_auto_completion_cache->update_views(schema_name, views);
// Schedule a refresh of column info for all tables/views.
for (std::list<std::string>::const_iterator i = tables->begin(); i != tables->end(); ++i)
_auto_completion_cache->refresh_columns(schema_name, *i);
for (std::list<std::string>::const_iterator i = views->begin(); i != views->end(); ++i)
_auto_completion_cache->refresh_columns(schema_name, *i);
_auto_completion_cache->update_procedures(schema_name, procedures);
_auto_completion_cache->update_functions(schema_name, functions);
}
}
void SqlEditorForm::cache_active_schema_name()
{
std::string schema=_usr_dbc_conn->ref->getSchema();
_usr_dbc_conn->active_schema= schema;
_aux_dbc_conn->active_schema= schema;
if(_auto_completion_cache)
_auto_completion_cache->refresh_schema_cache_if_needed(schema);
exec_sql_task->execute_in_main_thread(
boost::bind(&SqlEditorForm::update_editor_title_schema, this, schema),
false,
true);
}
void SqlEditorForm::active_schema(const std::string &value)
{
try
{
if (value == active_schema())
return;
if (_auto_completion_cache)
_auto_completion_cache->refresh_schema_cache_if_needed(value);
{
RecMutexLock aux_dbc_conn_mutex(ensure_valid_aux_connection());
if (!value.empty())
_aux_dbc_conn->ref->setSchema(value);
_aux_dbc_conn->active_schema= value;
}
{
RecMutexLock usr_dbc_conn_mutex(ensure_valid_usr_connection());
if (!value.empty())
_usr_dbc_conn->ref->setSchema(value);
_usr_dbc_conn->active_schema= value;
}
if (_tabdock)
{
// set current schema for the editors to notify the autocompleter
for (int c = _tabdock->view_count(), i = 0; i < c; i++)
{
SqlEditorPanel *panel = sql_editor_panel(i);
if (panel)
panel->editor_be()->set_current_schema(value);
}
}
_live_tree->on_active_schema_change(value);
// remember active schema
_connection->parameterValues().gset("DbSqlEditor:LastDefaultSchema", value);
update_editor_title_schema(value);
if (value.empty())
grt_manager()->replace_status_text(_("Active schema was cleared"));
else
grt_manager()->replace_status_text(strfmt(_("Active schema changed to %s"), value.c_str()));
_grtm->get_grt()->call_module_function("Workbench", "saveConnections", grt::BaseListRef());
}
CATCH_ANY_EXCEPTION_AND_DISPATCH(_("Set active schema"))
}
db_mgmt_RdbmsRef SqlEditorForm::rdbms()
{
if (_connection.is_valid())
{
if (!_connection->driver().is_valid())
throw std::runtime_error("Connection has invalid driver, check connection parameters.");
return db_mgmt_RdbmsRef::cast_from(_connection->driver()->owner());
}
else
return db_mgmt_RdbmsRef::cast_from(_grtm->get_grt()->get("/wb/rdbmsMgmt/rdbms/0/"));
}
int SqlEditorForm::count_connection_editors(const std::string &conn_name)
{
int count = 0;
boost::weak_ptr<SqlEditorForm> editor;
std::list<boost::weak_ptr<SqlEditorForm> >::iterator index, end;
end = _wbsql->get_open_editors()->end();
for(index = _wbsql->get_open_editors()->begin(); index != end; index++)
{
SqlEditorForm::Ref editor((*index).lock());
if (editor->_connection.is_valid())
{
std::string editor_connection = editor->_connection->name();
if (editor_connection == conn_name)
count++;
}
}
return count;
}
//--------------------------------------------------------------------------------------------------
std::string SqlEditorForm::create_title()
{
std::string caption;
std::string editor_connection = get_session_name();
if (_connection.is_valid())
{
if (!editor_connection.empty())
caption += strfmt("%s", editor_connection.c_str());
else
{
if (_connection->driver()->name() == "MysqlNativeSocket")
caption += "localhost";
else
caption+= strfmt("%s", truncate_text(editor_connection,21).c_str());
}
// only show schema name if there's more than 1 tab to the same connection, to save space
if (!_usr_dbc_conn->active_schema.empty() && count_connection_editors(editor_connection) > 1)
caption += strfmt(" (%s)", truncate_text(_usr_dbc_conn->active_schema, 20).c_str());
if (_connection_details.find("dbmsProductVersion") != _connection_details.end()
&& !bec::is_supported_mysql_version(_connection_details["dbmsProductVersion"]))
caption += " - Warning - not supported";
}
else
caption = editor_connection;
return caption;
}
//--------------------------------------------------------------------------------------------------
void SqlEditorForm::update_title()
{
std::string temp_title = create_title();
if (_title != temp_title)
{
_title = temp_title;
title_changed();
}
}
//--------------------------------------------------------------------------------------------------
GrtVersionRef SqlEditorForm::rdbms_version() const
{
return _version;
}
//--------------------------------------------------------------------------------------------------
/**
* Returns the current server version (or a reasonable default if not connected) in compact form
* as needed for parsing on various occasions (context help, auto completion, error parsing).
*/
int SqlEditorForm::server_version()
{
GrtVersionRef version = rdbms_version();
// Create a server version of the form "Mmmrr" as long int for quick comparisons.
if (version.is_valid())
return (int)(version->majorNumber() * 10000 + version->minorNumber() * 100 + version->releaseNumber());
else
return 50503;
}
//--------------------------------------------------------------------------------------------------
/**
* Returns a list of valid charsets for this connection as needed for parsing.
*/
std::set<std::string> SqlEditorForm::valid_charsets()
{
if (_charsets.empty())
{
grt::ListRef<db_CharacterSet> list = rdbms()->characterSets();
for (size_t i = 0; i < list->count(); i++)
_charsets.insert(base::tolower(*list[i]->name()));
// 3 character sets were added in version 5.5.3. Remove them from the list if the current version
// is lower than that.
if (server_version() < 50503)
{
_charsets.erase("utf8mb4");
_charsets.erase("utf16");
_charsets.erase("utf32");
}
}
return _charsets;
}
//--------------------------------------------------------------------------------------------------
bool SqlEditorForm::save_snippet()
{
SqlEditorPanel *panel = active_sql_editor_panel();
if (!panel)
return false;
std::string text;
size_t start, end;
if (panel->editor_be()->selected_range(start, end))
text = panel->editor_be()->selected_text();
else
text = panel->editor_be()->current_statement();
if (text.empty())
return false;
DbSqlEditorSnippets::get_instance()->add_snippet("", text, true);
_grtm->replace_status_text("SQL saved to snippets list.");
_side_palette->refresh_snippets();
_grtm->run_once_when_idle(this, boost::bind(&QuerySidePalette::edit_last_snippet, _side_palette));
return true;
}
//--------------------------------------------------------------------------------------------------
bool SqlEditorForm::can_close()
{
return can_close_(true);
}
bool SqlEditorForm::can_close_(bool interactive)
{
if (exec_sql_task && exec_sql_task->is_busy())
{
_grtm->replace_status_text(_("Cannot close SQL IDE while being busy"));
return false;
}
if (!bec::UIForm::can_close())
return false;
_live_tree->prepare_close();
_grtm->set_app_option("DbSqlEditor:ActiveSidePaletteTab", grt::IntegerRef(_side_palette->get_active_tab()));
bool check_scratch_editors = true;
bool save_workspace_on_close = false;
// if Save of workspace on close is enabled, we don't need to check whether there are unsaved
// SQL editors but other stuff should be checked.
grt::ValueRef option(_grtm->get_app_option("workbench:SaveSQLWorkspaceOnClose"));
if (option.is_valid() && *grt::IntegerRef::cast_from(option))
{
save_workspace_on_close = true;
check_scratch_editors = false;
}
bool editor_needs_review = false;
if (interactive)
{
ConfirmSaveDialog dialog(0, "Close SQL Editor", "The following files/resultsets have unsaved changes.\nDo you want to review these changes before closing?");
for (int i = 0; i < sql_editor_count(); i++)
{
SqlEditorPanel *panel = sql_editor_panel(i);
if (!panel)
continue;
bool check_editor = !panel->is_scratch() || check_scratch_editors;
if (panel->filename().empty() && save_workspace_on_close)
check_editor = false;
if (panel->is_dirty() && check_editor)
{
editor_needs_review = true;
dialog.add_item("Script Buffers", panel->get_title());
}
std::list<SqlEditorResult*> rset(panel->dirty_result_panels());
BOOST_FOREACH(SqlEditorResult *r, rset)
{
dialog.add_item("Resultset", r->caption());
}
}
bool review= false;
if (dialog.change_count() > 1)
{
switch (dialog.run())
{
case ConfirmSaveDialog::ReviewChanges:
review= true;
break;
case ConfirmSaveDialog::DiscardChanges:
review= false;
break;
case ConfirmSaveDialog::Cancel:
return false;
}
}
else if (dialog.change_count() == 1)
review= true;
// review changes 1 by 1
if (review && editor_needs_review)
{
_closing = true;
for (int i = 0; i < sql_editor_count(); i++)
{
SqlEditorPanel *panel = sql_editor_panel(i);
if (panel && !panel->can_close())
{
_closing = false;
return false;
}
}
}
}
else // !interactive, return false if there's any unsaved edits in editor or resultsets
{
for (int i = 0; i < sql_editor_count(); i++)
{
SqlEditorPanel *panel = sql_editor_panel(i);
if (panel)
{
if (editor_needs_review && panel->is_dirty())
return false;
if (!panel->dirty_result_panels().empty())
return false;
}
}
}
return true;
}
void SqlEditorForm::check_external_file_changes()
{
for (int i = 0; i < sql_editor_count(); i++)
{
SqlEditorPanel *panel = sql_editor_panel(i);
if (panel)
panel->check_external_file_changes();
}
}
//--------------------------------------------------------------------------------------------------
void SqlEditorForm::update_editor_title_schema(const std::string& schema)
{
_live_tree->on_active_schema_change(schema);
// Gets the editor label including the schema name only if
// the number of opened editors to the same host is > 1
update_title();
}
//--------------------------------------------------------------------------------------------------
/* Called whenever a connection to a server is opened, whether it succeeds or not.
Call this when a connection to the server is opened. If the connection succeeded, pass 0 as
the error and if it fails, pass the error code.
The error will be used to determine whether the connection failed because the server is possibly
down (or doesn't exist) or some other reason (like wrong password).
*/
void SqlEditorForm::note_connection_open_outcome(int error)
{
ServerState newState;
switch (error)
{
case 0:
newState = RunningState; // success = running;
break;
case 2002: // CR_CONNECTION_ERROR
case 2003: // CR_CONN_HOST_ERROR
newState = PossiblyStoppedState;
break;
case 2013: // Lost packet blabla, can happen on failure when using ssh tunnel
newState = PossiblyStoppedState;
break;
default:
// there may be other errors that could indicate server stopped and maybe
// some errors that can't tell anything about the server state
newState = RunningState;
break;
}
if (_last_server_running_state != newState && newState != UnknownState)
{
grt::DictRef info(_grtm->get_grt());
_last_server_running_state = newState;
if (newState == RunningState)
info.gset("state", 1);
else if (newState == OfflineState)
info.gset("state", -1);
else
info.gset("state", 0);
info.set("connection", connection_descriptor());
log_debug("Notifying server state change of %s to %s\n", connection_descriptor()->hostIdentifier().c_str(),
(newState == RunningState || newState == OfflineState) ? "running" : "not running");
GRTNotificationCenter::get()->send_grt("GRNServerStateChanged",
grtobj(),
info);
}
}
//--------------------------------------------------------------------------------------------------
|