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
|
#define SEQUEL_PG_VERSION_INTEGER 11400
#include <string.h>
#include <stdio.h>
#include <math.h>
#include <libpq-fe.h>
#include <ruby.h>
#include <ctype.h>
#include <sys/types.h>
#include <time.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <string.h>
#include <ruby/version.h>
#include <ruby/encoding.h>
#define SPG_MINUTES_PER_DAY 1440.0
#define SPG_SECONDS_PER_DAY 86400.0
#define SPG_DT_ADD_USEC if (usec != 0) { dt = rb_funcall(dt, spg_id_op_plus, 1, rb_Rational2(INT2NUM(usec), spg_usec_per_day)); }
#ifndef RARRAY_AREF
#define RARRAY_AREF(a, i) (RARRAY_PTR(a)[i])
#endif
#define ntohll(c) ((uint64_t)( \
(((uint64_t)(*((unsigned char*)(c)+0)))<<56LL) | \
(((uint64_t)(*((unsigned char*)(c)+1)))<<48LL) | \
(((uint64_t)(*((unsigned char*)(c)+2)))<<40LL) | \
(((uint64_t)(*((unsigned char*)(c)+3)))<<32LL) | \
(((uint64_t)(*((unsigned char*)(c)+4)))<<24LL) | \
(((uint64_t)(*((unsigned char*)(c)+5)))<<16LL) | \
(((uint64_t)(*((unsigned char*)(c)+6)))<< 8LL) | \
(((uint64_t)(*((unsigned char*)(c)+7))) ) \
))
#define SPG_DB_LOCAL (1)
#define SPG_DB_UTC (1<<1)
#define SPG_DB_CUSTOM (1<<2)
#define SPG_APP_LOCAL (1<<3)
#define SPG_APP_UTC (1<<4)
#define SPG_APP_CUSTOM (1<<5)
#define SPG_TZ_INITIALIZED (1<<6)
#define SPG_USE_TIME (1<<7)
#define SPG_HAS_TIMEZONE (1<<8)
#define SPG_YEAR_SHIFT 16
#define SPG_MONTH_SHIFT 8
#define SPG_MONTH_MASK 0x0000ffff
#define SPG_DAY_MASK 0x0000001f
#define SPG_TIME_UTC 32
#define SPG_YIELD_NORMAL 0
#define SPG_YIELD_COLUMN 1
#define SPG_YIELD_COLUMNS 2
#define SPG_YIELD_FIRST 3
#define SPG_YIELD_ARRAY 4
#define SPG_YIELD_KV_HASH 5
#define SPG_YIELD_MKV_HASH 6
#define SPG_YIELD_KMV_HASH 7
#define SPG_YIELD_MKMV_HASH 8
#define SPG_YIELD_MODEL 9
#define SPG_YIELD_KV_HASH_GROUPS 10
#define SPG_YIELD_MKV_HASH_GROUPS 11
#define SPG_YIELD_KMV_HASH_GROUPS 12
#define SPG_YIELD_MKMV_HASH_GROUPS 13
/* External functions defined by ruby-pg */
PGconn* pg_get_pgconn(VALUE);
PGresult* pgresult_get(VALUE);
int pg_get_result_enc_idx(VALUE);
static int spg_use_ipaddr_alloc;
static int spg_use_pg_get_result_enc_idx;
static VALUE spg_Sequel;
static VALUE spg_PGArray;
static VALUE spg_Blob;
static VALUE spg_Blob_instance;
static VALUE spg_Date;
static VALUE spg_DateTime;
static VALUE spg_SQLTime;
static VALUE spg_PGError;
static VALUE spg_IPAddr;
static VALUE spg_vmasks4;
static VALUE spg_vmasks6;
static VALUE spg_sym_utc;
static VALUE spg_sym_local;
static VALUE spg_sym_map;
static VALUE spg_sym_first;
static VALUE spg_sym_array;
static VALUE spg_sym_hash;
static VALUE spg_sym_hash_groups;
static VALUE spg_sym_model;
static VALUE spg_sym__sequel_pg_type;
static VALUE spg_sym__sequel_pg_value;
static VALUE spg_sym_text;
static VALUE spg_sym_character_varying;
static VALUE spg_sym_integer;
static VALUE spg_sym_timestamp;
static VALUE spg_sym_timestamptz;
static VALUE spg_sym_time;
static VALUE spg_sym_timetz;
static VALUE spg_sym_bigint;
static VALUE spg_sym_numeric;
static VALUE spg_sym_double_precision;
static VALUE spg_sym_boolean;
static VALUE spg_sym_bytea;
static VALUE spg_sym_date;
static VALUE spg_sym_smallint;
static VALUE spg_sym_oid;
static VALUE spg_sym_real;
static VALUE spg_sym_xml;
static VALUE spg_sym_money;
static VALUE spg_sym_bit;
static VALUE spg_sym_bit_varying;
static VALUE spg_sym_uuid;
static VALUE spg_sym_xid;
static VALUE spg_sym_cid;
static VALUE spg_sym_name;
static VALUE spg_sym_tid;
static VALUE spg_sym_int2vector;
static VALUE spg_sym_inet;
static VALUE spg_sym_cidr;
static VALUE spg_nan;
static VALUE spg_pos_inf;
static VALUE spg_neg_inf;
static VALUE spg_usec_per_day;
static ID spg_id_BigDecimal;
static ID spg_id_new;
static ID spg_id_date;
static ID spg_id_local;
static ID spg_id_year;
static ID spg_id_month;
static ID spg_id_day;
static ID spg_id_output_identifier;
static ID spg_id_datetime_class;
static ID spg_id_application_timezone;
static ID spg_id_to_application_timestamp;
static ID spg_id_timezone;
static ID spg_id_op_plus;
static ID spg_id_utc;
static ID spg_id_utc_offset;
static ID spg_id_localtime;
static ID spg_id_new_offset;
static ID spg_id_convert_infinite_timestamps;
static ID spg_id_infinite_timestamp_value;
static ID spg_id_call;
static ID spg_id_get;
static ID spg_id_opts;
static ID spg_id_db;
static ID spg_id_conversion_procs;
static ID spg_id_columns_equal;
static ID spg_id_columns;
static ID spg_id_encoding;
static ID spg_id_values;
static ID spg_id_lshift;
static ID spg_id_mask;
static ID spg_id_family;
static ID spg_id_addr;
static ID spg_id_mask_addr;
#if HAVE_PQSETSINGLEROWMODE
static ID spg_id_get_result;
static ID spg_id_clear;
static ID spg_id_check;
#endif
struct spg_blob_initialization {
char *blob_string;
size_t length;
};
static int enc_get_index(VALUE val) {
int i = ENCODING_GET_INLINED(val);
if (i == ENCODING_INLINE_MAX) {
i = NUM2INT(rb_ivar_get(val, spg_id_encoding));
}
return i;
}
#define PG_ENCODING_SET_NOCHECK(obj,i) \
do { \
if ((i) < ENCODING_INLINE_MAX) \
ENCODING_SET_INLINED((obj), (i)); \
else \
rb_enc_set_index((obj), (i)); \
} while(0)
static VALUE
pg_text_dec_integer(char *val, int len)
{
long i;
int max_len;
if( sizeof(i) >= 8 && FIXNUM_MAX >= 1000000000000000000LL ){
/* 64 bit system can safely handle all numbers up to 18 digits as Fixnum */
max_len = 18;
} else if( sizeof(i) >= 4 && FIXNUM_MAX >= 1000000000LL ){
/* 32 bit system can safely handle all numbers up to 9 digits as Fixnum */
max_len = 9;
} else {
/* unknown -> don't use fast path for int conversion */
max_len = 0;
}
if( len <= max_len ){
/* rb_cstr2inum() seems to be slow, so we do the int conversion by hand.
* This proved to be 40% faster by the following benchmark:
*
* conn.type_mapping_for_results = PG::BasicTypeMapForResults.new conn
* Benchmark.measure do
* conn.exec("select generate_series(1,1000000)").values }
* end
*/
char *val_pos = val;
char digit = *val_pos;
int neg;
int error = 0;
if( digit=='-' ){
neg = 1;
i = 0;
}else if( digit>='0' && digit<='9' ){
neg = 0;
i = digit - '0';
} else {
error = 1;
}
while (!error && (digit=*++val_pos)) {
if( digit>='0' && digit<='9' ){
i = i * 10 + (digit - '0');
} else {
error = 1;
}
}
if( !error ){
return LONG2FIX(neg ? -i : i);
}
}
/* Fallback to ruby method if number too big or unrecognized. */
return rb_cstr2inum(val, 10);
}
static VALUE spg__array_col_value(char *v, size_t length, VALUE converter, int enc_index, int oid, VALUE db);
static VALUE read_array(int *index, char *c_pg_array_string, int array_string_length, VALUE buf, VALUE converter, int enc_index, int oid, VALUE db) {
int word_index = 0;
char *word = RSTRING_PTR(buf);
/* The current character in the input string. */
char c;
/* 0: Currently outside a quoted string, current word never quoted
* 1: Currently inside a quoted string
* -1: Currently outside a quoted string, current word previously quoted */
int openQuote = 0;
/* Inside quoted input means the next character should be treated literally,
* instead of being treated as a metacharacter.
* Outside of quoted input, means that the word shouldn't be pushed to the array,
* used when the last entry was a subarray (which adds to the array itself). */
int escapeNext = 0;
VALUE array = rb_ary_new();
RB_GC_GUARD(array);
/* Special case the empty array, so it doesn't need to be handled manually inside
* the loop. */
if(((*index) < array_string_length) && c_pg_array_string[(*index)] == '}')
{
return array;
}
for(;(*index) < array_string_length; ++(*index))
{
c = c_pg_array_string[*index];
if(openQuote < 1)
{
if(c == ',' || c == '}')
{
if(!escapeNext)
{
if(openQuote == 0 && word_index == 4 && !strncmp(word, "NULL", word_index))
{
rb_ary_push(array, Qnil);
}
else
{
word[word_index] = '\0';
rb_ary_push(array, spg__array_col_value(word, word_index, converter, enc_index, oid, db));
}
}
if(c == '}')
{
return array;
}
escapeNext = 0;
openQuote = 0;
word_index = 0;
}
else if(c == '"')
{
openQuote = 1;
}
else if(c == '{')
{
(*index)++;
rb_ary_push(array, read_array(index, c_pg_array_string, array_string_length, buf, converter, enc_index, oid, db));
escapeNext = 1;
}
else
{
word[word_index] = c;
word_index++;
}
}
else if (escapeNext) {
word[word_index] = c;
word_index++;
escapeNext = 0;
}
else if (c == '\\')
{
escapeNext = 1;
}
else if (c == '"')
{
openQuote = -1;
}
else
{
word[word_index] = c;
word_index++;
}
}
RB_GC_GUARD(buf);
return array;
}
static VALUE check_pg_array(int* index, char *c_pg_array_string, int array_string_length) {
if (array_string_length == 0) {
rb_raise(rb_eArgError, "unexpected PostgreSQL array format, empty");
} else if (array_string_length == 2 && c_pg_array_string[0] == '{' && c_pg_array_string[0] == '}') {
return rb_ary_new();
}
switch (c_pg_array_string[0]) {
case '[':
/* Skip explicit subscripts, scanning until opening array */
for(;(*index) < array_string_length && c_pg_array_string[(*index)] != '{'; ++(*index))
/* nothing */;
if ((*index) >= array_string_length) {
rb_raise(rb_eArgError, "unexpected PostgreSQL array format, no {");
} else {
++(*index);
}
case '{':
break;
default:
rb_raise(rb_eArgError, "unexpected PostgreSQL array format, doesn't start with { or [");
}
return Qnil;
}
static VALUE parse_pg_array(VALUE self, VALUE pg_array_string, VALUE converter) {
/* convert to c-string, create additional ruby string buffer of
* the same length, as that will be the worst case. */
char *c_pg_array_string = StringValueCStr(pg_array_string);
int array_string_length = RSTRING_LEN(pg_array_string);
int index = 1;
VALUE ary;
if(RTEST(ary = check_pg_array(&index, c_pg_array_string, array_string_length))) {
return ary;
}
ary = rb_str_buf_new(array_string_length);
rb_str_set_len(ary, array_string_length);
rb_obj_freeze(ary);
return read_array(&index,
c_pg_array_string,
array_string_length,
ary,
converter,
enc_get_index(pg_array_string),
0,
Qnil);
}
static VALUE spg_timestamp_error(const char *s, VALUE self, const char *error_msg) {
self = rb_funcall(self, spg_id_db, 0);
if(RTEST(rb_funcall(self, spg_id_convert_infinite_timestamps, 0))) {
if((strcmp(s, "infinity") == 0) || (strcmp(s, "-infinity") == 0)) {
return rb_funcall(self, spg_id_infinite_timestamp_value, 1, rb_tainted_str_new(s, strlen(s)));
}
}
rb_raise(rb_eArgError, "%s", error_msg);
}
static inline int char_to_digit(char c)
{
return c - '0';
}
static int str4_to_int(const char *str)
{
return char_to_digit(str[0]) * 1000
+ char_to_digit(str[1]) * 100
+ char_to_digit(str[2]) * 10
+ char_to_digit(str[3]);
}
static int str2_to_int(const char *str)
{
return char_to_digit(str[0]) * 10
+ char_to_digit(str[1]);
}
static VALUE spg_time(const char *p, size_t length, int current) {
int hour, minute, second, i;
int usec = 0;
ID meth = spg_id_local;
if (length < 8) {
rb_raise(rb_eArgError, "unexpected time format, too short");
}
if (p[2] == ':' && p[5] == ':') {
hour = str2_to_int(p);
minute = str2_to_int(p+3);
second = str2_to_int(p+6);
p += 8;
if (length >= 10 && p[0] == '.') {
static const int coef[6] = { 100000, 10000, 1000, 100, 10, 1 };
p++;
for (i = 0; i < 6 && isdigit(*p); i++) {
usec += coef[i] * char_to_digit(*p++);
}
}
} else {
rb_raise(rb_eArgError, "unexpected time format");
}
if (current & SPG_TIME_UTC) {
meth = spg_id_utc;
}
return rb_funcall(spg_SQLTime, meth, 7,
INT2NUM(current >> SPG_YEAR_SHIFT),
INT2NUM((current & SPG_MONTH_MASK) >> SPG_MONTH_SHIFT),
INT2NUM(current & SPG_DAY_MASK),
INT2NUM(hour),
INT2NUM(minute),
INT2NUM(second),
INT2NUM(usec));
}
/* Caller should check length is at least 4 */
static int parse_year(const char **str, size_t *length) {
int year, i;
size_t remaining = *length;
const char * p = *str;
year = str4_to_int(p);
p += 4;
remaining -= 4;
for(i = 0; isdigit(*p) && i < 3; i++, p++, remaining--) {
year = 10 * year + char_to_digit(*p);
}
*str = p;
*length = remaining;
return year;
}
static VALUE spg_date(const char *s, VALUE self, size_t length) {
int year, month, day;
const char *p = s;
if (length < 10) {
return spg_timestamp_error(s, self, "unexpected date format, too short");
}
year = parse_year(&p, &length);
if (length >= 5 && p[0] == '-' && p[3] == '-') {
month = str2_to_int(p+1);
day = str2_to_int(p+4);
} else {
return spg_timestamp_error(s, self, "unexpected date format");
}
if(s[10] == ' ' && s[11] == 'B' && s[12] == 'C') {
year = -year;
year++;
}
return rb_funcall(spg_Date, spg_id_new, 3, INT2NUM(year), INT2NUM(month), INT2NUM(day));
}
static VALUE spg_timestamp(const char *s, VALUE self, size_t length, int tz) {
VALUE dt;
int year, month, day, hour, min, sec, utc_offset;
char offset_sign = 0;
int offset_seconds = 0;
int usec = 0;
int i;
const char *p = s;
size_t remaining = length;
if (tz & SPG_DB_CUSTOM || tz & SPG_APP_CUSTOM) {
return rb_funcall(rb_funcall(self, spg_id_db, 0), spg_id_to_application_timestamp, 1, rb_str_new2(s));
}
if (remaining < 19) {
return spg_timestamp_error(s, self, "unexpected timetamp format, too short");
}
year = parse_year(&p, &remaining);
if (remaining >= 15 && p[0] == '-' && p[3] == '-' && p[6] == ' ' && p[9] == ':' && p[12] == ':') {
month = str2_to_int(p+1);
day = str2_to_int(p+4);
hour = str2_to_int(p+7);
min = str2_to_int(p+10);
sec = str2_to_int(p+13);
p += 15;
remaining -= 15;
if (remaining >= 2 && p[0] == '.') {
/* microsecond part, up to 6 digits */
static const int coef[6] = { 100000, 10000, 1000, 100, 10, 1 };
p++;
remaining--;
for (i = 0; i < 6 && isdigit(*p); i++)
{
usec += coef[i] * char_to_digit(*p++);
remaining--;
}
}
if ((tz & SPG_HAS_TIMEZONE) && remaining >= 3 && (p[0] == '+' || p[0] == '-')) {
offset_sign = p[0];
offset_seconds += str2_to_int(p+1)*3600;
p += 3;
remaining -= 3;
if (p[0] == ':') {
p++;
remaining--;
}
if (remaining >= 2 && isdigit(p[0]) && isdigit(p[1]))
{
offset_seconds += str2_to_int(p)*60;
p += 2;
remaining -= 2;
}
if (p[0] == ':')
{
p++;
remaining--;
}
if (remaining >= 2 && isdigit(p[0]) && isdigit(p[1]))
{
offset_seconds += str2_to_int(p);
p += 2;
remaining -= 2;
}
if (offset_sign == '-') {
offset_seconds *= -1;
}
}
if (remaining == 3 && p[0] == ' ' && p[1] == 'B' && p[2] == 'C') {
year = -year;
year++;
} else if (remaining != 0) {
return spg_timestamp_error(s, self, "unexpected timestamp format, remaining data left");
}
} else {
return spg_timestamp_error(s, self, "unexpected timestamp format");
}
if (tz & SPG_USE_TIME) {
#if (RUBY_API_VERSION_MAJOR > 2 || (RUBY_API_VERSION_MAJOR == 2 && RUBY_API_VERSION_MINOR >= 3)) && defined(HAVE_TIMEGM)
/* Fast path for time conversion */
struct tm tm;
struct timespec ts;
time_t time;
tm.tm_year = year - 1900;
tm.tm_mon = month - 1;
tm.tm_mday = day;
tm.tm_hour = hour;
tm.tm_min = min;
tm.tm_sec = sec;
tm.tm_isdst = -1;
ts.tv_nsec = usec*1000;
if (offset_sign) {
time = timegm(&tm);
if (time != -1) {
ts.tv_sec = time - offset_seconds;
dt = rb_time_timespec_new(&ts, offset_seconds);
if (tz & SPG_APP_UTC) {
dt = rb_funcall(dt, spg_id_utc, 0);
} else if (tz & SPG_APP_LOCAL) {
dt = rb_funcall(dt, spg_id_localtime, 0);
}
return dt;
}
} else {
if (tz & SPG_DB_UTC) {
time = timegm(&tm);
} else {
time = mktime(&tm);
}
if (time != -1) {
ts.tv_sec = time;
if (tz & SPG_APP_UTC) {
offset_seconds = INT_MAX-1;
} else {
offset_seconds = INT_MAX;
}
return rb_time_timespec_new(&ts, offset_seconds);
}
}
#endif
if (offset_sign) {
/* Offset given, convert to local time if not already in local time.
* While PostgreSQL generally returns timestamps in local time, it's unwise to rely on this.
*/
dt = rb_funcall(rb_cTime, spg_id_local, 7, INT2NUM(year), INT2NUM(month), INT2NUM(day), INT2NUM(hour), INT2NUM(min), INT2NUM(sec), INT2NUM(usec));
utc_offset = NUM2INT(rb_funcall(dt, spg_id_utc_offset, 0));
if (utc_offset != offset_seconds) {
dt = rb_funcall(dt, spg_id_op_plus, 1, INT2NUM(utc_offset - offset_seconds));
}
if (tz & SPG_APP_UTC) {
dt = rb_funcall(dt, spg_id_utc, 0);
}
return dt;
} else if (!(tz & (SPG_APP_LOCAL|SPG_DB_LOCAL|SPG_APP_UTC|SPG_DB_UTC))) {
return rb_funcall(rb_cTime, spg_id_local, 7, INT2NUM(year), INT2NUM(month), INT2NUM(day), INT2NUM(hour), INT2NUM(min), INT2NUM(sec), INT2NUM(usec));
}
/* No offset given, and some timezone combination given */
if (tz & SPG_DB_UTC) {
dt = rb_funcall(rb_cTime, spg_id_utc, 7, INT2NUM(year), INT2NUM(month), INT2NUM(day), INT2NUM(hour), INT2NUM(min), INT2NUM(sec), INT2NUM(usec));
if (tz & SPG_APP_LOCAL) {
return rb_funcall(dt, spg_id_localtime, 0);
} else {
return dt;
}
} else {
dt = rb_funcall(rb_cTime, spg_id_local, 7, INT2NUM(year), INT2NUM(month), INT2NUM(day), INT2NUM(hour), INT2NUM(min), INT2NUM(sec), INT2NUM(usec));
if (tz & SPG_APP_UTC) {
return rb_funcall(dt, spg_id_utc, 0);
} else {
return dt;
}
}
} else {
/* datetime.class == DateTime */
double offset_fraction;
if (offset_sign) {
/* Offset given, handle correct local time.
* While PostgreSQL generally returns timestamps in local time, it's unwise to rely on this.
*/
offset_fraction = offset_seconds/(double)SPG_SECONDS_PER_DAY;
dt = rb_funcall(spg_DateTime, spg_id_new, 7, INT2NUM(year), INT2NUM(month), INT2NUM(day), INT2NUM(hour), INT2NUM(min), INT2NUM(sec), rb_float_new(offset_fraction));
SPG_DT_ADD_USEC
if (tz & SPG_APP_LOCAL) {
offset_fraction = NUM2INT(rb_funcall(rb_funcall(rb_cTime, spg_id_local, 6, INT2NUM(year), INT2NUM(month), INT2NUM(day), INT2NUM(hour), INT2NUM(min), INT2NUM(sec)), spg_id_utc_offset, 0))/SPG_SECONDS_PER_DAY;
dt = rb_funcall(dt, spg_id_new_offset, 1, rb_float_new(offset_fraction));
} else if (tz & SPG_APP_UTC) {
dt = rb_funcall(dt, spg_id_new_offset, 1, INT2NUM(0));
}
return dt;
} else if (!(tz & (SPG_APP_LOCAL|SPG_DB_LOCAL|SPG_APP_UTC|SPG_DB_UTC))) {
dt = rb_funcall(spg_DateTime, spg_id_new, 6, INT2NUM(year), INT2NUM(month), INT2NUM(day), INT2NUM(hour), INT2NUM(min), INT2NUM(sec));
SPG_DT_ADD_USEC
return dt;
}
/* No offset given, and some timezone combination given */
if (tz & SPG_DB_LOCAL) {
offset_fraction = NUM2INT(rb_funcall(rb_funcall(rb_cTime, spg_id_local, 6, INT2NUM(year), INT2NUM(month), INT2NUM(day), INT2NUM(hour), INT2NUM(min), INT2NUM(sec)), spg_id_utc_offset, 0))/SPG_SECONDS_PER_DAY;
dt = rb_funcall(spg_DateTime, spg_id_new, 7, INT2NUM(year), INT2NUM(month), INT2NUM(day), INT2NUM(hour), INT2NUM(min), INT2NUM(sec), rb_float_new(offset_fraction));
SPG_DT_ADD_USEC
if (tz & SPG_APP_UTC) {
return rb_funcall(dt, spg_id_new_offset, 1, INT2NUM(0));
} else {
return dt;
}
} else {
dt = rb_funcall(spg_DateTime, spg_id_new, 6, INT2NUM(year), INT2NUM(month), INT2NUM(day), INT2NUM(hour), INT2NUM(min), INT2NUM(sec));
SPG_DT_ADD_USEC
if (tz & SPG_APP_LOCAL) {
offset_fraction = NUM2INT(rb_funcall(rb_funcall(rb_cTime, spg_id_local, 6, INT2NUM(year), INT2NUM(month), INT2NUM(day), INT2NUM(hour), INT2NUM(min), INT2NUM(sec)), spg_id_utc_offset, 0))/SPG_SECONDS_PER_DAY;
dt = rb_funcall(dt, spg_id_new_offset, 1, rb_float_new(offset_fraction));
return dt;
} else {
return dt;
}
}
}
}
static VALUE spg_inet(char *val, size_t len)
{
VALUE ip;
VALUE ip_int;
VALUE vmasks;
unsigned int dst[4];
char buf[64];
int af = strchr(val, '.') ? AF_INET : AF_INET6;
int mask = -1;
if (len >= 64) {
rb_raise(rb_eTypeError, "unable to parse IP address, too long");
}
if (len >= 4) {
if (val[len-2] == '/') {
mask = val[len-1] - '0';
memcpy(buf, val, len-2);
val = buf;
val[len-2] = '\0';
} else if (val[len-3] == '/') {
mask = (val[len-2]- '0')*10 + val[len-1] - '0';
memcpy(buf, val, len-3);
val = buf;
val[len-3] = '\0';
} else if (val[len-4] == '/') {
mask = (val[len-3]- '0')*100 + (val[len-2]- '0')*10 + val[len-1] - '0';
memcpy(buf, val, len-4);
val = buf;
val[len-4] = '\0';
}
}
if (1 != inet_pton(af, val, (char *)dst)) {
rb_raise(rb_eTypeError, "unable to parse IP address: %s", val);
}
if (af == AF_INET) {
unsigned int ip_int_native;
if (mask == -1) {
mask = 32;
} else if (mask < 0 || mask > 32) {
rb_raise(rb_eTypeError, "invalid mask for IPv4: %d", mask);
}
vmasks = spg_vmasks4;
ip_int_native = ntohl(*dst);
/* Work around broken IPAddr behavior of convering portion
of address after netmask to 0 */
switch (mask) {
case 0:
ip_int_native = 0;
break;
case 32:
/* nothing to do */
break;
default:
ip_int_native &= ~((1UL<<(32-mask))-1);
break;
}
ip_int = UINT2NUM(ip_int_native);
} else {
unsigned long long * dstllp = (unsigned long long *)dst;
unsigned long long ip_int_native1;
unsigned long long ip_int_native2;
if (mask == -1) {
mask = 128;
} else if (mask < 0 || mask > 128) {
rb_raise(rb_eTypeError, "invalid mask for IPv6: %d", mask);
}
vmasks = spg_vmasks6;
ip_int_native1 = ntohll(dstllp);
dstllp++;
ip_int_native2 = ntohll(dstllp);
if (mask == 128) {
/* nothing to do */
} else if (mask == 64) {
ip_int_native2 = 0;
} else if (mask == 0) {
ip_int_native1 = 0;
ip_int_native2 = 0;
} else if (mask < 64) {
ip_int_native1 &= ~((1ULL<<(64-mask))-1);
ip_int_native2 = 0;
} else {
ip_int_native2 &= ~((1ULL<<(128-mask))-1);
}
/* 4 Bignum allocations */
ip_int = ULL2NUM(ip_int_native1);
ip_int = rb_funcall(ip_int, spg_id_lshift, 1, INT2NUM(64));
ip_int = rb_funcall(ip_int, spg_id_op_plus, 1, ULL2NUM(ip_int_native2));
}
if (spg_use_ipaddr_alloc) {
ip = rb_obj_alloc(spg_IPAddr);
rb_ivar_set(ip, spg_id_family, INT2NUM(af));
rb_ivar_set(ip, spg_id_addr, ip_int);
rb_ivar_set(ip, spg_id_mask_addr, RARRAY_AREF(vmasks, mask));
} else {
VALUE ip_args[2];
ip_args[0] = ip_int;
ip_args[1] = INT2NUM(af);
ip = rb_class_new_instance(2, ip_args, spg_IPAddr);
ip = rb_funcall(ip, spg_id_mask, 1, INT2NUM(mask));
}
return ip;
}
static VALUE spg_create_Blob(VALUE v) {
struct spg_blob_initialization *bi = (struct spg_blob_initialization *)v;
if (bi->blob_string == NULL) {
rb_raise(rb_eNoMemError, "PQunescapeBytea failure: probably not enough memory");
}
v = rb_str_new_with_class(spg_Blob_instance, bi->blob_string, bi->length);
#ifndef NO_TAINT
rb_obj_taint(v);
#endif
return v;
}
static VALUE spg_fetch_rows_set_cols(VALUE self, VALUE ignore) {
return Qnil;
}
static VALUE spg__array_col_value(char *v, size_t length, VALUE converter, int enc_index, int oid, VALUE db) {
VALUE rv;
struct spg_blob_initialization bi;
switch(oid) {
case 16: /* boolean */
rv = *v == 't' ? Qtrue : Qfalse;
break;
case 17: /* bytea */
bi.blob_string = (char *)PQunescapeBytea((unsigned char*)v, &bi.length);
rv = rb_ensure(spg_create_Blob, (VALUE)&bi, (VALUE(*)(VALUE))PQfreemem, (VALUE)bi.blob_string);
break;
case 20: /* integer */
case 21:
case 23:
case 26:
rv = pg_text_dec_integer(v, length);
break;
case 700: /* float */
case 701:
switch(*v) {
case 'N':
rv = spg_nan;
break;
case 'I':
rv = spg_pos_inf;
break;
case '-':
if (v[1] == 'I') {
rv = spg_neg_inf;
} else {
rv = rb_float_new(rb_cstr_to_dbl(v, Qfalse));
}
break;
default:
rv = rb_float_new(rb_cstr_to_dbl(v, Qfalse));
break;
}
break;
case 1700: /* numeric */
rv = rb_funcall(rb_mKernel, spg_id_BigDecimal, 1, rb_str_new(v, length));
break;
case 1082: /* date */
rv = spg_date(v, db, length);
break;
case 1083: /* time */
case 1266:
rv = spg_time(v, length, (int)converter);
break;
case 1114: /* timestamp */
case 1184:
rv = spg_timestamp(v, db, length, (int)converter);
break;
case 18: /* char */
case 25: /* text */
case 1043: /* varchar*/
rv = rb_tainted_str_new(v, length);
PG_ENCODING_SET_NOCHECK(rv, enc_index);
break;
case 869: /* inet */
case 650: /* cidr */
if (!RTEST(converter)) {
rv = spg_inet(v, length);
break;
}
default:
rv = rb_tainted_str_new(v, length);
PG_ENCODING_SET_NOCHECK(rv, enc_index);
if (RTEST(converter)) {
rv = rb_funcall(converter, spg_id_call, 1, rv);
}
}
return rv;
}
static VALUE spg_array_value(char *c_pg_array_string, int array_string_length, VALUE converter, int enc_index, int oid, VALUE self, VALUE array_type) {
int index = 1;
VALUE buf;
VALUE args[2];
args[1] = array_type;
if(RTEST(args[0] = check_pg_array(&index, c_pg_array_string, array_string_length))) {
return rb_class_new_instance(2, args, spg_PGArray);
}
buf = rb_str_buf_new(array_string_length);
rb_str_set_len(buf, array_string_length);
rb_obj_freeze(buf);
args[0] = read_array(&index, c_pg_array_string, array_string_length, buf, converter, enc_index, oid, self);
return rb_class_new_instance(2, args, spg_PGArray);
}
static int spg_time_info_bitmask(void) {
int info = 0;
VALUE now = rb_funcall(spg_SQLTime, spg_id_date, 0);
info = NUM2INT(rb_funcall(now, spg_id_year, 0)) << SPG_YEAR_SHIFT;
info += NUM2INT(rb_funcall(now, spg_id_month, 0)) << SPG_MONTH_SHIFT;
info += NUM2INT(rb_funcall(now, spg_id_day, 0));
if (rb_funcall(spg_Sequel, spg_id_application_timezone, 0) == spg_sym_utc) {
info += SPG_TIME_UTC;
}
return info;
}
static int spg_timestamp_info_bitmask(VALUE self) {
VALUE db, rtz;
int tz = 0;
db = rb_funcall(self, spg_id_db, 0);
rtz = rb_funcall(db, spg_id_timezone, 0);
if (rtz != Qnil) {
if (rtz == spg_sym_local) {
tz |= SPG_DB_LOCAL;
} else if (rtz == spg_sym_utc) {
tz |= SPG_DB_UTC;
} else {
tz |= SPG_DB_CUSTOM;
}
}
rtz = rb_funcall(spg_Sequel, spg_id_application_timezone, 0);
if (rtz != Qnil) {
if (rtz == spg_sym_local) {
tz |= SPG_APP_LOCAL;
} else if (rtz == spg_sym_utc) {
tz |= SPG_APP_UTC;
} else {
tz |= SPG_APP_CUSTOM;
}
}
if (rb_cTime == rb_funcall(spg_Sequel, spg_id_datetime_class, 0)) {
tz |= SPG_USE_TIME;
}
tz |= SPG_TZ_INITIALIZED;
return tz;
}
static VALUE spg__col_value(VALUE self, PGresult *res, long i, long j, VALUE* colconvert, int enc_index) {
char *v;
VALUE rv;
int ftype = PQftype(res, j);
VALUE array_type;
VALUE scalar_oid;
struct spg_blob_initialization bi;
if(PQgetisnull(res, i, j)) {
rv = Qnil;
} else {
v = PQgetvalue(res, i, j);
switch(ftype) {
case 16: /* boolean */
rv = *v == 't' ? Qtrue : Qfalse;
break;
case 17: /* bytea */
bi.blob_string = (char *)PQunescapeBytea((unsigned char*)v, &bi.length);
rv = rb_ensure(spg_create_Blob, (VALUE)&bi, (VALUE(*)(VALUE))PQfreemem, (VALUE)bi.blob_string);
break;
case 20: /* integer */
case 21:
case 23:
case 26:
rv = pg_text_dec_integer(v, PQgetlength(res, i, j));
break;
case 700: /* float */
case 701:
switch(*v) {
case 'N':
rv = spg_nan;
break;
case 'I':
rv = spg_pos_inf;
break;
case '-':
if (v[1] == 'I') {
rv = spg_neg_inf;
} else {
rv = rb_float_new(rb_cstr_to_dbl(v, Qfalse));
}
break;
default:
rv = rb_float_new(rb_cstr_to_dbl(v, Qfalse));
break;
}
break;
case 1700: /* numeric */
rv = rb_funcall(rb_mKernel, spg_id_BigDecimal, 1, rb_str_new(v, PQgetlength(res, i, j)));
break;
case 1082: /* date */
rv = spg_date(v, self, PQgetlength(res, i, j));
break;
case 1083: /* time */
case 1266:
rv = spg_time(v, PQgetlength(res, i, j), (int)colconvert[j]);
break;
case 1114: /* timestamp */
case 1184:
rv = spg_timestamp(v, self, PQgetlength(res, i, j), (int)colconvert[j]);
break;
case 18: /* char */
case 25: /* text */
case 1043: /* varchar*/
rv = rb_tainted_str_new(v, PQgetlength(res, i, j));
PG_ENCODING_SET_NOCHECK(rv, enc_index);
break;
/* array types */
case 1009:
case 1014:
case 1015:
case 1007:
case 1115:
case 1185:
case 1183:
case 1270:
case 1016:
case 1231:
case 1022:
case 1000:
case 1001:
case 1182:
case 1005:
case 1028:
case 1021:
case 143:
case 791:
case 1561:
case 1563:
case 2951:
case 1011:
case 1012:
case 1003:
case 1010:
case 1006:
case 1041:
case 651:
switch(ftype) {
case 1009:
case 1014:
array_type = spg_sym_text;
scalar_oid = 25;
break;
case 1015:
array_type = spg_sym_character_varying;
scalar_oid = 25;
break;
case 1007:
array_type = spg_sym_integer;
scalar_oid = 23;
break;
case 1115:
array_type = spg_sym_timestamp;
scalar_oid = 1114;
break;
case 1185:
array_type = spg_sym_timestamptz;
scalar_oid = 1184;
break;
case 1183:
array_type = spg_sym_time;
scalar_oid = 1083;
break;
case 1270:
array_type = spg_sym_timetz;
scalar_oid = 1266;
break;
case 1016:
array_type = spg_sym_bigint;
scalar_oid = 20;
break;
case 1231:
array_type = spg_sym_numeric;
scalar_oid = 1700;
break;
case 1022:
array_type = spg_sym_double_precision;
scalar_oid = 701;
break;
case 1000:
array_type = spg_sym_boolean;
scalar_oid = 16;
break;
case 1001:
array_type = spg_sym_bytea;
scalar_oid = 17;
break;
case 1182:
array_type = spg_sym_date;
scalar_oid = 1082;
break;
case 1005:
array_type = spg_sym_smallint;
scalar_oid = 21;
break;
case 1028:
array_type = spg_sym_oid;
scalar_oid = 26;
break;
case 1021:
array_type = spg_sym_real;
scalar_oid = 700;
break;
case 143:
array_type = spg_sym_xml;
scalar_oid = 142;
break;
case 791:
array_type = spg_sym_money;
scalar_oid = 790;
break;
case 1561:
array_type = spg_sym_bit;
scalar_oid = 1560;
break;
case 1563:
array_type = spg_sym_bit_varying;
scalar_oid = 1562;
break;
case 2951:
array_type = spg_sym_uuid;
scalar_oid = 2950;
break;
case 1011:
array_type = spg_sym_xid;
scalar_oid = 28;
break;
case 1012:
array_type = spg_sym_cid;
scalar_oid = 29;
break;
case 1003:
array_type = spg_sym_name;
scalar_oid = 19;
break;
case 1010:
array_type = spg_sym_tid;
scalar_oid = 27;
break;
case 1006:
array_type = spg_sym_int2vector;
scalar_oid = 22;
break;
case 1041:
if (RTEST(colconvert[j])) {
goto default_cond;
}
array_type = spg_sym_inet;
scalar_oid = 869;
break;
case 651:
if (RTEST(colconvert[j])) {
goto default_cond;
}
array_type = spg_sym_cidr;
scalar_oid = 650;
break;
}
rv = spg_array_value(v, PQgetlength(res, i, j), colconvert[j], enc_index, scalar_oid, self, array_type);
break;
case 869: /* inet */
case 650: /* cidr */
if (colconvert[j] == Qnil) {
rv = spg_inet(v, PQgetlength(res, i, j));
break;
}
default:
default_cond:
rv = rb_tainted_str_new(v, PQgetlength(res, i, j));
PG_ENCODING_SET_NOCHECK(rv, enc_index);
if (colconvert[j] != Qnil) {
rv = rb_funcall(colconvert[j], spg_id_call, 1, rv);
}
}
}
return rv;
}
static VALUE spg__col_values(VALUE self, VALUE v, VALUE *colsyms, long nfields, PGresult *res, long i, VALUE *colconvert, int enc_index) {
long j;
VALUE cur;
long len = RARRAY_LEN(v);
VALUE a = rb_ary_new2(len);
for (j=0; j<len; j++) {
cur = rb_ary_entry(v, j);
rb_ary_store(a, j, cur == Qnil ? Qnil : spg__col_value(self, res, i, NUM2LONG(cur), colconvert, enc_index));
}
return a;
}
static long spg__field_id(VALUE v, VALUE *colsyms, long nfields) {
long j;
for (j=0; j<nfields; j++) {
if (colsyms[j] == v) {
return j;
}
}
return -1;
}
static VALUE spg__field_ids(VALUE v, VALUE *colsyms, long nfields) {
long i;
long j;
VALUE cur;
long len = RARRAY_LEN(v);
VALUE pg_columns = rb_ary_new2(len);
for (i=0; i<len; i++) {
cur = rb_ary_entry(v, i);
j = spg__field_id(cur, colsyms, nfields);
rb_ary_store(pg_columns, i, j == -1 ? Qnil : LONG2NUM(j));
}
return pg_columns;
}
static void spg_set_column_info(VALUE self, PGresult *res, VALUE *colsyms, VALUE *colconvert, int enc_index) {
long i;
long j;
long nfields;
int timestamp_info = 0;
int time_info = 0;
VALUE conv_procs = 0;
VALUE tmp;
nfields = PQnfields(res);
for(j=0; j<nfields; j++) {
tmp = rb_str_new2(PQfname(res, j));
PG_ENCODING_SET_NOCHECK(tmp, enc_index);
colsyms[j] = rb_funcall(self, spg_id_output_identifier, 1, tmp);
i = PQftype(res, j);
switch (i) {
/* scalar types */
case 16:
case 17:
case 20:
case 21:
case 23:
case 26:
case 700:
case 701:
case 790:
case 1700:
case 1082:
case 18:
case 25:
case 1043:
/* array types */
case 1009:
case 1014:
case 1015:
case 1007:
case 1016:
case 1231:
case 1022:
case 1000:
case 1001:
case 1182:
case 1005:
case 1028:
case 1021:
case 143:
case 791:
case 1561:
case 1563:
case 2951:
case 1011:
case 1012:
case 1003:
case 1010:
colconvert[j] = Qnil;
break;
/* time types */
case 1183:
case 1083:
case 1270:
case 1266:
if (time_info == 0) {
time_info = spg_time_info_bitmask();
}
colconvert[j] = time_info;
break;
/* timestamp types */
case 1115:
case 1185:
case 1114:
case 1184:
if (timestamp_info == 0) {
timestamp_info = spg_timestamp_info_bitmask(self);
}
colconvert[j] = (VALUE)((i == 1184 || i == 1185) ? (timestamp_info | SPG_HAS_TIMEZONE) : timestamp_info);
break;
default:
if (conv_procs == 0) {
conv_procs = rb_funcall(rb_funcall(self, spg_id_db, 0), spg_id_conversion_procs, 0);
}
colconvert[j] = rb_funcall(conv_procs, spg_id_get, 1, INT2NUM(i));
break;
}
}
rb_funcall(self, spg_id_columns_equal, 1, rb_ary_new4(nfields, colsyms));
}
static VALUE spg_yield_hash_rows_internal(VALUE self, PGresult *res, int enc_index, VALUE* colsyms, VALUE* colconvert) {
long ntuples;
long nfields;
long i;
long j;
VALUE h;
VALUE opts;
VALUE pg_type;
VALUE pg_value;
char type = SPG_YIELD_NORMAL;
ntuples = PQntuples(res);
nfields = PQnfields(res);
spg_set_column_info(self, res, colsyms, colconvert, enc_index);
opts = rb_funcall(self, spg_id_opts, 0);
if (rb_type(opts) == T_HASH) {
pg_type = rb_hash_aref(opts, spg_sym__sequel_pg_type);
pg_value = rb_hash_aref(opts, spg_sym__sequel_pg_value);
if (SYMBOL_P(pg_type)) {
if (pg_type == spg_sym_map) {
if (SYMBOL_P(pg_value)) {
type = SPG_YIELD_COLUMN;
} else if (rb_type(pg_value) == T_ARRAY) {
type = SPG_YIELD_COLUMNS;
}
} else if (pg_type == spg_sym_first) {
type = SPG_YIELD_FIRST;
} else if (pg_type == spg_sym_array) {
type = SPG_YIELD_ARRAY;
} else if ((pg_type == spg_sym_hash || pg_type == spg_sym_hash_groups) && rb_type(pg_value) == T_ARRAY) {
VALUE pg_value_key, pg_value_value;
pg_value_key = rb_ary_entry(pg_value, 0);
pg_value_value = rb_ary_entry(pg_value, 1);
if (SYMBOL_P(pg_value_key)) {
if (SYMBOL_P(pg_value_value)) {
type = pg_type == spg_sym_hash_groups ? SPG_YIELD_KV_HASH_GROUPS : SPG_YIELD_KV_HASH;
} else if (rb_type(pg_value_value) == T_ARRAY) {
type = pg_type == spg_sym_hash_groups ? SPG_YIELD_KMV_HASH_GROUPS : SPG_YIELD_KMV_HASH;
}
} else if (rb_type(pg_value_key) == T_ARRAY) {
if (SYMBOL_P(pg_value_value)) {
type = pg_type == spg_sym_hash_groups ? SPG_YIELD_MKV_HASH_GROUPS : SPG_YIELD_MKV_HASH;
} else if (rb_type(pg_value_value) == T_ARRAY) {
type = pg_type == spg_sym_hash_groups ? SPG_YIELD_MKMV_HASH_GROUPS : SPG_YIELD_MKMV_HASH;
}
}
} else if (pg_type == spg_sym_model && rb_type(pg_value) == T_CLASS) {
type = SPG_YIELD_MODEL;
}
}
}
switch(type) {
case SPG_YIELD_NORMAL:
/* Normal, hash for entire row */
for(i=0; i<ntuples; i++) {
h = rb_hash_new();
for(j=0; j<nfields; j++) {
rb_hash_aset(h, colsyms[j], spg__col_value(self, res, i, j, colconvert, enc_index));
}
rb_yield(h);
}
break;
case SPG_YIELD_COLUMN:
/* Single column */
j = spg__field_id(pg_value, colsyms, nfields);
if (j == -1) {
for(i=0; i<ntuples; i++) {
rb_yield(Qnil);
}
} else {
for(i=0; i<ntuples; i++) {
rb_yield(spg__col_value(self, res, i, j, colconvert, enc_index));
}
}
break;
case SPG_YIELD_COLUMNS:
/* Multiple columns as an array */
h = spg__field_ids(pg_value, colsyms, nfields);
for(i=0; i<ntuples; i++) {
rb_yield(spg__col_values(self, h, colsyms, nfields, res, i, colconvert, enc_index));
}
break;
case SPG_YIELD_FIRST:
/* First column */
for(i=0; i<ntuples; i++) {
rb_yield(spg__col_value(self, res, i, 0, colconvert, enc_index));
}
break;
case SPG_YIELD_ARRAY:
/* Array of all columns */
for(i=0; i<ntuples; i++) {
h = rb_ary_new2(nfields);
for(j=0; j<nfields; j++) {
rb_ary_store(h, j, spg__col_value(self, res, i, j, colconvert, enc_index));
}
rb_yield(h);
}
break;
case SPG_YIELD_KV_HASH:
case SPG_YIELD_KV_HASH_GROUPS:
/* Hash with single key and single value */
{
VALUE k, v;
h = rb_hash_new();
k = spg__field_id(rb_ary_entry(pg_value, 0), colsyms, nfields);
v = spg__field_id(rb_ary_entry(pg_value, 1), colsyms, nfields);
if(type == SPG_YIELD_KV_HASH) {
for(i=0; i<ntuples; i++) {
rb_hash_aset(h, spg__col_value(self, res, i, k, colconvert, enc_index), spg__col_value(self, res, i, v, colconvert, enc_index));
}
} else {
VALUE kv, vv, a;
for(i=0; i<ntuples; i++) {
kv = spg__col_value(self, res, i, k, colconvert, enc_index);
vv = spg__col_value(self, res, i, v, colconvert, enc_index);
a = rb_hash_lookup(h, kv);
if(!RTEST(a)) {
rb_hash_aset(h, kv, rb_ary_new3(1, vv));
} else {
rb_ary_push(a, vv);
}
}
}
rb_yield(h);
}
break;
case SPG_YIELD_MKV_HASH:
case SPG_YIELD_MKV_HASH_GROUPS:
/* Hash with array of keys and single value */
{
VALUE k, v;
h = rb_hash_new();
k = spg__field_ids(rb_ary_entry(pg_value, 0), colsyms, nfields);
v = spg__field_id(rb_ary_entry(pg_value, 1), colsyms, nfields);
if(type == SPG_YIELD_MKV_HASH) {
for(i=0; i<ntuples; i++) {
rb_hash_aset(h, spg__col_values(self, k, colsyms, nfields, res, i, colconvert, enc_index), spg__col_value(self, res, i, v, colconvert, enc_index));
}
} else {
VALUE kv, vv, a;
for(i=0; i<ntuples; i++) {
kv = spg__col_values(self, k, colsyms, nfields, res, i, colconvert, enc_index);
vv = spg__col_value(self, res, i, v, colconvert, enc_index);
a = rb_hash_lookup(h, kv);
if(!RTEST(a)) {
rb_hash_aset(h, kv, rb_ary_new3(1, vv));
} else {
rb_ary_push(a, vv);
}
}
}
rb_yield(h);
}
break;
case SPG_YIELD_KMV_HASH:
case SPG_YIELD_KMV_HASH_GROUPS:
/* Hash with single keys and array of values */
{
VALUE k, v;
h = rb_hash_new();
k = spg__field_id(rb_ary_entry(pg_value, 0), colsyms, nfields);
v = spg__field_ids(rb_ary_entry(pg_value, 1), colsyms, nfields);
if(type == SPG_YIELD_KMV_HASH) {
for(i=0; i<ntuples; i++) {
rb_hash_aset(h, spg__col_value(self, res, i, k, colconvert, enc_index), spg__col_values(self, v, colsyms, nfields, res, i, colconvert, enc_index));
}
} else {
VALUE kv, vv, a;
for(i=0; i<ntuples; i++) {
kv = spg__col_value(self, res, i, k, colconvert, enc_index);
vv = spg__col_values(self, v, colsyms, nfields, res, i, colconvert, enc_index);
a = rb_hash_lookup(h, kv);
if(!RTEST(a)) {
rb_hash_aset(h, kv, rb_ary_new3(1, vv));
} else {
rb_ary_push(a, vv);
}
}
}
rb_yield(h);
}
break;
case SPG_YIELD_MKMV_HASH:
case SPG_YIELD_MKMV_HASH_GROUPS:
/* Hash with array of keys and array of values */
{
VALUE k, v;
h = rb_hash_new();
k = spg__field_ids(rb_ary_entry(pg_value, 0), colsyms, nfields);
v = spg__field_ids(rb_ary_entry(pg_value, 1), colsyms, nfields);
if(type == SPG_YIELD_MKMV_HASH) {
for(i=0; i<ntuples; i++) {
rb_hash_aset(h, spg__col_values(self, k, colsyms, nfields, res, i, colconvert, enc_index), spg__col_values(self, v, colsyms, nfields, res, i, colconvert, enc_index));
}
} else {
VALUE kv, vv, a;
for(i=0; i<ntuples; i++) {
kv = spg__col_values(self, k, colsyms, nfields, res, i, colconvert, enc_index);
vv = spg__col_values(self, v, colsyms, nfields, res, i, colconvert, enc_index);
a = rb_hash_lookup(h, kv);
if(!RTEST(a)) {
rb_hash_aset(h, kv, rb_ary_new3(1, vv));
} else {
rb_ary_push(a, vv);
}
}
}
rb_yield(h);
}
break;
case SPG_YIELD_MODEL:
/* Model object for entire row */
for(i=0; i<ntuples; i++) {
h = rb_hash_new();
for(j=0; j<nfields; j++) {
rb_hash_aset(h, colsyms[j], spg__col_value(self, res, i, j, colconvert, enc_index));
}
/* Abuse local variable */
pg_type = rb_obj_alloc(pg_value);
rb_ivar_set(pg_type, spg_id_values, h);
rb_yield(pg_type);
}
break;
}
return self;
}
#define def_spg_yield_hash_rows(max_fields) static VALUE spg_yield_hash_rows_ ## max_fields(VALUE self, PGresult *res, int enc_index) { \
VALUE colsyms[max_fields]; \
VALUE colconvert[max_fields]; \
return spg_yield_hash_rows_internal(self, res, enc_index, colsyms, colconvert); \
}
def_spg_yield_hash_rows(16)
def_spg_yield_hash_rows(64)
def_spg_yield_hash_rows(256)
def_spg_yield_hash_rows(1664)
static VALUE spg_yield_hash_rows(VALUE self, VALUE rres, VALUE ignore) {
PGresult *res;
long nfields;
int enc_index;
if (!RTEST(rres)) {
return self;
}
res = pgresult_get(rres);
enc_index = spg_use_pg_get_result_enc_idx ? pg_get_result_enc_idx(rres) : enc_get_index(rres);
nfields = PQnfields(res);
if (nfields <= 16) return spg_yield_hash_rows_16(self, res, enc_index);
else if (nfields <= 64) return spg_yield_hash_rows_64(self, res, enc_index);
else if (nfields <= 256) return spg_yield_hash_rows_256(self, res, enc_index);
else if (nfields <= 1664) return spg_yield_hash_rows_1664(self, res, enc_index);
else rb_raise(rb_eRangeError, "more than 1664 columns in query (%ld columns detected)", nfields);
/* UNREACHABLE */
return self;
}
static VALUE spg_supports_streaming_p(VALUE self) {
return
#if HAVE_PQSETSINGLEROWMODE
Qtrue;
#else
Qfalse;
#endif
}
#if HAVE_PQSETSINGLEROWMODE
static VALUE spg_set_single_row_mode(VALUE self) {
PGconn *conn;
conn = pg_get_pgconn(self);
if (PQsetSingleRowMode(conn) != 1) {
rb_raise(spg_PGError, "cannot set single row mode");
}
return Qnil;
}
static VALUE spg__yield_each_row_internal(VALUE self, VALUE rconn, VALUE rres, PGresult *res, int enc_index, VALUE *colsyms, VALUE *colconvert) {
long nfields;
long j;
VALUE h;
VALUE opts;
VALUE pg_type;
VALUE pg_value = Qnil;
char type = SPG_YIELD_NORMAL;
nfields = PQnfields(res);
/* Only handle regular and model types. All other types require compiling all
* of the results at once, which is not a use case for streaming. The streaming
* code does not call this function for the other types. */
opts = rb_funcall(self, spg_id_opts, 0);
if (rb_type(opts) == T_HASH) {
pg_type = rb_hash_aref(opts, spg_sym__sequel_pg_type);
pg_value = rb_hash_aref(opts, spg_sym__sequel_pg_value);
if (SYMBOL_P(pg_type) && pg_type == spg_sym_model && rb_type(pg_value) == T_CLASS) {
type = SPG_YIELD_MODEL;
}
}
spg_set_column_info(self, res, colsyms, colconvert, enc_index);
while (PQntuples(res) != 0) {
h = rb_hash_new();
for(j=0; j<nfields; j++) {
rb_hash_aset(h, colsyms[j], spg__col_value(self, res, 0, j, colconvert , enc_index));
}
rb_funcall(rres, spg_id_clear, 0);
if(type == SPG_YIELD_MODEL) {
/* Abuse local variable */
pg_type = rb_obj_alloc(pg_value);
rb_ivar_set(pg_type, spg_id_values, h);
rb_yield(pg_type);
} else {
rb_yield(h);
}
rres = rb_funcall(rconn, spg_id_get_result, 0);
if (rres == Qnil) {
return self;
}
rb_funcall(rres, spg_id_check, 0);
res = pgresult_get(rres);
}
rb_funcall(rres, spg_id_clear, 0);
return self;
}
#define def_spg__yield_each_row(max_fields) static VALUE spg__yield_each_row_ ## max_fields(VALUE self, VALUE rconn, VALUE rres, PGresult *res, int enc_index) { \
VALUE colsyms[max_fields]; \
VALUE colconvert[max_fields]; \
return spg__yield_each_row_internal(self, rconn, rres, res, enc_index, colsyms, colconvert); \
}
def_spg__yield_each_row(16)
def_spg__yield_each_row(64)
def_spg__yield_each_row(256)
def_spg__yield_each_row(1664)
static VALUE spg__yield_each_row(VALUE self) {
PGresult *res;
VALUE rres;
VALUE rconn;
int enc_index;
long nfields;
rconn = rb_ary_entry(self, 1);
self = rb_ary_entry(self, 0);
rres = rb_funcall(rconn, spg_id_get_result, 0);
if (rres == Qnil) {
return self;
}
rb_funcall(rres, spg_id_check, 0);
res = pgresult_get(rres);
enc_index = spg_use_pg_get_result_enc_idx ? pg_get_result_enc_idx(rres) : enc_get_index(rres);
nfields = PQnfields(res);
if (nfields <= 16) return spg__yield_each_row_16(self, rconn, rres, res, enc_index);
else if (nfields <= 64) return spg__yield_each_row_64(self, rconn, rres, res, enc_index);
else if (nfields <= 256) return spg__yield_each_row_256(self, rconn, rres, res, enc_index);
else if (nfields <= 1664) return spg__yield_each_row_1664(self, rconn, rres, res, enc_index);
else {
rb_funcall(rres, spg_id_clear, 0);
rb_raise(rb_eRangeError, "more than 1664 columns in query (%ld columns detected)", nfields);
}
/* UNREACHABLE */
return self;
}
static VALUE spg__flush_results(VALUE rconn) {
PGconn *conn;
PGresult *res;
VALUE error = 0;
conn = pg_get_pgconn(rconn);
while ((res = PQgetResult(conn)) != NULL) {
if (!error) {
switch (PQresultStatus(res))
{
case PGRES_BAD_RESPONSE:
case PGRES_FATAL_ERROR:
case PGRES_NONFATAL_ERROR:
error = rb_str_new2(PQresultErrorMessage(res));
break;
default:
break;
}
}
PQclear(res);
}
if (error) {
VALUE exception = rb_exc_new3(spg_PGError, error);
rb_iv_set(exception, "@connection", rconn);
rb_exc_raise(exception);
}
return rconn;
}
static VALUE spg_yield_each_row(VALUE self, VALUE rconn) {
VALUE v;
v = rb_ary_new3(2, self, rconn);
return rb_ensure(spg__yield_each_row, v, spg__flush_results, rconn);
}
#endif
void Init_sequel_pg(void) {
VALUE c, spg_Postgres;
spg_Sequel = rb_const_get(rb_cObject, rb_intern("Sequel"));
rb_gc_register_mark_object(spg_Sequel);
spg_Postgres = rb_const_get(spg_Sequel, rb_intern("Postgres"));
if(rb_obj_respond_to(spg_Postgres, rb_intern("sequel_pg_version_supported?"), 0)) {
if(!RTEST(rb_funcall(spg_Postgres, rb_intern("sequel_pg_version_supported?"), 1, INT2FIX(SEQUEL_PG_VERSION_INTEGER)))) {
rb_warn("sequel_pg not loaded as it is not compatible with the Sequel version in use; install the latest version of sequel_pg or uninstall sequel_pg");
return;
}
}
if (RTEST(rb_eval_string("defined?(PG::VERSION) && PG::VERSION.to_f >= 1.2"))) {
spg_use_pg_get_result_enc_idx = 1;
}
rb_const_set(spg_Postgres, rb_intern("SEQUEL_PG_VERSION_INTEGER"), INT2FIX(SEQUEL_PG_VERSION_INTEGER));
spg_id_BigDecimal = rb_intern("BigDecimal");
spg_id_new = rb_intern("new");
spg_id_date = rb_intern("date");
spg_id_local = rb_intern("local");
spg_id_year = rb_intern("year");
spg_id_month = rb_intern("month");
spg_id_day = rb_intern("day");
spg_id_output_identifier = rb_intern("output_identifier");
spg_id_datetime_class = rb_intern("datetime_class");
spg_id_application_timezone = rb_intern("application_timezone");
spg_id_to_application_timestamp = rb_intern("to_application_timestamp");
spg_id_timezone = rb_intern("timezone");
spg_id_op_plus = rb_intern("+");
spg_id_utc = rb_intern("utc");
spg_id_utc_offset = rb_intern("utc_offset");
spg_id_localtime = rb_intern("localtime");
spg_id_new_offset = rb_intern("new_offset");
spg_id_convert_infinite_timestamps = rb_intern("convert_infinite_timestamps");
spg_id_infinite_timestamp_value = rb_intern("infinite_timestamp_value");
spg_id_call = rb_intern("call");
spg_id_get = rb_intern("[]");
spg_id_opts = rb_intern("opts");
spg_id_db = rb_intern("db");
spg_id_conversion_procs = rb_intern("conversion_procs");
spg_id_columns_equal = rb_intern("columns=");
spg_id_columns = rb_intern("@columns");
spg_id_encoding = rb_intern("@encoding");
spg_id_values = rb_intern("@values");
spg_id_family = rb_intern("@family");
spg_id_addr = rb_intern("@addr");
spg_id_mask_addr = rb_intern("@mask_addr");
spg_id_lshift = rb_intern("<<");
spg_id_mask = rb_intern("mask");
spg_sym_utc = ID2SYM(rb_intern("utc"));
spg_sym_local = ID2SYM(rb_intern("local"));
spg_sym_map = ID2SYM(rb_intern("map"));
spg_sym_first = ID2SYM(rb_intern("first"));
spg_sym_array = ID2SYM(rb_intern("array"));
spg_sym_hash = ID2SYM(rb_intern("hash"));
spg_sym_hash_groups = ID2SYM(rb_intern("hash_groups"));
spg_sym_model = ID2SYM(rb_intern("model"));
spg_sym__sequel_pg_type = ID2SYM(rb_intern("_sequel_pg_type"));
spg_sym__sequel_pg_value = ID2SYM(rb_intern("_sequel_pg_value"));
spg_sym_text = ID2SYM(rb_intern("text"));
spg_sym_character_varying = ID2SYM(rb_intern("character varying"));
spg_sym_integer = ID2SYM(rb_intern("integer"));
spg_sym_timestamp = ID2SYM(rb_intern("timestamp"));
spg_sym_timestamptz = ID2SYM(rb_intern("timestamptz"));
spg_sym_time = ID2SYM(rb_intern("time"));
spg_sym_timetz = ID2SYM(rb_intern("timetz"));
spg_sym_bigint = ID2SYM(rb_intern("bigint"));
spg_sym_numeric = ID2SYM(rb_intern("numeric"));
spg_sym_double_precision = ID2SYM(rb_intern("double precision"));
spg_sym_boolean = ID2SYM(rb_intern("boolean"));
spg_sym_bytea = ID2SYM(rb_intern("bytea"));
spg_sym_date = ID2SYM(rb_intern("date"));
spg_sym_smallint = ID2SYM(rb_intern("smallint"));
spg_sym_oid = ID2SYM(rb_intern("oid"));
spg_sym_real = ID2SYM(rb_intern("real"));
spg_sym_xml = ID2SYM(rb_intern("xml"));
spg_sym_money = ID2SYM(rb_intern("money"));
spg_sym_bit = ID2SYM(rb_intern("bit"));
spg_sym_bit_varying = ID2SYM(rb_intern("bit varying"));
spg_sym_uuid = ID2SYM(rb_intern("uuid"));
spg_sym_xid = ID2SYM(rb_intern("xid"));
spg_sym_cid = ID2SYM(rb_intern("cid"));
spg_sym_name = ID2SYM(rb_intern("name"));
spg_sym_tid = ID2SYM(rb_intern("tid"));
spg_sym_int2vector = ID2SYM(rb_intern("int2vector"));
spg_sym_inet = ID2SYM(rb_intern("inet"));
spg_sym_cidr = ID2SYM(rb_intern("cidr"));
spg_Blob = rb_const_get(rb_const_get(spg_Sequel, rb_intern("SQL")), rb_intern("Blob"));
rb_gc_register_mark_object(spg_Blob);
spg_Blob_instance = rb_obj_freeze(rb_funcall(spg_Blob, spg_id_new, 0));
rb_gc_register_mark_object(spg_Blob_instance);
spg_SQLTime = rb_const_get(spg_Sequel, rb_intern("SQLTime"));
rb_gc_register_mark_object(spg_SQLTime);
spg_Date = rb_const_get(rb_cObject, rb_intern("Date"));
rb_gc_register_mark_object(spg_Date);
spg_DateTime = rb_const_get(rb_cObject, rb_intern("DateTime"));
rb_gc_register_mark_object(spg_DateTime);
spg_PGError = rb_const_get(rb_const_get(rb_cObject, rb_intern("PG")), rb_intern("Error"));
rb_gc_register_mark_object(spg_PGError);
spg_nan = rb_eval_string("0.0/0.0");
rb_gc_register_mark_object(spg_nan);
spg_pos_inf = rb_eval_string("1.0/0.0");
rb_gc_register_mark_object(spg_pos_inf);
spg_neg_inf = rb_eval_string("-1.0/0.0");
rb_gc_register_mark_object(spg_neg_inf);
spg_usec_per_day = ULL2NUM(86400000000ULL);
rb_gc_register_mark_object(spg_usec_per_day);
rb_require("ipaddr");
spg_IPAddr = rb_const_get(rb_cObject, rb_intern("IPAddr"));
rb_gc_register_mark_object(spg_IPAddr);
spg_use_ipaddr_alloc = RTEST(rb_eval_string("IPAddr.new.instance_variables.sort == [:@addr, :@family, :@mask_addr]"));
spg_vmasks4 = rb_eval_string("a = [0]*33; a[0] = 0; a[32] = 0xffffffff; 31.downto(1){|i| a[i] = a[i+1] - (1 << (31 - i))}; a.freeze");
rb_gc_register_mark_object(spg_vmasks4);
spg_vmasks6 = rb_eval_string("a = [0]*129; a[0] = 0; a[128] = 0xffffffffffffffffffffffffffffffff; 127.downto(1){|i| a[i] = a[i+1] - (1 << (127 - i))}; a.freeze");
rb_gc_register_mark_object(spg_vmasks6);
c = rb_const_get(spg_Postgres, rb_intern("Dataset"));
rb_undef_method(c, "yield_hash_rows");
rb_define_private_method(c, "yield_hash_rows", spg_yield_hash_rows, 2);
rb_undef_method(c, "fetch_rows_set_cols");
rb_define_private_method(c, "fetch_rows_set_cols", spg_fetch_rows_set_cols, 1);
rb_define_singleton_method(spg_Postgres, "supports_streaming?", spg_supports_streaming_p, 0);
#if HAVE_PQSETSINGLEROWMODE
spg_id_get_result = rb_intern("get_result");
spg_id_clear = rb_intern("clear");
spg_id_check = rb_intern("check");
rb_define_private_method(c, "yield_each_row", spg_yield_each_row, 1);
c = rb_const_get(spg_Postgres, rb_intern("Adapter"));
rb_define_private_method(c, "set_single_row_mode", spg_set_single_row_mode, 0);
#endif
rb_define_singleton_method(spg_Postgres, "parse_pg_array", parse_pg_array, 2);
rb_require("sequel_pg/sequel_pg");
rb_require("sequel/extensions/pg_array");
spg_PGArray = rb_const_get(spg_Postgres, rb_intern("PGArray"));
rb_gc_register_mark_object(spg_PGArray);
}
|