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
|
#include "postgres.h"
#include "fmgr.h"
#include "funcapi.h"
#if PG_VERSION_NUM < 120000
#include "access/htup_details.h"
#endif
#include "access/tupconvert.h"
#include "catalog/pg_type_d.h"
#include "catalog/pg_type.h"
#include "executor/spi.h"
#include "lib/stringinfo.h"
#include "parser/parse_coerce.h"
#include "parser/scansup.h"
#include "utils/array.h"
#include "utils/builtins.h"
#include "utils/datum.h"
#include "utils/elog.h"
#include "utils/lsyscache.h"
#include "utils/syscache.h"
#include "utils/memutils.h"
#include "utils/typcache.h"
#include "executor/spi_priv.h"
#include "orafce.h"
#include "builtins.h"
#define MAX_CURSORS 100
/*
* bind variable data
*/
typedef struct
{
char *refname;
int position;
Datum value;
Oid typoid;
bool typbyval;
int16 typlen;
bool isnull;
unsigned int varno; /* number of assigned placeholder of parsed
* query */
bool is_array; /* true, when a value is assigned via
* bind_array */
Oid typelemid; /* Oid of element of a array */
bool typelembyval;
int16 typelemlen;
int index1;
int index2;
} VariableData;
/*
* Query result column definition
*/
typedef struct
{
int position;
Oid typoid;
bool typbyval;
int16 typlen;
int32 typmod;
bool typisstr;
Oid typarrayoid; /* oid of requested array output value */
uint64 rowcount; /* maximal rows of requested array */
int index1; /* output array should be rewrited from this
* index */
} ColumnData;
/*
* It is used for transformation result data to form
* generated by column_value procedure or column
* value function.
*/
typedef struct
{
bool isvalid; /* true, when this cast can be used */
bool without_cast; /* true, when cast is not necessary */
Oid targettypid; /* used for domains */
Oid array_targettypid; /* used for array domains */
int32 targettypmod; /* used for strings */
bool typbyval; /* used for copy result to outer memory
* context */
int16 typlen; /* used for copy result to outer memory
* context */
bool is_array;
Oid funcoid;
Oid funcoid_typmod;
CoercionPathType path;
CoercionPathType path_typmod;
FmgrInfo finfo;
FmgrInfo finfo_typmod;
FmgrInfo finfo_out;
FmgrInfo finfo_in;
Oid typIOParam;
} CastCacheData;
/*
* dbms_sql cursor definition
*/
typedef struct
{
int16 cid;
char *parsed_query;
char *original_query;
unsigned int nvariables;
int max_colpos;
List *variables;
List *columns;
char cursorname[32];
Portal portal; /* one shot (execute) plan */
SPIPlanPtr plan;
MemoryContext cursor_cxt;
MemoryContext cursor_xact_cxt;
MemoryContext tuples_cxt;
MemoryContext result_cxt; /* short life memory context */
HeapTuple tuples[1000];
TupleDesc coltupdesc;
TupleDesc tupdesc;
CastCacheData *casts;
uint64 processed;
uint64 nread;
uint64 start_read;
bool assigned;
bool executed;
Bitmapset *array_columns; /* set of array columns */
uint64 batch_rows; /* how much rows should be fetched to fill
* target arrays */
} CursorData;
typedef enum
{
TOKEN_SPACES,
TOKEN_COMMENT,
TOKEN_NUMBER,
TOKEN_BIND_VAR,
TOKEN_STR,
TOKEN_EXT_STR,
TOKEN_DOLAR_STR,
TOKEN_IDENTIF,
TOKEN_QIDENTIF,
TOKEN_DOUBLE_COLON,
TOKEN_OTHER,
TOKEN_NONE
} orafceTokenType;
static char *next_token(char *str, char **start, size_t *len, orafceTokenType *typ, char **sep, size_t *seplen);
PG_FUNCTION_INFO_V1(dbms_sql_is_open);
PG_FUNCTION_INFO_V1(dbms_sql_open_cursor);
PG_FUNCTION_INFO_V1(dbms_sql_close_cursor);
PG_FUNCTION_INFO_V1(dbms_sql_parse);
PG_FUNCTION_INFO_V1(dbms_sql_bind_variable);
PG_FUNCTION_INFO_V1(dbms_sql_bind_variable_f);
PG_FUNCTION_INFO_V1(dbms_sql_bind_array_3);
PG_FUNCTION_INFO_V1(dbms_sql_bind_array_5);
PG_FUNCTION_INFO_V1(dbms_sql_define_column);
PG_FUNCTION_INFO_V1(dbms_sql_define_array);
PG_FUNCTION_INFO_V1(dbms_sql_execute);
PG_FUNCTION_INFO_V1(dbms_sql_fetch_rows);
PG_FUNCTION_INFO_V1(dbms_sql_execute_and_fetch);
PG_FUNCTION_INFO_V1(dbms_sql_column_value);
PG_FUNCTION_INFO_V1(dbms_sql_column_value_f);
PG_FUNCTION_INFO_V1(dbms_sql_last_row_count);
PG_FUNCTION_INFO_V1(dbms_sql_describe_columns);
PG_FUNCTION_INFO_V1(dbms_sql_describe_columns_f);
PG_FUNCTION_INFO_V1(dbms_sql_debug_cursor);
static uint64 last_row_count = 0;
static MemoryContext persist_cxt = NULL;
static CursorData cursors[MAX_CURSORS];
static void
open_cursor(CursorData *c, int cid)
{
c->cid = cid;
if (!persist_cxt)
{
persist_cxt = AllocSetContextCreate(NULL,
"dbms_sql persist context",
ALLOCSET_DEFAULT_SIZES);
memset(cursors, 0, sizeof(cursors));
}
c->cursor_cxt = AllocSetContextCreate(persist_cxt,
"dbms_sql cursor context",
ALLOCSET_DEFAULT_SIZES);
c->assigned = true;
}
/*
* FUNCTION dbms_sql.open_cursor() RETURNS int
*/
Datum
dbms_sql_open_cursor(PG_FUNCTION_ARGS)
{
int i;
(void) fcinfo;
/* find and initialize first free slot */
for (i = 0; i < MAX_CURSORS; i++)
{
if (!cursors[i].assigned)
{
open_cursor(&cursors[i], i);
PG_RETURN_INT32(i);
}
}
ereport(ERROR,
(errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
errmsg("too many opened cursors"),
errdetail("There is not free slot for new dbms_sql's cursor."),
errhint("You should to close unused cursors")));
/* be msvc quiet */
return (Datum) 0;
}
static CursorData *
get_cursor(FunctionCallInfo fcinfo, bool should_be_assigned)
{
CursorData *cursor;
int cid;
if (PG_ARGISNULL(0))
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
errmsg("cursor id is NULL")));
cid = PG_GETARG_INT32(0);
if (cid < 0 || cid >= MAX_CURSORS)
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("value of cursor id is out of range")));
cursor = &cursors[cid];
if (!cursor->assigned && should_be_assigned)
ereport(ERROR,
(errcode(ERRCODE_UNDEFINED_CURSOR),
errmsg("cursor is not valid")));
return cursor;
}
/*
* CREATE FUNCTION dbms_sql.is_open(c int) RETURNS bool;
*/
Datum
dbms_sql_is_open(PG_FUNCTION_ARGS)
{
CursorData *c;
c = get_cursor(fcinfo, false);
PG_RETURN_BOOL(c->assigned);
}
/*
* Release all sources assigned to cursor
*/
static void
close_cursor(CursorData *c)
{
if (c->executed && c->portal)
SPI_cursor_close(c->portal);
/* release all assigned memory */
if (c->cursor_cxt)
MemoryContextDelete(c->cursor_cxt);
if (c->cursor_xact_cxt)
MemoryContextDelete(c->cursor_xact_cxt);
if (c->plan)
SPI_freeplan(c->plan);
memset(c, 0, sizeof(CursorData));
}
/*
* PROCEDURE dbms_sql.close_cursor(c int)
*/
Datum
dbms_sql_close_cursor(PG_FUNCTION_ARGS)
{
CursorData *c;
c = get_cursor(fcinfo, false);
close_cursor(c);
return (Datum) 0;
}
/*
* Print state of cursor - just for debug purposes
*/
Datum
dbms_sql_debug_cursor(PG_FUNCTION_ARGS)
{
CursorData *c;
ListCell *lc;
c = get_cursor(fcinfo, false);
if (c->assigned)
{
if (c->original_query)
elog(NOTICE, "orig query: \"%s\"", c->original_query);
if (c->parsed_query)
elog(NOTICE, "parsed query: \"%s\"", c->parsed_query);
}
else
elog(NOTICE, "cursor is not assigned");
foreach(lc, c->variables)
{
VariableData *var = (VariableData *) lfirst(lc);
if (var->typoid != InvalidOid)
{
if (!var->isnull)
{
Oid typOutput;
bool isVarlena;
char *str;
getTypeOutputInfo(var->typoid, &typOutput, &isVarlena);
str = OidOutputFunctionCall(typOutput, var->value);
elog(NOTICE, "variable \"%s\" is assigned to \"%s\"", var->refname, str);
}
else
elog(NOTICE, "variable \"%s\" is NULL", var->refname);
}
else
elog(NOTICE, "variable \"%s\" is not assigned", var->refname);
}
foreach(lc, c->columns)
{
ColumnData *col = (ColumnData *) lfirst(lc);
elog(NOTICE, "column definition for position %d is %s",
col->position,
format_type_with_typemod(col->typoid, col->typmod));
}
return (Datum) 0;
}
/*
* Search a variable in cursor's variable list
*/
static VariableData *
get_var(CursorData *c, char *refname, int position, bool append)
{
ListCell *lc;
foreach(lc, c->variables)
{
VariableData *var = (VariableData *) lfirst(lc);
if (strcmp(var->refname, refname) == 0)
return var;
}
if (append)
{
VariableData *nvar;
MemoryContext oldcxt;
oldcxt = MemoryContextSwitchTo(c->cursor_cxt);
nvar = palloc0(sizeof(VariableData));
nvar->refname = pstrdup(refname);
nvar->varno = c->nvariables + 1;
nvar->position = position;
c->variables = lappend(c->variables, nvar);
c->nvariables += 1;
MemoryContextSwitchTo(oldcxt);
return nvar;
}
else
ereport(ERROR,
(errcode(ERRCODE_UNDEFINED_PARAMETER),
errmsg("variable \"%s\" doesn't exists", refname)));
/* be msvc quite */
return NULL;
}
/*
* PROCEDURE dbms_sql.parse(c int, stmt varchar)
*/
Datum
dbms_sql_parse(PG_FUNCTION_ARGS)
{
char *query,
*ptr;
char *start;
size_t len;
orafceTokenType typ;
StringInfoData sinfo;
CursorData *c;
MemoryContext oldcxt;
c = get_cursor(fcinfo, true);
if (PG_ARGISNULL(1))
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
errmsg("parsed query string is NULL")));
if (c->parsed_query)
{
int cid = c->cid;
close_cursor(c);
open_cursor(c, cid);
}
query = text_to_cstring(PG_GETARG_TEXT_P(1));
ptr = query;
initStringInfo(&sinfo);
while (ptr)
{
char *startsep;
char *next_ptr;
size_t seplen;
next_ptr = next_token(ptr, &start, &len, &typ, &startsep, &seplen);
if (next_ptr)
{
if (typ == TOKEN_DOLAR_STR)
{
appendStringInfo(&sinfo, "%.*s", (int) seplen, startsep);
appendStringInfo(&sinfo, "%.*s", (int) len, start);
appendStringInfo(&sinfo, "%.*s", (int) seplen, startsep);
}
else if (typ == TOKEN_BIND_VAR)
{
char *name = downcase_identifier(start, (int) len, false, true);
VariableData *var = get_var(c, name, (int) (ptr - query), true);
appendStringInfo(&sinfo, "$%d", var->varno);
pfree(name);
}
else if (typ == TOKEN_EXT_STR)
{
appendStringInfo(&sinfo, "e\'%.*s\'", (int) len, start);
}
else if (typ == TOKEN_STR)
{
appendStringInfo(&sinfo, "\'%.*s\'", (int) len, start);
}
else if (typ == TOKEN_QIDENTIF)
{
appendStringInfo(&sinfo, "\"%.*s\"", (int) len, start);
}
else if (typ != TOKEN_NONE)
{
appendStringInfo(&sinfo, "%.*s", (int) len, start);
}
}
ptr = next_ptr;
}
/* save result to persist context */
oldcxt = MemoryContextSwitchTo(c->cursor_cxt);
c->original_query = pstrdup(query);
c->parsed_query = pstrdup(sinfo.data);
MemoryContextSwitchTo(oldcxt);
pfree(query);
pfree(sinfo.data);
return (Datum) 0;
}
/*
* Calling procedure can be slow, so there is a function alternative
*/
static Datum
bind_variable(PG_FUNCTION_ARGS)
{
CursorData *c;
VariableData *var;
char *varname,
*varname_downcase;
Oid valtype;
bool is_unknown = false;
c = get_cursor(fcinfo, true);
if (PG_ARGISNULL(1))
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
errmsg("name of bind variable is NULL")));
varname = text_to_cstring(PG_GETARG_TEXT_P(1));
if (*varname == ':')
varname += 1;
varname_downcase = downcase_identifier(varname, (int) strlen(varname), false, true);
var = get_var(c, varname_downcase, -1, false);
valtype = get_fn_expr_argtype(fcinfo->flinfo, 2);
if (valtype == RECORDOID)
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("cannot to bind a value of record type")));
valtype = getBaseType(valtype);
if (valtype == UNKNOWNOID)
{
is_unknown = true;
valtype = TEXTOID;
}
if (var->typoid != InvalidOid)
{
if (!var->typbyval && !var->isnull)
{
pfree(DatumGetPointer(var->value));
var->value = (Datum) 0;
}
var->isnull = true;
}
var->typoid = valtype;
if (!PG_ARGISNULL(2))
{
MemoryContext oldcxt;
get_typlenbyval(var->typoid, &var->typlen, &var->typbyval);
oldcxt = MemoryContextSwitchTo(c->cursor_cxt);
if (is_unknown)
var->value = CStringGetTextDatum(DatumGetPointer(PG_GETARG_DATUM(2)));
else
var->value = datumCopy(PG_GETARG_DATUM(2), var->typbyval, var->typlen);
var->isnull = false;
MemoryContextSwitchTo(oldcxt);
}
else
var->isnull = true;
return (Datum) 0;
}
/*
* CREATE PROCEDURE dbms_sql.bind_variable(c int, name varchar2, value "any");
*/
Datum
dbms_sql_bind_variable(PG_FUNCTION_ARGS)
{
return bind_variable(fcinfo);
}
/*
* CREATE FUNCTION dbms_sql.bind_variable_f(c int, name varchar2, value "any") RETURNS void;
*/
Datum
dbms_sql_bind_variable_f(PG_FUNCTION_ARGS)
{
return bind_variable(fcinfo);
}
static void
bind_array(FunctionCallInfo fcinfo, int index1, int index2)
{
CursorData *c;
VariableData *var;
char *varname,
*varname_downcase;
Oid valtype;
Oid elementtype;
c = get_cursor(fcinfo, true);
if (PG_ARGISNULL(1))
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
errmsg("name of bind variable is NULL")));
varname = text_to_cstring(PG_GETARG_TEXT_P(1));
if (*varname == ':')
varname += 1;
varname_downcase = downcase_identifier(varname, (int) strlen(varname), false, true);
var = get_var(c, varname_downcase, -1, false);
valtype = get_fn_expr_argtype(fcinfo->flinfo, 2);
if (valtype == RECORDOID)
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("cannot to bind a value of record type")));
valtype = getBaseType(valtype);
elementtype = get_element_type(valtype);
if (!OidIsValid(elementtype))
ereport(ERROR,
(errcode(ERRCODE_DATATYPE_MISMATCH),
errmsg("value is not a array")));
if (var->typoid != InvalidOid)
{
if (!var->typbyval && !var->isnull)
{
pfree(DatumGetPointer(var->value));
var->value = (Datum) 0;
}
var->isnull = true;
}
var->is_array = true;
var->typoid = valtype;
var->typelemid = elementtype;
get_typlenbyval(elementtype, &var->typelemlen, &var->typelembyval);
if (!PG_ARGISNULL(2))
{
MemoryContext oldcxt;
get_typlenbyval(var->typoid, &var->typlen, &var->typbyval);
oldcxt = MemoryContextSwitchTo(c->cursor_cxt);
var->value = datumCopy(PG_GETARG_DATUM(2), var->typbyval, var->typlen);
var->isnull = false;
MemoryContextSwitchTo(oldcxt);
}
else
var->isnull = true;
var->index1 = index1;
var->index2 = index2;
}
/*
* CREATE PROCEDURE dbms_sql.bind_array(c int, name varchar2, value anyarray);
*/
Datum
dbms_sql_bind_array_3(PG_FUNCTION_ARGS)
{
bind_array(fcinfo, -1, -1);
return (Datum) 0;
}
/*
* CREATE PROCEDURE dbms_sql.bind_array(c int, name varchar2, value anyarray, index1 int, index2 int);
*/
Datum
dbms_sql_bind_array_5(PG_FUNCTION_ARGS)
{
int index1,
index2;
if (PG_ARGISNULL(3) || PG_ARGISNULL(4))
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
errmsg("index is NULL")));
index1 = PG_GETARG_INT32(3);
index2 = PG_GETARG_INT32(4);
if (index1 < 0 || index2 < 0)
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("index is below zero")));
if (index1 > index2)
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("index1 is greater than index2")));
bind_array(fcinfo, index1, index2);
return (Datum) 0;
}
static ColumnData *
get_col(CursorData *c, int position, bool append)
{
ListCell *lc;
foreach(lc, c->columns)
{
ColumnData *col = (ColumnData *) lfirst(lc);
if (col->position == position)
return col;
}
if (append)
{
ColumnData *ncol;
MemoryContext oldcxt;
oldcxt = MemoryContextSwitchTo(c->cursor_cxt);
ncol = palloc0(sizeof(ColumnData));
ncol->position = position;
if (c->max_colpos < position)
c->max_colpos = position;
c->columns = lappend(c->columns, ncol);
MemoryContextSwitchTo(oldcxt);
return ncol;
}
else
ereport(ERROR,
(errcode(ERRCODE_UNDEFINED_COLUMN),
errmsg("column no %d is not defined", position)));
/* be msvc quite */
return NULL;
}
/*
* CREATE PROCEDURE dbms_sql.define_column(c int, col int, value "any", column_size int DEFAULT -1);
*/
Datum
dbms_sql_define_column(PG_FUNCTION_ARGS)
{
CursorData *c;
ColumnData *col;
Oid valtype;
Oid basetype;
int position;
int colsize;
TYPCATEGORY category;
bool ispreferred;
c = get_cursor(fcinfo, true);
if (PG_ARGISNULL(1))
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
errmsg("column position (number) is NULL")));
position = PG_GETARG_INT32(1);
col = get_col(c, position, true);
valtype = get_fn_expr_argtype(fcinfo->flinfo, 2);
if (valtype == RECORDOID)
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("cannot to define a column of record type")));
if (valtype == UNKNOWNOID)
valtype = TEXTOID;
basetype = getBaseType(valtype);
if (col->typoid != InvalidOid)
ereport(ERROR,
(errcode(ERRCODE_DUPLICATE_COLUMN),
errmsg("column is defined already")));
col->typoid = valtype;
if (PG_ARGISNULL(3))
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
errmsg("column_size is NULL")));
colsize = PG_GETARG_INT32(3);
get_type_category_preferred(basetype, &category, &ispreferred);
col->typisstr = category == TYPCATEGORY_STRING;
col->typmod = (col->typisstr && colsize != -1) ? colsize + 4 : -1;
get_typlenbyval(basetype, &col->typlen, &col->typbyval);
col->rowcount = 1;
return (Datum) 0;
}
/*
* CREATE PROCEDURE dbms_sql.define_array(c int, col int, value "anyarray", rowcount int, index1 int);
*/
Datum
dbms_sql_define_array(PG_FUNCTION_ARGS)
{
CursorData *c;
ColumnData *col;
Oid valtype;
Oid basetype;
int position;
int rowcount;
int index1;
Oid elementtype;
TYPCATEGORY category;
bool ispreferred;
c = get_cursor(fcinfo, true);
if (PG_ARGISNULL(1))
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
errmsg("column position (number) is NULL")));
position = PG_GETARG_INT32(1);
col = get_col(c, position, true);
valtype = get_fn_expr_argtype(fcinfo->flinfo, 2);
if (valtype == RECORDOID)
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("cannot to define a column of record type")));
get_type_category_preferred(valtype, &category, &ispreferred);
if (category != TYPCATEGORY_ARRAY)
elog(ERROR, "defined value is not array");
col->typarrayoid = valtype;
basetype = getBaseType(valtype);
elementtype = get_element_type(basetype);
if (!OidIsValid(elementtype))
ereport(ERROR,
(errcode(ERRCODE_DATATYPE_MISMATCH),
errmsg("column is not a array")));
if (col->typoid != InvalidOid)
ereport(ERROR,
(errcode(ERRCODE_DUPLICATE_COLUMN),
errmsg("column is defined already")));
col->typoid = elementtype;
if (PG_ARGISNULL(3))
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
errmsg("cnt is NULL")));
rowcount = PG_GETARG_INT32(3);
if (rowcount <= 0)
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("cnt is less or equal to zero")));
col->rowcount = (uint64) rowcount;
if (PG_ARGISNULL(4))
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
errmsg("lower_bnd is NULL")));
index1 = PG_GETARG_INT32(4);
if (index1 < 1)
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("lower_bnd is less than one")));
if (index1 != 1)
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("lower_bnd can be only only \"1\"")));
col->index1 = index1;
get_typlenbyval(col->typoid, &col->typlen, &col->typbyval);
return (Datum) 0;
}
static void
cursor_xact_cxt_deletion_callback(void *arg)
{
CursorData *cur = (CursorData *) arg;
cur->cursor_xact_cxt = NULL;
cur->result_cxt = NULL;
cur->tuples_cxt = NULL;
cur->processed = 0;
cur->nread = 0;
cur->executed = false;
cur->tupdesc = NULL;
cur->coltupdesc = NULL;
cur->casts = NULL;
cur->array_columns = NULL;
}
static uint64
execute(CursorData *c)
{
last_row_count = 0;
/* clean space with saved result */
if (!c->cursor_xact_cxt)
{
MemoryContextCallback *mcb;
MemoryContext oldcxt;
c->cursor_xact_cxt = AllocSetContextCreate(TopTransactionContext,
"dbms_sql transaction context",
ALLOCSET_DEFAULT_SIZES);
oldcxt = MemoryContextSwitchTo(c->cursor_xact_cxt);
mcb = palloc0(sizeof(MemoryContextCallback));
mcb->func = cursor_xact_cxt_deletion_callback;
mcb->arg = c;
MemoryContextRegisterResetCallback(c->cursor_xact_cxt, mcb);
MemoryContextSwitchTo(oldcxt);
}
else
{
MemoryContext save_cxt = c->cursor_xact_cxt;
MemoryContextReset(c->cursor_xact_cxt);
c->cursor_xact_cxt = save_cxt;
c->casts = NULL;
c->tupdesc = NULL;
c->tuples_cxt = NULL;
}
c->result_cxt = AllocSetContextCreate(c->cursor_xact_cxt,
"dbms_sql short life context",
ALLOCSET_DEFAULT_SIZES);
/*
* When column definitions are available, build final query and open
* cursor for fetching. When column definitions are missing, then the
* statement can be called with high frequency etc INSERT, UPDATE, so use
* cached plan.
*/
if (c->columns)
{
Datum *values;
Oid *types;
char *nulls;
ListCell *lc;
int i;
MemoryContext oldcxt;
uint64 batch_rows = 0;
oldcxt = MemoryContextSwitchTo(c->cursor_xact_cxt);
/* prepare query arguments */
values = palloc(sizeof(Datum) * c->nvariables);
types = palloc(sizeof(Oid) * c->nvariables);
nulls = palloc(sizeof(char) * c->nvariables);
i = 0;
foreach(lc, c->variables)
{
VariableData *var = (VariableData *) lfirst(lc);
if (var->is_array)
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("a array (bulk) variable can be used only when no column is defined")));
if (!var->isnull)
{
/*
* copy a value to xact memory context, to be independent on a
* outside
*/
values[i] = datumCopy(var->value, var->typbyval, var->typlen);
nulls[i] = ' ';
}
else
nulls[i] = 'n';
if (var->typoid == InvalidOid)
ereport(ERROR,
(errcode(ERRCODE_UNDEFINED_PARAMETER),
errmsg("variable \"%s\" has not a value", var->refname)));
types[i] = var->typoid;
i += 1;
}
/*
* prepare or refresh target tuple descriptor, used for final
* tupconversion
*/
if (c->tupdesc)
FreeTupleDesc(c->tupdesc);
#if PG_VERSION_NUM >= 120000
c->coltupdesc = CreateTemplateTupleDesc(c->max_colpos);
#else
c->coltupdesc = CreateTemplateTupleDesc(c->max_colpos, false);
#endif
/* prepare current result column tupdesc */
for (i = 1; i <= c->max_colpos; i++)
{
ColumnData *col = get_col(c, i, false);
char genname[32];
snprintf(genname, 32, "col%d", i);
Assert(col->rowcount > 0);
if (col->typarrayoid)
{
if (batch_rows != 0)
batch_rows = col->rowcount < batch_rows ? col->rowcount : batch_rows;
else
batch_rows = col->rowcount;
c->array_columns = bms_add_member(c->array_columns, i);
}
else
{
/* in this case we cannot do batch of rows */
batch_rows = 1;
}
TupleDescInitEntry(c->coltupdesc, (AttrNumber) i, genname, col->typoid, col->typmod, 0);
}
c->batch_rows = batch_rows;
Assert(c->coltupdesc->natts >= 0);
c->casts = palloc0(sizeof(CastCacheData) * ((unsigned int) c->coltupdesc->natts));
MemoryContextSwitchTo(oldcxt);
snprintf(c->cursorname, sizeof(c->cursorname), "__orafce_dbms_sql_cursor_%d", c->cid);
if (SPI_connect() != SPI_OK_CONNECT)
elog(ERROR, "SPI_connact failed");
c->portal = SPI_cursor_open_with_args(c->cursorname,
c->parsed_query,
(int) c->nvariables,
types,
values,
nulls,
false,
0);
/* internal error */
if (c->portal == NULL)
elog(ERROR,
"could not open cursor for query \"%s\": %s",
c->parsed_query,
SPI_result_code_string(SPI_result));
SPI_finish();
/* Describe portal and prepare cast cache */
if (c->portal->tupDesc)
{
int natts = 0;
TupleDesc tupdesc = c->portal->tupDesc;
for (i = 0; i < tupdesc->natts; i++)
{
Form_pg_attribute att = TupleDescAttr(tupdesc, i);
if (att->attisdropped)
continue;
natts += 1;
}
if (natts != c->coltupdesc->natts)
ereport(ERROR,
(errcode(ERRCODE_DATA_EXCEPTION),
errmsg("number of defined columns is different than number of query's columns")));
}
c->executed = true;
}
else
{
MemoryContext oldcxt;
Datum *values;
char *nulls;
ArrayIterator *iterators;
bool has_iterator = false;
bool has_value = true;
int max_index1 = -1;
int min_index2 = -1;
uint64 result = 0;
ListCell *lc;
int i;
if (SPI_connect() != SPI_OK_CONNECT)
elog(ERROR, "SPI_connact failed");
/* prepare, or reuse cached plan */
if (!c->plan)
{
Oid *types = NULL;
SPIPlanPtr plan;
types = palloc(sizeof(Oid) * c->nvariables);
i = 0;
foreach(lc, c->variables)
{
VariableData *var = (VariableData *) lfirst(lc);
if (var->typoid == InvalidOid)
ereport(ERROR,
(errcode(ERRCODE_UNDEFINED_PARAMETER),
errmsg("variable \"%s\" has not a value", var->refname)));
types[i++] = var->is_array ? var->typelemid : var->typoid;
}
plan = SPI_prepare(c->parsed_query, (int) c->nvariables, types);
if (!plan)
/* internal error */
elog(ERROR, "cannot to prepare plan");
if (types)
pfree(types);
SPI_keepplan(plan);
c->plan = plan;
}
oldcxt = MemoryContextSwitchTo(c->result_cxt);
/* prepare query arguments */
values = palloc(sizeof(Datum) * c->nvariables);
nulls = palloc(sizeof(char) * c->nvariables);
iterators = palloc(sizeof(ArrayIterator *) * c->nvariables);
has_value = true;
i = 0;
foreach(lc, c->variables)
{
VariableData *var = (VariableData *) lfirst(lc);
if (var->is_array)
{
if (!var->isnull)
{
iterators[i] = array_create_iterator(DatumGetArrayTypeP(var->value),
0,
NULL);
/* search do lowest common denominator */
if (var->index1 != -1)
{
if (max_index1 != -1)
{
max_index1 = max_index1 < var->index1 ? var->index1 : max_index1;
min_index2 = min_index2 > var->index2 ? var->index2 : min_index2;
}
else
{
max_index1 = var->index1;
min_index2 = var->index2;
}
}
has_iterator = true;
}
else
{
/* cannot to read data from NULL array */
has_value = false;
break;
}
}
else
{
values[i] = var->value;
nulls[i] = var->isnull ? 'n' : ' ';
}
i += 1;
}
if (has_iterator)
{
int max_rows = -1;
if (has_value)
{
if (max_index1 != -1)
{
max_rows = min_index2 - max_index1 + 1;
has_value = max_rows > 0;
if (has_value && max_index1 > 1)
{
i = 0;
foreach(lc, c->variables)
{
VariableData *var = (VariableData *) lfirst(lc);
if (var->is_array)
{
int j;
Assert(iterators[i]);
for (j = 1; j < max_index1; j++)
{
Datum value;
bool isnull;
has_value = array_iterate(iterators[i], &value, &isnull);
if (!has_value)
break;
}
if (!has_value)
break;
}
i += 1;
}
}
}
}
while (has_value && (max_rows == -1 || max_rows > 0))
{
int rc;
i = 0;
foreach(lc, c->variables)
{
VariableData *var = (VariableData *) lfirst(lc);
if (var->is_array)
{
Datum value;
bool isnull;
has_value = array_iterate(iterators[i], &value, &isnull);
if (!has_value)
break;
values[i] = value;
nulls[i] = isnull ? 'n' : ' ';
}
i += 1;
}
if (!has_value)
break;
rc = SPI_execute_plan(c->plan, values, nulls, false, 0);
if (rc < 0)
/* internal error */
elog(ERROR, "cannot to execute a query");
result += SPI_processed;
if (max_rows > 0)
max_rows -= 1;
}
MemoryContextReset(c->result_cxt);
}
else if (has_value)
{
int rc;
rc = SPI_execute_plan(c->plan, values, nulls, false, 0);
if (rc < 0)
/* internal error */
elog(ERROR, "cannot to execute a query");
result = SPI_processed;
}
SPI_finish();
MemoryContextSwitchTo(oldcxt);
return result;
}
return 0L;
}
/*
* CREATE FUNCTION dbms_sql.execute(c int) RETURNS bigint;
*/
Datum
dbms_sql_execute(PG_FUNCTION_ARGS)
{
CursorData *c;
c = get_cursor(fcinfo, true);
PG_RETURN_INT64((int64) execute(c));
}
static uint64
fetch_rows(CursorData *c, bool exact)
{
uint64 can_read_rows;
if (!c->executed)
ereport(ERROR,
(errcode(ERRCODE_INVALID_CURSOR_STATE),
errmsg("cursor is not executed")));
if (!c->portal)
ereport(ERROR,
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
errmsg("cursor has not portal")));
if (c->nread == c->processed)
{
MemoryContext oldcxt;
uint64 i;
int batch_rows;
if (!exact)
{
if (c->array_columns)
batch_rows = (1000 / c->batch_rows) * c->batch_rows;
else
batch_rows = 1000;
}
else
batch_rows = 2;
/* create or reset context for tuples */
if (!c->tuples_cxt)
c->tuples_cxt = AllocSetContextCreate(c->cursor_xact_cxt,
"dbms_sql tuples context",
ALLOCSET_DEFAULT_SIZES);
else
MemoryContextReset(c->tuples_cxt);
if (SPI_connect() != SPI_OK_CONNECT)
elog(ERROR, "SPI_connact failed");
/* try to fetch data from cursor */
SPI_cursor_fetch(c->portal, true, batch_rows);
if (SPI_tuptable == NULL)
elog(ERROR, "cannot fetch data");
if (exact && SPI_processed > 1)
ereport(ERROR,
(errcode(ERRCODE_TOO_MANY_ROWS),
errmsg("too many rows"),
errdetail("In exact mode only one row is expected")));
if (exact && SPI_processed == 0)
ereport(ERROR,
(errcode(ERRCODE_NO_DATA_FOUND),
errmsg("no data found"),
errdetail("In exact mode only one row is expected")));
oldcxt = MemoryContextSwitchTo(c->tuples_cxt);
c->tupdesc = CreateTupleDescCopy(SPI_tuptable->tupdesc);
for (i = 0; i < SPI_processed; i++)
c->tuples[i] = heap_copytuple(SPI_tuptable->vals[i]);
MemoryContextSwitchTo(oldcxt);
c->processed = SPI_processed;
c->nread = 0;
SPI_finish();
}
if (c->processed - c->nread >= c->batch_rows)
can_read_rows = c->batch_rows;
else
can_read_rows = c->processed - c->nread;
c->start_read = c->nread;
c->nread += can_read_rows;
last_row_count = can_read_rows;
return can_read_rows;
}
/*
* CREATE FUNCTION dbms_sql.fetch_rows(c int) RETURNS int;
*/
Datum
dbms_sql_fetch_rows(PG_FUNCTION_ARGS)
{
CursorData *c;
c = get_cursor(fcinfo, true);
PG_RETURN_INT32(fetch_rows(c, false));
}
/*
* CREATE FUNCTION dbms_sql.execute_and_fetch(c int, exact bool DEFAULT false) RETURNS int;
*/
Datum
dbms_sql_execute_and_fetch(PG_FUNCTION_ARGS)
{
CursorData *c;
bool exact;
c = get_cursor(fcinfo, true);
if (PG_ARGISNULL(1))
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
errmsg("exact option is NULL")));
exact = PG_GETARG_BOOL(1);
execute(c);
PG_RETURN_INT32(fetch_rows(c, exact));
}
/*
* CREATE FUNCTION dbms_sql.last_row_count() RETURNS int;
*/
Datum
dbms_sql_last_row_count(PG_FUNCTION_ARGS)
{
(void) fcinfo;
PG_RETURN_INT32(last_row_count);
}
/*
* Initialize cast case entry.
*/
static void
init_cast_cache_entry(CastCacheData *ccast,
Oid targettypid,
int32 targettypmod,
Oid sourcetypid)
{
Oid funcoid;
Oid basetypid;
basetypid = getBaseType(targettypid);
if (targettypid != basetypid)
ccast->targettypid = targettypid;
else
ccast->targettypid = InvalidOid;
ccast->targettypmod = targettypmod;
if (sourcetypid == targettypid)
ccast->without_cast = targettypmod == -1;
else
ccast->without_cast = false;
if (!ccast->without_cast)
{
ccast->path = find_coercion_pathway(basetypid,
sourcetypid,
COERCION_ASSIGNMENT,
&funcoid);
if (ccast->path == COERCION_PATH_NONE)
ereport(ERROR,
(errcode(ERRCODE_CANNOT_COERCE),
errmsg("cannot to find cast from source type \"%s\" to target type \"%s\"",
format_type_be(sourcetypid),
format_type_be(basetypid))));
if (ccast->path == COERCION_PATH_FUNC)
{
fmgr_info(funcoid, &ccast->finfo);
}
else if (ccast->path == COERCION_PATH_COERCEVIAIO)
{
bool typisvarlena;
getTypeOutputInfo(sourcetypid, &funcoid, &typisvarlena);
fmgr_info(funcoid, &ccast->finfo_out);
getTypeInputInfo(targettypid, &funcoid, &ccast->typIOParam);
fmgr_info(funcoid, &ccast->finfo_in);
}
if (targettypmod != -1)
{
ccast->path_typmod = find_typmod_coercion_function(targettypid,
&funcoid);
if (ccast->path_typmod == COERCION_PATH_FUNC)
fmgr_info(funcoid, &ccast->finfo_typmod);
}
}
ccast->isvalid = true;
}
/*
* Apply cast rules to a value
*/
static Datum
cast_value(CastCacheData *ccast, Datum value, bool isnull)
{
if (!isnull && !ccast->without_cast)
{
if (ccast->path == COERCION_PATH_FUNC)
value = FunctionCall1(&ccast->finfo, value);
else if (ccast->path == COERCION_PATH_RELABELTYPE)
{
/* do nothing */
}
else if (ccast->path == COERCION_PATH_COERCEVIAIO)
{
char *str;
str = OutputFunctionCall(&ccast->finfo_out, value);
value = InputFunctionCall(&ccast->finfo_in,
str,
ccast->typIOParam,
ccast->targettypmod);
}
else
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("unsupported cast path yet %d", ccast->path)));
if (ccast->targettypmod != -1 && ccast->path_typmod == COERCION_PATH_FUNC)
value = FunctionCall3(&ccast->finfo_typmod,
value,
Int32GetDatum(ccast->targettypmod),
BoolGetDatum(true));
}
if (ccast->targettypid != InvalidOid)
domain_check(value, isnull, ccast->targettypid, NULL, NULL);
return value;
}
/*
* CALL statement is relatily slow in PLpgSQL - due repated parsing, planning.
* So I wrote two variant of this routine. When spi_transfer is true, then
* the value is copyied to SPI outer memory context.
*/
static Datum
column_value(CursorData *c, int pos, Oid targetTypeId, bool *isnull, bool spi_transfer)
{
Datum value;
int32 columnTypeMode;
Oid columnTypeId;
CastCacheData *ccast;
Assert(c->executed);
if (last_row_count == 0)
ereport(ERROR,
(errcode(ERRCODE_NO_DATA_FOUND),
errmsg("no data found")));
if (!c->tupdesc)
ereport(ERROR,
(errcode(ERRCODE_INVALID_CURSOR_STATE),
errmsg("cursor is not fetched")));
if (!c->coltupdesc)
ereport(ERROR,
(errcode(ERRCODE_UNDEFINED_COLUMN),
errmsg("no column is defined")));
if (pos < 1 && pos > c->coltupdesc->natts)
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("column position is of of range [1, %d]",
c->coltupdesc->natts)));
columnTypeId = (TupleDescAttr(c->coltupdesc, pos - 1))->atttypid;
columnTypeMode = (TupleDescAttr(c->coltupdesc, pos - 1))->atttypmod;
Assert(c->casts);
ccast = &c->casts[pos - 1];
if (!ccast->isvalid)
{
Oid basetype = getBaseType(targetTypeId);
init_cast_cache_entry(ccast,
columnTypeId,
columnTypeMode,
SPI_gettypeid(c->tupdesc, pos));
ccast->is_array = bms_is_member(pos, c->array_columns);
if (ccast->is_array)
{
ccast->array_targettypid = basetype != targetTypeId ? targetTypeId : InvalidOid;
if (get_array_type(getBaseType(columnTypeId)) != basetype)
ereport(ERROR,
(errcode(ERRCODE_DATATYPE_MISMATCH),
errmsg("unexpected target type \"%s\" (expected type \"%s\")",
format_type_be(basetype),
format_type_be(get_array_type(getBaseType(columnTypeId))))));
}
else
ccast->array_targettypid = InvalidOid;
get_typlenbyval(basetype, &ccast->typlen, &ccast->typbyval);
}
if (ccast->is_array)
{
ArrayBuildState *abs;
uint64 idx;
uint64 i;
abs = initArrayResult(columnTypeId, CurrentMemoryContext, false);
idx = c->start_read;
for (i = 0; i < c->batch_rows; i++)
{
if (idx < c->processed)
{
value = SPI_getbinval(c->tuples[idx], c->tupdesc, pos, isnull);
value = cast_value(ccast, value, *isnull);
abs = accumArrayResult(abs,
value,
*isnull,
columnTypeId,
CurrentMemoryContext);
idx += 1;
}
}
value = makeArrayResult(abs, CurrentMemoryContext);
if (ccast->array_targettypid != InvalidOid)
domain_check(value, isnull, ccast->array_targettypid, NULL, NULL);
}
else
{
/* Maybe it can be solved by uncached slower cast */
if (targetTypeId != columnTypeId)
ereport(ERROR,
(errcode(ERRCODE_DATATYPE_MISMATCH),
errmsg("unexpected target type \"%s\" (expected type \"%s\")",
format_type_be(targetTypeId),
format_type_be(columnTypeId))));
value = SPI_getbinval(c->tuples[c->start_read], c->tupdesc, pos, isnull);
value = cast_value(ccast, value, *isnull);
}
if (*isnull)
return (Datum) 0;
if (spi_transfer)
value = SPI_datumTransfer(value, ccast->typbyval, ccast->typlen);
return value;
}
/*
* CREATE PROCEDURE dbms_sql.column_value(c int, pos int, INOUT value "any");
* Note - CALL statement is slow from PLpgSQL block (against function execution).
* This is reason why this routine is in function form too.
*/
Datum
dbms_sql_column_value(PG_FUNCTION_ARGS)
{
CursorData *c;
Datum value;
Datum result;
int pos;
bool isnull;
Oid targetTypeId;
Oid resultTypeId;
TupleDesc resulttupdesc;
HeapTuple resulttuple;
if (SPI_connect() != SPI_OK_CONNECT)
elog(ERROR, "SPI_connact failed");
c = get_cursor(fcinfo, true);
if (PG_ARGISNULL(1))
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
errmsg("column position (number) is NULL")));
pos = PG_GETARG_INT32(1);
if (!c->executed)
ereport(ERROR,
(errcode(ERRCODE_INVALID_CURSOR_STATE),
errmsg("cursor is not executed")));
/*
* Setting of OUT field is little bit more complex, because although there
* is only one output field, the result should be compisite type.
*/
if (get_call_result_type(fcinfo, &resultTypeId, &resulttupdesc) == TYPEFUNC_COMPOSITE)
{
/* check target types */
if (resulttupdesc->natts != 1)
/* internal error, should not to be */
elog(ERROR, "unexpected number of result composite fields");
targetTypeId = get_fn_expr_argtype(fcinfo->flinfo, 2);
Assert((TupleDescAttr(resulttupdesc, 0))->atttypid == targetTypeId);
}
else
/* internal error, should not to be */
elog(ERROR, "unexpected function result type");
value = column_value(c, pos, targetTypeId, &isnull, false);
resulttuple = heap_form_tuple(resulttupdesc, &value, &isnull);
result = PointerGetDatum(SPI_returntuple(resulttuple, CreateTupleDescCopy(resulttupdesc)));
SPI_finish();
PG_RETURN_DATUM(result);
}
/*
* CREATE FUNCTION dbms_sql.column_value(c int, pos int, value anyelement) RETURNS anyelement;
* Note - CALL statement is slow from PLpgSQL block (against function execution).
* This is reason why this routine is in function form too.
*/
Datum
dbms_sql_column_value_f(PG_FUNCTION_ARGS)
{
CursorData *c;
Datum value;
int pos;
bool isnull;
Oid targetTypeId;
if (SPI_connect() != SPI_OK_CONNECT)
elog(ERROR, "SPI_connact failed");
c = get_cursor(fcinfo, true);
if (PG_ARGISNULL(1))
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
errmsg("column position (number) is NULL")));
pos = PG_GETARG_INT32(1);
if (!c->executed)
ereport(ERROR,
(errcode(ERRCODE_INVALID_CURSOR_STATE),
errmsg("cursor is not executed")));
targetTypeId = get_fn_expr_argtype(fcinfo->flinfo, 2);
value = column_value(c, pos, targetTypeId, &isnull, true);
SPI_finish();
PG_RETURN_DATUM(value);
}
/******************************************************************
* Simple parser - just for replacement of bind variables by
* PostgreSQL $ param placeholders.
*
******************************************************************
*/
/*
* It doesn't work for multibyte encodings, but same implementation
* is in Postgres too.
*/
static bool
is_identif(unsigned char c)
{
if (c >= 'a' && c <= 'z')
return true;
else if (c >= 'A' && c <= 'Z')
return true;
else if (c >= 0200)
return true;
else
return false;
}
/*
* simple parser to detect :identif symbols in query
*/
static char *
next_token(char *str, char **start, size_t *len, orafceTokenType *typ, char **sep, size_t *seplen)
{
if (*str == '\0')
{
*typ = TOKEN_NONE;
return NULL;
}
/* reduce spaces */
if (*str == ' ')
{
*start = str++;
while (*str == ' ')
str++;
*typ = TOKEN_SPACES;
*len = 1;
return str;
}
/* Postgres's dolar strings */
if (*str == '$' && (str[1] == '$' ||
is_identif((unsigned char) str[1]) || str[1] == '_'))
{
char *aux = str + 1;
char *endstr;
bool is_valid = false;
char *buffer;
/* try to find end of separator */
while (*aux)
{
if (*aux == '$')
{
is_valid = true;
aux++;
break;
}
else if (is_identif((unsigned char) *aux) ||
isdigit(*aux) ||
*aux == '_')
{
aux++;
}
else
break;
}
if (!is_valid)
{
*typ = TOKEN_OTHER;
*len = 1;
*start = str;
return str + 1;
}
/* now it looks like correct $ separator */
*start = aux;
*sep = str;
Assert(aux >= str);
*seplen = (size_t) (aux - str);
*typ = TOKEN_DOLAR_STR;
/* try to find second instance */
buffer = palloc(*seplen + 1);
memcpy(buffer, *sep, *seplen);
buffer[*seplen] = '\0';
endstr = strstr(aux, buffer);
if (endstr)
{
Assert(endstr >= *start);
*len = (size_t) (endstr - *start);
return endstr + *seplen;
}
else
{
while (*aux)
aux++;
Assert(aux >= *start);
*len = (size_t) (aux - *start);
return aux;
}
return aux;
}
/* Pair comments */
if (*str == '/' && str[1] == '*')
{
*start = str;
str += 2;
while (*str)
{
if (*str == '*' && str[1] == '/')
{
str += 2;
break;
}
str++;
}
*typ = TOKEN_COMMENT;
Assert(str >= *start);
*len = (size_t) (str - *start);
return str;
}
/* Number */
if (isdigit(*str) || (*str == '.' && isdigit(str[1])))
{
bool point = *str == '.';
*start = str++;
while (*str)
{
if (isdigit(*str))
str++;
else if (*str == '.' && !point)
{
str++;
point = true;
}
else
break;
}
*typ = TOKEN_NUMBER;
Assert(str >= *start);
*len = (size_t) (str - *start);
return str;
}
/* Double colon :: */
if (*str == ':' && str[1] == ':')
{
*start = str;
*typ = TOKEN_DOUBLE_COLON;
*len = 2;
return str + 2;
}
/* Bind variable placeholder */
if (*str == ':' &&
(is_identif((unsigned char) str[1]) || str[1] == '_'))
{
*start = &str[1];
str += 2;
while (*str)
{
if (is_identif((unsigned char) *str) ||
isdigit(*str) ||
*str == '_')
str++;
else
break;
}
*typ = TOKEN_BIND_VAR;
Assert(str >= *start);
*len = (size_t) (str - *start);
return str;
}
/* Extended string literal */
if ((*str == 'e' || *str == 'E') && str[1] == '\'')
{
*start = &str[2];
str += 2;
while (*str)
{
if (*str == '\'')
{
*typ = TOKEN_EXT_STR;
Assert(str >= *start);
*len = (size_t) (str - *start);
return str + 1;
}
if (*str == '\\' && str[1] == '\'')
str += 2;
else if (*str == '\\' && str[1] == '\\')
str += 2;
else
str += 1;
}
*typ = TOKEN_EXT_STR;
Assert(str >= *start);
*len = (size_t) (str - *start);
return str;
}
/* String literal */
if (*str == '\'')
{
*start = &str[1];
str += 1;
while (*str)
{
if (*str == '\'')
{
if (str[1] != '\'')
{
*typ = TOKEN_STR;
Assert(str >= *start);
*len = (size_t) (str - *start);
return str + 1;
}
str += 2;
}
else
str += 1;
}
*typ = TOKEN_STR;
Assert(str >= *start);
*len = (size_t) (str - *start);
return str;
}
/* Quoted identifier */
if (*str == '"')
{
*start = &str[1];
str += 1;
while (*str)
{
if (*str == '"')
{
if (str[1] != '"')
{
*typ = TOKEN_QIDENTIF;
Assert(str >= *start);
*len = (size_t) (str - *start);
return str + 1;
}
str += 2;
}
else
str += 1;
}
*typ = TOKEN_QIDENTIF;
Assert(str >= *start);
*len = (size_t) (str - *start);
return str;
}
/* Identifiers */
if (is_identif((unsigned char) *str) || *str == '_')
{
*start = str++;
while (*str)
{
if (is_identif((unsigned char) *str) ||
isdigit(*str) ||
*str == '_')
str++;
else
break;
}
*typ = TOKEN_IDENTIF;
Assert(str >= *start);
*len = (size_t) (str - *start);
return str;
}
/* Others */
*typ = TOKEN_OTHER;
*start = str;
*len = 1;
return str + 1;
}
/*
* CREATE PROCEDURE dbms_sql.describe_columns(c int, OUT col_cnt int, OUT desc_t dbms_sql.desc_rec[])
*
* Returns an array of column's descriptions. Attention, the typid are related to PostgreSQL type
* system.
*/
Datum
dbms_sql_describe_columns(PG_FUNCTION_ARGS)
{
CursorData *c;
Datum values[13];
bool nulls[13];
TupleDesc tupdesc;
TupleDesc desc_rec_tupdesc;
TupleDesc cursor_tupdesc;
HeapTuple tuple;
Oid arraytypid;
Oid desc_rec_typid;
Oid *types = NULL;
ArrayBuildState *abuilder;
SPIPlanPtr plan;
CachedPlanSource *plansource = NULL;
int ncolumns = 0;
int rc;
int i = 0;
bool nonatomic;
MemoryContext callercxt = CurrentMemoryContext;
if (get_call_result_type(fcinfo, NULL, &tupdesc) != TYPEFUNC_COMPOSITE)
elog(ERROR, "return type must be a row type");
arraytypid = TupleDescAttr(tupdesc, 1)->atttypid;
desc_rec_typid = get_element_type(arraytypid);
if (!OidIsValid(desc_rec_typid))
elog(ERROR, "second output field must be an array");
desc_rec_tupdesc = lookup_rowtype_tupdesc_copy(desc_rec_typid, -1);
abuilder = initArrayResult(desc_rec_typid, callercxt, true);
c = get_cursor(fcinfo, true);
if (c->variables)
{
ListCell *lc;
types = palloc(sizeof(Oid) * c->nvariables);
i = 0;
foreach(lc, c->variables)
{
VariableData *var = (VariableData *) lfirst(lc);
if (var->typoid == InvalidOid)
ereport(ERROR,
(errcode(ERRCODE_UNDEFINED_PARAMETER),
errmsg("variable \"%s\" has not a value", var->refname)));
types[i++] = var->is_array ? var->typelemid : var->typoid;
}
}
/*
* Connect to SPI manager
*/
nonatomic = fcinfo->context &&
IsA(fcinfo->context, CallContext) &&
!castNode(CallContext, fcinfo->context)->atomic;
if ((rc = SPI_connect_ext(nonatomic ? SPI_OPT_NONATOMIC : 0)) != SPI_OK_CONNECT)
elog(ERROR, "SPI_connect failed: %s", SPI_result_code_string(rc));
plan = SPI_prepare(c->parsed_query, (int) c->nvariables, types);
if (!plan || plan->magic != _SPI_PLAN_MAGIC)
elog(ERROR, "plan is not valid");
if (list_length(plan->plancache_list) != 1)
elog(ERROR, "plan is not single execution plany");
plansource = (CachedPlanSource *) linitial(plan->plancache_list);
cursor_tupdesc = plansource->resultDesc;
ncolumns = cursor_tupdesc->natts;
for (i = 0; i < ncolumns; i++)
{
HeapTuple tp;
Form_pg_type typtup;
text *txt;
Form_pg_attribute attr = TupleDescAttr(cursor_tupdesc, i);
/*
* 0. col_type BINARY_INTEGER := 0, 1. col_max_len
* BINARY_INTEGER := 0, 2. col_name VARCHAR2(32) := '',
* 3. col_name_len BINARY_INTEGER := 0, 4. col_schema_name
* VARCHAR2(32) := '', 5. col_schema_name_len BINARY_INTEGER := 0,
* 6. col_precision BINARY_INTEGER := 0, 7. col_scale
* BINARY_INTEGER := 0, 8. col_charsetid BINARY_INTEGER := 0, 9.
* col_charsetform BINARY_INTEGER := 0, 10. col_null_ok BOOLEAN :=
* TRUE 11. col_type_name varchar2 := '', 12.
* col_type_name_len BINARY_INTEGER := 0 );
*/
values[0] = Int32GetDatum(attr->atttypid);
tp = SearchSysCache1(TYPEOID, ObjectIdGetDatum(attr->atttypid));
if (!HeapTupleIsValid(tp))
elog(ERROR, "cache lookup failed for type %u", attr->atttypid);
typtup = (Form_pg_type) GETSTRUCT(tp);
values[1] = Int32GetDatum(0);
values[6] = Int32GetDatum(0);
values[7] = Int32GetDatum(0);
if (attr->attlen != -1)
values[1] = Int32GetDatum(attr->attlen);
else if (typtup->typcategory == 'S' && attr->atttypmod > VARHDRSZ)
values[1] = Int32GetDatum(attr->atttypmod - VARHDRSZ);
else if (attr->atttypid == NUMERICOID && attr->atttypmod > VARHDRSZ)
{
values[6] = Int32GetDatum(((attr->atttypmod - VARHDRSZ) >> 16) & 0xffff);
values[7] = Int32GetDatum((((attr->atttypmod - VARHDRSZ) & 0x7ff) ^ 1024) - 1024);
}
txt = cstring_to_text(NameStr(attr->attname));
values[2] = PointerGetDatum(txt);
values[3] = DirectFunctionCall1(textlen, PointerGetDatum(txt));
txt = cstring_to_text(get_namespace_name(typtup->typnamespace));
values[4] = PointerGetDatum(txt);
values[5] = DirectFunctionCall1(textlen, PointerGetDatum(txt));
values[8] = Int32GetDatum(0);
values[9] = Int32GetDatum(0);
values[10] = BoolGetDatum(true);
if (attr->attnotnull)
values[10] = BoolGetDatum(false);
else if (typtup->typnotnull)
values[10] = BoolGetDatum(false);
txt = cstring_to_text(NameStr(typtup->typname));
values[11] = PointerGetDatum(txt);
values[12] = DirectFunctionCall1(textlen, PointerGetDatum(txt));
memset(nulls, 0, sizeof(nulls));
tuple = heap_form_tuple(desc_rec_tupdesc, values, nulls);
abuilder = accumArrayResult(abuilder,
HeapTupleGetDatum(tuple),
false,
desc_rec_typid,
CurrentMemoryContext);
ReleaseSysCache(tp);
}
SPI_freeplan(plan);
if ((rc = SPI_finish()) != SPI_OK_FINISH)
elog(ERROR, "SPI_finish failed: %s", SPI_result_code_string(rc));
MemoryContextSwitchTo(callercxt);
memset(values, 0, sizeof(values));
memset(nulls, 0, sizeof(nulls));
values[0] = Int32GetDatum(ncolumns);
nulls[0] = false;
values[1] = makeArrayResult(abuilder, callercxt);
nulls[1] = false;
tuple = heap_form_tuple(tupdesc, values, nulls);
PG_RETURN_DATUM(HeapTupleGetDatum(tuple));
}
Datum
dbms_sql_describe_columns_f(PG_FUNCTION_ARGS)
{
return dbms_sql_describe_columns(fcinfo);
}
|