1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697
|
/* File: blxFetch.c
* Author: Ed Griffiths, 2008-06-17
* Copyright (c) 2009 - 2012 Genome Research Ltd
* ---------------------------------------------------------------------------
* SeqTools is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version.
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* or see the on-line version at http://www.gnu.org/copyleft/gpl.txt
* ---------------------------------------------------------------------------
* This file is part of the SeqTools sequence analysis package,
* written by
* Gemma Barson (Sanger Institute, UK) <gb10@sanger.ac.uk>
*
* based on original code by
* Erik Sonnhammer (SBC, Sweden) <Erik.Sonnhammer@sbc.su.se>
*
* and utilizing code taken from the AceDB and ZMap packages, written by
* Richard Durbin (Sanger Institute, UK) <rd@sanger.ac.uk>
* Jean Thierry-Mieg (CRBM du CNRS, France) <mieg@kaa.crbm.cnrs-mop.fr>
* Ed Griffiths (Sanger Institute, UK) <edgrif@sanger.ac.uk>
* Roy Storey (Sanger Institute, UK) <rds@sanger.ac.uk>
* Malcolm Hinsley (Sanger Institute, UK) <mh17@sanger.ac.uk>
*
* Description: Blixem functions for control of sequence fetching and
* display.
*
* Compiling with -DPFETCH_HTML includes code to issue
* pfetch requests to a proxy pfetch server using html.
* This requires libs libpfetch and libcurlobj
* which in turn require libcurl.
*----------------------------------------------------------------------------
*/
#include <string>
#include <sys/socket.h> /* for socket(), connect(), send(), and recv() */
#include <netinet/in.h>
#include <arpa/inet.h> /* for sockaddr_in and inet_addr() */
#include <netdb.h> /* for gethostbyname() */
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <signal.h>
#include <curl/curl.h>
#include <seqtoolsUtils/utilities.hpp>
#include <blixemApp/blxwindow.hpp>
#include <blixemApp/detailview.hpp>
#include <blixemApp/blixem_.hpp>
#include <blixemApp/blxcontext.hpp>
#ifdef PFETCH_HTML
#include <gbtools/gbtoolsPfetch.hpp>
#endif
using namespace std;
using namespace gbtools ;
/* States for parsing EMBL files */
typedef enum
{
PARSING_NEWLINE, /* parser is at the start of a new line */
PARSING_ID, /* parsing the 2-letter id at the start of a line */
PARSING_SEQUENCE_HEADER, /* first line of the SQ section (does not contain sequence data) */
PARSING_SEQUENCE, /* main body of the SQ section (contains sequence data on multiple lines) */
PARSING_IGNORE, /* we're parsing an area we can ignore */
PARSING_FINISHED_SEQ, /* finished parsing the current sequence */
PARSING_FINISHED, /* finished parsing all records */
PARSING_CANCELLED, /* cancelled by user */
PARSING_DATA, /* parsing data for a particular column */
PARSING_TAG_SEARCH, /* parsing a known section, looking for a particular tag name */
PARSING_TAG_NAME, /* parsing a tag name */
PARSING_TAG_IGNORE, /* parsing the tag data but ignore everything until we get to a quoted section */
PARSING_DATA_QUOTED /* parsing the data for a tag; same as PARSING_DATA but we're in a quoted section */
} BlxSeqParserState;
/* Used to draw/update a progress meter, consider as private. */
class ProgressBarStruct
{
public:
ProgressBarStruct()
: top_level(NULL), progress(NULL), label(NULL),
widget_destroy_handler_id(0), cancelled(false), seq_total(0),
fetch_mode(BLXFETCH_MODE_NONE)
{};
GtkWidget *top_level ;
GtkWidget *progress ;
GtkWidget *label ;
GdkColor blue_bar_fg, red_bar_fg ;
gulong widget_destroy_handler_id;
gboolean cancelled ;
int seq_total ;
BlxFetchMode fetch_mode ;
} ;
typedef ProgressBarStruct *ProgressBar;
enum {RCVBUFSIZE = 256} ; /* size of receive buffer for socket fetch */
/* This struct holds general info about a fetch that is in progress */
typedef struct GeneralFetchDataStructType
{
const BlxFetchMethod* fetchMethod; /* details about the fetch method */
GList *columnList; /* list of BlxColumnInfo structs */
char *buffer; /* receive buffer */
int lenReceived; /* number of chars received into the buffer */
BlxSequence *currentSeq; /* the current sequence that we're processing */
GList *currentSeqItem; /* the current sequence that we're processing (list item pointer) */
GString *currentResult; /* this stores the current results that have been extracted for the section we're parsing */
BlxColumnInfo *currentColumn; /* the column that the current section relates to */
ProgressBar bar; /* shows the progress of the fetch */
int numRequested; /* the total number of sequences requested */
int numFetched; /* the number of sequences fetched so far */
int numSucceeded; /* the number of sequences fetched successfully so far */
GString *curLine; /* this stores the part of the current line that we've parsed so far */
char sectionId[3]; /* EMBL lines start with a two-letter identifier, which will be parsed into this string */
GString *tagName; /* In EMBL FT (feature type) sections, we look for tags of the format /tagname="value".
* The current tag name is parsed into this string. */
gboolean foundEndQuote; /* When we're in a quoted section, this is used to flag that we've found a second quote that
* we think is the end of the quoted section. However, a double quote means an escaped quote, so
* if the next char is also a quote, we know we need to include it in the text and carry on parsing. */
BlxSeqType seqType;
BlxSeqParserState parserState;
gboolean status; /* gets set to false if there is a problem */
} GeneralFetchDataStruct, *GeneralFetchData ;
#ifdef PFETCH_HTML
#define PFETCH_READ_SIZE 80 /* about a line */
#define PFETCH_FAILED_PREFIX "PFetch failed:"
class PFetchDataStruct
{
public:
PFetchDataStruct()
: title(NULL), widget_destroy_handler_id(0), pfetch(NULL),
got_response(false), fetchMethod(NULL), user_fetch(NULL)
{};
char *title;
gulong widget_destroy_handler_id;
Pfetch *pfetch ;
gboolean got_response;
const BlxFetchMethod *fetchMethod;
UserFetch *user_fetch;
};
typedef PFetchDataStruct *PFetchData ;
/* this holds info about an http fetch that is in progress */
typedef struct
{
gboolean connection_closed; /* Gets set to true when pfetch connection is closed */
char *err_txt ; /* if !status then err message here. */
gboolean stats ; /* TRUE means record and output stats. */
int min_bytes, max_bytes, total_bytes, total_reads ; /* Stats. */
Pfetch *pfetch ;
GList *seqList ; /* List of sequences to fetch */
gboolean got_response;
GeneralFetchDataStruct fetchData ; /* general info about a fetch in progress*/
} PFetchSequenceStruct, *PFetchSequence ;
#endif
/* Local function declarations */
#ifdef PFETCH_HTML
static bool pfetch_reader_func(char *text, guint *actual_read, char **error, gpointer user_data) ;
static bool pfetch_error_func(char *text, guint *actual_read, char **error, gpointer user_data) ;
static void pfetch_closed_func(gpointer user_data) ;
static void handle_dialog_close(GtkWidget *dialog, gpointer user_data);
static bool sequence_pfetch_reader(char *text, guint *actual_read, char * *error, gpointer user_data) ;
static bool sequence_pfetch_error(char *text, guint *actual_read, char * *error, gpointer user_data) ;
static void sequence_pfetch_closed(gpointer user_data) ;
static void sequence_dialog_closed(GtkWidget *dialog, gpointer user_data) ;
static gboolean parsePfetchHtmlBuffer(const BlxFetchMethod* const fetchMethod,
char *read_text, int length, PFetchSequence fetch_data) ;
#endif
static int socketConstruct(const char *ipAddress, int port, gboolean External, GError **error) ;
static void socketSend(int sock, const char *text, GError **error) ;
static ProgressBar makeProgressBar(int seq_total, const BlxFetchMode fetch_mode) ;
static void updateProgressBar(ProgressBar bar, const char *sequence, int numFetched, gboolean fetch_ok) ;
static gboolean isCancelledProgressBar(ProgressBar bar) ;
static void destroyProgressBar(ProgressBar bar) ;
static void destroyProgressCB(GtkWidget *widget, gpointer cb_data) ; /* internal to progress bar. */
static void cancelCB(GtkWidget *widget, gpointer cb_data) ; /* internal to progress bar. */
static void readConfigFile(GKeyFile *key_file, CommandLineOptions *options, GError **error) ;
static void checkFetchMethodExecutable(const BlxFetchMethod* const fetchMethod, GError **error);
/* Pfetch local functions */
static void appendCharToString(const char curChar, GString *result);
static void appendCharToQuotedString(const char curChar, gboolean *foundEndQuote, GString *result);
static void socketFetchInit(const BlxFetchMethod* const fetchMethod, GList *seqsToFetch, gboolean External, int *sock, GError **error);
static void checkProgressBar(ProgressBar bar, BlxSeqParserState *parserState, gboolean *status);
static int socketFetchReceiveBuffer(GeneralFetchData fetchData, const int bufferSize, const int sock);
static void pfetchGetNextSequence(GeneralFetchData fetchData, const gboolean pfetch_ok);
static void parseRawSequenceBuffer(GeneralFetchData fetchData, GError **error);
static void pfetchGetParserStateFromId(GeneralFetchData fetchData);
static void parseEmblBuffer(GeneralFetchData fetchData, GError **error);
static gboolean pfetchFinishSequence(GeneralFetchData fetchData);
static void pfetchGetParserStateFromTagName(GeneralFetchData fetchData);
static bool configGetBool(GKeyFile *key_file, const char *group, const char *key, GError **error);
static char* configGetString(GKeyFile *key_file, const char *group, const char *key, GError **error);
#ifdef PFETCH_HTML
static long configGetIpresolve(GKeyFile *key_file, const char *group, const char *key, GError **error);
#endif
/* global configuration object for blixem. */
static GKeyFile *blx_config_G = NULL ;
/* Utility to convert a fetch mode enum into a string (used in the config file) */
const char *fetchModeStr(const BlxFetchMode fetchMode)
{
/* Values must be in the same order as BlxFetchMode */
static const gchar* fetchModeNames[] =
{
#ifdef PFETCH_HTML
"http",
"pipe",
#endif
"socket",
"www",
"sqlite",
"command",
"internal",
"none",
NULL
};
g_assert(g_strv_length((gchar**)fetchModeNames) == BLXFETCH_NUM_MODES);
const char *result = NULL;
if (fetchMode < BLXFETCH_NUM_MODES)
result = fetchModeNames[fetchMode];
return result;
}
/* Utility to convert a fetch-method output type into a string (used in the config file) */
const char *outputTypeStr(const BlxFetchOutputType outputType)
{
/* Values must be in the same order as BlxFetchMode */
static const gchar* outputNames[] =
{
"<invalid>",
"raw",
"fasta",
"embl",
"list",
"gff",
NULL
};
g_assert(g_strv_length((gchar**)outputNames) == BLXFETCH_NUM_OUTPUT_TYPES);
const char *result = NULL;
if (outputType < BLXFETCH_NUM_OUTPUT_TYPES)
result = outputNames[outputType];
return result;
}
/* Process a single substitution character. Returns false if it's not
* a known substitution char. */
static gboolean doFetchStringSubstitutionChar(const char substitution_char,
MatchSequenceData *match_data,
GString *result,
GString *errorMsg)
{
gboolean ok = TRUE;
switch (substitution_char)
{
case 'p':
g_string_append(result, g_get_prgname());
break;
case 'h':
g_string_append(result, g_get_host_name());
break;
case 'u':
g_string_append(result, g_get_user_name());
break;
case 'm':
if (match_data->match_name)
g_string_append(result, match_data->match_name);
break;
case 'r':
if (match_data->ref_name)
g_string_append(result, match_data->ref_name);
break;
case 's':
g_string_append_printf(result, "%d", match_data->match_start);
break;
case 'e':
g_string_append_printf(result, "%d", match_data->match_end);
break;
case 'd':
if (match_data->dataset)
g_string_append(result, match_data->dataset);
break;
case 'S':
if (match_data->source)
g_string_append(result, match_data->source);
break;
case 'f':
if (match_data->filename)
g_string_append(result, match_data->filename);
break;
case 'g':
g_string_append_printf(result, "%d", SEQTOOLS_GFF_VERSION);
break;
case '%':
break;
default:
ok = FALSE;
if (!errorMsg)
errorMsg = g_string_new("");
g_string_append_printf(errorMsg, " Unknown substitution character '%%%c'\n", substitution_char);
break;
};
return ok;
}
/* Process a single substitution keyword. Its format should be:
* %(<keyword>)
* where <keyword> is a column name e.g. Source or a key value to
* look up in the source stanza in the config file. */
static int doFetchStringSubstitutionKeyword(const char* input_string,
MatchSequenceData *match_data,
GString *result,
GString *errorMsg)
{
int len = 0;
gboolean ok = FALSE;
/* The input should start with '('. Search for the closing ')' and process
* the text in between */
if (input_string && *input_string == '(')
{
const char *cp = strchr(input_string, ')');
if (cp)
{
len = cp - input_string - 1;
if (len > 0)
{
char *key = g_strdup_printf("%s", input_string + 1);
key[len] = '\0';
/*! \todo Ideally we'd allow the keyword to be a known column name in which case
* we'd need to add a check here. Needs a bit of code reorganisation to
* create the columnList before we parse & fetch sequences - currently the columnList
* is only created when the window is created, i.e. after parsing & fetching is complete. */
/* See if it's a field in this match's source stanza */
if (match_data->source)
{
GKeyFile *key_file = blxGetConfig();
if (key_file)
{
char *value = g_key_file_get_string(key_file, match_data->source, key, NULL);
if (value)
{
g_string_append(result, value);
ok = TRUE;
g_free(value);
}
}
}
g_free(key);
}
}
}
if (!ok)
{
if (!errorMsg)
errorMsg = g_string_new("");
g_string_append_printf(errorMsg, " Failed to process substitution string '%s'\n", input_string);
}
return len;
}
/* Process the fetch string, substituting the special substitution characters
* for the actual data */
static GString* doFetchStringSubstitutions(const char *command,
MatchSequenceData *match_data,
GError **error)
{
GString *result = g_string_new("");
/* Loop through the command and substitute any special chars with the relevant info */
GString *errorMsg = NULL;
const char *c = command;
while (c && *c)
{
/* If it's preceded by the special char, substitute it for the real value */
if (*c == '%')
{
/* Move to the next char, which should tell us what type of substitution to make */
++c;
if (c && *c)
{
switch (*c) {
case '%':
{
g_string_append_c(result, *c);
++c;
break;
}
case '(':
{
int len = doFetchStringSubstitutionKeyword(c, match_data, result, errorMsg);
if (len > 0)
c += len + 2; /* progress past the len of the keyword plus the two brackets */
else
++c; /* failed; just increment past the current char */
break;
}
default:
{
doFetchStringSubstitutionChar(*c, match_data, result, errorMsg);
++c; /* Progress to next char even if failed */
break;
}
};
}
}
else
{
/* Normal char; just append to the result */
g_string_append_c(result, *c);
++c;
}
}
if (errorMsg)
{
g_set_error(error, BLX_CONFIG_ERROR, BLX_CONFIG_ERROR_SUBSTITUTION, "%s", errorMsg->str);
prefixError(*error, "Error constructing fetch command:\n");
g_string_free(errorMsg, TRUE);
}
return result;
}
static GString* doGetFetchArgs(const BlxFetchMethod* const fetchMethod,
MatchSequenceData *match_data,
GError **error)
{
GString *result = doFetchStringSubstitutions(fetchMethod->args, match_data, error);
return result;
}
/* Return true if the given fetch method uses http */
static gboolean fetchMethodUsesHttp(const BlxFetchMethod* const fetchMethod)
{
return (fetchMethod->mode == BLXFETCH_MODE_WWW
#ifdef PFETCH_HTML
|| fetchMethod->mode == BLXFETCH_MODE_HTTP
#endif
);
}
/* Compile a command path and arguments into a single string */
GString* doGetFetchCommand(const BlxFetchMethod* const fetchMethod,
MatchSequenceData *match_data,
GError **error)
{
GString *result = NULL;
GError *tmpError = NULL;
if (fetchMethod)
{
/* If an executable is required, check that it exists */
checkFetchMethodExecutable(fetchMethod, &tmpError);
if (!tmpError)
{
/* Compile the command and args into a single string */
char *command = NULL;
/* For http methods, append the args (i.e. the request) after a '?'.
* For other methods, append the args after a space. */
if (fetchMethod->location && fetchMethod->args && fetchMethodUsesHttp(fetchMethod))
command = g_strdup_printf("%s?%s", fetchMethod->location, fetchMethod->args);
else if (fetchMethod->location && fetchMethod->args)
command = g_strdup_printf("%s %s", fetchMethod->location, fetchMethod->args);
else if (fetchMethod->location)
command = g_strdup(fetchMethod->location);
else if (fetchMethod->args)
command = g_strdup(fetchMethod->args);
else
return result;
result = doFetchStringSubstitutions(command, match_data, error);
/* Clean up */
g_free(command);
}
}
if (tmpError)
g_propagate_error(error, tmpError);
return result;
}
GString* getFetchArgsMultiple(const BlxFetchMethod* const fetchMethod, GList *seqsToFetch, GError **error)
{
/* Build up a string containing all the sequence names. */
GString *seq_string = g_string_sized_new(1000) ;
GList *seqItem = seqsToFetch;
const char *separator = fetchMethod->separator ? fetchMethod->separator : " ";
for ( ; seqItem; seqItem = seqItem->next)
{
BlxSequence *blxSeq = (BlxSequence*)(seqItem->data);
g_string_append_printf(seq_string, "%s%s", blxSequenceGetName(blxSeq), separator);
}
MatchSequenceData match_data = {seq_string->str, NULL, 0, 0, NULL, NULL, NULL};
GString *result = doGetFetchArgs(fetchMethod, &match_data, error);
g_string_free(seq_string, TRUE);
return result;
}
/* Get the command to call for the given fetch method. Parses
* the command and arguments and substitutes the following
* characters with values from the given sequence/msp. Note that
* either blxSeq or msp must be given, but not both. '%%' is used
* to represent a normal '%' character.
*
* %p: program name
* %h: host name
* %u: user name
* %m: match sequence name
* %r: reference sequence name
* %s: start coord
* %e: end coord
* %d: dataset
* %S: feature source
* %f: file name
* %g: supported GFF version
*
* Returns the command and args compiled into a single string.
* The caller must free the result with g_string_free.
* Returns an empty string if the command/args are empty.
*/
GString* getFetchCommand(const BlxFetchMethod* const fetchMethod,
const BlxSequence *blxSeq_in,
const MSP* const msp,
const char *refSeqName,
const int refSeqOffset,
const IntRange* const refSeqRange,
const char *dataset,
GError **error)
{
const BlxSequence *blxSeq = blxSeq_in;
if (!blxSeq && msp)
blxSeq = msp->sSequence;
/* Extract info about the sequence / feature */
const char *name = blxSequenceGetName(blxSeq);
if (!name) name = mspGetSName(msp);
if (!name) name = "";
const char *source = blxSeq ? blxSequenceGetSource(blxSeq) : NULL;
const char *filename = msp && msp->filename ? g_quark_to_string(msp->filename) : NULL;
int startCoord = msp ? mspGetQStart(msp) : blxSequenceGetStart(blxSeq, blxSeq->strand);
int endCoord = msp ? mspGetQEnd(msp) : blxSequenceGetEnd(blxSeq, blxSeq->strand);
startCoord += refSeqOffset;
endCoord += refSeqOffset;
boundsLimitValue(&startCoord, refSeqRange);
boundsLimitValue(&endCoord, refSeqRange);
/* Do the substitutions */
MatchSequenceData match_data = {name, refSeqName, startCoord, endCoord, dataset, source, filename};
GString *result = doGetFetchCommand(fetchMethod, &match_data, error);
return result;
}
/* Get the arguments string for the given fetch method (replacing
* any substitution characters with the correct values for the given
* sequence) */
GString* getFetchArgs(const BlxFetchMethod* const fetchMethod,
const BlxSequence *blxSeq,
const MSP* const msp,
const char *refSeqName,
const int refSeqOffset,
const IntRange* const refSeqRange,
const char *dataset,
GError **error)
{
g_assert(blxSeq || msp);
/* Extract info about the sequence / feature */
#ifdef ED_G_NEVER_INCLUDE_THIS_CODE
const char *name = blxSequenceGetName(blxSeq);
if (!name) name = mspGetSName(msp);
if (!name) name = "";
#endif /* ED_G_NEVER_INCLUDE_THIS_CODE */
const char *name ;
if (!(name = mspGetSNameOrig(msp)))
{
name = blxSequenceGetName(blxSeq);
if (!name) name = mspGetSName(msp);
if (!name) name = "";
}
const char *source = blxSeq ? blxSequenceGetSource(blxSeq) : NULL;
const char *filename = msp && msp->filename ? g_quark_to_string(msp->filename) : NULL;
int startCoord = blxSeq ? blxSequenceGetStart(blxSeq, blxSeq->strand) : mspGetQStart(msp);
int endCoord = blxSeq ? blxSequenceGetEnd(blxSeq, blxSeq->strand) : mspGetQEnd(msp);
startCoord += refSeqOffset;
endCoord += refSeqOffset;
boundsLimitValue(&startCoord, refSeqRange);
boundsLimitValue(&endCoord, refSeqRange);
/* Do the substitutions */
MatchSequenceData match_data = {name, refSeqName, startCoord, endCoord, dataset, source, filename};
GString *result = doGetFetchArgs(fetchMethod, &match_data, error);
return result;
}
/* Return true if the given string matches any in the given array
* of quarks (not case sensitive). */
static gboolean stringInArray(const char *str, GArray *array)
{
gboolean found = FALSE;
if (array)
{
const int len1 = strlen(str);
int i = 0;
for ( ; !found && i < (int)array->len; ++i)
{
GQuark curQuark = g_array_index(array, GQuark, i);
const char *curStr = g_quark_to_string(curQuark);
int len = min((int)strlen(curStr), len1);
if (strncasecmp(curStr, str, len) == 0)
found = TRUE;
}
}
return found;
}
/* Check that the given fetch method is not null; set the error if not */
static void checkFetchMethodNonNull(const BlxFetchMethod* const fetchMethod, GError **error)
{
if (!fetchMethod)
{
g_set_error(error, BLX_CONFIG_ERROR, BLX_CONFIG_ERROR_INVALID_FETCH_METHOD,
"Program error: fetch method is null\n");
}
}
/* Check that the given fetch method's executable is in the path; set
* the error if not */
static void checkFetchMethodExecutable(const BlxFetchMethod* const fetchMethod, GError **error)
{
/* Only command- and socket-fetch require an executable */
if (fetchMethod &&
(fetchMethod->mode == BLXFETCH_MODE_COMMAND &&
fetchMethod->mode == BLXFETCH_MODE_SOCKET))
{
if (!fetchMethod->location || !g_find_program_in_path(fetchMethod->location))
{
g_set_error(error, BLX_CONFIG_ERROR, BLX_CONFIG_ERROR_NO_EXE,
"[%s]: Executable '%s' not found in path: %s\n",
g_quark_to_string(fetchMethod->name), fetchMethod->location, getenv("PATH"));
}
}
}
#ifdef PFETCH_HTML
// Fetch the given list of sequences from an http proxy server. This enables
// blixem to be run and get sequences from anywhere that can see the http
// proxy server
//
// NOTE, this function blocks until the sequences have been fetched which
// means fetch_data can be on the stack and that we can clear up at the end
// of this function instead of some callback routine.
//
gboolean BulkFetch::httpFetchList(GList *seqsToFetch,
const BlxFetchMethod* const fetchMethod,
GError **error)
{
gboolean status = FALSE ;
PFetchSequenceStruct fetch_data = {FALSE} ; // n.b. struct is on the stack.
fetch_data.connection_closed = FALSE;
fetch_data.err_txt = NULL;
fetch_data.stats = FALSE ;
fetch_data.min_bytes = INT_MAX ;
fetch_data.max_bytes = 0 ;
fetch_data.total_bytes = 0 ;
fetch_data.total_reads = 0 ;
fetch_data.seqList = seqsToFetch;
fetch_data.fetchData.fetchMethod = fetchMethod;
fetch_data.fetchData.columnList = columnList;
fetch_data.fetchData.currentColumn = NULL;
fetch_data.fetchData.currentSeq = seqsToFetch ? (BlxSequence*)(seqsToFetch->data) : NULL;
fetch_data.fetchData.currentSeqItem = seqsToFetch;
fetch_data.fetchData.currentResult = g_string_new("");
fetch_data.fetchData.numRequested = g_list_length(seqsToFetch);
fetch_data.fetchData.numFetched = 0;
fetch_data.fetchData.numSucceeded = 0;
fetch_data.fetchData.curLine = g_string_new("");
fetch_data.fetchData.sectionId[0] = ' ';
fetch_data.fetchData.sectionId[1] = ' ';
fetch_data.fetchData.sectionId[2] = '\0';
fetch_data.fetchData.tagName = g_string_new("");
fetch_data.fetchData.foundEndQuote = FALSE;
fetch_data.fetchData.seqType = seqType ;
fetch_data.fetchData.parserState = PARSING_NEWLINE;
fetch_data.fetchData.status = TRUE ;
// progress bar is popped up to give user feedback that something is happening.
fetch_data.fetchData.bar = makeProgressBar(fetch_data.fetchData.numRequested, fetchMethod->mode) ;
g_signal_connect(G_OBJECT(fetch_data.fetchData.bar->top_level), "destroy",
G_CALLBACK(sequence_dialog_closed), &fetch_data) ;
// Make the pfetch object, pipe or html.
if (fetchMethod->mode == BLXFETCH_MODE_PIPE)
{
fetch_data.pfetch = new PfetchPipe(fetchMethod->location,
sequence_pfetch_reader, sequence_pfetch_error, sequence_pfetch_closed,
&fetch_data) ;
}
else
{
fetch_data.pfetch = new PfetchHttp(fetchMethod->location, fetchMethod->port,
fetchMethod->cookie_jar, ipresolve,
cainfo, fetchMethod->proxy,
sequence_pfetch_reader, sequence_pfetch_error, sequence_pfetch_closed,
&fetch_data) ;
}
fetch_data.pfetch->setDebug(debug) ;
// SORT OUT ERROR MESSAGE STUFF HERE.....
GError *g_error = NULL;
GString *request = getFetchArgsMultiple(fetchMethod, seqsToFetch, &g_error);
if (!g_error)
{
char *err_msg = NULL ;
/* Set up pfetch/curl connection routines, this is non-blocking so if connection
* is successful we block using our own flag. */
if ((fetch_data.pfetch->fetch(request->str, &err_msg)))
{
status = TRUE ;
while (!(fetch_data.connection_closed) && status && fetch_data.fetchData.parserState != PARSING_CANCELLED)
{
checkProgressBar(fetch_data.fetchData.bar,
&fetch_data.fetchData.parserState, &fetch_data.fetchData.status);
gtk_main_iteration() ;
}
status = fetch_data.fetchData.status ;
if (!status)
{
if (fetch_data.fetchData.parserState != PARSING_CANCELLED)
{
g_critical("Sequence fetch from http server failed: %s\n",
(fetch_data.err_txt ? fetch_data.err_txt : "no error")) ;
if (fetch_data.err_txt)
{
g_free(fetch_data.err_txt) ;
}
}
}
}
}
else
{
status = FALSE ;
}
if (g_error)
{
g_propagate_error(error, g_error);
}
if (request)
g_string_free(request, FALSE);
// Get rid of the progress bar.
destroyProgressBar(fetch_data.fetchData.bar) ;
// Clear up fetch_data
g_string_free(fetch_data.fetchData.currentResult, TRUE);
g_string_free(fetch_data.fetchData.tagName, TRUE);
g_string_free(fetch_data.fetchData.curLine, TRUE);
delete fetch_data.pfetch ;
return status ;
}
#endif
/* Fetch a list of sequences using sockets.
*
* adapted from Tony Cox's code pfetch.c
*
* - this version incorporates a progress monitor as a window,
* much easier for user to control + has a cancel button.
* - can be called after the fasta sequence data is already populated:
* in that case it will ignore the sequence data and just populate
* the additional data.
* - sequence data will also be ignored for sequences that do not
* require sequence data
*/
gboolean BulkFetch::socketFetchList(GList *seqsToFetch,
const BlxFetchMethod* const fetchMethod,
GError **error)
{
/* Initialise and send the requests */
int sock;
GError *tmpError = NULL;
socketFetchInit(fetchMethod, seqsToFetch, External, &sock, &tmpError);
/* Create a struct to pass around data releated to the fetch */
GeneralFetchDataStruct fetchData;
fetchData.fetchMethod = fetchMethod;
fetchData.columnList = columnList;
fetchData.currentColumn = NULL;
fetchData.seqType = seqType,
fetchData.status = (tmpError == NULL);
/* Get the sequences back. They will be returned in the same order that we asked for them, i.e.
* in the order they are in our list. */
fetchData.currentSeqItem = seqsToFetch;
fetchData.currentSeq = (BlxSequence*)(fetchData.currentSeqItem->data);
if (!tmpError && fetchData.currentSeq)
{
char buffer[RCVBUFSIZE + 1];
fetchData.buffer = buffer;
fetchData.numRequested = g_list_length(seqsToFetch); /* total number of sequences requested */
fetchData.bar = makeProgressBar(fetchData.numRequested, fetchMethod->mode);
fetchData.numFetched = 0;
fetchData.numSucceeded = 0;
fetchData.parserState = PARSING_NEWLINE;
fetchData.curLine = g_string_new("");
fetchData.sectionId[0] = ' ';
fetchData.sectionId[1] = ' ';
fetchData.sectionId[2] = '\0';
fetchData.tagName = g_string_new("");
fetchData.currentResult = g_string_new("");
fetchData.foundEndQuote = FALSE;
while (fetchData.status &&
!tmpError &&
fetchData.parserState != PARSING_CANCELLED &&
fetchData.parserState != PARSING_FINISHED)
{
/* Receive and parse the next buffer */
checkProgressBar(fetchData.bar, &fetchData.parserState, &fetchData.status);
fetchData.lenReceived = socketFetchReceiveBuffer(&fetchData, RCVBUFSIZE, sock);
if (fetchMethod->outputType == BLXFETCH_OUTPUT_EMBL)
{
parseEmblBuffer(&fetchData, &tmpError);
}
else if (fetchMethod->outputType == BLXFETCH_OUTPUT_RAW)
{
parseRawSequenceBuffer(&fetchData, &tmpError);
}
else
{
g_set_error(error, BLX_ERROR, 1, "Invalid output format for fetch method %s (expected '%s' or '%s')\n",
g_quark_to_string(fetchMethod->name),
outputTypeStr(BLXFETCH_OUTPUT_RAW),
outputTypeStr(BLXFETCH_OUTPUT_EMBL));
}
}
/* Finish up */
shutdown(sock, SHUT_RDWR);
destroyProgressBar(fetchData.bar);
fetchData.bar = NULL ;
if (fetchData.tagName)
g_string_free(fetchData.tagName, TRUE);
if (fetchData.currentResult)
g_string_free(fetchData.currentResult, TRUE);
if (fetchData.status && !tmpError && fetchData.numSucceeded != fetchData.numRequested)
{
double proportionOk = (float)fetchData.numSucceeded / (float)fetchData.numRequested;
/* We don't display a critical error message when fetching the full EMBL file because we're
* going to re-try fetching just the fasta data anyway. Display a warning, or just an info
* message if a small proportion failed */
if (proportionOk < 0.5)
{
g_warning("pfetch sent back %d when %d requested\n", fetchData.numSucceeded, fetchData.numRequested) ;
}
else
{
g_message("pfetch sent back %d when %d requested\n", fetchData.numSucceeded, fetchData.numRequested) ;
}
}
}
if (tmpError)
g_propagate_error(error, tmpError);
return fetchData.status ;
}
/* Get the contents of the given config file. Returns the contents in
* a string which must be freed by the caller. Optionally return the
* length of the string. */
static gchar* getConfigFileContent(const char *config_file, gsize *len)
{
gchar *content = NULL;
if (g_file_test(config_file, G_FILE_TEST_EXISTS))
{
GKeyFile *keyFile = g_key_file_new();
if (g_key_file_load_from_file(keyFile, config_file, G_KEY_FILE_NONE, NULL))
content = g_key_file_to_data(keyFile, len, NULL);
g_key_file_free(keyFile);
}
return content;
}
/* Set/Get global config, necessary because we don't have some blixem context pointer....
* To do: we do have a context now, so this should be moved to there.
* Sets the error if there were any problems. Note that the error is not set if the
* config file does not exist or is empty */
void blxInitConfig(const char *config_file, CommandLineOptions *options, GError **error)
{
g_assert(!blx_config_G) ;
/* Create the result and set it in the global. We always return something
* even if it's empty. */
GKeyFile *key_file = g_key_file_new();
blx_config_G = key_file;
/* Get the content of the supplied config file, if any */
gsize len1 = 0;
gchar *content1 = getConfigFileContent(config_file, &len1);
/* Get the content of the local settings file, if any */
char *settings_file = g_strdup_printf("%s/%s", g_get_home_dir(), BLIXEM_SETTINGS_FILE);
gsize len2 = 0;
gchar *content2 = getConfigFileContent(settings_file, &len2);
/* Merge both file contents into a single string, if applicable,
* or just use whichever content is non-null, if any */
gchar *content = NULL;
gsize len = 0;
if (content1 && content2)
{
/* Merge both file contents. Note that the second file supplied here
* will take priority if there are duplicate fields across the two files */
len = len1 + len2 + 2; /* need 2 extra chars for the sprintf below (newline and terminating nul) */
content = (gchar*)g_malloc(len);
sprintf(content, "%s\n%s", content1, content2);
/* Free the original strings */
g_free(content1);
g_free(content2);
}
else if (content1)
{
len = len1;
content = content1;
}
else if (content2)
{
len = len2;
content = content2;
}
/* Now load the content into the key file, if we have any */
if (content)
{
if (g_key_file_load_from_data(key_file, content, len, G_KEY_FILE_NONE, NULL))
{
/* Parse the config file to read in the blixem options */
readConfigFile(key_file, options, error);
if (error && *error && settings_file && config_file)
prefixError(*error, "Errors found while reading config files '%s' and '%s':\n", config_file, settings_file);
else if (error && *error && settings_file)
prefixError(*error, "Errors found while reading config file '%s':\n", settings_file);
else if (error && *error && config_file)
prefixError(*error, "Errors found while reading config file '%s':\n", config_file);
}
g_free(content);
}
g_free(settings_file);
}
GKeyFile *blxGetConfig(void)
{
return blx_config_G ;
}
/*
* Internal functions.
*/
static int socketConstruct(const char *ipAddress, int port, gboolean External, GError **error)
{
int sock ; /* socket descriptor */
struct sockaddr_in *servAddr ; /* echo server address */
struct hostent *hp ;
/* Create a reliable, stream socket using TCP */
if ((sock = socket(PF_INET, SOCK_STREAM, 0)) < 0)
{
g_set_error(error, BLX_FETCH_ERROR, BLX_FETCH_ERROR_SOCKET,
"Error creating socket\n") ;
return -1 ;
}
/* Construct the server address structure */
servAddr = new struct sockaddr_in;
hp = gethostbyname(ipAddress) ;
if (!hp)
{
g_set_error(error, BLX_FETCH_ERROR, BLX_FETCH_ERROR_HOST,
"Unknown host \"%s\"\n", ipAddress);
return -1;
}
servAddr->sin_family = AF_INET ; /* Internet address family */
bcopy((char*)hp->h_addr, (char*) &(servAddr->sin_addr.s_addr), hp->h_length) ;
/* Server IP address */
servAddr->sin_port = htons ((unsigned short) port) ; /* Server port */
/* Establish the connection to the server */
if (connect(sock, (struct sockaddr *) servAddr, sizeof(struct sockaddr_in)) < 0)
{
g_set_error(error, BLX_FETCH_ERROR, BLX_FETCH_ERROR_CONNECT,
"Error connecting socket to host '%s'\n", ipAddress) ;
sock = -1 ;
}
delete servAddr ;
return sock ;
}
static void socketSend (int sock, const char *text, GError **error)
{
int len, bytes_to_send, bytes_written ;
char *tmp ;
struct sigaction oursigpipe, oldsigpipe ;
/* The adding of 0x20 to the end looks wierd but I think it's because the */
/* server may not hold strings in the way C does (i.e. terminating '\0'), */
/* so 0x20 is added to mark the end of the string and the C string term- */
/* inator is moved up one and is not actually sent. */
len = strlen(text) ;
tmp = (char*)g_malloc(len + 2) ;
strcpy(tmp, text) ;
tmp[len] = 0x20 ; /* Add new string terminator. */
tmp[len + 1] = 0 ;
bytes_to_send = len + 1 ;
/* send() can deliver a SIGPIPE if the socket has been disconnected, by */
/* ignoring it we will receive -1 and can look for EPIPE as the errno. */
oursigpipe.sa_handler = SIG_IGN ;
sigemptyset(&oursigpipe.sa_mask) ;
oursigpipe.sa_flags = 0 ;
if (sigaction(SIGPIPE, &oursigpipe, &oldsigpipe) < 0)
g_error("Cannot set SIG_IGN for SIGPIPE for socket write operations.\n") ;
bytes_written = send(sock, tmp, bytes_to_send, 0) ;
if (bytes_written == -1)
{
if (errno == EPIPE || errno == ECONNRESET || errno == ENOTCONN)
{
char *msg = getSystemErrorText();
g_set_error(error, BLX_FETCH_ERROR, BLX_FETCH_ERROR_CONNECT,
"Socket connection to server has failed, error was: %s\n", msg) ;
g_free(msg);
}
else
{
char *msg = getSystemErrorText();
g_error("Fatal error on socket connection to pfetch server, error was: %s\n", msg) ;
g_free(msg);
}
}
else if (bytes_written != bytes_to_send)
{
g_error("send() call should have written %d bytes, but actually wrote %d.\n", bytes_to_send, bytes_written) ;
}
/* Reset the old signal handler. */
if (sigaction(SIGPIPE, &oldsigpipe, NULL) < 0)
{
g_error("Cannot reset previous signal handler for signal SIGPIPE for socket write operations.\n") ;
}
g_free(tmp) ;
}
#ifdef PFETCH_HTML
// Callbacks for user-triggered single pfetch - called from UserFetch::httpFetchSequence()
//
static bool pfetch_reader_func(char *text,
guint *actual_read,
char **error,
gpointer user_data)
{
PFetchData pfetch_data = (PFetchData)user_data;
bool status = true ;
if (actual_read && *actual_read > 0 && pfetch_data)
{
GtkTextBuffer *text_buffer = pfetch_data->user_fetch->getTextBuffer();
/* clear the buffer the first time... */
if(pfetch_data->got_response == FALSE)
{
gtk_text_buffer_set_text(text_buffer, "", 0);
}
gtk_text_buffer_insert_at_cursor(text_buffer, text, *actual_read);
pfetch_data->got_response = TRUE;
/* If we tried fetching the full entry and failed, try again
* with the next fetch method, if there is one */
if (stringInArray(text, pfetch_data->fetchMethod->errors))
{
pfetch_data->user_fetch->performFetch();
}
}
return status;
}
static bool pfetch_error_func(char *text,
guint *actual_read,
char **error,
gpointer user_data)
{
g_warning("pfetch 'error' signal received: %s", text ? text : "") ;
return true;
}
static void pfetch_closed_func(gpointer user_data)
{
DEBUG_OUT("pfetch closed\n");
PFetchData pfetch_data = (PFetchData)user_data;
if (pfetch_data && pfetch_data->pfetch)
{
GtkTextBuffer *text_buffer = pfetch_data->user_fetch->getTextBuffer();
if(!(pfetch_data->got_response))
{
/* If we didn't get a response then report an error and try again with the next fetch method */
gtk_text_buffer_set_text(text_buffer, "", 0);
const char *locn = "" ;
if (pfetch_data->fetchMethod && pfetch_data->fetchMethod->location)
{
locn = pfetch_data->fetchMethod->location;
}
char *handle_err = (static_cast<PfetchHttp *>(pfetch_data->pfetch))->getError() ;
char *err_msg = g_strdup_printf("Connection to '%s' closed without a response:\n%s\n",
locn, handle_err ? handle_err : "no error message");
gtk_text_buffer_insert_at_cursor(text_buffer, err_msg, strlen(err_msg));
g_free(err_msg) ;
pfetch_data->user_fetch->performFetch();
}
}
return;
}
/* GtkObject destroy signal handler */
static void handle_dialog_close(GtkWidget *dialog, gpointer user_data)
{
PFetchData pfetch_data = (PFetchData)user_data;
pfetch_data->user_fetch->setTextBuffer(NULL);
pfetch_data->widget_destroy_handler_id = 0; /* can we get this more than once? */
if (pfetch_data->pfetch)
delete pfetch_data->pfetch ;
delete pfetch_data ;
return ;
}
// Callbacks for multiple pfetch requests triggered by config/blixem start up options
// - called from BulkFetch::httpFetchList()
//
static bool sequence_pfetch_reader(char *text, guint *actual_read, char **error, gpointer user_data)
{
bool status = true ;
PFetchSequence fetch_data = (PFetchSequence)user_data ;
ProgressBar bar = fetch_data->fetchData.bar ;
if (fetch_data->fetchData.parserState != PARSING_FINISHED &&
fetch_data->fetchData.parserState != PARSING_CANCELLED)
{
if (!(*text) || *actual_read <= 0)
{
fetch_data->fetchData.parserState = PARSING_FINISHED ;
fetch_data->fetchData.status = FALSE ;
fetch_data->err_txt = g_strdup("No data returned by http proxy server.") ;
}
else if (*actual_read > 0)
{
fetch_data->got_response = TRUE ;
if (isCancelledProgressBar(bar))
{
fetch_data->fetchData.status = FALSE ;
fetch_data->fetchData.parserState = PARSING_CANCELLED ;
status = false ;
}
else if (!parsePfetchHtmlBuffer(fetch_data->fetchData.fetchMethod, text, *actual_read, fetch_data))
{
status = false ;
}
}
}
return status ;
}
static bool sequence_pfetch_error(char *text, guint *actual_read, char **error, gpointer user_data)
{
g_warning("pfetch 'error' signal received: %s", text ? text : "") ;
return true ;
}
static void sequence_pfetch_closed(gpointer user_data)
{
PFetchSequence fetch_data = (PFetchSequence)user_data ;
DEBUG_OUT("pfetch closed\n");
fetch_data->fetchData.parserState = PARSING_FINISHED ;
fetch_data->connection_closed = TRUE;
if (fetch_data->stats)
{
g_message("Stats for %d reads:\tmin = %d\tmax = %d\tmean = %d\n",
fetch_data->total_reads,
fetch_data->min_bytes, fetch_data->max_bytes,
(fetch_data->total_bytes / fetch_data->total_reads)) ;
}
if (!fetch_data->got_response)
{
const char *locn = "" ;
if (fetch_data && fetch_data->fetchData.fetchMethod && fetch_data->fetchData.fetchMethod->location)
locn = fetch_data->fetchData.fetchMethod->location ;
char *err_msg = (static_cast<PfetchHttp *>(fetch_data->pfetch))->getError() ;
g_warning("Connection to '%s' closed without a response:\n%s\n",
locn, err_msg ? err_msg : "no error message");
if (err_msg)
g_free(err_msg) ;
}
return ;
}
/* Progress meter has been destroyed so free all pfetch stuff. */
static void sequence_dialog_closed(GtkWidget *dialog, gpointer user_data)
{
PFetchSequence fetch_data = (PFetchSequence)user_data ;
fetch_data->fetchData.bar = NULL ;
return ;
}
/* Utility to record the stats for the current read buffer, if stats are enabled */
static void pfetchHtmlRecordStats(const char *read_text, const int length, PFetchSequence fetch_data)
{
if (fetch_data->stats)
{
if (length < fetch_data->min_bytes)
fetch_data->min_bytes = length ;
if (length > fetch_data->max_bytes)
fetch_data->max_bytes = length ;
fetch_data->total_bytes += length ;
fetch_data->total_reads++ ;
if (length < 100)
{
char *str ;
str = g_strndup(read_text, length) ;
g_message("Read %d: \"%s\"\n", fetch_data->total_reads, str) ;
g_free(str) ;
}
}
return ;
}
/* Parse the buffer sent back by proxy server. The pfetch server sends back data separated
* by newlines. The data is either a valid IUPAC dna sequence or a valid IUPAC peptide
* sequence or an error message. The problem here is that the data is not returned to
* this function in complete lines so we have to reconstruct the lines as best we can. It's
* even possible for very long sequences that they may span several buffers. Note also
* that the buffer is _not_ null terminated, we have to use length to know when to stop reading.
*/
static gboolean parsePfetchHtmlBuffer(const BlxFetchMethod* const fetchMethod,
char *read_text,
int length,
PFetchSequence fetch_data)
{
gboolean status = TRUE ;
/* Validate input and record stats, if requested */
g_assert(fetch_data && fetch_data->fetchData.currentSeqItem && fetch_data->fetchData.currentSeqItem->data);
pfetchHtmlRecordStats(read_text, length, fetch_data);
GError *error = NULL;
fetch_data->fetchData.buffer = read_text;
fetch_data->fetchData.lenReceived = length;
if (fetch_data->fetchData.fetchMethod->outputType == BLXFETCH_OUTPUT_EMBL)
{
/* We're fetching the full EMBL entries */
parseEmblBuffer(&fetch_data->fetchData, &error);
}
else if (fetch_data->fetchData.fetchMethod->outputType == BLXFETCH_OUTPUT_RAW)
{
/* The fetched entries just contain the FASTA sequence */
parseRawSequenceBuffer(&fetch_data->fetchData, &error);
}
else
{
g_set_error(&error, BLX_CONFIG_ERROR, BLX_CONFIG_ERROR_INVALID_OUTPUT_FORMAT,
"Invalid output format specified for fetch method '%s'; expected '%s' or '%s'\n",
g_quark_to_string(fetch_data->fetchData.fetchMethod->name),
outputTypeStr(BLXFETCH_OUTPUT_EMBL),
outputTypeStr(BLXFETCH_OUTPUT_RAW));
}
if (error)
{
fetch_data->err_txt = g_strdup(error->message);
g_error_free(error);
error = NULL;
}
status = fetch_data->fetchData.status ;
return status;
}
#endif /* PFETCH_HTML */
/* Functions to display, update, cancel and remove a progress meter. */
static ProgressBar makeProgressBar(int seq_total, const BlxFetchMode fetch_mode)
{
ProgressBar bar = new ProgressBarStruct;
bar->seq_total = seq_total ;
bar->cancelled = FALSE;
bar->widget_destroy_handler_id = 0;
bar->fetch_mode = fetch_mode;
gdk_color_parse("blue", &(bar->blue_bar_fg)) ;
gdk_color_parse("red", &(bar->red_bar_fg)) ;
bar->top_level = gtk_window_new(GTK_WINDOW_TOPLEVEL);
char *title = g_strdup_printf("Blixem - pfetching %d sequences...", seq_total) ;
gtk_window_set_title(GTK_WINDOW(bar->top_level), title) ;
g_free(title) ;
g_signal_connect(G_OBJECT(bar->top_level), "destroy", G_CALLBACK(destroyProgressCB), bar) ;
gtk_window_set_default_size(GTK_WINDOW(bar->top_level), 350, -1) ;
GtkWidget *frame = gtk_frame_new(NULL) ;
gtk_container_add(GTK_CONTAINER(bar->top_level), frame) ;
GtkWidget *vbox = gtk_vbox_new(FALSE, 5) ;
gtk_container_add(GTK_CONTAINER(frame), vbox) ;
bar->progress = gtk_progress_bar_new() ;
gtk_widget_modify_fg(bar->progress, GTK_STATE_NORMAL, &(bar->blue_bar_fg)) ;
gtk_box_pack_start(GTK_BOX(vbox), bar->progress, TRUE, TRUE, 0);
bar->label = gtk_label_new("") ;
gtk_box_pack_start(GTK_BOX(vbox), bar->label, TRUE, TRUE, 0);
GtkWidget *hbox = gtk_hbox_new(FALSE, 0) ;
gtk_box_pack_start(GTK_BOX(vbox), hbox, TRUE, TRUE, 0);
gtk_container_border_width(GTK_CONTAINER(hbox), 5);
GtkWidget *cancel_button = gtk_button_new_with_label("Cancel") ;
gtk_box_pack_start(GTK_BOX(hbox), cancel_button, TRUE, TRUE, 0) ;
gtk_signal_connect(GTK_OBJECT(cancel_button), "clicked", GTK_SIGNAL_FUNC(cancelCB), (gpointer)bar) ;
#ifdef PFETCH_HTML
/* We need to quit if the user cancels http-fetch due to a bug on the mac. See \note "Bad file descriptor" */
if (fetch_mode == BLXFETCH_MODE_HTTP)
gtk_widget_set_tooltip_text(cancel_button, "Cancel the current operation and exit the program");
else
#endif
gtk_widget_set_tooltip_text(cancel_button, "Cancel the current operation and continue to start up the program");
gtk_widget_show_all(bar->top_level) ;
while (gtk_events_pending())
{
gtk_main_iteration() ;
}
return bar ;
}
static void updateProgressBar(ProgressBar bar, const char *sequence, int numFetched, gboolean fetch_ok)
{
char *label_text ;
if (fetch_ok)
gtk_widget_modify_fg(bar->progress, GTK_STATE_NORMAL, &(bar->blue_bar_fg)) ;
else
gtk_widget_modify_fg(bar->progress, GTK_STATE_NORMAL, &(bar->red_bar_fg)) ;
label_text = g_strdup_printf("%s - %s", sequence, fetch_ok ? "Fetched" : "Not found") ;
gtk_label_set_text(GTK_LABEL(bar->label), label_text) ;
g_free(label_text) ;
gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(bar->progress),
(double)((double)numFetched / (double)(bar->seq_total))) ;
while (gtk_events_pending())
gtk_main_iteration();
return ;
}
static gboolean isCancelledProgressBar(ProgressBar bar)
{
return bar->cancelled ;
}
static void destroyProgressBar(ProgressBar bar)
{
gtk_widget_destroy(bar->top_level) ;
return ;
}
/* called from progress meter when being destroyed, do not call directly. */
static void destroyProgressCB(GtkWidget *widget, gpointer cb_data)
{
ProgressBar bar = (ProgressBar)cb_data ;
delete bar ;
return ;
}
/* Called from progress meter. */
static void cancelCB(GtkWidget *widget, gpointer cb_data)
{
ProgressBar bar = (ProgressBar)cb_data ;
bar->cancelled = TRUE ;
#ifdef PFETCH_HTML
if (bar->fetch_mode == BLXFETCH_MODE_HTTP)
{
/*! \note "Bad file descriptor"
* There is a bug somewhere (in GTK or in our use of it) which means that on the mac GTK
* can get into an infinite loop of issuing "Bad file descriptor" error messages when pfetching
* over http or when pfetch-http is cancelled. This can continue in the background even if
* blixem then seems to start up ok. For now, make the Cancel button quit blixem
* altogether so that it at least is easy to get out of this state. */
g_message("\nCancelled http-fetch: quitting Blixem\n");
exit(1);
}
#endif
return ;
}
/*
* Configuration file reading.
*/
/* Get default blixem options from the "blixem" stanza */
static void readBlixemStanza(GKeyFile *key_file,
const char *group,
CommandLineOptions *options,
GError **error)
{
/* Note that all values are optional, so don't set the error if they
* do not exist */
/* Get the window background color if set */
options->windowColor = g_key_file_get_string(key_file, group, SEQTOOLS_WINDOW_COLOR, NULL);
/* Get the comma-separated list of possible fetch methods */
options->bulkFetchDefault = keyFileGetCsv(key_file, group, SEQTOOLS_BULK_FETCH, NULL);
options->userFetchDefault = keyFileGetCsv(key_file, group, SEQTOOLS_USER_FETCH, NULL);
options->optionalFetchDefault = keyFileGetCsv(key_file, group, SEQTOOLS_OPTIONAL_FETCH, NULL);
/* If the bulk-fetch key wasn't found, try the old
* default-fetch-mode key, for backwards compatibility */
if (!options->bulkFetchDefault)
options->bulkFetchDefault = keyFileGetCsv(key_file, group, BLIXEM_OLD_BULK_FETCH, NULL);
#ifdef PFETCH_HTML
options->ipresolve = configGetIpresolve(key_file, group, HTTP_FETCH_IPRESOLVE, NULL);
options->cainfo = configGetString(key_file, group, HTTP_FETCH_CAINFO, NULL);
#endif
options->fetch_debug = configGetBool(key_file, group, FETCH_DEBUG, NULL);
/* Get the default values for the MSP flags, if they're specified in the blixem stanza. */
int flag = MSPFLAG_MIN + 1;
for ( ; flag < MSPFLAG_NUM_FLAGS; ++flag)
{
GError *tmpError = NULL;
const char *key = mspFlagGetConfigKey((MspFlag)flag);
gboolean value = g_key_file_get_boolean(key_file, group, key, &tmpError);
/* If found, set it as the default */
if (!tmpError)
mspFlagSetDefault((MspFlag)flag, value);
}
}
/* Get the output type from the given fetch stanza. Returns BLXFETCH_OUTPUT_INVALID if
* not found. The input error value can be non-null, in which case any new error message
* will be appended. */
static BlxFetchOutputType readFetchOutputType(GKeyFile *key_file, const char *group, GError **error)
{
BlxFetchOutputType result = BLXFETCH_OUTPUT_INVALID;
GError *tmpError = NULL;
char *outputTypeName = removeDelimiters(g_key_file_get_string(key_file, group, FETCH_OUTPUT, &tmpError));
if (!tmpError)
{
/* Loop through all output types looking for one with this name */
int outputType = 0;
for ( ; outputType < BLXFETCH_NUM_OUTPUT_TYPES; ++outputType)
{
if (stringsEqual(outputTypeName, outputTypeStr((BlxFetchOutputType)outputType), FALSE))
{
result = (BlxFetchOutputType)outputType;
break;
}
}
if (result == BLXFETCH_OUTPUT_INVALID)
{
g_set_error(&tmpError, BLX_CONFIG_ERROR, BLX_CONFIG_ERROR_INVALID_OUTPUT_FORMAT,
"Invalid output type '%s' for fetch method '%s'", outputTypeName, group);
}
}
if (tmpError && error && *error)
postfixError(*error, "; %s", tmpError->message);
else if (tmpError)
g_propagate_error(error, tmpError);
g_free(outputTypeName);
return result;
}
/* Utilities to get a value from a key-file and remove delimiters and whitespace (where applicable).
* The input error may be non-null, in which case any new error message will be appended to it. */
static char* configGetString(GKeyFile *key_file, const char *group, const char *key, GError **error)
{
GError *tmpError = NULL;
char *result = g_key_file_get_string(key_file, group, key, &tmpError);
if (result)
{
/* remove any leading/trailing whitespace */
result = g_strchug(g_strchomp(result));
/* remove any delimiters */
result = removeDelimiters(result);
}
if (tmpError && error && *error)
postfixError(*error, "; %s", tmpError->message);
else if (tmpError)
g_propagate_error(error, tmpError);
return result;
}
static int configGetInteger(GKeyFile *key_file, const char *group, const char *key, GError **error)
{
GError *tmpError = NULL;
int result = g_key_file_get_integer(key_file, group, key, &tmpError);
if (tmpError && error && *error)
postfixError(*error, "; %s", tmpError->message);
else if (tmpError)
g_propagate_error(error, tmpError);
return result;
}
static bool configGetBool(GKeyFile *key_file, const char *group, const char *key, GError **error)
{
GError *tmpError = NULL;
bool result = g_key_file_get_boolean(key_file, group, key, &tmpError);
if (tmpError && error && *error)
postfixError(*error, "; %s", tmpError->message);
else if (tmpError)
g_propagate_error(error, tmpError);
return result;
}
#ifdef PFETCH_HTML
static long configGetIpresolve(GKeyFile *key_file, const char *group, const char *key, GError **error)
{
long result = CURL_IPRESOLVE_WHATEVER;
GError *tmpError = NULL;
char *tmp_str = g_key_file_get_string(key_file, group, key, &tmpError);
if (!tmpError)
{
if (tmp_str && strlen(tmp_str) == 4)
{
if (g_ascii_strncasecmp(tmp_str, "ipv4", 4) == 0)
result = CURL_IPRESOLVE_V4;
else if (g_ascii_strncasecmp(tmp_str, "ipv6", 4) == 0)
result = CURL_IPRESOLVE_V6;
}
else
{
g_set_error(&tmpError, BLX_CONFIG_ERROR, BLX_CONFIG_ERROR_INVALID_IPRESOLVE,
"Unrecognised IP format '%s' (expected 'ipv4' or 'ipv6')", tmp_str);
}
}
if (tmpError && error && *error)
postfixError(*error, "; %s", tmpError->message);
else if (tmpError)
g_propagate_error(error, tmpError);
return result;
}
#endif
/* Get details about the given fetch method stanza and add it to
* the list of fetch methods in 'options' */
static void readFetchMethodStanza(GKeyFile *key_file,
const char *group,
CommandLineOptions *options,
GError **error)
{
BlxFetchMethod *result = NULL;
GError *tmpError = NULL;
char *fetchMode = configGetString(key_file, group, FETCH_MODE_KEY, &tmpError);
if (!tmpError)
result = createBlxFetchMethod(group);
/* Set the relevant properties for this type of fetch method. (Append a
* warning to tmpError for mandatory arguments if they are not found.) */
if (!tmpError)
{
if (stringsEqual(fetchMode, fetchModeStr(BLXFETCH_MODE_SOCKET), FALSE))
{
result->mode = BLXFETCH_MODE_SOCKET;
result->location = configGetString(key_file, group, SOCKET_FETCH_LOCATION, &tmpError);
result->node = configGetString(key_file, group, SOCKET_FETCH_NODE, &tmpError);
result->port = configGetInteger(key_file, group, SOCKET_FETCH_PORT, &tmpError);
result->args = configGetString(key_file, group, SOCKET_FETCH_ARGS, NULL);
result->errors = keyFileGetCsv(key_file, group, FETCH_ERRORS, NULL);
result->separator = configGetString(key_file, group, FETCH_SEPARATOR, NULL);
result->outputType = readFetchOutputType(key_file, group, &tmpError);
}
#ifdef PFETCH_HTML
else if (stringsEqual(fetchMode, fetchModeStr(BLXFETCH_MODE_HTTP), FALSE))
{
result->mode = BLXFETCH_MODE_HTTP;
result->location = configGetString(key_file, group, HTTP_FETCH_LOCATION, &tmpError);
result->port = configGetInteger(key_file, group, HTTP_FETCH_PORT, &tmpError);
result->cookie_jar = configGetString(key_file, group, HTTP_FETCH_COOKIE_JAR, &tmpError);
result->proxy = configGetString(key_file, group, HTTP_FETCH_PROXY, NULL);
result->args = configGetString(key_file, group, HTTP_FETCH_ARGS, NULL);
result->errors = keyFileGetCsv(key_file, group, FETCH_ERRORS, NULL);
result->separator = configGetString(key_file, group, FETCH_SEPARATOR, NULL);
result->outputType = readFetchOutputType(key_file, group, &tmpError);
}
else if (stringsEqual(fetchMode, fetchModeStr(BLXFETCH_MODE_PIPE), FALSE))
{
result->mode = BLXFETCH_MODE_PIPE;
result->location = configGetString(key_file, group, PIPE_FETCH_LOCATION, &tmpError);
result->args = configGetString(key_file, group, PIPE_FETCH_ARGS, NULL);
result->errors = keyFileGetCsv(key_file, group, FETCH_ERRORS, NULL);
result->outputType = readFetchOutputType(key_file, group, &tmpError);
}
#endif
else if (stringsEqual(fetchMode, fetchModeStr(BLXFETCH_MODE_WWW), FALSE))
{
result->mode = BLXFETCH_MODE_WWW;
result->location = configGetString(key_file, group, WWW_FETCH_LOCATION, &tmpError);
result->args = configGetString(key_file, group, WWW_FETCH_ARGS, NULL);
}
else if (stringsEqual(fetchMode, fetchModeStr(BLXFETCH_MODE_INTERNAL), FALSE))
{
result->mode = BLXFETCH_MODE_INTERNAL;
}
else if (stringsEqual(fetchMode, fetchModeStr(BLXFETCH_MODE_SQLITE), FALSE))
{
result->mode = BLXFETCH_MODE_SQLITE;
result->location = configGetString(key_file, group, DB_FETCH_LOCATION, &tmpError);
result->args = configGetString(key_file, group, DB_FETCH_QUERY, &tmpError);
result->errors = keyFileGetCsv(key_file, group, FETCH_ERRORS, NULL);
result->outputType = readFetchOutputType(key_file, group, &tmpError);
/* Hard code the separator */
result->separator = g_strdup("','");
}
else if (stringsEqual(fetchMode, fetchModeStr(BLXFETCH_MODE_COMMAND), FALSE))
{
result->mode = BLXFETCH_MODE_COMMAND;
result->location = configGetString(key_file, group, COMMAND_FETCH_SCRIPT, &tmpError);
result->args = configGetString(key_file, group, COMMAND_FETCH_ARGS, NULL);
result->errors = keyFileGetCsv(key_file, group, FETCH_ERRORS, NULL);
result->outputType = readFetchOutputType(key_file, group, &tmpError);
}
else if (stringsEqual(fetchMode, fetchModeStr(BLXFETCH_MODE_NONE), FALSE))
{
result->mode = BLXFETCH_MODE_NONE;
}
else
{
g_set_error(&tmpError, BLX_CONFIG_ERROR, BLX_CONFIG_ERROR_INVALID_FETCH_MODE, "Unrecognised fetch mode '%s'", fetchMode);
result->mode = BLXFETCH_MODE_NONE;
}
}
/* Add result to list */
if (!tmpError && result)
{
GQuark fetchName = g_quark_from_string(group);
g_hash_table_insert(options->fetchMethods, GINT_TO_POINTER(fetchName), result);
}
else if (result)
{
/* Fetch method details are incomplete, so delete it. */
delete result;
}
/* Clean up */
g_free(fetchMode);
/* Error handling */
if (tmpError)
g_propagate_error(error, tmpError);
}
/* Tries to load values for this group if it is a standard, recognised group or
* group type. If any required values are missing, sets the error. */
static void readConfigGroup(GKeyFile *key_file, const char *group, CommandLineOptions *options, GError **error)
{
/* Check for known group names first */
if (stringsEqual(group, BLIXEM_GROUP, FALSE))
{
readBlixemStanza(key_file, group, options, error);
}
else
{
/* Check if this is a fetch method; if it is it the group will have a fetch-mode key */
char *fetchMode = configGetString(key_file, group, FETCH_MODE_KEY, NULL);
if (fetchMode)
readFetchMethodStanza(key_file, group, options, error);
g_free(fetchMode);
}
}
/* Read standard stanzas from the given config file. Sets the error if any problems */
static void readConfigFile(GKeyFile *key_file, CommandLineOptions *options, GError **error)
{
if (!key_file)
return;
/* Loop through each stanza in the config file */
gsize num_groups ;
char **groups = g_key_file_get_groups(key_file, (gsize*)(&num_groups));
char **group = groups;
int i = 0;
for ( ; i < (int)num_groups ; i++, group++)
{
/* Read in the data in this stanza */
GError *tmpError = NULL;
readConfigGroup(key_file, *group, options, &tmpError) ;
if (tmpError && error)
{
/* Compile all errors into one message */
if (*error == NULL)
g_set_error(error, BLX_CONFIG_ERROR, BLX_CONFIG_ERROR_WARNINGS, " [%s]: %s\n", *group, tmpError->message);
else
postfixError(*error, " [%s]: %s\n", *group, tmpError->message);
}
}
/* For backwards compatibility with config files that do not set the optional-fetch
* field: If the default optional-fetch method is not set then find any fetch methods that
* have an output type of 'embl'. gb10: we may wish to remove this once we no longer have these
* config files. */
if (!options->optionalFetchDefault)
{
GHashTableIter iter;
gpointer key, value;
g_hash_table_iter_init (&iter, options->fetchMethods);
while (g_hash_table_iter_next (&iter, &key, &value))
{
BlxFetchMethod* fetchMethod = (BlxFetchMethod*)value;
if (fetchMethod->outputType == BLXFETCH_OUTPUT_EMBL)
{
if (!options->optionalFetchDefault)
options->optionalFetchDefault = g_array_sized_new(FALSE, TRUE, sizeof(GQuark), 1);
g_array_append_val(options->optionalFetchDefault, fetchMethod->name);
}
}
}
g_strfreev(groups);
}
/*******************************************************************
* Pfetch utility functions *
*******************************************************************/
/* Initialise a pfetch connection with the given options and calls pfetch on each of the
* sequences in the given list. */
static void socketFetchInit(const BlxFetchMethod* const fetchMethod,
GList *seqsToFetch,
gboolean External,
int *sock,
GError **error)
{
GError *tmpError = NULL;
/* open socket connection */
if (!tmpError)
{
*sock = socketConstruct(fetchMethod->node, fetchMethod->port, External, &tmpError) ;
}
/* send the command/names to the server */
if (!tmpError)
{
GString *command = getFetchArgsMultiple(fetchMethod, seqsToFetch, &tmpError);
socketSend(*sock, command->str, &tmpError);
if (command)
g_string_free(command, TRUE);
}
// if (!tmpError)
// {
// /* For each sequence, send a command to fetch that sequence, in the order that they are in our list */
// GList *seqItem = seqsToFetch;
//
// for ( ; seqItem && !tmpError ; seqItem = seqItem->next)
// {
// BlxSequence *blxSeq = (BlxSequence*)(seqItem->data);
// socketSend(*sock, blxSequenceGetName(blxSeq), &tmpError);
// }
// }
if (!tmpError)
{
/* send a final newline to flush the socket */
if (send(*sock, "\n", 1, 0) != 1)
{
g_set_error(&tmpError, BLX_FETCH_ERROR, BLX_FETCH_ERROR_SEND,
"Failed to send final newline to socket\n") ;
}
}
if (tmpError)
g_propagate_error(error, tmpError);
}
/* Check the progress bar to see if the user cancelled. If so, sets the state to cancelled
* and the status to false (meaning don't continue). */
static void checkProgressBar(ProgressBar bar, BlxSeqParserState *parserState, gboolean *status)
{
if (isCancelledProgressBar(bar))
{
*status = FALSE;
*parserState = PARSING_CANCELLED;
}
}
/* Receive the next buffer back from a socket server. Only does anything if the status is ok
* (i.e. true). Checks the length etc and sets the state to finished if there is no more data
* to receive. Sets 'status' to false if there was an error. Returns the number of chars received. */
static int socketFetchReceiveBuffer(GeneralFetchData fetchData, const int bufferSize, const int sock)
{
int lenReceived = 0;
if (fetchData->status == FALSE)
{
return lenReceived;
}
/* Ask for the next chunk of data to be put into our buffer */
lenReceived = recv(sock, fetchData->buffer, bufferSize, 0);
if (lenReceived < 0)
{
/* Problem with this one - skip to the next */
fetchData->status = FALSE;
char *msg = getSystemErrorText();
g_critical("Could not retrieve sequence data from pfetch server, error was: %s\n", msg) ;
g_free(msg);
}
else if (lenReceived == 0)
{
/* No more data, so quit out of the loop */
fetchData->parserState = PARSING_FINISHED;
}
return lenReceived;
}
/* Update the given sequence and sequence item to the next item in the list (unless the state is
* 'finished' in which case there is nothing to do). Sets status to false if there was an
* error (i.e. if we ran out of sequences). */
static void pfetchGetNextSequence(GeneralFetchData fetchData, const gboolean pfetch_ok)
{
if (fetchData->parserState != PARSING_FINISHED)
{
/* Check that another BlxSequence item exists in the list */
if (fetchData->currentSeqItem->next)
{
updateProgressBar(fetchData->bar, blxSequenceGetName(fetchData->currentSeq), fetchData->numFetched, pfetch_ok) ;
/* Move to the next BlxSequence */
fetchData->currentSeqItem = fetchData->currentSeqItem->next;
fetchData->currentSeq = (BlxSequence*)(fetchData->currentSeqItem->data);
}
else
{
fetchData->status = FALSE ;
g_critical("Unexpected data from pfetch server: received too many lines. (%d sequences were requested.)\n", fetchData->numRequested);
}
}
}
/* Parse the given buffer that contains an arbitrary section
* of data from a fasta file (or concatenation of multiple
* fasta files). The parserState indicates on entry what
* state we are in and is updated on exit with the new state,
* if it has changed. */
static void parseRawSequenceBuffer(GeneralFetchData fetchData, GError **error)
{
if (fetchData->status == FALSE || fetchData->parserState == PARSING_FINISHED || fetchData->parserState == PARSING_CANCELLED)
{
return;
}
/* Loop through each character in the buffer */
int i = 0;
for ( ; i < fetchData->lenReceived && fetchData->status; ++i)
{
/* Check for user cancellation again */
checkProgressBar(fetchData->bar, &fetchData->parserState, &fetchData->status);
if (fetchData->parserState == PARSING_CANCELLED)
{
break;
}
const char curChar = fetchData->buffer[i];
if (curChar == '\n')
{
/* finish up this sequence and move to the next one */
gboolean pfetch_ok = pfetchFinishSequence(fetchData);
pfetchGetNextSequence(fetchData, pfetch_ok);
}
else
{
/* Append this character to the current result string */
g_string_append_c(fetchData->currentResult, curChar);
}
}
}
/* Returns true if the given string is the terminating string of
* an embl file, i.e. '//' */
static gboolean isEmblTerminator(GQuark value)
{
static GQuark terminator = 0;
if (!terminator)
terminator = g_quark_from_string("//");
return (value == terminator);
}
/* Get the parser state from the given two-letter at at the start of an EMBL file line. */
static void pfetchGetParserStateFromId(GeneralFetchData fetchData)
{
GQuark sectionId = g_quark_from_string(fetchData->sectionId);
/* First, check if the section id is the terminator string, in
* which case finish this sequence */
if (isEmblTerminator(sectionId))
{
fetchData->parserState = PARSING_FINISHED_SEQ;
return;
}
/* Loop through all the columns and check if there's a column with
* an embl ID that matches the current section ID. If not, then there's
* nothing to do for this tag (so default to parsing_ignore if not found) */
GList *item = fetchData->columnList;
fetchData->parserState = PARSING_IGNORE;
for ( ; item; item = item->next)
{
BlxColumnInfo *columnInfo = (BlxColumnInfo*)(item->data);
if (columnInfo->emblId && columnInfo->emblId == sectionId)
{
/* First, check if we need to bother getting the info for this column */
if (blxSequenceRequiresColumnData(fetchData->currentSeq, columnInfo->columnId) &&
!blxSequenceGetValueAsString(fetchData->currentSeq, columnInfo->columnId))
{
if (columnInfo->emblTag)
{
/* The column has an embl tag; continue parsing to find the
* tag. (Note that multiple columns may have this section ID so
* the next step may end up finding a different column depending
* on the embl tag; at this point, we're just finding out if any
* column has an embl tag that we need to continue parsing for,
* so we don't set the currentColumn yet). */
fetchData->parserState = PARSING_TAG_SEARCH;
}
else
{
/* No tag to look for so start parsing the data for this column immediately */
fetchData->currentColumn = columnInfo;
/* If this is the sequence column, we need to parse the sequence header
* first, so set a special parser state. Other columns can be parsed directly. */
if (columnInfo->columnId == BLXCOL_SEQUENCE)
fetchData->parserState = PARSING_SEQUENCE_HEADER;
else
fetchData->parserState = PARSING_DATA;
}
break; /* we found a column, so exit the loop */
}
}
}
}
/* Process the current character in the current buffer of EMBL data. The char might be read into
* various data locations depending on the current parser state, or might cause the parser state
* to change. */
static void pfetchProcessEmblBufferChar(GeneralFetchData fetchData, const char curChar)
{
switch (fetchData->parserState)
{
case PARSING_NEWLINE:
{
/* First char should be the start of the two-letter ID */
fetchData->sectionId[0] = curChar;
fetchData->parserState = PARSING_ID;
break;
}
case PARSING_ID:
{
/* Read the second (and last) character from the ID. */
fetchData->sectionId[1] = curChar;
pfetchGetParserStateFromId(fetchData);
break;
}
case PARSING_SEQUENCE:
{
/* Look out for the terminating "//" characters. We ignore newlines in the sequence
* body so won't catch these by the normal method. We can assume that if we see a single
* slash that it's the terminator, because we should never see one here otherwise */
if (curChar == '/')
{
fetchData->sectionId[0] = curChar;
fetchData->parserState = PARSING_ID; /* continue parsing to read the other '/' */
}
else
{
/* Add the character to the end of the sequence, but only if it is a valid IUPAC character
* (because we want to ignore whitespace, newlines and digits). */
if (isValidIupacChar(curChar, fetchData->seqType))
{
appendCharToString(curChar, fetchData->currentResult);
}
}
break;
}
case PARSING_DATA:
{
appendCharToString(curChar, fetchData->currentResult);
break;
}
case PARSING_TAG_SEARCH:
{
/* If we find a forward slash, it's the start of a tag, so we'll parse the tag name next */
if (curChar == '/')
fetchData->parserState = PARSING_TAG_NAME;
break;
}
case PARSING_TAG_NAME:
{
if (curChar == '=') /* signals the end of the tag */
pfetchGetParserStateFromTagName(fetchData);
else
g_string_append_c(fetchData->tagName, curChar); /* read in tag name */
break;
}
case PARSING_TAG_IGNORE:
{
/* Look for the start quote before we start parsing the tag properly */
if (curChar == '"')
pfetchGetParserStateFromTagName(fetchData);
break;
}
case PARSING_DATA_QUOTED:
{
/* Like PARSING_DATA but we need to watch out for end quotes */
appendCharToQuotedString(curChar, &fetchData->foundEndQuote, fetchData->currentResult);
break;
}
default:
break;
};
}
static void checkParserState(GeneralFetchData fetchData, BlxSeqParserState origState)
{
/* If we were parsing data for a column but the parser state has now changed to
* something else, then we've finished parsing the string, so save it in the
* sequence */
if (fetchData->parserState != origState && fetchData->currentResult->str)
{
if (origState == PARSING_DATA || origState == PARSING_DATA_QUOTED)
{
blxSequenceSetValueFromString(fetchData->currentSeq,
fetchData->currentColumn->columnId,
fetchData->currentResult->str);
/* Reset the result string and current column */
g_string_truncate(fetchData->currentResult, 0);
fetchData->currentColumn = NULL;
}
}
/* If parsing for this sequence has finished, tidy it up and move to the next sequence */
if (fetchData->parserState == PARSING_FINISHED_SEQ)
{
gboolean pfetch_ok = pfetchFinishSequence(fetchData);
pfetchGetNextSequence(fetchData, pfetch_ok);
fetchData->parserState = PARSING_NEWLINE;
}
}
/* Parse the given buffer, which contains an arbitrary section of
* data from an EMBL entry (or combination of multiple embl entries).
* The parserState indicates what state we are in on entry, and gets
* updated with the new state on exit. */
static void parseEmblBuffer(GeneralFetchData fetchData, GError **error)
{
if (fetchData->status == FALSE ||
fetchData->parserState == PARSING_FINISHED ||
fetchData->parserState == PARSING_CANCELLED)
{
return;
}
/* Loop through each character in the buffer */
int i = 0;
for ( ; i < fetchData->lenReceived && fetchData->status; ++i)
{
checkProgressBar(fetchData->bar, &fetchData->parserState, &fetchData->status);
if (fetchData->parserState == PARSING_CANCELLED)
{
break;
}
/* Remember the state prior to processing this character */
BlxSeqParserState origState = fetchData->parserState;
const char curChar = fetchData->buffer[i];
g_string_append_c(fetchData->curLine, curChar);
/* Special treatment if we've previously found an end quote: if this char is NOT also
* a quote, then it means it genuinely was an end quote, so we finish reading the tag data that
* we were reading (by setting the tag name to null). We return to parsing the section
* that contained that tag in case there are any more tags in it that we're interested in. */
if (fetchData->foundEndQuote && curChar != '"')
{
g_string_truncate(fetchData->tagName, 0);
fetchData->foundEndQuote = FALSE;
fetchData->parserState = PARSING_TAG_SEARCH;
}
/* Newline character means we need to re-read the 2-letter ID at the start of the
* line to find out what section we're in. Ignore newlines in the sequence body, though,
* because it spans several lines and does not have an ID on each line. */
if (curChar == '\n' && fetchData->parserState != PARSING_SEQUENCE)
{
if (fetchData->parserState == PARSING_SEQUENCE_HEADER)
{
/* We were previously in the sequence header, so the next line is the sequence body */
fetchData->parserState = PARSING_SEQUENCE;
}
else if (stringInArray(fetchData->curLine->str, fetchData->fetchMethod->errors))
{
/* The line is an error message. Finish this sequence and move to next. */
g_warning("[%s] Error fetching sequence '%s': %s", g_quark_to_string(fetchData->fetchMethod->name), blxSequenceGetName(fetchData->currentSeq), fetchData->curLine->str);
fetchData->parserState = PARSING_FINISHED_SEQ;
}
else
{
fetchData->parserState = PARSING_NEWLINE;
}
g_string_truncate(fetchData->curLine, 0);
}
else
{
pfetchProcessEmblBufferChar(fetchData, curChar);
}
checkParserState(fetchData, origState);
}
}
/* Check the given tag name to see if it contains data for a column we're interested
* in, and update the parser state accordingly. Sets the parser state to PARSING_IGNORE
* if this is not a tag we care about. */
static void pfetchGetParserStateFromTagName(GeneralFetchData fetchData)
{
if (!fetchData->tagName || !fetchData->tagName->str)
return;
/* Check if there's a column with this section ID and tag. (Assumes
* that only one column at most will match.) */
GQuark foundSection = g_quark_from_string(fetchData->sectionId);
GQuark foundTag = g_quark_from_string(fetchData->tagName->str);
GList *item = fetchData->columnList;
fetchData->currentColumn = NULL;
for ( ; item && !fetchData->currentColumn; item = item->next)
{
BlxColumnInfo *columnInfo = (BlxColumnInfo*)(item->data);
GQuark currentSection = columnInfo->emblId;
GQuark currentTag = columnInfo->emblTag;
if (currentSection == foundSection && currentTag == foundTag)
{
fetchData->currentColumn = columnInfo;
if (fetchData->parserState == PARSING_TAG_NAME)
{
/* Start parsing the data within the tag but initially ignore
* everything until we find a quoted section */
fetchData->parserState = PARSING_TAG_IGNORE;
}
else
{
/* Should only get here if we found a quoted section. Start
* parsing the actual data for the current column. */
fetchData->parserState = PARSING_DATA_QUOTED;
}
}
}
if (!fetchData->currentColumn)
{
/* No column was found, so ignore this tag. Reset the tag name to
* zero-length so we know to start again */
fetchData->parserState = PARSING_IGNORE;
g_string_truncate(fetchData->tagName, 0);
}
}
/* Append the given char to the given GString, but only if it is not an end quote. Assumes the
* start quote has already been seen. Treats double quotes ("") as a single escaped quote and
* includes it in the text - foundEndQuote is set for the first quote found and if the next char
* this is called with is also a quote the quote is included and foundEndQuote reset.
* To do: this should really identify newlines and ignore the FT identifier and whitespace at the
* start of the line. Since none of our tags currently have multi-line data that's not worth doing just yet... */
static void appendCharToQuotedString(const char curChar, gboolean *foundEndQuote, GString *result)
{
if (curChar == '"')
{
if (*foundEndQuote)
{
/* The previous char was also a quote, which means this is an
* escaped quote, so we do include the char in the text. */
appendCharToString(curChar, result);
*foundEndQuote = FALSE;
}
else
{
/* This looks like an end quote but we won't know until the next loop, so just flag it. */
*foundEndQuote = TRUE;
}
}
else
{
appendCharToString(curChar, result);
}
}
/* Append the given char to the given GString. Doesn't
* add whitespace chars to the start of the string. Also
* filters out multiple whitespace chars. */
static void appendCharToString(const char curChar, GString *result)
{
if (result)
{
/* Don't add multiple consecutive whitespace characters, or
* white space at the start of the string */
const int len = result->len;
const char *str = result->str;
if (!isWhitespaceChar(curChar) || (len > 0 && !isWhitespaceChar(str[len - 1])))
{
g_string_append_c(result, curChar);
}
}
}
/* This is called when we've finished parsing a given sequence. It checks that the sequence
* data is valid (i.e. not an error message) and complements it if necessary. It updates the parser
* state to finished if we've got all the sequences we requested. Returns true if the pfetch
* was successful, false if not */
static gboolean pfetchFinishSequence(GeneralFetchData fetchData)
{
/* We issue warnings if a sequence fetch failed but set a limit on the number so we don't end
* up with pages and pages of terminal output */
static int numWarnings = 0;
const int maxWarnings = 50;
fetchData->numFetched += 1;
if (fetchData->numFetched >= fetchData->numRequested)
{
/* We've fetched all of the sequences we requested. */
fetchData->parserState = PARSING_FINISHED;
}
/* The pfetch failed if our sequence is null or equal to an error string. */
gboolean pfetch_ok = FALSE;
/* If the sequence isn't required, or is already set, then we don't need
* to check if it was fetched */
if (!blxSequenceRequiresColumnData(fetchData->currentSeq, BLXCOL_SEQUENCE) ||
blxSequenceGetValueAsString(fetchData->currentSeq, BLXCOL_SEQUENCE))
{
pfetch_ok = TRUE;
}
else
{
if (!fetchData->currentResult || fetchData->currentResult->len == 0)
{
if (numWarnings < maxWarnings)
{
++numWarnings;
g_warning("No sequence data fetched for '%s'\n", blxSequenceGetName(fetchData->currentSeq));
}
}
else if (stringInArray(fetchData->currentResult->str, fetchData->fetchMethod->errors))
{
if (numWarnings < maxWarnings)
{
++numWarnings;
g_warning("Sequence fetch failed for '%s': %s\n", blxSequenceGetName(fetchData->currentSeq), fetchData->currentResult->str);
}
}
else if (!isValidIupacChar(fetchData->currentResult->str[0], fetchData->seqType))
{
if (numWarnings < maxWarnings)
{
++numWarnings;
g_warning("Sequence fetch failed for '%s': invalid character '%c' found in fetched text: %s\n", blxSequenceGetName(fetchData->currentSeq), fetchData->currentResult->str[0], fetchData->currentResult->str);
}
}
else
{
/* Succeeded: save the result in the blxsequence */
pfetch_ok = TRUE;
blxSequenceSetValueFromString(fetchData->currentSeq, BLXCOL_SEQUENCE, fetchData->currentResult->str);
}
}
if (pfetch_ok)
{
fetchData->numSucceeded += 1;
}
/* Reset the result string */
g_string_truncate(fetchData->currentResult, 0);
return pfetch_ok;
}
/*******************************************************************
* Bulk fetch *
*******************************************************************/
/* Returns true if the given fetch method retrieves sequence
* data. Note that fetch methods that return gff files for
* re-parsing will cause this function to return true. */
static gboolean fetchMethodReturnsSequence(const BlxFetchMethod* const fetchMethod)
{
gboolean result = FALSE;
if (fetchMethod)
{
result =
fetchMethod->outputType == BLXFETCH_OUTPUT_RAW ||
fetchMethod->outputType == BLXFETCH_OUTPUT_FASTA ||
fetchMethod->outputType == BLXFETCH_OUTPUT_EMBL ||
fetchMethod->outputType == BLXFETCH_OUTPUT_GFF;
}
return result;
}
/* Returns true if the given fetch method retrieves data for
* optional columns. Note that fetch methods that return gff files for
* re-parsing will cause this function to return true. */
static gboolean fetchMethodReturnsOptionalColumns(const BlxFetchMethod* const fetchMethod)
{
gboolean result = FALSE;
if (fetchMethod)
{
/* - EMBL files can be parsed for optional columns like tissue-type and strain.
* - DB fetch methods that return a list of columns can also return optional columns.
* - GFF files will be re-parsed and the results will be checked again, so we return
* true for those too. */
result =
fetchMethod->outputType == BLXFETCH_OUTPUT_EMBL ||
fetchMethod->outputType == BLXFETCH_OUTPUT_LIST ||
fetchMethod->outputType == BLXFETCH_OUTPUT_GFF;
}
return result;
}
static const BlxFetchMethod* findFetchMethod(const BlxFetchMode mode,
const BlxFetchOutputType outputType,
GHashTable *fetchMethods)
{
const BlxFetchMethod* result = NULL;
GHashTableIter iter;
gpointer key, value;
g_hash_table_iter_init (&iter, fetchMethods);
while (g_hash_table_iter_next (&iter, &key, &value) && !result)
{
const BlxFetchMethod* fetchMethod = (const BlxFetchMethod*)value;
if (fetchMethod->mode == mode && fetchMethod->outputType == outputType)
result = fetchMethod;
}
return result;
}
/* Checks the list of sequences for blixem to display to see which ones
* need fetching.
* Returns lists of all the sequences to be fetched, categorised by the fetch
* mode that should be used to fetch them. The return value is a map of
* a GQuark (representing the fetch-mode string) to the GList of sequences
* to be fetched.
* This function can be called multiple times on the same sequences to
* re-try fetching sequences with different fetch methods if the original
* fetch method fails. Pass 'attempt' as 0 for the first try, 1 for
* the second etc.
* If optionalColumns is true, then this 'forces' optional data to be
* loaded even if the bulk fetch method for a sequence does not return
* embl data. We do this by looking for another fetch method of the same
* mode that does return embl data. This is perhaps a bit hacky but avoids
* us having to have yet another set of fetch methods in the config for the
* user-triggered load-optional-data action. */
static GHashTable* getSeqsToPopulate(GList *inputList,
const GArray *defaultFetchMethods,
const int attempt,
GHashTable *fetchMethods,
const gboolean optionalColumns)
{
GHashTable *resultTable = g_hash_table_new(g_direct_hash, g_direct_equal);
/* Loop through the input list */
GList *inputItem = inputList;
for ( ; inputItem; inputItem = inputItem->next)
{
BlxSequence *blxSeq = (BlxSequence*)(inputItem->data);
GQuark fetchMethodQuark = blxSequenceGetFetchMethod(blxSeq, TRUE, optionalColumns, attempt, defaultFetchMethods);
if (fetchMethodQuark)
{
const BlxFetchMethod* fetchMethod = getFetchMethodDetails(fetchMethodQuark, fetchMethods);
if (fetchMethod)
{
/* Check if sequence data is required and is not already set.
* Also only attempt to fetch the sequence if this fetch method
* can return it! */
gboolean getSeq = (blxSequenceRequiresSeqData(blxSeq) &&
fetchMethodReturnsSequence(fetchMethod) &&
!blxSequenceGetSequence(blxSeq));
/* Check if full embl data data is required and is not already set. */
gboolean getEmbl = (blxSequenceRequiresOptionalData(blxSeq) &&
(!blxSequenceGetOrganism(blxSeq) ||
!blxSequenceGetGeneName(blxSeq) ||
!blxSequenceGetTissueType(blxSeq) ||
!blxSequenceGetStrain(blxSeq)));
/* Only attempt to fetch the embl data if this fetch method can
* return it, or, if optionalColumns is true, then search for a
* fetch method that does return embl data */
if (getEmbl)
{
if (!fetchMethodReturnsOptionalColumns(fetchMethod) && optionalColumns)
{
fetchMethod = findFetchMethod(fetchMethod->mode, BLXFETCH_OUTPUT_EMBL, fetchMethods);
if (fetchMethod)
fetchMethodQuark = fetchMethod->name;
else
fetchMethodQuark = 0;
}
getEmbl = fetchMethodReturnsOptionalColumns(fetchMethod);
}
getSeq |= getEmbl;
if (getSeq)
{
/* Get the result list for this fetch method. It's ok if it is
* null because the list will be created by g_list_prepend. */
GList *resultList = (GList*)g_hash_table_lookup(resultTable, GINT_TO_POINTER(fetchMethodQuark));
resultList = g_list_prepend(resultList, blxSeq);
/* Update the existing (or insert the new) list */
g_hash_table_insert(resultTable, GINT_TO_POINTER(fetchMethodQuark), resultList);
}
}
else
{
/* Warn user that fetch method details are missing (only warn once per fetch method) */
static GHashTable *seenMethods = NULL;
if (!seenMethods)
seenMethods = g_hash_table_new(g_direct_hash, g_direct_equal);
if (!g_hash_table_lookup(seenMethods, GINT_TO_POINTER(fetchMethodQuark)))
{
g_warning("Error fetching sequence '%s'; could not find details for fetch method '%s'\n", blxSequenceGetName(blxSeq), g_quark_to_string(fetchMethodQuark));
g_hash_table_insert(seenMethods, GINT_TO_POINTER(fetchMethodQuark), GINT_TO_POINTER(fetchMethodQuark));
}
}
}
}
return resultTable;
}
void sendFetchOutputToFile(GString *command,
GKeyFile *keyFile,
BlxBlastMode *blastMode,
GArray* featureLists[],
GSList *supportedTypes,
GSList *styles,
GList **seqList,
MSP **mspListIn,
const char *fetchName,
const gboolean saveTempFiles,
MSP **newMsps,
GList **newSeqs,
GList *columnList,
GHashTable *lookupTable,
const int refSeqOffset,
const IntRange* const refSeqRange,
GError **error)
{
/* Create a temp file for the results */
const char *tmpDir = getSystemTempDir();
char *fileName = g_strdup_printf("%s/%s_%s", tmpDir, MKSTEMP_CONST_CHARS_GFF, MKSTEMP_REPLACEMENT_CHARS);
int fileDesc = g_mkstemp(fileName);
GError *tmpError = NULL;
if (!fileName || fileDesc == -1)
{
g_set_error(&tmpError, BLX_ERROR, 1, " %s: Error creating temp file for fetch results (filename=%s)\n", fetchName, fileName);
}
if (fileDesc != -1)
{
close(fileDesc);
}
if (!tmpError)
{
/* Send the output to the temp file */
g_string_append_printf(command, " > %s", fileName);
FILE *outputFile = fopen(fileName, "w");
g_debug("Fetch command:\n%s\n", command->str);
GtkWidget *dialog = gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_INFO, GTK_BUTTONS_NONE, "Fetching features...");
gtk_widget_show_all(dialog);
g_message_info("Executing fetch...\n");
const gboolean success = (system(command->str) == 0);
gtk_widget_destroy(dialog);
fclose(outputFile);
if (success)
{
/* Parse the results */
g_message_info("... ok.\n");
g_message_info("Parsing fetch results...");
loadNativeFile(fileName, NULL, keyFile, blastMode, featureLists,
supportedTypes, styles, newMsps, newSeqs, columnList,
lookupTable, refSeqOffset, refSeqRange, &tmpError);
if (!tmpError)
{
g_message_info("... ok.\n");
}
else
{
g_message_info("... failed.\n");
}
}
else
{
g_message_info("... failed.\n");
g_set_error(&tmpError, BLX_ERROR, 1, " %s: Command failed.\n", fetchName);
}
}
/* Delete the temp file (unless the 'save temp files' option is on) */
if (!saveTempFiles)
{
if (unlink(fileName) != 0)
g_warning("Error removing temp file '%s'.\n", fileName);
}
g_free(fileName);
if (tmpError)
g_propagate_error(error, tmpError);
}
/* Called by regionFetchList. Fetches the sequences for a specific region.
* tmpDir is the directory in which to place the temporary files
* script is the script to call to do the fetch
* dataset will be passed as the -dataset argument to the script if it is not null */
void BulkFetch::regionFetchFeature(const MSP* const msp,
const BlxFetchMethod* const fetchMethod,
const char *script,
const char *dataset,
const char *tmpDir,
GError **error)
{
GKeyFile *keyFile = blxGetConfig();
const char *fetchName = g_quark_to_string(fetchMethod->name);
GError *tmpError = NULL;
/* Get the command string, including the args */
GString *command = getFetchCommand(fetchMethod, NULL,
msp, mspGetRefName(msp),
refSeqOffset, refSeqRange,
dataset, &tmpError);
if (tmpError)
prefixError(tmpError, " %s: Error constructing fetch command:\n", fetchName);
if (!tmpError)
{
MSP *newMsps = NULL;
GList *newSeqs = NULL;
sendFetchOutputToFile(command, keyFile, blastMode,
featureLists, supportedTypes, styles,
seqList, mspList, fetchName, saveTempFiles,
&newMsps, &newSeqs, columnList, lookupTable, refSeqOffset, refSeqRange, &tmpError);
blxMergeFeatures(newMsps, newSeqs, mspList, seqList);
}
if (command)
g_string_free(command, TRUE);
if (tmpError)
g_propagate_error(error, tmpError);
}
/* Fetch sequences for a given region. This uses the config file to find the
* script and arguments to call to fetch the sequences.
* The input GList contains a list of BlxSequences that are parent objects for
* MSPs that identify regions. For each region, the script is called to fetch
* all sequences that lie within that region, and the results are placed in
* a temporary GFF file, which is then parsed to get the results. The GFF file
* is deleted when finished, unless the saveTempFiles argument is true. */
void BulkFetch::regionFetchList(GList *regionsToFetch,
const BlxFetchMethod* const fetchMethod,
GError **error)
{
/* Get the command to run */
const gchar *script = fetchMethod->location;
if (!script)
{
g_set_error(error, BLX_ERROR, 1, "Error fetching sequences; no command given for fetch-method [%s].\n", g_quark_to_string(fetchMethod->name));
return;
}
const char *tmpDir = getSystemTempDir();
/* Loop through each region, creating a GFF file with the results for each region */
GList *regionItem = regionsToFetch;
GError *tmpError = NULL;
for ( ; regionItem && !tmpError; regionItem = regionItem->next)
{
BlxSequence *blxSeq = (BlxSequence*)(regionItem->data);
GList *mspItem = blxSeq->mspList;
for ( ; mspItem; mspItem = mspItem->next)
{
const MSP* const msp = (const MSP*)(mspItem->data);
/* Only fetch regions that are at least partly inside our display range */
if (!rangesOverlap(&msp->qRange, refSeqRange))
continue;
regionFetchFeature(msp, fetchMethod, script, dataset, tmpDir, &tmpError);
}
}
if (tmpError)
g_propagate_error(error, tmpError);
}
/* Fetch sequences using a given command-line script */
void BulkFetch::commandFetchList(GList *regionsToFetch,
const BlxFetchMethod* const fetchMethod,
GError **error)
{
/* Currently we only support an output type of gff */
if (fetchMethod->outputType == BLXFETCH_OUTPUT_GFF)
{
regionFetchList(regionsToFetch, fetchMethod, error);
}
else
{
g_warning("Fetch mode 'command' currently only supports an output type of 'gff'\n");
}
}
/* This function determines which function to call to fetch the
* given list of features, based on the given fetch method.
* The first argument is the list of features to fetch and
* the second is the list of all features. */
gboolean BulkFetch::fetchList(GList *seqsToFetch,
const BlxFetchMethod* const fetchMethod,
GError **error)
{
gboolean success = TRUE;
if (g_list_length(seqsToFetch) > 0)
{
if (fetchMethod)
{
switch (fetchMethod->mode)
{
case BLXFETCH_MODE_SOCKET:
{
success = socketFetchList(seqsToFetch, fetchMethod, error);
break;
}
#ifdef PFETCH_HTML
case BLXFETCH_MODE_HTTP: // fall through
case BLXFETCH_MODE_PIPE:
{
success = httpFetchList(seqsToFetch, fetchMethod, error);
break;
}
#endif
case BLXFETCH_MODE_SQLITE:
{
sqliteFetchSequences(seqsToFetch, fetchMethod, columnList, error);
break;
}
case BLXFETCH_MODE_COMMAND:
{
commandFetchList(seqsToFetch, fetchMethod, error);
break;
}
case BLXFETCH_MODE_NONE:
{
/* do nothing */
break;
}
default:
{
g_set_error(error, BLX_ERROR, 1, "Bulk fetch is not implemented yet in %s mode.\n", g_quark_to_string(fetchMethod->name));
break;
}
}
}
else
{
g_set_error(error, BLX_ERROR, 1, "Fetch mode not specified.\n");
}
}
return success;
}
UserFetch::UserFetch(const BlxSequence *blxSeq_in,
const gboolean displayResults_in,
GtkWidget *blxWindow_in,
GtkWidget *dialog_in,
#ifdef PFETCH_HTML
long ipresolve_in,
const char *cainfo_in,
#endif
bool debug_in)
{
attempt = -1;
blxSeq = blxSeq_in;
displayResults = displayResults_in;
blxWindow = blxWindow_in;
dialog = dialog_in;
text_buffer = NULL;
debug = debug_in;
#ifdef PFETCH_HTML
ipresolve = ipresolve_in;
cainfo = cainfo_in;
#endif
}
/* Perform the fetch */
/* Fetch the given sequence and optionally display the results.
* dialog and text_buffer are only used when recursing via httpFetchSequence;
* they should remain as NULL in all other cases. */
void UserFetch::performFetch()
{
BlxContext *bc = blxWindowGetContext(blxWindow);
g_return_if_fail(blxSeq && bc);
++attempt;
/* Look up the fetch method for this sequence */
GQuark fetchMethodQuark = blxSequenceGetFetchMethod(blxSeq, FALSE, FALSE, attempt, bc->userFetchDefault);
const BlxFetchMethod* const fetchMethod = getFetchMethodDetails(fetchMethodQuark, bc->fetchMethods);
if (!fetchMethod)
{
/* If this is the first attempt then we should have a fetch method;
* therefore give a warning if no fetch method was found */
if (attempt == 0 && !fetchMethodQuark)
g_warning("No fetch method specified for sequence '%s'\n", blxSequenceGetName(blxSeq));
else if (fetchMethodQuark)
g_warning("Error fetching sequence '%s'; could not find details for fetch method '%s'\n", blxSequenceGetName(blxSeq), g_quark_to_string(fetchMethodQuark));
return;
}
if (fetchMethod->mode == BLXFETCH_MODE_NONE && attempt == 0)
{
g_message("Fetch method for '%s' is '%s'\n", blxSequenceGetName(blxSeq), fetchModeStr(BLXFETCH_MODE_NONE));
return;
}
g_message("Fetching '%s' using method '%s' (attempt %d)\n", blxSequenceGetName(blxSeq), g_quark_to_string(fetchMethodQuark), attempt + 1);
if (fetchMethod->mode == BLXFETCH_MODE_SOCKET)
{
socketFetchSequence(fetchMethod);
}
#ifdef PFETCH_HTML
else if (fetchMethod->mode == BLXFETCH_MODE_HTTP || fetchMethod->mode == BLXFETCH_MODE_PIPE)
{
httpFetchSequence(fetchMethod);
}
#endif
else if (fetchMethod->mode == BLXFETCH_MODE_COMMAND)
{
commandFetchSequence(fetchMethod);
}
else if (fetchMethod->mode == BLXFETCH_MODE_WWW)
{
wwwFetchSequence(fetchMethod);
}
else if (fetchMethod->mode == BLXFETCH_MODE_SQLITE)
{
sqliteFetchSequence(fetchMethod);
}
else if (fetchMethod->mode == BLXFETCH_MODE_INTERNAL)
{
internalFetchSequence(fetchMethod);
}
else
{
/* Invalid fetch method. Try again with the next fetch method, if one is specified */
g_warning("Unknown fetch method: %s\n", g_quark_to_string(fetchMethod->name));
performFetch();
}
}
GtkTextBuffer* UserFetch::getTextBuffer()
{
return text_buffer;
}
void UserFetch::setTextBuffer(GtkTextBuffer *text_buffer_in)
{
text_buffer = text_buffer_in;
}
#ifdef PFETCH_HTML
/* Use the http proxy to pfetch an entry */
/* Note that this uses a callback to update the display
* window; it cannot return the result immediately and the
* code is not currently structured to allow the callback to
* do anything other than update the display window, so if
* we're just requesting the sequence, this currently just
* returns null. */
bool UserFetch::httpFetchSequence(const BlxFetchMethod *fetchMethod)
{
gboolean ok = 0;
BlxContext *bc = blxWindowGetContext(blxWindow);
PFetchData pfetch_data = NULL ;
GError *tmpError = NULL;
GString *command = NULL;
GString *request = NULL;
if (!displayResults)
{
g_warning("Program error: http-fetch expected to display results but displayResults is false.\n");
return ok;
}
if (fetchMethod->location == NULL)
g_set_error(&tmpError, BLX_ERROR, 1, "%s", "Failed to obtain preferences specifying how to pfetch.\n");
if (!tmpError)
{
pfetch_data = new PFetchDataStruct;
pfetch_data->fetchMethod = fetchMethod;
pfetch_data->user_fetch = this;
command = getFetchCommand(fetchMethod, blxSeq, NULL, bc->refSeqName, bc->refSeqOffset, &bc->refSeqRange, bc->dataset, &tmpError);
}
if (!tmpError)
{
request = getFetchArgs(fetchMethod, blxSeq, NULL,
bc->refSeqName, bc->refSeqOffset, &bc->refSeqRange,
bc->dataset, &tmpError);
}
if (!pfetch_data || tmpError)
{
/* Couldn't initiate the fetch; try again with a different fetch method */
if (pfetch_data)
{
delete pfetch_data->pfetch;
delete pfetch_data;
pfetch_data = NULL;
}
reportAndClearIfError(&tmpError, G_LOG_LEVEL_WARNING);
performFetch();
}
else
{
pfetch_data->title = g_strdup_printf("%s%s", blxGetTitlePrefix(bc), command->str);
if (!dialog || !text_buffer)
{
dialog = displayFetchResults(pfetch_data->title, "pfetching...\n", blxWindow, dialog, &text_buffer);
}
if (dialog && text_buffer)
{
gtk_window_set_title(GTK_WINDOW(dialog), pfetch_data->title);
pfetch_data->widget_destroy_handler_id =
g_signal_connect(G_OBJECT(dialog), "destroy",
G_CALLBACK(handle_dialog_close), pfetch_data);
if (fetchMethod->mode == BLXFETCH_MODE_PIPE)
{
pfetch_data->pfetch = new PfetchPipe(fetchMethod->location,
pfetch_reader_func,
pfetch_error_func, pfetch_closed_func,
pfetch_data) ;
}
else
{
pfetch_data->pfetch = new PfetchHttp(fetchMethod->location, fetchMethod->port,
fetchMethod->cookie_jar, ipresolve,
cainfo, fetchMethod->proxy,
pfetch_reader_func,
pfetch_error_func, pfetch_closed_func,
pfetch_data) ;
}
pfetch_data->pfetch->setDebug(debug) ;
char *err_msg = NULL ;
if (!(pfetch_data->pfetch->fetch(request->str, &err_msg)))
{
char *msg = g_strdup_printf("Error performing http fetch request:\n Request: %s\n Error: %s\n",
command->str,
(err_msg ? err_msg : "no error"));
g_warning("%s", msg);
displayFetchResults(pfetch_data->title, msg, blxWindow, dialog, &text_buffer);
g_free(msg);
performFetch();
}
}
else
{
g_warning("Error creating http fetch results dialog\n");
}
}
if (request)
{
g_string_free(request, FALSE);
}
return ok;
}
#endif
/* Use the www-fetch method to fetch an entry and optionally display
* the results in a dialog.
* Opens a browser to display the results. Does nothing if
* not displaying results! */
void UserFetch::wwwFetchSequence(const BlxFetchMethod *fetchMethod)
{
if (displayResults)
{
BlxContext *bc = blxWindowGetContext(blxWindow);
GError *error = NULL;
GString *url = getFetchCommand(fetchMethod,
blxSeq,
NULL,
bc->refSeqName,
bc->refSeqOffset,
&bc->refSeqRange,
bc->dataset,
&error);
if (!error)
{
seqtoolsLaunchWebBrowser(url->str, &error);
}
if (url)
{
g_string_free(url, TRUE);
}
/* If failed, re-try with the next-preferred fetch method, if there is one */
if (error)
{
performFetch();
g_error_free(error);
}
}
}
/* Use the command-fetch method to fetch an entry and optionally display
* the results in a dialog. */
void UserFetch::commandFetchSequence(const BlxFetchMethod *fetchMethod)
{
BlxContext *bc = blxWindowGetContext(blxWindow);
GError *error = NULL;
GString *command = NULL;
GString *resultText = NULL;
if (!error)
checkFetchMethodNonNull(fetchMethod, &error);
if (!error)
checkFetchMethodExecutable(fetchMethod, &error);
if (!error)
command = getFetchCommand(fetchMethod, blxSeq, NULL, bc->refSeqName, bc->refSeqOffset, &bc->refSeqRange, bc->dataset, &error);
if (!error && command)
resultText = getExternalCommandOutput(command->str, &error);
reportAndClearIfError(&error, G_LOG_LEVEL_WARNING);
if (resultText && resultText->str)
{
if (displayResults && !error)
{
char *title = g_strdup_printf("%s%s", blxGetTitlePrefix(bc), command->str);
displayFetchResults(title, resultText->str, blxWindow, dialog, &text_buffer);
g_free(title);
}
g_string_free(resultText, TRUE);
}
else
{
/* Try again with the next-preferred fetch method, if there is one */
if (resultText)
g_string_free(resultText, TRUE);
performFetch();
}
if (command)
g_string_free(command, TRUE);
}
/* This "fetch" method doesn't really fetch the sequence: it just
* returns the internally-stored sequence */
void UserFetch::internalFetchSequence(const BlxFetchMethod *fetchMethod)
{
const char *seq = blxSequenceGetSequence(blxSeq);
const char *seqName = blxSequenceGetName(blxSeq);
if (seq)
{
char *result = g_strdup_printf(">%s\n%s", seqName ? seqName : "", seq);
if (displayResults)
{
BlxContext *bc = blxWindowGetContext(blxWindow);
char *title = g_strdup_printf("%s%s", blxGetTitlePrefix(bc), seqName ? seqName : "");
displayFetchResults(title, result, blxWindow, dialog, &text_buffer);
g_free(title);
}
g_free(result);
}
else
{
g_warning("No sequence data found for '%s'\n", seqName ? seqName : "");
/* Try again with the next-preferred fetch method, if there is one */
performFetch();
}
}
/* Use the given socket-fetch method to fetch an entry and optionally display the results. */
void UserFetch::socketFetchSequence(const BlxFetchMethod *fetchMethod)
{
BlxContext *bc = blxWindowGetContext(blxWindow);
GError *error = NULL;
GString *resultText = NULL;
GString *command = NULL;
if (!error)
checkFetchMethodNonNull(fetchMethod, &error);
if (!error)
checkFetchMethodExecutable(fetchMethod, &error);
if (!error)
command = getFetchCommand(fetchMethod, blxSeq, NULL, bc->refSeqName, bc->refSeqOffset, &bc->refSeqRange, bc->dataset, &error);
if (!error && command)
resultText = getExternalCommandOutput(command->str, &error);
reportAndClearIfError(&error, G_LOG_LEVEL_WARNING);
if (resultText && resultText->len && !stringInArray(resultText->str, fetchMethod->errors)) /* Success */
{
if (displayResults)
{
char *title = g_strdup_printf("%s%s", blxGetTitlePrefix(bc), command->str);
displayFetchResults(title, resultText->str, blxWindow, dialog, &text_buffer);
g_free(title);
}
g_string_free(resultText, TRUE);
}
else /* Failed */
{
if (resultText)
g_string_free(resultText, TRUE);
/* Try again with the next fetch method, if there is one set */
performFetch();
}
if (command)
g_string_free(command, TRUE);
}
/* Fetch a single sequence using sqlite. If displayResults is true, disply the
* results in a pop-up window. If result_out is non-null, populate it with the result. */
void UserFetch::sqliteFetchSequence(const BlxFetchMethod *fetchMethod)
{
DEBUG_ENTER("sqliteFetchSequence");
GError *tmpError = NULL;
sqliteValidateFetchMethod(fetchMethod, &tmpError);
BlxContext *bc = blxWindowGetContext(blxWindow);
GString *query = NULL;
if (!tmpError)
{
query = getFetchArgs(fetchMethod, blxSeq, NULL,
bc->refSeqName, bc->refSeqOffset, &bc->refSeqRange,
bc->dataset, &tmpError);
}
if (query && !tmpError)
{
sqliteRequest(fetchMethod->location,
query->str,
sqliteDisplayResultsCB,
blxWindow,
&tmpError);
}
g_string_free(query, TRUE);
if (tmpError)
{
reportAndClearIfError(&tmpError, G_LOG_LEVEL_WARNING);
performFetch();
}
DEBUG_EXIT("sqliteFetchSequence");
}
BulkFetch::BulkFetch(gboolean External_in,
gboolean saveTempFiles_in,
BlxSeqType seqType_in,
GList **seqList_in,
GList *columnList_in,
GArray *defaultFetchMethods_in,
GHashTable *fetchMethods_in,
MSP **mspList_in,
BlxBlastMode *blastMode_in,
GArray* featureLists_in[],
GSList *supportedTypes_in,
GSList *styles_in,
int refSeqOffset_in,
IntRange* const refSeqRange_in,
char *dataset_in,
gboolean optionalColumns_in,
GHashTable *lookupTable_in,
#ifdef PFETCH_HTML
long ipresolve_in,
const char *cainfo_in,
#endif
bool debug_in)
{
attempt = -1;
External = External_in;
saveTempFiles = saveTempFiles_in;
seqType = seqType_in;
seqList = seqList_in; /* list of BlxSequence structs for all required sequences */
columnList = columnList_in;
defaultFetchMethods = defaultFetchMethods_in;
fetchMethods = fetchMethods_in;
mspList = mspList_in;
blastMode = blastMode_in;
featureLists = featureLists_in;
supportedTypes = supportedTypes_in;
styles = styles_in;
refSeqOffset = refSeqOffset_in;
refSeqRange = refSeqRange_in;
dataset = dataset_in;
optionalColumns = optionalColumns_in;
lookupTable = lookupTable_in;
debug = debug_in;
#ifdef PFETCH_HTML
ipresolve = ipresolve_in;
cainfo = cainfo_in;
#endif
}
/* Find out if we need to fetch any sequences (they may all be
* contained in the input files so there might not be anything to
* fetch). If we do need to, then fetch them by the preferred method.
* If the preferred fetch method fails, recusively try any other
* fetch methods set up for each sequence until we have either fetched
* everything or run out of fetch methods to try.
* 'attempt' should be passed as 0 for the first call. */
gboolean BulkFetch::performFetch()
{
gboolean success = FALSE; /* will get set to true if any of the fetch methods succeed */
++attempt;
/* Fetch any sequences that do not have their sequence data
* already populated. If this is a re-try attempt, then use
* a secondary fetch method, if one is given; otherwise, exclude
* from the list (i.e. when we run out of fetch methods or everything
* has been successfully fetched, then this table will be empty). */
GHashTable *seqsTable = getSeqsToPopulate(*seqList, defaultFetchMethods, attempt, fetchMethods, optionalColumns);
if (g_hash_table_size(seqsTable) < 1)
{
/* Nothing to fetch */
success = TRUE;
}
else
{
/* Loop through each fetch mode */
GHashTableIter iter;
g_hash_table_iter_init(&iter, seqsTable);
gpointer key, value;
GError *error = NULL;
while (g_hash_table_iter_next(&iter, &key, &value))
{
GList *seqsToFetch = (GList*)value;
GQuark fetchMethodQuark = GPOINTER_TO_INT(key);
if (!fetchMethodQuark)
continue;
g_message_info("Fetching %d items using method '%s' (attempt %d)\n", g_list_length(seqsToFetch), g_quark_to_string(fetchMethodQuark), attempt + 1);
const BlxFetchMethod* const fetchMethod = getFetchMethodDetails(fetchMethodQuark, fetchMethods);
if (!fetchMethod)
{
g_warning("Fetch method '%s' not found\n", g_quark_to_string(fetchMethodQuark));
continue;
}
GError *tmpError = NULL;
if (fetchList(seqsToFetch, fetchMethod, &tmpError))
{
success = TRUE;
/* Compile all errors into a single error */
if (error && tmpError)
{
prefixError(error, tmpError->message);
g_error_free(tmpError);
tmpError = NULL;
}
else if (tmpError)
{
error = tmpError;
}
}
/* We're done with this list now, so free the memory. Don't delete it from
* the table yet, though, because that will invalidate the iterators. */
g_list_free(seqsToFetch);
}
if (success && error)
{
/* Some fetches succeeded, so just issue a warning */
prefixError(error, "Error fetching sequences:\n");
reportAndClearIfError(&error, G_LOG_LEVEL_CRITICAL);
}
else if (error)
{
/* All failed, so issue a critical warning */
prefixError(error, "Error fetching sequences:\n");
reportAndClearIfError(&error, G_LOG_LEVEL_WARNING);
}
/* Recurse to re-try any that failed. This returns straight
* away everything was fetched successfully, or if there are
* no more fetch methods to try. */
success = performFetch();
}
/* Clean up */
g_hash_table_unref(seqsTable);
return success;
}
/* Get the fetch-method struct containing the details for the
* given fetch method */
BlxFetchMethod* getFetchMethodDetails(GQuark fetchMethodQuark, GHashTable *fetchMethods)
{
BlxFetchMethod *result = (BlxFetchMethod*)g_hash_table_lookup(fetchMethods, GINT_TO_POINTER(fetchMethodQuark));
return result;
}
|