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
|
/*===========================================================================
*
* PUBLIC DOMAIN NOTICE
* National Center for Biotechnology Information
*
* This software/database is a "United States Government Work" under the
* terms of the United States Copyright Act. It was written as part of
* the author's official duties as a United States Government employee and
* thus cannot be copyrighted. This software/database is freely available
* to the public for use. The National Library of Medicine and the U.S.
* Government have not placed any restriction on its use or reproduction.
*
* Although all reasonable efforts have been taken to ensure the accuracy
* and reliability of the software and data, the NLM and the U.S.
* Government do not and cannot warrant the performance or results that
* may be obtained by using this software or data. The NLM and the U.S.
* Government disclaim all warranties, express or implied, including
* warranties of performance, merchantability or fitness for any particular
* purpose.
*
* Please cite the author in any work or product based on this material.
*
* ===========================================================================
*
*/
#include "sqlite3ext.h"
SQLITE_EXTENSION_INIT1
/*
** A macro to hint to the compiler that a function should not be
** inlined.
*/
#if defined(__GNUC__)
# define CSV_NOINLINE __attribute__((noinline))
#elif defined(_MSC_VER) && _MSC_VER>=1310
# define CSV_NOINLINE __declspec(noinline)
#else
# define CSV_NOINLINE
#endif
#include <stdio.h> /* because of printf( ) for verbosity in testing... */
#include <klib/num-gen.h>
#include <klib/namelist.h>
#include <klib/vector.h>
#include <klib/text.h>
#include <klib/printf.h>
#include <kdb/manager.h> /* because path-types are defined there! */
#include <vdb/manager.h>
#include <vdb/database.h>
#include <vdb/table.h>
#include <vdb/cursor.h>
#include <vdb/schema.h>
#include <kfc/xcdefs.h>
#include <kfc/except.h>
#include <kfc/ctx.h>
#include <kfc/rsrc.h>
#include "ngs/ncbi/ngs/NGS_ReadCollection.h"
#include "ngs/ncbi/ngs/NGS_Read.h"
#include "ngs/ncbi/ngs/NGS_Alignment.h"
#include "ngs/ncbi/ngs/NGS_ReadGroup.h"
#include "ngs/ncbi/ngs/NGS_Reference.h"
#include "ngs/ncbi/ngs/NGS_Pileup.h"
#include "ngs/ncbi/ngs/NGS_PileupEvent.h"
#include "ngs/ncbi/ngs/NGS_String.h"
/* -------------------------------------------------------------------------------------- */
static rc_t VNamelist_from_KNamelist( VNamelist ** dst, const KNamelist * src )
{
rc_t rc = VNamelistMake( dst, 5 );
if ( rc == 0 )
{
uint32_t idx, count;
rc = KNamelistCount( src, &count );
for ( idx = 0; rc == 0 && idx < count; ++idx )
{
const char * s = NULL;
rc = KNamelistGet( src, idx, &s );
if ( rc == 0 && s != NULL )
rc = VNamelistAppend( *dst, s );
}
}
return rc;
}
/* -------------------------------------------------------------------------------------- */
typedef struct column_description
{
const char * typecast;
const char * name;
} column_description;
static void CC destroy_column_description( void * item, void * data )
{
if ( item != NULL )
{
column_description * desc = item;
if ( desc->typecast != NULL ) free( ( void * )desc->typecast );
if ( desc->name != NULL ) free( ( void * )desc->name );
free( desc );
}
}
static column_description * make_column_description( const char * decl )
{
column_description * res = malloc( sizeof( * res ) );
if ( res != NULL )
{
rc_t rc = 0;
VNamelist * l;
memset( res, 0, sizeof( *res ) );
rc = VNamelistFromStr( &l, decl, ')' );
if ( rc == 0 )
{
uint32_t count;
rc = VNameListCount( l, &count );
if ( rc == 0 )
{
const char * s;
if ( count == 1 )
{
rc = VNameListGet( l, 0, &s );
if ( rc == 0 )
res->name = string_dup( s, string_size( s ) );
}
else if ( count == 2 )
{
rc = VNameListGet( l, 0, &s );
if ( rc == 0 )
{
if ( s[ 0 ] == '(' )
{
const char * src = &s[ 1 ];
res->typecast = string_dup( src, string_size( src ) );
}
else
res->typecast = string_dup( s, string_size( s ) );
rc = VNameListGet( l, 1, &s );
if ( rc == 0 )
res->name = string_dup( s, string_size( s ) );
}
}
else
rc = -1;
}
VNamelistRelease( l );
}
if ( rc != 0 || res->name == NULL )
{
destroy_column_description( res, NULL );
res = NULL;
}
}
return res;
}
static column_description * copy_column_description( const column_description * src )
{
column_description * res = malloc( sizeof( * res ) );
if ( res != NULL )
{
memset( res, 0, sizeof( *res ) );
res->name = string_dup( src->name, string_size( src->name ) );
if ( src->typecast != NULL )
res->typecast = string_dup( src->typecast, string_size( src->typecast ) );
}
return res;
}
/* -------------------------------------------------------------------------------------- */
typedef struct column_instance
{
const column_description * desc;
uint32_t vdb_cursor_idx;
VTypedecl vtype;
VTypedesc vdesc;
int64_t first;
uint64_t count;
} column_instance;
static void CC destroy_column_instance( void * item, void * data )
{
if ( item != NULL )
{
column_instance * inst = item;
destroy_column_description( ( column_description * )inst->desc, NULL );
sqlite3_free( inst );
}
}
static column_instance * make_column_instance( const column_description * desc, const VCursor * curs )
{
column_instance * res = sqlite3_malloc( sizeof( * res ) );
if ( res != NULL )
{
rc_t rc = 0;
memset( res, 0, sizeof( *res ) );
res->desc = copy_column_description( desc );
if ( desc->typecast != NULL )
rc = VCursorAddColumn( curs, &res->vdb_cursor_idx, "(%s)%s", desc->typecast, desc->name );
else
rc = VCursorAddColumn( curs, &res->vdb_cursor_idx, "%s", desc->name );
if ( rc != 0 )
{
sqlite3_free( res );
res = NULL;
}
}
return res;
}
static rc_t column_instance_post_open( column_instance * inst, const VCursor * curs )
{
rc_t rc = VCursorDatatype( curs, inst->vdb_cursor_idx, &inst->vtype, &inst->vdesc );
if ( rc == 0 )
rc = VCursorIdRange( curs, inst->vdb_cursor_idx, &inst->first, &inst->count );
return rc;
}
static char * print_bool_vector( const uint8_t * base, uint32_t count )
{
size_t l = count * 4;
char * res = sqlite3_malloc( l );
if ( res != NULL )
{
uint32_t idx;
rc_t rc = 0;
char * dst = res;
for ( idx = 0; rc == 0 && idx < count; ++idx )
{
size_t num_writ;
uint8_t v = base[ idx ] > 0 ? 1 : 0;
if ( idx == 0 )
rc = string_printf( dst, l, &num_writ, "%d", v );
else
rc = string_printf( dst, l, &num_writ, ", %d", v );
l -= num_writ;
dst += num_writ;
}
if ( rc == 0 )
*dst = 0;
else
{
sqlite3_free( res );
res = NULL;
}
}
return res;
}
/* we are printing booleans ( booleans are always 8 bit )*/
static void col_inst_bool( column_instance * inst, const VCursor * curs, sqlite3_context * ctx, int64_t row_id )
{
uint32_t elem_bits, boff, row_len;
const void * base;
rc_t rc = VCursorCellDataDirect( curs, row_id, inst->vdb_cursor_idx, &elem_bits, &base, &boff, &row_len );
if ( rc == 0 && row_len > 0 )
{
if ( row_len == 1 )
{
switch( elem_bits )
{
case 8 : sqlite3_result_int( ctx, *( ( uint8_t * )base ) ); break;
case 16 : sqlite3_result_int( ctx, *( ( uint16_t * )base ) ); break;
case 32 : sqlite3_result_int( ctx, *( ( uint32_t * )base ) ); break;
case 64 : sqlite3_result_int64( ctx, *( ( uint64_t * )base ) ); break;
default : sqlite3_result_int( ctx, *( ( uint8_t * )base ) ); break;
}
}
else
{
/* make a transient text from it ( booleans are always 8 bit ) */
char * txt = print_bool_vector( base, row_len );
if ( txt != NULL )
{
sqlite3_result_text( ctx, txt, -1, SQLITE_TRANSIENT );
sqlite3_free( txt );
}
else
sqlite3_result_null( ctx );
}
}
else
sqlite3_result_null( ctx );
}
#define PRINT_VECTOR( T, factor, fmt1, fmt2 ) \
static char * print_##T##_vec( const T * base, uint32_t count ) \
{ \
size_t l = ( count * factor ) + 10; \
char * res = sqlite3_malloc( l ); \
if ( res != NULL ) \
{ \
uint32_t idx; \
rc_t rc = 0; \
char * dst = res; \
dst[ 0 ] = '{' ; \
dst[ 1 ] = '"' ; \
dst[ 2 ] = 'a' ; \
dst[ 3 ] = '"' ; \
dst[ 4 ] = ':' ; \
dst[ 5 ] = '[' ; \
dst += 6; \
for ( idx = 0; rc == 0 && idx < count; ++idx ) \
{ \
size_t num_writ; \
if ( idx == 0 ) \
rc = string_printf( dst, l, &num_writ, fmt1, base[ idx ] ); \
else \
rc = string_printf( dst, l, &num_writ, fmt2, base[ idx ] ); \
l -= num_writ; \
dst += num_writ; \
} \
if ( rc == 0 ) \
{ \
*dst = ']'; \
dst += 1; \
*dst = '}'; \
dst += 1; \
*dst = 0; \
} \
else \
{ \
sqlite3_free( res ); \
res = NULL; \
} \
} \
return res; \
} \
PRINT_VECTOR( uint8_t, 5, "%u", ", %u" )
/* static char * print_uint8_t_vec( const uint8_t * base, uint32_t count ) */
PRINT_VECTOR( uint16_t, 7, "%u", ", %u" )
/* static char * print_uint16_t_ve( const uint16_t * base, uint32_t count ) */
PRINT_VECTOR( uint32_t, 12, "%u", ", %u" )
/* static char * print_uint32_t_ve( const uint32_t * base, uint32_t count ) */
PRINT_VECTOR( uint64_t, 22, "%lu", ", %lu" )
/* static char * print_uint64_t_ve( const uint64_t * base, uint32_t count ) */
/* we are printing unsigned integers */
static void col_inst_Uint( column_instance * inst, const VCursor * curs, sqlite3_context * ctx, int64_t row_id )
{
uint32_t elem_bits, boff, row_len;
const void * base;
rc_t rc = VCursorCellDataDirect( curs, row_id, inst->vdb_cursor_idx, &elem_bits, &base, &boff, &row_len );
if ( rc == 0 && row_len > 0 )
{
if ( row_len == 1 )
{
switch( elem_bits )
{
case 8 : sqlite3_result_int( ctx, *( ( uint8_t * )base ) ); break;
case 16 : sqlite3_result_int( ctx, *( ( uint16_t * )base ) ); break;
case 32 : sqlite3_result_int( ctx, *( ( uint32_t * )base ) ); break;
case 64 : sqlite3_result_int64( ctx, *( ( uint64_t * )base ) ); break;
default : sqlite3_result_int( ctx, *( ( uint8_t * )base ) ); break;
}
}
else
{
char * txt = NULL;
switch( elem_bits )
{
case 8 : txt = print_uint8_t_vec( base, row_len ); break;
case 16 : txt = print_uint16_t_vec( base, row_len ); break;
case 32 : txt = print_uint32_t_vec( base, row_len ); break;
case 64 : txt = print_uint64_t_vec( base, row_len ); break;
}
if ( txt != NULL )
{
sqlite3_result_text( ctx, txt, -1, SQLITE_TRANSIENT );
sqlite3_free( txt );
}
else
sqlite3_result_null( ctx );
}
}
else
sqlite3_result_null( ctx );
}
PRINT_VECTOR( int8_t, 6, "%d", ", %d" )
/* static char * print_int8_t_vec( const int8_t * base, uint32_t count ) */
PRINT_VECTOR( int16_t, 8, "%d", ", %d" )
/* static char * print_int16_t_vec( const int16_t * base, uint32_t count ) */
PRINT_VECTOR( int32_t, 13, "%d", ", %d" )
/* static char * print_int32_t_vec( const int32_t * base, uint32_t count ) */
PRINT_VECTOR( int64_t, 23, "%ld", ", %ld" )
/* static char * print_int64_t_vec( const int64_t * base, uint32_t count ) */
/* we are printing signed integers */
static void col_inst_Int( column_instance * inst, const VCursor * curs, sqlite3_context * ctx, int64_t row_id )
{
uint32_t elem_bits, boff, row_len;
const void * base;
rc_t rc = VCursorCellDataDirect( curs, row_id, inst->vdb_cursor_idx, &elem_bits, &base, &boff, &row_len );
if ( rc == 0 && row_len > 0 )
{
if ( row_len == 1 )
{
switch( elem_bits )
{
case 8 : sqlite3_result_int( ctx, *( ( int8_t * )base ) ); break;
case 16 : sqlite3_result_int( ctx, *( ( int16_t * )base ) ); break;
case 32 : sqlite3_result_int( ctx, *( ( int32_t * )base ) ); break;
case 64 : sqlite3_result_int64( ctx, *( ( int64_t * )base ) ); break;
default : sqlite3_result_int( ctx, *( ( int8_t * )base ) ); break;
}
}
else
{
char * txt = NULL;
switch( elem_bits )
{
case 8 : txt = print_int8_t_vec( base, row_len ); break;
case 16 : txt = print_int16_t_vec( base, row_len ); break;
case 32 : txt = print_int32_t_vec( base, row_len ); break;
case 64 : txt = print_int64_t_vec( base, row_len ); break;
}
if ( txt != NULL )
{
sqlite3_result_text( ctx, txt, -1, SQLITE_TRANSIENT );
sqlite3_free( txt );
}
else
sqlite3_result_null( ctx );
}
}
else
sqlite3_result_null( ctx );
}
#define MAX_CHARS_FOR_DOUBLE 26
#define BITSIZE_OF_FLOAT ( sizeof(float) * 8 )
#define BITSIZE_OF_DOUBLE ( sizeof(double) * 8 )
PRINT_VECTOR( float, MAX_CHARS_FOR_DOUBLE, "%f", ", %f" )
/* static char * print_float_vec( const float * base, uint32_t count ) */
PRINT_VECTOR( double, MAX_CHARS_FOR_DOUBLE, "%f", ", %f" )
/* static char * print_double_vec( const double * base, uint32_t count ) */
/* we are printing signed floats */
static void col_inst_Float( column_instance * inst, const VCursor * curs, sqlite3_context * ctx, int64_t row_id )
{
uint32_t elem_bits, boff, row_len;
const void * base;
rc_t rc = VCursorCellDataDirect( curs, row_id, inst->vdb_cursor_idx, &elem_bits, &base, &boff, &row_len );
if ( rc == 0 && row_len > 0 )
{
if ( row_len == 1 )
{
if ( elem_bits == BITSIZE_OF_FLOAT )
{
const double v = *( ( const float * )base );
sqlite3_result_double( ctx, v );
}
else if ( elem_bits == BITSIZE_OF_DOUBLE )
sqlite3_result_double( ctx, *( ( const double * )base ) );
else
sqlite3_result_null( ctx );
}
else
{
char * txt = NULL;
if ( elem_bits == BITSIZE_OF_FLOAT )
txt = print_float_vec( base, row_len );
else if ( elem_bits == BITSIZE_OF_DOUBLE )
txt = print_double_vec( base, row_len );
if ( txt != NULL )
{
sqlite3_result_text( ctx, txt, -1, SQLITE_TRANSIENT );
sqlite3_free( txt );
}
else
sqlite3_result_null( ctx );
}
}
else
sqlite3_result_null( ctx );
}
#undef PRINT_VECTOR
/* we are printing text */
static void col_inst_Ascii( column_instance * inst, const VCursor * curs, sqlite3_context * ctx, int64_t row_id )
{
uint32_t elem_bits, boff, row_len;
const void * base;
rc_t rc = VCursorCellDataDirect( curs, row_id, inst->vdb_cursor_idx, &elem_bits, &base, &boff, &row_len );
if ( rc == 0 && row_len > 0 )
sqlite3_result_text( ctx, (char *)base, row_len, SQLITE_TRANSIENT );
else
sqlite3_result_null( ctx );
}
static void col_inst_cell( column_instance * inst, const VCursor * curs, sqlite3_context * ctx, int64_t row_id )
{
switch( inst->vdesc.domain )
{
case vtdBool : col_inst_bool( inst, curs, ctx, row_id ); break;
case vtdUint : col_inst_Uint( inst, curs, ctx, row_id ); break;
case vtdInt : col_inst_Int( inst, curs, ctx, row_id ); break;
case vtdFloat : col_inst_Float( inst, curs, ctx, row_id ); break;
case vtdAscii :
case vtdUnicode : col_inst_Ascii( inst, curs, ctx, row_id ); break;
default : sqlite3_result_null( ctx );
}
}
/* -------------------------------------------------------------------------------------- */
static bool init_col_desc_list( Vector * dst, const String * decl )
{
VNamelist * l;
VectorInit( dst, 0, 10 );
rc_t rc = VNamelistFromString( &l, decl, ';' );
if ( rc == 0 )
{
uint32_t count, idx;
rc = VNameListCount( l, &count );
if ( rc == 0 )
{
const char * s;
for ( idx = 0; rc == 0 && idx < count; ++idx )
{
rc = VNameListGet( l, idx, &s );
if ( rc == 0 )
{
column_description * desc = make_column_description( s );
if ( desc != NULL )
{
rc = VectorAppend( dst, NULL, desc );
if ( rc != 0 )
destroy_column_description( desc, NULL );
}
}
}
}
VNamelistRelease( l );
}
return ( rc == 0 );
}
static void print_col_desc_list( const Vector * desc_list )
{
if ( desc_list != NULL )
{
uint32_t idx, count;
for ( idx = 0, count = VectorLength( desc_list ); idx < count; ++idx )
{
column_description * desc = VectorGet( desc_list, idx );
if ( desc != NULL )
{
if ( desc->typecast != NULL )
{
if ( idx == 0 )
printf( "(%s)%s", desc->typecast, desc->name );
else
printf( ";(%s)%s", desc->typecast, desc->name );
}
else
{
if ( idx == 0 )
printf( "%s", desc->name );
else
printf( ";%s", desc->name );
}
}
}
}
}
static char * make_vdb_create_table_stm( const Vector * desc_list, const char * tbl_name )
{
char * res = NULL;
if ( desc_list != NULL && tbl_name != NULL )
{
res = sqlite3_mprintf( "CREATE TABLE %s ( ", tbl_name );
if ( res != NULL )
{
uint32_t idx, count;
for ( idx = 0, count = VectorLength( desc_list ); idx < count; ++idx )
{
column_description * desc = VectorGet( desc_list, idx );
if ( desc != NULL )
{
/* sqlite3-special-behavior: %z means free the ptr after inserting into result */
if ( idx == 0 )
res = sqlite3_mprintf( "%z%s", res, desc->name );
else
res = sqlite3_mprintf( "%z, %s ", res, desc->name );
}
}
/* sqlite3-special-behavior: %z means free the ptr after inserting into result */
res = sqlite3_mprintf( "%z );", res );
}
}
return res;
}
static rc_t col_desc_list_check( Vector * desc_list, const VNamelist * available, const VNamelist * exclude )
{
rc_t rc = -1;
if ( desc_list != NULL && available != NULL )
{
uint32_t idx, count = VectorLength( desc_list );
if ( count == 0 )
{
/* the user DID NOT give us a list of columns to use
--> just use all available one's ( exclude the excluded one's ) */
rc = VNameListCount( available, &count );
for ( idx = 0; idx < count && rc == 0; ++idx )
{
const char * s = NULL;
rc = VNameListGet( available, idx, &s );
if ( rc == 0 && s != NULL )
{
bool excluded = false;
if ( exclude != NULL )
{
int32_t idx;
if ( 0 == VNamelistContainsStr( exclude, s, &idx ) )
excluded = ( idx >= 0 );
}
if ( !excluded )
{
column_description * desc = make_column_description( s );
if ( desc != NULL )
{
rc = VectorAppend( desc_list, NULL, desc );
if ( rc != 0 )
destroy_column_description( desc, NULL );
}
}
}
}
}
else
{
/* the user DID give us a list of columns to use --> check if they are available */
uint32_t not_found = 0;
for ( idx = 0; idx < count; ++idx )
{
column_description * desc = VectorGet( desc_list, idx );
if ( desc != NULL )
{
if ( desc->name != NULL )
{
uint32_t found;
if ( VNamelistIndexOf( ( VNamelist * )available, desc->name, &found ) != 0 )
not_found++;
}
}
}
if ( not_found == 0 ) rc = 0;
}
}
return rc;
}
static rc_t col_desc_list_make_instances( const Vector * desc_list, Vector * dst, const VCursor * curs )
{
rc_t rc = 0;
uint32_t count, idx;
for ( idx = 0, count = VectorLength( desc_list ); rc == 0 && idx < count; ++idx )
{
column_description * desc = VectorGet( desc_list, idx );
if ( desc != NULL )
{
column_instance * inst = make_column_instance( desc, curs );
if ( inst != NULL )
rc = VectorAppend( dst, NULL, inst );
else
rc = -1;
}
else
rc = -1;
}
return rc;
}
/* -------------------------------------------------------------------------------------- */
/* this adds columns to the cursor, opens the cursor, takes a second round to extract types and row-ranges */
static rc_t init_col_inst_list( Vector * dst, const Vector * desc_list, const VCursor * curs )
{
rc_t rc = 0;
VectorInit( dst, 0, VectorLength( desc_list ) );
rc = col_desc_list_make_instances( desc_list, dst, curs );
if ( rc == 0 )
{
rc = VCursorOpen( curs );
if ( rc == 0 )
{
uint32_t count, idx;
for ( idx = 0, count = VectorLength( dst ); rc == 0 && idx < count; ++idx )
{
column_instance * inst = VectorGet( dst, idx );
if ( inst != NULL )
rc = column_instance_post_open( inst, curs );
else
rc = -1;
}
}
}
return rc;
}
static void col_inst_list_get_row_range( const Vector * inst_list, int64_t * first, uint64_t * count )
{
uint32_t v_count, v_idx;
for ( v_idx = 0, v_count = VectorLength( inst_list ); v_idx < v_count; ++v_idx )
{
column_instance * inst = VectorGet( inst_list, v_idx );
if ( inst != NULL )
{
if ( inst->first < *first ) *first = inst->first;
if ( inst->count > *count ) *count = inst->count;
}
}
}
/* produce output for a cell */
static void col_inst_list_cell( const Vector * inst_list, const VCursor * curs,
sqlite3_context * ctx, int column_id, int64_t row_id )
{
column_instance * inst = VectorGet( inst_list, column_id );
if ( inst != NULL )
col_inst_cell( inst, curs, ctx, row_id );
else
sqlite3_result_null( ctx );
}
/* -------------------------------------------------------------------------------------- */
typedef struct vdb_obj_desc
{
const char * accession;
const char * table_name;
const char * row_range_str;
struct num_gen * row_range;
Vector column_descriptions;
VNamelist * excluded_columns;
size_t cache_size;
int verbosity;
} vdb_obj_desc;
static void release_vdb_obj_desc( vdb_obj_desc * self )
{
if ( self->accession != NULL ) sqlite3_free( ( void * )self->accession );
if ( self->table_name != NULL ) sqlite3_free( ( void * )self->table_name );
if ( self->row_range_str != NULL ) sqlite3_free( ( void * )self->row_range_str );
if ( self->row_range != NULL ) num_gen_destroy( self->row_range );
VectorWhack( &self->column_descriptions, destroy_column_description, NULL );
if ( self->excluded_columns != NULL ) VNamelistRelease( self->excluded_columns );
}
static void vdb_obj_desc_print( vdb_obj_desc * self )
{
printf( "---accession = %s\n", self->accession != NULL ? self->accession : "None" );
printf( "---cache-size = %lu\n", self->cache_size );
printf( "---table = %s\n", self->table_name != NULL ? self->table_name : "None" );
printf( "---rows = %s\n", self->row_range_str != NULL ? self->row_range_str : "None" );
printf( "---columns = " ); print_col_desc_list( &self->column_descriptions ); printf( "\n" );
}
static void trim_ws( String * S )
{
while( S->addr[ 0 ] == ' ' || S->addr[ 0 ] == '\t' )
{
S->addr++;
S->len--;
S->size--;
}
while( S->len > 0 && ( S->addr[ S->len - 1 ] == ' ' || S->addr[ S->len - 1 ] == '\t' ) )
{
S->len--;
S->size--;
}
}
static bool is_equal( const String * S, const char * s1, const char * s2 )
{
String S_template;
StringInitCString( &S_template, s1 );
if ( StringCaseEqual( &S_template, S ) )
return true;
if ( s2 != NULL )
{
StringInitCString( &S_template, s2 );
return StringCaseEqual( &S_template, S );
}
return false;
}
static void vdb_obj_desc_parse_arg2( vdb_obj_desc * self, const char * name, const char * value )
{
String S_name, S_value;
bool done = false;
StringInitCString( &S_name, name );
trim_ws( &S_name );
StringInitCString( &S_value, value );
trim_ws( &S_value );
if ( is_equal( &S_name, "acc", "A" ) )
{
self->accession = sqlite3_mprintf( "%.*s", S_value.len, S_value.addr );
done = true;
}
if ( !done && is_equal( &S_name, "table", "T" ) )
{
self->table_name = sqlite3_mprintf( "%.*s", S_value.len, S_value.addr );
done = true;
}
if ( !done && is_equal( &S_name, "columns", "C" ) )
done = init_col_desc_list( &self->column_descriptions, &S_value );
if ( !done && is_equal( &S_name, "exclude", "X" ) )
done = ( 0 == VNamelistFromString( &self->excluded_columns, &S_value, ';' ) );
if ( !done && is_equal( &S_name, "rows", "R" ) )
{
self->row_range_str = sqlite3_mprintf( "%.*s", S_value.len, S_value.addr );
done = ( 0 == num_gen_parse( self->row_range, self->row_range_str ) );
}
if ( !done && is_equal( &S_name, "verbose", "v" ) )
{
self->verbosity = StringToU64( &S_value, NULL );
done = true;
}
if ( !done && is_equal( &S_name, "cache", NULL ) )
{
self->cache_size = StringToU64( &S_value, NULL );
done = true;
}
if ( !done )
printf( "unknown argument '%.*s' = '%.*s'\n", S_name.len, S_name.addr, S_value.len, S_value.addr );
}
static rc_t init_vdb_obj_desc( vdb_obj_desc * self, int argc, const char * const * argv )
{
rc_t rc = -1;
num_gen_make( &self->row_range );
if ( argc > 3 )
{
int i;
for ( i = 3; i < argc; i++ )
{
VNamelist * parts;
rc = VNamelistFromStr( &parts, argv[ i ], '=' );
if ( rc == 0 )
{
uint32_t count;
rc = VNameListCount( parts, &count );
if ( rc == 0 && count > 0 )
{
const char * arg_name = NULL;
rc = VNameListGet( parts, 0, &arg_name );
if ( rc == 0 && arg_name != NULL )
{
if ( count > 1 )
{
const char * arg_value = NULL;
rc = VNameListGet( parts, 1, &arg_value );
if ( rc == 0 && arg_value != NULL )
vdb_obj_desc_parse_arg2( self, arg_name, arg_value );
}
else
{
if ( self->accession == NULL )
self->accession = sqlite3_mprintf( "%s", arg_name );
}
}
}
VNamelistRelease( parts );
if ( self->cache_size == 0 )
self->cache_size = 1024 * 1024 * 32;
}
}
}
if ( self->verbosity > 0 )
vdb_obj_desc_print( self );
return rc;
}
/* -------------------------------------------------------------------------------------- */
typedef struct vdb_cursor
{
sqlite3_vtab cursor; /* Base class. Must be first */
const struct num_gen_iter * row_iter;
vdb_obj_desc * desc; /* cursor does not own this! */
Vector column_instances;
const VCursor * curs;
int64_t current_row;
bool eof;
} vdb_cursor;
/* destroy the cursor, ---> release the VDB_Cursor */
static int destroy_vdb_cursor( vdb_cursor * c )
{
if ( c->desc->verbosity > 1 )
printf( "---sqlite3_vdb_Close()\n" );
if ( c->row_iter != NULL ) num_gen_iterator_destroy( c->row_iter );
VectorWhack( &c->column_instances, destroy_column_instance, NULL );
if ( c->curs != NULL ) VCursorRelease( c->curs );
sqlite3_free( c );
return SQLITE_OK;
}
/* create a cursor from the obj-description ( mostly it's columns ) */
static vdb_cursor * make_vdb_cursor( vdb_obj_desc * desc, const VTable * tbl )
{
vdb_cursor * res = sqlite3_malloc( sizeof( * res ) );
if ( res != NULL )
{
rc_t rc;
memset( res, 0, sizeof( *res ) );
res->desc = desc;
/* we first have to make column-instances, before we can adjust the row-ranges */
rc = VTableCreateCachedCursorRead( tbl, &res->curs, desc->cache_size );
if ( rc == 0 )
{
/* this adds the columns to the cursor, opens the cursor, gets types, extracts row-range */
rc = init_col_inst_list( &res->column_instances, &desc->column_descriptions, res->curs );
}
if ( rc == 0 )
{
int64_t first = 0x7FFFFFFFFFFFFFFF;
uint64_t count = 0;
col_inst_list_get_row_range( &res->column_instances, &first, &count );
if ( first == 0x7FFFFFFFFFFFFFFF )
first = 0;
if ( num_gen_empty( desc->row_range ) )
rc = num_gen_add( desc->row_range, first, count );
else
rc = num_gen_trim( desc->row_range, first, count );
}
if ( rc == 0 )
{
rc = num_gen_iterator_make( desc->row_range, &res->row_iter );
if ( rc == 0 )
res->eof = !num_gen_iterator_next( res->row_iter, &res->current_row, NULL );
else
res->eof = true;
}
if ( res->eof )
rc = -1;
if ( rc != 0 )
{
destroy_vdb_cursor( res );
res = NULL;
}
}
return res;
}
/* advance to the next row ---> num_gen_iterator_next() */
static int vdb_cursor_next( vdb_cursor * c )
{
if ( c->desc->verbosity > 2 )
printf( "---sqlite3_vdb_Next()\n" );
c->eof = !num_gen_iterator_next( c->row_iter, &c->current_row, NULL );
return SQLITE_OK;
}
/* are we done? ---> inspect c->eof */
static int vdb_cursor_eof( vdb_cursor * c )
{
if ( c->desc->verbosity > 2 )
printf( "---sqlite3_vdb_Eof()\n" );
if ( c->eof )
return SQLITE_ERROR; /* anything else than SQLITE_OK means EOF */
return SQLITE_OK;
}
/* print a column ---> get a cell from vdb and translate it into text */
static int vdb_cursor_column( vdb_cursor * c, sqlite3_context * ctx, int column_id )
{
if ( c->desc->verbosity > 2 )
printf( "---sqlite3_vdb_Column( %d )\n", column_id );
col_inst_list_cell( &c->column_instances, c->curs, ctx, column_id, c->current_row );
return SQLITE_OK;
}
/* return the current row-id ---> return c->current_row */
static int vdb_cursor_row_id( vdb_cursor * c, sqlite_int64 * pRowid )
{
if ( c->desc->verbosity > 2 )
printf( "---sqlite3_vdb_Rowid()\n" );
if ( pRowid != NULL )
*pRowid = c->current_row;
return SQLITE_OK;
}
/* -------------------------------------------------------------------------------------- */
/* this object has to be made on the heap,
it is passed back ( typecasted ) to the sqlite-library in sqlite3_vdb_[ Create / Connect ] */
typedef struct vdb_obj
{
sqlite3_vtab base; /* Base class. Must be first */
const VDBManager * mgr; /* the vdb-manager */
const VDatabase *db; /* the database to be used */
const VTable *tbl; /* the table to be used */
vdb_obj_desc desc; /* description of the object to be iterated over */
} vdb_obj;
/* destroy the whole connection database, table, manager etc. */
static int destroy_vdb_obj( vdb_obj * self )
{
if ( self->desc.verbosity > 1 )
printf( "---sqlite3_vdb_Disconnect()\n" );
if ( self->mgr != NULL ) VDBManagerRelease( self->mgr );
if ( self->tbl != NULL ) VTableRelease( self->tbl );
if ( self->db != NULL ) VDatabaseRelease( self->db );
release_vdb_obj_desc( &self->desc );
sqlite3_free( self );
return SQLITE_OK;
}
/* check if all requested columns are available */
static rc_t vdb_obj_common_table_handler( vdb_obj * self )
{
struct KNamelist * readable_columns;
rc_t rc = VTableListReadableColumns( self->tbl, &readable_columns );
if ( rc == 0 )
{
VNamelist * available;
rc = VNamelist_from_KNamelist( &available, readable_columns );
if ( rc == 0 )
{
rc = col_desc_list_check( &self->desc.column_descriptions, available, self->desc.excluded_columns );
VNamelistRelease( available );
}
KNamelistRelease( readable_columns );
}
return rc;
}
static rc_t vdb_obj_get_table_names( const VDatabase * db, VNamelist ** list )
{
rc_t rc = VNamelistMake( list, 5 );
if ( rc == 0 )
{
KNamelist * names;
rc_t rc1 = VDatabaseListTbl( db, &names );
if ( rc1 == 0 )
{
uint32_t idx, count;
rc1 = KNamelistCount( names, &count );
for ( idx = 0; rc1 == 0 && idx < count; ++idx )
{
const char * s = NULL;
rc1 = KNamelistGet( names, idx, &s );
if ( rc1 == 0 && s != NULL )
rc1 = VNamelistAppend( *list, s );
}
KNamelistRelease( names );
}
}
return rc;
}
static rc_t vdb_obj_open_db_without_table_name( vdb_obj * self )
{
VNamelist * list;
rc_t rc = vdb_obj_get_table_names( self->db, &list );
if ( rc == 0 )
{
int32_t idx;
rc = VNamelistContainsStr( list, "SEQUENCE", &idx );
if ( rc == 0 && idx >= 0 )
{
/* we have a SEQUENCE-table */
rc = VDatabaseOpenTableRead( self->db, &self->tbl, "SEQUENCE" );
if ( rc == 0 )
self->desc.table_name = sqlite3_mprintf( "SEQUENCE" );
}
else
{
/* we pick the first one */
const char * s = NULL;
rc = VNameListGet( list, 0, &s );
if ( rc == 0 )
{
self->desc.table_name = sqlite3_mprintf( "%s", s );
rc = VDatabaseOpenTableRead( self->db, &self->tbl, "%s", self->desc.table_name );
}
}
VNamelistRelease( list );
}
return rc;
}
static bool list_contains_value_starting_with( const VNamelist * list, const String * value, String * found )
{
bool res = false;
uint32_t i, count;
rc_t rc = VNameListCount( list, &count );
for ( i = 0; i < count && rc == 0 && !res; ++i )
{
const char *s = NULL;
rc = VNameListGet( list, i, &s );
if ( rc == 0 && s != NULL )
{
String item;
StringInitCString( &item, s );
if ( value->len <= item.len )
{
item.len = value->len;
item.size = value->size;
res = ( StringCompare ( &item, value ) == 0 );
if ( res )
StringInitCString( found, s );
}
}
}
return res;
}
static rc_t vdb_obj_open_db_with_mismatched_table_name( vdb_obj * self )
{
VNamelist * list;
rc_t rc = vdb_obj_get_table_names( self->db, &list );
if ( rc == 0 )
{
String to_look_for, found;
StringInitCString( &to_look_for, self->desc.table_name );
if ( list_contains_value_starting_with( list, &to_look_for, &found ) )
{
self->desc.table_name = sqlite3_mprintf( "%.*s", found.len, found.addr );
rc = VDatabaseOpenTableRead( self->db, &self->tbl, "%s", self->desc.table_name );
}
else
rc = RC( rcApp, rcArgv, rcAccessing, rcSelf, rcInvalid );
VNamelistRelease( list );
}
return rc;
}
/* the requested object is a database */
static rc_t vdb_obj_open_db( vdb_obj * self )
{
rc_t rc = VDBManagerOpenDBRead( self->mgr, &self->db, NULL, "%s", self->desc.accession );
if ( rc == 0 )
{
if ( self->desc.table_name == NULL )
rc = vdb_obj_open_db_without_table_name( self );
else
{
/* if the table-name does not fit, see if it is a shortened version of the existing ones... */
rc = VDatabaseOpenTableRead( self->db, &self->tbl, "%s", self->desc.table_name );
if ( rc != 0 )
rc = vdb_obj_open_db_with_mismatched_table_name( self );
}
if ( rc == 0 )
rc = vdb_obj_common_table_handler( self );
}
return rc;
}
/* the requested object is a table */
static rc_t vdb_obj_open_tbl( vdb_obj * self )
{
rc_t rc = VDBManagerOpenTableRead( self->mgr, &self->tbl, NULL, "%s", self->desc.accession );
if ( rc == 0 )
rc = vdb_obj_common_table_handler( self );
return rc;
}
/* make a database/table object, have a look if it exists, and has the columns we are asking for etc. */
static vdb_obj * make_vdb_obj( int argc, const char * const * argv )
{
vdb_obj * res = sqlite3_malloc( sizeof( * res ) );
if ( res != NULL )
{
memset( res, 0, sizeof( *res ) );
rc_t rc = init_vdb_obj_desc( &res->desc, argc, argv );
if ( rc == 0 )
{
rc = VDBManagerMakeRead( &( res->mgr ), NULL );
if ( rc == 0 )
{
/* types defined in <kdb/manager.h> !!! */
int pt = ( VDBManagerPathType( res->mgr, "%s", res->desc.accession ) & ~ kptAlias );
switch ( pt )
{
case kptDatabase : rc = vdb_obj_open_db( res ); break;
case kptTable :
case kptPrereleaseTbl : rc = vdb_obj_open_tbl( res ); break;
default : rc = -1; break;
}
}
if ( rc != 0 )
{
destroy_vdb_obj( res );
res = NULL;
}
}
}
return res;
}
/* take the database/table-obj and open a cursor on it */
static int vdb_obj_open( vdb_obj * self, sqlite3_vtab_cursor ** ppCursor )
{
if ( self->desc.verbosity > 1 )
printf( "---sqlite3_vdb_Open()\n" );
vdb_cursor * c = make_vdb_cursor( &self->desc, self->tbl );
if ( c != NULL )
{
*ppCursor = ( sqlite3_vtab_cursor * )c;
return SQLITE_OK;
}
return SQLITE_ERROR;
}
/* -------------------------------------------------------------------------------------- */
/* the common code for xxx_Create() and xxx_Connect */
static int sqlite3_vdb_CC( sqlite3 *db, void *pAux, int argc, const char * const * argv,
sqlite3_vtab **ppVtab, char **pzErr, const char * msg )
{
const char * stm;
vdb_obj * obj = make_vdb_obj( argc, argv );
if ( obj == NULL )
return SQLITE_ERROR;
*ppVtab = ( sqlite3_vtab * )obj;
if ( obj->desc.verbosity > 1 )
printf( "%s", msg );
stm = make_vdb_create_table_stm( &obj->desc.column_descriptions, "x" );
if ( obj->desc.verbosity > 1 )
printf( "stm = %s\n", stm );
return sqlite3_declare_vtab( db, stm );
}
/* -------------------------------------------------------------------------------------- */
/* create a new table-instance from scratch */
static int sqlite3_vdb_Create( sqlite3 *db, void *pAux, int argc, const char * const * argv,
sqlite3_vtab **ppVtab, char **pzErr )
{
return sqlite3_vdb_CC( db, pAux, argc, argv, ppVtab, pzErr, "---sqlite3_vdb_Create()\n" );
}
/* open a table-instance from something existing */
static int sqlite3_vdb_Connect( sqlite3 *db, void *pAux, int argc, const char * const * argv,
sqlite3_vtab **ppVtab, char **pzErr )
{
return sqlite3_vdb_CC( db, pAux, argc, argv, ppVtab, pzErr, "---sqlite3_vdb_Connect()\n" );
}
/* query what index can be used ---> maybe vdb supports that in the future */
static int sqlite3_vdb_BestIndex( sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo )
{
int res = SQLITE_ERROR;
if ( tab != NULL )
{
vdb_obj * self = ( vdb_obj * )tab;
if ( self->desc.verbosity > 2 )
printf( "---sqlite3_vdb_BestIndex()\n" );
if ( pIdxInfo != NULL )
pIdxInfo->estimatedCost = 1000000;
res = SQLITE_OK;
}
return res;
}
/* disconnect from a table */
static int sqlite3_vdb_Disconnect( sqlite3_vtab *tab )
{
if ( tab != NULL )
return destroy_vdb_obj( ( vdb_obj * )tab );
return SQLITE_ERROR;
}
/* open a cursor on a table */
static int sqlite3_vdb_Open( sqlite3_vtab *tab, sqlite3_vtab_cursor **ppCursor )
{
if ( tab != NULL )
return vdb_obj_open( ( vdb_obj * ) tab, ppCursor );
return SQLITE_ERROR;
}
/* close the cursor */
static int sqlite3_vdb_Close( sqlite3_vtab_cursor *cur )
{
if ( cur != NULL )
destroy_vdb_cursor( ( vdb_cursor * )cur );
return SQLITE_ERROR;
}
/* this is a NOOP, because we have no index ( yet ) */
static int sqlite3_vdb_Filter( sqlite3_vtab_cursor *cur, int idxNum, const char *idxStr,
int argc, sqlite3_value **argv )
{
if ( cur != NULL )
{
vdb_cursor * self = ( vdb_cursor * )cur;
if ( self->desc->verbosity > 2 )
printf( "---sqlite3_vdb_Filter()\n" );
return SQLITE_OK;
}
return SQLITE_ERROR;
}
/* advance to the next row */
static int sqlite3_vdb_Next( sqlite3_vtab_cursor *cur )
{
if ( cur != NULL )
return vdb_cursor_next( ( vdb_cursor * )cur );
return SQLITE_ERROR;
}
/* check if we are at the end */
static int sqlite3_vdb_Eof( sqlite3_vtab_cursor *cur )
{
if ( cur != NULL )
return vdb_cursor_eof( ( vdb_cursor * )cur );
return SQLITE_ERROR;
}
/* request data for a cell */
static int sqlite3_vdb_Column( sqlite3_vtab_cursor *cur, sqlite3_context * ctx, int column_id )
{
if ( cur != NULL )
return vdb_cursor_column( ( vdb_cursor * )cur, ctx, column_id );
return SQLITE_ERROR;
}
/* request row-id */
static int sqlite3_vdb_Rowid( sqlite3_vtab_cursor *cur, sqlite_int64 * pRowid )
{
if ( cur != NULL )
return vdb_cursor_row_id( ( vdb_cursor * )cur, pRowid );
return SQLITE_ERROR;
}
sqlite3_module VDB_Module =
{
0, /* iVersion */
sqlite3_vdb_Create, /* xCreate */
sqlite3_vdb_Connect, /* xConnect */
sqlite3_vdb_BestIndex, /* xBestIndex */
sqlite3_vdb_Disconnect, /* xDisconnect */
sqlite3_vdb_Disconnect, /* xDestroy */
sqlite3_vdb_Open, /* xOpen - open a cursor */
sqlite3_vdb_Close, /* xClose - close a cursor */
sqlite3_vdb_Filter, /* xFilter - configure scan constraints */
sqlite3_vdb_Next, /* xNext - advance a cursor */
sqlite3_vdb_Eof, /* xEof - check for end of scan */
sqlite3_vdb_Column, /* xColumn - read data */
sqlite3_vdb_Rowid, /* xRowid - read data */
NULL, /* xUpdate */
NULL, /* xBegin */
NULL, /* xSync */
NULL, /* xCommit */
NULL, /* xRollback */
NULL, /* xFindMethod */
NULL, /* xRename */
};
/* ========================================================================================================== */
#define NGS_STYLE_READS 1
#define NGS_STYLE_FRAGMENTS 2
#define NGS_STYLE_ALIGNMENTS 3
#define NGS_STYLE_PILEUP 4
#define NGS_STYLE_READGROUPS 5
#define NGS_STYLE_REFS 6
/* -------------------------------------------------------------------------------------- */
typedef struct ngs_obj_desc
{
const char * accession; /* the accession we are processing */
const char * style_string; /* READS, FRAGMENTS, ALIGNMENTS, PILEUP-EVENTS etc. */
const char * refname; /* if we want slicing... */
uint64_t first, count;
int style, verbosity;
bool prim, sec, full, partial, unaligned;
} ngs_obj_desc;
static void release_ngs_obj_desc( ngs_obj_desc * self )
{
if ( self->accession != NULL ) sqlite3_free( ( void * )self->accession );
if ( self->style_string != NULL ) sqlite3_free( ( void * )self->style_string );
if ( self->refname != NULL ) sqlite3_free( ( void * )self->refname );
}
static void ngs_obj_desc_print( ngs_obj_desc * self )
{
printf( "---accession = %s\n", self->accession != NULL ? self->accession : "None" );
printf( "---style = %s\n", self->style_string != NULL ? self->style_string : "None" );
printf( "---refname = %s\n", self->refname != NULL ? self->refname : "None" );
printf( "---prim = %s\n", self->prim ? "yes" : "no" );
printf( "---sec = %s\n", self->sec ? "yes" : "no" );
printf( "---full = %s\n", self->full ? "yes" : "no" );
printf( "---partial = %s\n", self->partial ? "yes" : "no" );
printf( "---unaligned = %s\n", self->unaligned ? "yes" : "no" );
}
static int ngs_obj_style_2_int( const char * style )
{
int res = 0;
String S;
StringInitCString( &S, style );
if ( is_equal( &S, "READS", "R" ) )
res = NGS_STYLE_READS;
else if ( is_equal( &S, "FRAGMENTS", "F" ) )
res = NGS_STYLE_FRAGMENTS;
else if ( is_equal( &S, "ALIGNMENTS", "A" ) )
res = NGS_STYLE_ALIGNMENTS;
else if ( is_equal( &S, "PILEUP", "P" ) )
res = NGS_STYLE_PILEUP;
else if ( is_equal( &S, "READGROUPS", "G" ) )
res = NGS_STYLE_READGROUPS;
else if ( is_equal( &S, "REFERENCES", "E" ) )
res = NGS_STYLE_REFS;
return res;
}
static void ngs_obj_desc_parse_arg1( ngs_obj_desc * self, const char * name )
{
String S_name;
bool done = false;
StringInitCString( &S_name, name );
trim_ws( &S_name );
if ( is_equal( &S_name, "prim", NULL ) )
{
self->prim = true;
done = true;
}
if ( !done && is_equal( &S_name, "sec", NULL ) )
{
self->sec = true;
done = true;
}
if ( !done && is_equal( &S_name, "full", NULL ) )
{
self->full = true;
done = true;
}
if ( !done && is_equal( &S_name, "partial", NULL ) )
{
self->partial = true;
done = true;
}
if ( !done && is_equal( &S_name, "unaligned", NULL ) )
{
self->unaligned = true;
done = true;
}
if ( !done )
printf( "unknown argument '%.*s'\n", S_name.len, S_name.addr );
}
static void ngs_obj_desc_parse_arg2( ngs_obj_desc * self, const char * name, const char * value )
{
String S_name, S_value;
bool done = false;
StringInitCString( &S_name, name );
trim_ws( &S_name );
StringInitCString( &S_value, value );
trim_ws( &S_value );
if ( is_equal( &S_name, "acc", "A" ) )
{
self->accession = sqlite3_mprintf( "%.*s", S_value.len, S_value.addr );
done = true;
}
if ( !done && is_equal( &S_name, "style", "S" ) )
{
self->style_string = sqlite3_mprintf( "%.*s", S_value.len, S_value.addr );
self->style = ngs_obj_style_2_int( self->style_string );
done = true;
}
if ( !done && is_equal( &S_name, "ref", "R" ) )
{
self->refname = sqlite3_mprintf( "%.*s", S_value.len, S_value.addr );
done = true;
}
if ( !done && is_equal( &S_name, "verbose", "v" ) )
{
self->verbosity = StringToU64( &S_value, NULL );
done = true;
}
if ( !done && is_equal( &S_name, "first", NULL ) )
{
self->first = StringToU64( &S_value, NULL );
done = true;
}
if ( !done && is_equal( &S_name, "count", NULL ) )
{
self->count = StringToU64( &S_value, NULL );
done = true;
}
if ( !done )
printf( "unknown argument '%.*s' = '%.*s'\n", S_name.len, S_name.addr, S_value.len, S_value.addr );
}
static rc_t init_ngs_obj_desc( ngs_obj_desc * self, int argc, const char * const * argv )
{
rc_t rc = -1;
if ( argc > 3 )
{
int i;
for ( i = 3; i < argc; i++ )
{
VNamelist * parts;
rc = VNamelistFromStr( &parts, argv[ i ], '=' );
if ( rc == 0 )
{
uint32_t count;
rc = VNameListCount( parts, &count );
if ( rc == 0 && count > 0 )
{
const char * arg_name = NULL;
rc = VNameListGet( parts, 0, &arg_name );
if ( rc == 0 && arg_name != NULL )
{
if ( count > 1 )
{
const char * arg_value = NULL;
rc = VNameListGet( parts, 1, &arg_value );
if ( rc == 0 && arg_value != NULL )
ngs_obj_desc_parse_arg2( self, arg_name, arg_value );
}
else
{
if ( self->accession == NULL )
self->accession = sqlite3_mprintf( "%s", arg_name );
else
ngs_obj_desc_parse_arg1( self, arg_name );
}
}
}
VNamelistRelease( parts );
}
}
}
if ( self->style == 0 )
self->style = NGS_STYLE_READS;
if ( !self->prim && !self->sec )
self->prim = true;
if ( !self->full && !self->partial && !self->unaligned )
{
self->full = true;
self->partial = true;
self->unaligned = true;
}
if ( self->verbosity > 0 )
ngs_obj_desc_print( self );
return rc;
}
static char * make_ngs_create_table_stm( const ngs_obj_desc * desc, const char * tbl_name )
{
char * res = sqlite3_mprintf( "CREATE TABLE %s (", tbl_name );
if ( res != NULL )
{
switch( desc->style )
{
case NGS_STYLE_READS : res = sqlite3_mprintf( "%z SEQ, QUAL, NAME, ID, GRP, CAT, NFRAGS );", res ); break;
case NGS_STYLE_FRAGMENTS : res = sqlite3_mprintf( "%z SEQ, QUAL, ID, PAIRED, ALIGNED );", res ); break;
case NGS_STYLE_ALIGNMENTS : res = sqlite3_mprintf( "%z SEQ, QUAL, ID, REFSPEC, MAPQ, RDFILTER, REFBASES, GRP, ALIG, PRIM, REFPOS, LEN, REVERSE, TLEN, CIGARS, CIGARL, HASMATE, MATEID, MATEREF, MATEREVERSE, FIRST );", res ); break;
case NGS_STYLE_PILEUP : res = sqlite3_mprintf( "%z NAME, POS, BASE, DEPTH, MAPQ, ALIG, ALIG_POS, ALIG_FIRST, ALIG_LAST, MISMATCH, DELETION, INSERTION, REV_STRAND, START, STOP, ALIG_BASE, ALIG_QUAL, INS_BASE, INS_QUAL, REPEAT, INDEL );", res ); break;
case NGS_STYLE_READGROUPS : res = sqlite3_mprintf( "%z NAME );", res ); break;
case NGS_STYLE_REFS : res = sqlite3_mprintf( "%z NAME, ID, CIRC, LEN );", res ); break;
default : res = sqlite3_mprintf( "%z X );", res ); break;
}
}
return res;
}
/* -------------------------------------------------------------------------------------- */
/* this object has to be made on the heap,
it is passed back ( typecasted ) to the sqlite-library in sqlite3_vdb_[ Create / Connect ] */
typedef struct ngs_obj
{
sqlite3_vtab base; /* Base class. Must be first */
ngs_obj_desc desc; /* the description ( ACC, Style ) */
} ngs_obj;
/* destroy the whole connection database, table, manager etc. */
static int destroy_ngs_obj( ngs_obj * self )
{
if ( self->desc.verbosity > 1 )
printf( "---sqlite3_ngs_Disconnect()\n" );
release_ngs_obj_desc( &self->desc );
sqlite3_free( self );
return SQLITE_OK;
}
/* gather what we want to open, check if it can be opened... */
static ngs_obj * make_ngs_obj( int argc, const char * const * argv )
{
ngs_obj * res = sqlite3_malloc( sizeof( * res ) );
if ( res != NULL )
{
memset( res, 0, sizeof( *res ) );
rc_t rc = init_ngs_obj_desc( &res->desc, argc, argv );
if ( rc == 0 )
{
/* here we have to check if we can open the accession as a read-collection... */
if ( rc != 0 )
{
destroy_ngs_obj( res );
res = NULL;
}
}
}
return res;
}
/* -------------------------------------------------------------------------------------- */
typedef struct ngs_cursor
{
sqlite3_vtab cursor; /* Base class. Must be first */
ngs_obj_desc * desc; /* cursor does not own this! */
NGS_ReadCollection * rd_coll; /* the read-collection we are operating on */
NGS_Read * m_read; /* the read-iterator */
NGS_Alignment * m_alig; /* the alignment-iterator */
NGS_ReadGroup * m_rd_grp; /* the read-group-iterator */
NGS_Reference * m_refs; /* the reference-iterator */
NGS_Pileup * m_pileup; /* the pileup-iterator */
int64_t current_row;
bool eof;
} ngs_cursor;
static int destroy_ngs_cursor( ngs_cursor * self )
{
HYBRID_FUNC_ENTRY( rcSRA, rcRow, rcAccessing );
if ( self->desc->verbosity > 1 )
printf( "---sqlite3_ngs_Close()\n" );
if ( self->m_read != NULL )
NGS_ReadRelease ( self->m_read, ctx );
if ( self->m_alig != NULL )
NGS_AlignmentRelease ( self->m_alig, ctx );
if ( self->m_rd_grp != NULL )
NGS_ReadGroupRelease( self->m_rd_grp, ctx );
if ( self->m_pileup != NULL )
NGS_PileupRelease( self->m_pileup, ctx );
if ( self->m_refs != NULL )
NGS_ReferenceRelease( self->m_refs, ctx );
if ( self->rd_coll != NULL )
NGS_RefcountRelease( ( NGS_Refcount * ) self->rd_coll, ctx );
CLEAR();
sqlite3_free( self );
return SQLITE_OK;
}
/* =========================================================================================== */
static void make_ngs_cursor_READS( ngs_cursor * self, ctx_t ctx )
{
if ( self->desc->count > 0 )
/* the user did specify a range: process this as a row-range */
self->m_read = NGS_ReadCollectionGetReadRange( self->rd_coll, ctx,
self->desc->first, self->desc->count,
self->desc->full, self->desc->partial, self->desc->unaligned );
else
self->m_read = NGS_ReadCollectionGetReads( self->rd_coll, ctx,
self->desc->full, self->desc->partial, self->desc->unaligned );
if ( !FAILED() )
self->eof = ! NGS_ReadIteratorNext( self->m_read, ctx );
}
static void make_ngs_cursor_FRAGS( ngs_cursor * self, ctx_t ctx )
{
make_ngs_cursor_READS( self, ctx );
if ( !FAILED() )
self->eof = ! NGS_FragmentIteratorNext( ( NGS_Fragment * ) self->m_read, ctx );
}
static void make_ngs_cursor_ALIGS( ngs_cursor * self, ctx_t ctx )
{
if ( self->desc->refname == NULL )
{
/* the user did not specify a reference: process either a row-range or all alignments */
if ( self->desc->count > 0 )
/* the user did specify a range: process this range */
self->m_alig = NGS_ReadCollectionGetAlignmentRange( self->rd_coll, ctx,
self->desc->first, self->desc->count,
self->desc->prim, self->desc->sec );
else
/* the user did not specify a range: process all alignments */
self->m_alig = NGS_ReadCollectionGetAlignments( self->rd_coll, ctx,
self->desc->prim, self->desc->sec );
}
else
{
/* the user did specify a reference: process a slice of alignments */
self->m_refs = NGS_ReadCollectionGetReference( self->rd_coll, ctx, self->desc->refname );
if ( !FAILED() )
{
/* the user specified reference was found ! */
if ( self->desc->count > 0 )
/* the user did specify a range: process this as a slice */
self->m_alig = NGS_ReferenceGetAlignmentSlice( self->m_refs, ctx,
self->desc->first, self->desc->count,
self->desc->prim, self->desc->sec );
else
{
/* the user did not specify a range: process all alignments of this reference */
uint64_t len = NGS_ReferenceGetLength( self->m_refs, ctx );
if ( !FAILED() )
self->m_alig = NGS_ReferenceGetAlignmentSlice( self->m_refs, ctx,
0, len,
self->desc->prim, self->desc->sec );
}
}
}
if ( !FAILED() )
self->eof = ! NGS_AlignmentIteratorNext( self->m_alig, ctx );
}
static void make_ngs_cursor_REFS( ngs_cursor * self, ctx_t ctx )
{
self->m_refs = NGS_ReadCollectionGetReferences( self->rd_coll, ctx );
if ( !FAILED() )
self->eof = ! NGS_ReferenceIteratorNext( self->m_refs, ctx );
}
static void make_ngs_cursor_PILEUP( ngs_cursor * self, ctx_t ctx )
{
if ( self->desc->refname == NULL )
/* the user did not specify a reference: process all alignments */
make_ngs_cursor_REFS( self, ctx );
else
{
/* the user did specify a reference: process a slice of alignments */
self->m_refs = NGS_ReadCollectionGetReference( self->rd_coll, ctx, self->desc->refname );
}
if ( !FAILED() )
{
if ( self->desc->count > 0 )
self->m_pileup = NGS_ReferenceGetPileupSlice( self->m_refs, ctx,
self->desc->first, self->desc->count,
self->desc->prim, self->desc->sec );
else
self->m_pileup = NGS_ReferenceGetPileups( self->m_refs, ctx, self->desc->prim, self->desc->sec );
}
if ( !FAILED() )
self->eof = ! NGS_PileupIteratorNext( self->m_pileup, ctx );
if ( !FAILED() )
self->eof = ! NGS_PileupEventIteratorNext( ( NGS_PileupEvent * )self->m_pileup, ctx );
}
static void make_ngs_cursor_RD_GRP( ngs_cursor * self, ctx_t ctx )
{
self->m_rd_grp = NGS_ReadCollectionGetReadGroups( self->rd_coll, ctx );
if ( !FAILED() )
self->eof = ! NGS_ReadGroupIteratorNext( self->m_rd_grp, ctx );
}
/* create a cursor from the obj-description ( mostly it's columns ) */
static ngs_cursor * make_ngs_cursor( ngs_obj_desc * desc )
{
ngs_cursor * res = sqlite3_malloc( sizeof( * res ) );
if ( res != NULL )
{
HYBRID_FUNC_ENTRY( rcSRA, rcRow, rcAccessing );
memset( res, 0, sizeof( *res ) );
res->desc = desc;
res->rd_coll = NGS_ReadCollectionMake( ctx, desc->accession );
if ( !FAILED() )
{
switch( desc->style )
{
case NGS_STYLE_READS : make_ngs_cursor_READS( res, ctx ); break;
case NGS_STYLE_FRAGMENTS : make_ngs_cursor_FRAGS( res, ctx ); break;
case NGS_STYLE_ALIGNMENTS : make_ngs_cursor_ALIGS( res, ctx ); break;
case NGS_STYLE_PILEUP : make_ngs_cursor_PILEUP( res, ctx ); break;
case NGS_STYLE_READGROUPS : make_ngs_cursor_RD_GRP( res, ctx ); break;
case NGS_STYLE_REFS : make_ngs_cursor_REFS( res, ctx ); break;
}
}
if ( FAILED() )
{
CLEAR();
destroy_ngs_cursor( res );
res = NULL;
}
}
return res;
}
/* =========================================================================================== */
static void ngs_cursor_next_fragment( ngs_cursor * self, ctx_t ctx )
{
self->eof = ! NGS_FragmentIteratorNext ( ( NGS_Fragment * ) self->m_read, ctx );
if ( !FAILED() && self->eof )
{
self->eof = ! NGS_ReadIteratorNext( self->m_read, ctx );
if ( !FAILED() && !self->eof )
self->eof = ! NGS_FragmentIteratorNext ( ( NGS_Fragment * ) self->m_read, ctx );
}
}
static void ngs_cursor_next_pileup( ngs_cursor * self, ctx_t ctx )
{
self->eof = ! NGS_PileupEventIteratorNext( ( NGS_PileupEvent * )self->m_pileup, ctx );
if ( !FAILED() && self->eof )
{
self->eof = ! NGS_PileupIteratorNext( self->m_pileup, ctx );
if ( !FAILED() )
{
if ( !self->eof )
self->eof = ! NGS_PileupEventIteratorNext( ( NGS_PileupEvent * )self->m_pileup, ctx );
else if ( self->desc->refname == NULL )
{
/* only switch to the next reference if the user did not request a specific reference */
NGS_PileupRelease( self->m_pileup, ctx );
self->m_pileup = NULL;
if ( !FAILED() )
{
self->eof = ! NGS_ReferenceIteratorNext( self->m_refs, ctx );
if ( !FAILED() && !self->eof )
{
self->m_pileup = NGS_ReferenceGetPileups( self->m_refs, ctx, self->desc->prim, self->desc->sec );
if ( !FAILED() )
self->eof = ! NGS_PileupIteratorNext( self->m_pileup, ctx );
if ( !FAILED() )
self->eof = ! NGS_PileupEventIteratorNext( ( NGS_PileupEvent * )self->m_pileup, ctx );
}
}
}
}
}
}
static int ngs_cursor_next( ngs_cursor * self )
{
HYBRID_FUNC_ENTRY( rcSRA, rcRow, rcAccessing );
if ( self->desc->verbosity > 2 )
printf( "---sqlite3_ngs_next()\n" );
switch( self->desc->style )
{
case NGS_STYLE_READS : self->eof = ! NGS_ReadIteratorNext( self->m_read, ctx ); break;
case NGS_STYLE_FRAGMENTS : ngs_cursor_next_fragment( self, ctx ); break;
case NGS_STYLE_ALIGNMENTS : self->eof = ! NGS_AlignmentIteratorNext( self->m_alig, ctx ); break;
case NGS_STYLE_PILEUP : ngs_cursor_next_pileup( self, ctx ); break;
case NGS_STYLE_READGROUPS : self->eof = ! NGS_ReadGroupIteratorNext( self->m_rd_grp, ctx ); break;
case NGS_STYLE_REFS : self->eof = ! NGS_ReferenceIteratorNext( self->m_refs, ctx ); break;
}
if ( FAILED() )
{
CLEAR();
return SQLITE_ERROR;
}
if ( !self->eof )
self->current_row++;
return SQLITE_OK;
}
/* =========================================================================================== */
static int ngs_cursor_eof( ngs_cursor * self )
{
if ( self->desc->verbosity > 2 )
printf( "---sqlite3_ngs_Eof()\n" );
if ( self->eof )
return SQLITE_ERROR; /* anything else than SQLITE_OK means EOF */
return SQLITE_OK;
}
/* =========================================================================================== */
static void ngs_return_NGS_String( sqlite3_context * sql_ctx, ctx_t ctx, NGS_String * ngs_str )
{
const char * s = NGS_StringData( ngs_str, ctx );
if ( !FAILED() )
{
size_t len = NGS_StringSize( ngs_str, ctx );
if ( !FAILED() )
sqlite3_result_text( sql_ctx, (char *)s, len, SQLITE_TRANSIENT );
}
NGS_StringRelease( ngs_str, ctx );
}
static void ngs_cursor_read_str( ngs_cursor * self,
sqlite3_context * sql_ctx,
ctx_t ctx,
struct NGS_String * f( NGS_Read * read, ctx_t ctx ) )
{
NGS_String * m_seq = f( self->m_read, ctx );
if ( !FAILED() )
ngs_return_NGS_String( sql_ctx, ctx, m_seq );
}
static void ngs_cursor_read_str_full( ngs_cursor * self,
sqlite3_context * sql_ctx,
ctx_t ctx,
struct NGS_String * f( NGS_Read * read, ctx_t ctx, uint64_t offset, uint64_t length ) )
{
NGS_String * m_seq = f( self->m_read, ctx, 0, ( size_t ) - 1 );
if ( !FAILED() )
ngs_return_NGS_String( sql_ctx, ctx, m_seq );
}
static void ngs_cursor_column_read_CAT( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx )
{
enum NGS_ReadCategory cat = NGS_ReadGetReadCategory( self->m_read, ctx );
if ( !FAILED() )
sqlite3_result_int( sql_ctx, cat );
}
static void ngs_cursor_column_read_NFRAGS( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx )
{
uint32_t n = NGS_ReadNumFragments( self->m_read, ctx );
if ( !FAILED() )
sqlite3_result_int( sql_ctx, n );
}
/* >>>>>>>>>> columns for READ-STYLE <<<<<<<<<<<< */
static void ngs_cursor_column_read( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx, int column_id )
{
switch( column_id )
{
case 0 : ngs_cursor_read_str_full( self, sql_ctx, ctx, NGS_ReadGetReadSequence ); break; /* SEQ */
case 1 : ngs_cursor_read_str_full( self, sql_ctx, ctx, NGS_ReadGetReadQualities ); break; /* QUAL */
case 2 : ngs_cursor_read_str( self, sql_ctx, ctx, NGS_ReadGetReadName ); break; /* NAME */
case 3 : ngs_cursor_read_str( self, sql_ctx, ctx, NGS_ReadGetReadId ); break; /* ID */
case 4 : ngs_cursor_read_str( self, sql_ctx, ctx, NGS_ReadGetReadGroup ); break; /* GRP */
case 5 : ngs_cursor_column_read_CAT( self, sql_ctx, ctx ); break; /* CAT */
case 6 : ngs_cursor_column_read_NFRAGS( self, sql_ctx, ctx ); break; /* NFRAGS */
}
}
static void ngs_cursor_frag_str( ngs_cursor * self,
sqlite3_context * sql_ctx,
ctx_t ctx,
struct NGS_String * f( NGS_Fragment * frag, ctx_t ctx ) )
{
NGS_String * m_seq = f( ( NGS_Fragment * )self->m_read, ctx );
if ( !FAILED() )
ngs_return_NGS_String( sql_ctx, ctx, m_seq );
}
static void ngs_cursor_frag_str_full( ngs_cursor * self,
sqlite3_context * sql_ctx,
ctx_t ctx,
struct NGS_String * f( NGS_Fragment * frag, ctx_t ctx, uint64_t offset, uint64_t length ) )
{
NGS_String * m_seq = f( ( NGS_Fragment * )self->m_read, ctx, 0, ( size_t ) - 1 );
if ( !FAILED() )
ngs_return_NGS_String( sql_ctx, ctx, m_seq );
}
static void ngs_cursor_frag_bool( ngs_cursor * self,
sqlite3_context * sql_ctx,
ctx_t ctx,
bool f( NGS_Fragment * frag, ctx_t ctx ) )
{
bool b = f( ( NGS_Fragment * )self->m_read, ctx );
if ( !FAILED() )
sqlite3_result_int( sql_ctx, b ? 1 : 0 );
}
/* >>>>>>>>>> columns for FRAGMENT-STYLE <<<<<<<<<<<< */
static void ngs_cursor_column_frag( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx, int column_id )
{
switch( column_id )
{
case 0 : ngs_cursor_frag_str_full( self, sql_ctx, ctx, NGS_FragmentGetSequence ); break; /* SEQ */
case 1 : ngs_cursor_frag_str_full( self, sql_ctx, ctx, NGS_FragmentGetQualities ); break; /* QUAL */
case 2 : ngs_cursor_frag_str( self, sql_ctx, ctx, NGS_FragmentGetId ); break; /* ID */
case 3 : ngs_cursor_frag_bool( self, sql_ctx, ctx, NGS_FragmentIsPaired ); break; /* PAIRED */
case 4 : ngs_cursor_frag_bool( self, sql_ctx, ctx, NGS_FragmentIsAligned ); break; /* ALIGNED */
}
}
static void ngs_cursor_alig_str( ngs_cursor * self,
sqlite3_context * sql_ctx,
ctx_t ctx,
struct NGS_String * f( NGS_Alignment * self, ctx_t ctx ) )
{
NGS_String * m_seq = f( self->m_alig, ctx );
if ( !FAILED() )
ngs_return_NGS_String( sql_ctx, ctx, m_seq );
}
static void ngs_cursor_alig_str_bool( ngs_cursor * self,
sqlite3_context * sql_ctx,
ctx_t ctx,
struct NGS_String * f( NGS_Alignment * self, ctx_t ctx, bool b ),
bool b )
{
NGS_String * m_seq = f( self->m_alig, ctx, b );
if ( !FAILED() )
ngs_return_NGS_String( sql_ctx, ctx, m_seq );
}
static void ngs_cursor_alig_bool( ngs_cursor * self,
sqlite3_context * sql_ctx,
ctx_t ctx,
bool f( NGS_Alignment * self, ctx_t ctx ) )
{
bool b = f( self->m_alig, ctx );
if ( !FAILED() )
sqlite3_result_int( sql_ctx, b ? 1 : 0 );
}
static void ngs_cursor_alig_uint64( ngs_cursor * self,
sqlite3_context * sql_ctx,
ctx_t ctx,
uint64_t f( NGS_Alignment * self, ctx_t ctx ) )
{
uint64_t value = f( self->m_alig, ctx );
if ( !FAILED() )
sqlite3_result_int64( sql_ctx, value );
}
static void ngs_cursor_column_alig_MAPQ( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx )
{
int mapq = NGS_AlignmentGetMappingQuality( self->m_alig, ctx );
if ( !FAILED() )
sqlite3_result_int( sql_ctx, mapq );
}
static void ngs_cursor_column_alig_RDFILTER( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx )
{
INSDC_read_filter rf = NGS_AlignmentGetReadFilter( self->m_alig, ctx );
if ( !FAILED() )
sqlite3_result_int( sql_ctx, rf );
}
static void ngs_cursor_column_alig_REFPOS( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx )
{
int64_t pos = NGS_AlignmentGetAlignmentPosition( self->m_alig, ctx );
if ( !FAILED() )
sqlite3_result_int64( sql_ctx, pos );
}
/* >>>>>>>>>> columns for ALIGNMENT-STYLE <<<<<<<<<<<< */
static void ngs_cursor_column_alig( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx, int column_id )
{
switch( column_id )
{
case 0 : ngs_cursor_alig_str( self, sql_ctx, ctx, NGS_AlignmentGetClippedFragmentBases ); break; /* SEQ */
case 1 : ngs_cursor_alig_str( self, sql_ctx, ctx, NGS_AlignmentGetClippedFragmentQualities ); break; /* QUAL */
case 2 : ngs_cursor_alig_str( self, sql_ctx, ctx, NGS_AlignmentGetAlignmentId ); break; /* ID */
case 3 : ngs_cursor_alig_str( self, sql_ctx, ctx, NGS_AlignmentGetReferenceSpec ); break; /* REFSPEC */
case 4 : ngs_cursor_column_alig_MAPQ( self, sql_ctx, ctx ); break; /* MAPQ */
case 5 : ngs_cursor_column_alig_RDFILTER( self, sql_ctx, ctx ); break; /* RDFILTER */
case 6 : ngs_cursor_alig_str( self, sql_ctx, ctx, NGS_AlignmentGetReferenceBases ); break; /* REFBASES */
case 7 : ngs_cursor_alig_str( self, sql_ctx, ctx, NGS_AlignmentGetReadGroup ); break; /* GRP */
case 8 : ngs_cursor_alig_str( self, sql_ctx, ctx, NGS_AlignmentGetAlignedFragmentBases ); break; /*ALIG */
case 9 : ngs_cursor_alig_bool( self, sql_ctx, ctx, NGS_AlignmentIsPrimary ); break; /* PRIM */
case 10 : ngs_cursor_column_alig_REFPOS( self, sql_ctx, ctx ); break; /* REFPOS */
case 11 : ngs_cursor_alig_uint64( self, sql_ctx, ctx, NGS_AlignmentGetAlignmentLength ); break; /* LEN */
case 12 : ngs_cursor_alig_bool( self, sql_ctx, ctx, NGS_AlignmentGetIsReversedOrientation ); break; /* REVERSE */
case 13 : ngs_cursor_alig_uint64( self, sql_ctx, ctx, NGS_AlignmentGetTemplateLength ); break; /* TLEN */
case 14 : ngs_cursor_alig_str_bool( self, sql_ctx, ctx, NGS_AlignmentGetShortCigar, true ); break; /* CIGARS */
case 15 : ngs_cursor_alig_str_bool( self, sql_ctx, ctx, NGS_AlignmentGetLongCigar, true ); break; /* CIGARL */
case 16 : ngs_cursor_alig_bool( self, sql_ctx, ctx, NGS_AlignmentHasMate ); break; /* HASMATE */
case 17 : ngs_cursor_alig_str( self, sql_ctx, ctx, NGS_AlignmentGetMateAlignmentId ); /* MATEID */
case 18 : ngs_cursor_alig_str( self, sql_ctx, ctx, NGS_AlignmentGetMateReferenceSpec ); /* MATEREF */
case 19 : ngs_cursor_alig_bool( self, sql_ctx, ctx, NGS_AlignmentGetMateIsReversedOrientation ); break; /* MATEREVERSE */
case 20 : ngs_cursor_alig_bool( self, sql_ctx, ctx, NGS_AlignmentIsFirst ); break; /* FIRST */
}
}
static void ngs_cursor_pileup_name( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx )
{
NGS_String * refspec = NGS_PileupGetReferenceSpec( self->m_pileup, ctx );
if ( !FAILED() )
ngs_return_NGS_String( sql_ctx, ctx, refspec );
}
static void ngs_cursor_pileup_pos( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx )
{
int64_t pos = NGS_PileupGetReferencePosition ( self->m_pileup, ctx );
if ( !FAILED() )
sqlite3_result_int64( sql_ctx, pos );
}
static void ngs_cursor_pileup_base( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx )
{
char base = NGS_PileupGetReferenceBase( self->m_pileup, ctx );
if ( !FAILED() )
sqlite3_result_text( sql_ctx, &base, 1, SQLITE_TRANSIENT );
}
static void ngs_cursor_pileup_depth( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx )
{
unsigned int depth = NGS_PileupGetPileupDepth( self->m_pileup, ctx );
if ( !FAILED() )
sqlite3_result_int( sql_ctx, depth );
}
static void ngs_cursor_pileupevent_i64( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx,
int64_t f ( const NGS_PileupEvent * self, ctx_t ctx ) )
{
int64_t pos = f( ( const NGS_PileupEvent * )self->m_pileup, ctx );
if ( !FAILED() )
sqlite3_result_int64( sql_ctx, pos );
}
static void ngs_cursor_pileupevent_t( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx, int mask )
{
int ev = NGS_PileupEventGetEventType( ( const NGS_PileupEvent * )self->m_pileup, ctx );
if ( !FAILED() )
sqlite3_result_int( sql_ctx, ( ( ev & mask ) != 0 ) ? 1 : 0 );
}
static void ngs_cursor_pileupevent_char( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx,
char f ( const NGS_PileupEvent * self, ctx_t ctx ) )
{
char c = f( ( const NGS_PileupEvent * )self->m_pileup, ctx );
if ( !FAILED() )
sqlite3_result_text( sql_ctx, &c, 1, SQLITE_TRANSIENT );
}
static void ngs_cursor_pileupevent_str( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx,
NGS_String * f ( const NGS_PileupEvent * self, ctx_t ctx ) )
{
NGS_String * s = f( ( const NGS_PileupEvent * )self->m_pileup, ctx );
if ( !FAILED() )
ngs_return_NGS_String( sql_ctx, ctx, s );
}
static void ngs_cursor_pileupevent_int( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx,
int f ( const NGS_PileupEvent * self, ctx_t ctx ) )
{
int value = f( ( const NGS_PileupEvent * )self->m_pileup, ctx );
if ( !FAILED() )
sqlite3_result_int( sql_ctx, value );
}
static void ngs_cursor_pileupevent_repeat( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx )
{
unsigned int n = NGS_PileupEventGetRepeatCount( ( const NGS_PileupEvent * )self->m_pileup, ctx );
if ( !FAILED() )
sqlite3_result_int( sql_ctx, n );
}
/* >>>>>>>>>> columns for PILEUP-STYLE <<<<<<<<<<<< */
static void ngs_cursor_column_pileup( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx, int column_id )
{
switch( column_id )
{
case 0 : ngs_cursor_pileup_name( self, sql_ctx, ctx ); break; /* NAME */
case 1 : ngs_cursor_pileup_pos( self, sql_ctx, ctx ); break; /* POS */
case 2 : ngs_cursor_pileup_base( self, sql_ctx, ctx ); break; /* BASE */
case 3 : ngs_cursor_pileup_depth( self, sql_ctx, ctx ); break; /* DEPTH */
case 4 : ngs_cursor_pileupevent_int( self, sql_ctx, ctx, NGS_PileupEventGetMappingQuality ); break; /* MAPQ */
case 5 : ngs_cursor_pileupevent_str( self, sql_ctx, ctx, NGS_PileupEventGetAlignmentId ); break; /* ALIG */
case 6 : ngs_cursor_pileupevent_i64( self, sql_ctx, ctx, NGS_PileupEventGetAlignmentPosition ); break; /* ALIG_POS */
case 7 : ngs_cursor_pileupevent_i64( self, sql_ctx, ctx, NGS_PileupEventGetFirstAlignmentPosition ); break; /* ALIG_FIRST */
case 8 : ngs_cursor_pileupevent_i64( self, sql_ctx, ctx, NGS_PileupEventGetLastAlignmentPosition ); break; /* ALIG_LAST */
case 9 : ngs_cursor_pileupevent_t( self, sql_ctx, ctx, 0x01 ); break; /* MISMATCH */
case 10 : ngs_cursor_pileupevent_t( self, sql_ctx, ctx, 0x02 ); break; /* DELETION */
case 11 : ngs_cursor_pileupevent_t( self, sql_ctx, ctx, 0x08 ); break; /* INSERTION */
case 12 : ngs_cursor_pileupevent_t( self, sql_ctx, ctx, 0x20 ); break; /* REV_STRAND */
case 13 : ngs_cursor_pileupevent_t( self, sql_ctx, ctx, 0x40 ); break; /* START */
case 14 : ngs_cursor_pileupevent_t( self, sql_ctx, ctx, 0x80 ); break; /* STOP */
case 15 : ngs_cursor_pileupevent_char( self, sql_ctx, ctx, NGS_PileupEventGetAlignmentBase ); break; /*ALIG_BASE */
case 16 : ngs_cursor_pileupevent_char( self, sql_ctx, ctx, NGS_PileupEventGetAlignmentQuality ); break; /*ALIG_QUAL */
case 17 : ngs_cursor_pileupevent_str( self, sql_ctx, ctx, NGS_PileupEventGetInsertionBases ); break; /* INS_BASE */
case 18 : ngs_cursor_pileupevent_str( self, sql_ctx, ctx, NGS_PileupEventGetInsertionQualities ); break; /* INS_QUAL */
case 19 : ngs_cursor_pileupevent_repeat( self, sql_ctx, ctx ); break; /* REPEAT */
case 20 : ngs_cursor_pileupevent_int( self, sql_ctx, ctx, NGS_PileupEventGetIndelType ); break; /* INDEL */
}
}
static void ngs_cursor_column_rd_grp_name( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx )
{
NGS_String * m_seq = NGS_ReadGroupGetName( self->m_rd_grp, ctx );
if ( !FAILED() )
ngs_return_NGS_String( sql_ctx, ctx, m_seq );
}
/* >>>>>>>>>> columns for READGROUPS-STYLE <<<<<<<<<<<< */
static void ngs_cursor_column_rd_grp( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx, int column_id )
{
switch( column_id )
{
case 0 : ngs_cursor_column_rd_grp_name( self, sql_ctx, ctx ); break; /* NAME */
}
}
static void ngs_cursor_refs_str( ngs_cursor * self,
sqlite3_context * sql_ctx,
ctx_t ctx,
struct NGS_String * f( NGS_Reference * self, ctx_t ctx ) )
{
NGS_String * name = f( self->m_refs, ctx );
if ( !FAILED() )
ngs_return_NGS_String( sql_ctx, ctx, name );
}
static void ngs_cursor_refs_circular( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx )
{
bool b = NGS_ReferenceGetIsCircular( self->m_refs, ctx );
if ( !FAILED() )
sqlite3_result_int( sql_ctx, b ? 1 : 0 );
}
static void ngs_cursor_refs_length( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx )
{
uint64_t value = NGS_ReferenceGetLength( self->m_refs, ctx );
if ( !FAILED() )
sqlite3_result_int64( sql_ctx, value );
}
/* >>>>>>>>>> columns for REFS-STYLE <<<<<<<<<<<< */
static void ngs_cursor_column_refs( ngs_cursor * self, sqlite3_context * sql_ctx, ctx_t ctx, int column_id )
{
switch( column_id )
{
case 0 : ngs_cursor_refs_str( self, sql_ctx, ctx, NGS_ReferenceGetCommonName ); break; /* NAME */
case 1 : ngs_cursor_refs_str( self, sql_ctx, ctx, NGS_ReferenceGetCanonicalName ); break; /* ID */
case 2 : ngs_cursor_refs_circular( self, sql_ctx, ctx ); break; /* CIRC */
case 3 : ngs_cursor_refs_length( self, sql_ctx, ctx ); break; /* LEN */
}
}
static int ngs_cursor_column( ngs_cursor * self, sqlite3_context * sql_ctx, int column_id )
{
HYBRID_FUNC_ENTRY( rcSRA, rcRow, rcAccessing );
if ( self->desc->verbosity > 2 )
printf( "---sqlite3_ngs_Column( %d )\n", column_id );
switch( self->desc->style )
{
case NGS_STYLE_READS : ngs_cursor_column_read( self, sql_ctx, ctx, column_id ); break;
case NGS_STYLE_FRAGMENTS : ngs_cursor_column_frag( self, sql_ctx, ctx, column_id ); break;
case NGS_STYLE_ALIGNMENTS : ngs_cursor_column_alig( self, sql_ctx, ctx, column_id ); break;
case NGS_STYLE_PILEUP : ngs_cursor_column_pileup( self, sql_ctx, ctx, column_id ); break;
case NGS_STYLE_READGROUPS : ngs_cursor_column_rd_grp( self, sql_ctx, ctx, column_id ); break;
case NGS_STYLE_REFS : ngs_cursor_column_refs( self, sql_ctx, ctx, column_id ); break;
}
if ( FAILED() )
{
CLEAR();
return SQLITE_ERROR;
}
return SQLITE_OK;
}
static int ngs_cursor_row_id( ngs_cursor * self, sqlite_int64 * pRowid )
{
if ( self->desc->verbosity > 2 )
printf( "---sqlite3_ngs_Rowid()\n" );
if ( pRowid != NULL )
*pRowid = self->current_row;
return SQLITE_OK;
}
/* -------------------------------------------------------------------------------------- */
/* take ngs-obj and open a read-collection on it */
static int ngs_obj_open( ngs_obj * self, sqlite3_vtab_cursor ** ppCursor )
{
if ( self->desc.verbosity > 1 )
printf( "---sqlite3_ngs_Open()\n" );
ngs_cursor * c = make_ngs_cursor( &self->desc );
if ( c != NULL )
{
*ppCursor = ( sqlite3_vtab_cursor * )c;
return SQLITE_OK;
}
return SQLITE_ERROR;
}
/* -------------------------------------------------------------------------------------- */
/* the common code for xxx_Create() and xxx_Connect */
static int sqlite3_ngs_CC( sqlite3 *db, void *pAux, int argc, const char * const * argv,
sqlite3_vtab **ppVtab, char **pzErr, const char * msg )
{
const char * stm;
ngs_obj * obj = make_ngs_obj( argc, argv );
if ( obj == NULL )
return SQLITE_ERROR;
*ppVtab = ( sqlite3_vtab * )obj;
if ( obj->desc.verbosity > 1 )
printf( "%s", msg );
stm = make_ngs_create_table_stm( &obj->desc, "X" );
if ( obj->desc.verbosity > 1 )
printf( "stm = %s\n", stm );
return sqlite3_declare_vtab( db, stm );
}
/* -------------------------------------------------------------------------------------- */
/* create a new table-instance from scratch */
static int sqlite3_ngs_Create( sqlite3 *db, void *pAux, int argc, const char * const * argv,
sqlite3_vtab **ppVtab, char **pzErr )
{
return sqlite3_ngs_CC( db, pAux, argc, argv, ppVtab, pzErr, "---sqlite3_ngs_Create()\n" );
}
/* open a table-instance from something existing */
static int sqlite3_ngs_Connect( sqlite3 *db, void *pAux, int argc, const char * const * argv,
sqlite3_vtab **ppVtab, char **pzErr )
{
return sqlite3_ngs_CC( db, pAux, argc, argv, ppVtab, pzErr, "---sqlite3_ngs_Connect()\n" );
}
/* query what index can be used ---> maybe vdb supports that in the future */
static int sqlite3_ngs_BestIndex( sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo )
{
int res = SQLITE_ERROR;
if ( tab != NULL )
{
ngs_obj * self = ( ngs_obj * )tab;
if ( self->desc.verbosity > 2 )
printf( "---sqlite3_ngs_BestIndex()\n" );
if ( pIdxInfo != NULL )
pIdxInfo->estimatedCost = 1000000;
res = SQLITE_OK;
}
return res;
}
/* disconnect from a table */
static int sqlite3_ngs_Disconnect( sqlite3_vtab *tab )
{
if ( tab != NULL )
return destroy_ngs_obj( ( ngs_obj * )tab );
return SQLITE_ERROR;
}
/* open a cursor on a table */
static int sqlite3_ngs_Open( sqlite3_vtab *tab, sqlite3_vtab_cursor **ppCursor )
{
if ( tab != NULL )
return ngs_obj_open( ( ngs_obj * ) tab, ppCursor );
return SQLITE_ERROR;
}
/* close the cursor */
static int sqlite3_ngs_Close( sqlite3_vtab_cursor *cur )
{
if ( cur != NULL )
destroy_ngs_cursor( ( ngs_cursor * )cur );
return SQLITE_ERROR;
}
/* this is a NOOP, because we have no index ( yet ) */
static int sqlite3_ngs_Filter( sqlite3_vtab_cursor *cur, int idxNum, const char *idxStr,
int argc, sqlite3_value **argv )
{
if ( cur != NULL )
{
ngs_cursor * self = ( ngs_cursor * )cur;
if ( self->desc->verbosity > 2 )
printf( "---sqlite3_ngs_Filter()\n" );
return SQLITE_OK;
}
return SQLITE_ERROR;
}
/* advance to the next row */
static int sqlite3_ngs_Next( sqlite3_vtab_cursor *cur )
{
if ( cur != NULL )
return ngs_cursor_next( ( ngs_cursor * )cur );
return SQLITE_ERROR;
}
/* check if we are at the end */
static int sqlite3_ngs_Eof( sqlite3_vtab_cursor *cur )
{
if ( cur != NULL )
return ngs_cursor_eof( ( ngs_cursor * )cur );
return SQLITE_ERROR;
}
/* request data for a cell */
static int sqlite3_ngs_Column( sqlite3_vtab_cursor *cur, sqlite3_context * ctx, int column_id )
{
if ( cur != NULL )
return ngs_cursor_column( ( ngs_cursor * )cur, ctx, column_id );
return SQLITE_ERROR;
}
/* request row-id */
static int sqlite3_ngs_Rowid( sqlite3_vtab_cursor *cur, sqlite_int64 * pRowid )
{
if ( cur != NULL )
return ngs_cursor_row_id( ( ngs_cursor * )cur, pRowid );
return SQLITE_ERROR;
}
sqlite3_module NGS_Module =
{
0, /* iVersion */
sqlite3_ngs_Create, /* xCreate */
sqlite3_ngs_Connect, /* xConnect */
sqlite3_ngs_BestIndex, /* xBestIndex */
sqlite3_ngs_Disconnect, /* xDisconnect */
sqlite3_ngs_Disconnect, /* xDestroy */
sqlite3_ngs_Open, /* xOpen - open a cursor */
sqlite3_ngs_Close, /* xClose - close a cursor */
sqlite3_ngs_Filter, /* xFilter - configure scan constraints */
sqlite3_ngs_Next, /* xNext - advance a cursor */
sqlite3_ngs_Eof, /* xEof - check for end of scan */
sqlite3_ngs_Column, /* xColumn - read data */
sqlite3_ngs_Rowid, /* xRowid - read data */
NULL, /* xUpdate */
NULL, /* xBegin */
NULL, /* xSync */
NULL, /* xCommit */
NULL, /* xRollback */
NULL, /* xFindMethod */
NULL, /* xRename */
};
/* ========================================================================================================== */
#ifdef _WIN32
__declspec( dllexport )
#endif
/*
** This routine is called when the extension is loaded. The new vdb/ngs virtual table module is
** registered with the calling database connection.
*/
int sqlite3_vdbsqlite_init( sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi )
{
int res = SQLITE_OK;
#ifndef SQLITE_OMIT_VIRTUALTABLE
SQLITE_EXTENSION_INIT2( pApi );
res = sqlite3_create_module( db, "vdb", &VDB_Module, NULL );
if ( res == SQLITE_OK )
res = sqlite3_create_module( db, "ngs", &NGS_Module, NULL );
#endif
return res;
}
|