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
|
/*!
\file lib/vector/Vlib/read_pg.c
\brief Vector library - reading features (PostGIS format)
Higher level functions for reading/writing/manipulating vectors.
\todo Currently only points, linestrings and polygons are supported,
implement also other types
\todo Support multigeometries
\todo PostGIS Topology - fix category handling (read categories
from feature table)
(C) 2011-2013 by the GRASS Development Team
This program is free software under the GNU General Public License
(>=v2). Read the file COPYING that comes with GRASS for details.
\author Martin Landa <landa.martin gmail.com>
*/
#include <inttypes.h>
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include <grass/vector.h>
#include <grass/dbmi.h>
#include <grass/glocale.h>
#include "local_proto.h"
#ifdef HAVE_POSTGRES
#include "pg_local_proto.h"
/* #define USE_CURSOR_RND */
static unsigned char *wkb_data;
static unsigned int wkb_data_length;
static int read_next_line_pg(struct Map_info *, struct line_pnts *,
struct line_cats *, int);
SF_FeatureType get_feature(struct Map_info *, int, int);
static unsigned char *hex_to_wkb(const char *, int *);
static int point_from_wkb(const unsigned char *, int, int, int,
struct line_pnts *);
static int linestring_from_wkb(const unsigned char *, int, int, int,
struct line_pnts *, int);
static int polygon_from_wkb(const unsigned char *, int, int, int,
struct Format_info_cache *, int *);
static int geometry_collection_from_wkb(const unsigned char *, int, int, int,
struct Format_info_cache *,
struct feat_parts *);
static int error_corrupted_data(const char *);
static void add_fpart(struct feat_parts *, SF_FeatureType, int, int);
static int get_centroid(struct Map_info *, int, struct line_pnts *,
struct line_cats *);
static void error_tuples(struct Format_info_pg *);
#define NOPG_UNUSED
#else
#define NOPG_UNUSED UNUSED
#endif
/*!
\brief Read next feature from PostGIS layer. Skip
empty features (level 1 without topology).
t
This function implements sequential access.
The action of this routine can be modified by:
- Vect_read_constraint_region()
- Vect_read_constraint_type()
- Vect_remove_constraints()
\param Map pointer to Map_info structure
\param[out] line_p container used to store line points within
(pointer to line_pnts struct)
\param[out] line_c container used to store line categories within
(pointer line_cats struct)
\return feature type
\return -2 no more features (EOF)
\return -1 out of memory
*/
int V1_read_next_line_pg(struct Map_info *Map NOPG_UNUSED,
struct line_pnts *line_p NOPG_UNUSED,
struct line_cats *line_c NOPG_UNUSED)
{
#ifdef HAVE_POSTGRES
G_debug(3, "V1_read_next_line_pg()");
/* constraints not ignored */
return read_next_line_pg(Map, line_p, line_c, FALSE);
#else
G_fatal_error(_("GRASS is not compiled with PostgreSQL support"));
return -1;
#endif
}
/*!
\brief Read next feature from PostGIS layer on topological level
(simple feature access).
This function implements sequential access.
\param Map pointer to Map_info structure
\param[out] line_p container used to store line points within
(pointer to line_pnts struct)
\param[out] line_c container used to store line categories within
(pointer to line_cats struct)
\return feature type
\return -2 no more features (EOF)
\return -1 on failure
*/
int V2_read_next_line_pg(struct Map_info *Map NOPG_UNUSED,
struct line_pnts *line_p NOPG_UNUSED,
struct line_cats *line_c NOPG_UNUSED)
{
#ifdef HAVE_POSTGRES
int line, ret;
struct P_line *Line;
struct bound_box lbox, mbox;
struct Format_info_pg *pg_info;
G_debug(3, "V2_read_next_line_pg()");
pg_info = &(Map->fInfo.pg);
if (Map->constraint.region_flag)
Vect_get_constraint_box(Map, &mbox);
ret = -1;
while (TRUE) {
line = Map->next_line;
if (Map->next_line > Map->plus.n_lines)
return -2;
Line = Map->plus.Line[line];
if (Line == NULL) { /* skip dead features */
Map->next_line++;
continue;
}
if (Map->constraint.type_flag) {
/* skip by type */
if (!(Line->type & Map->constraint.type)) {
Map->next_line++;
continue;
}
}
if (!pg_info->toposchema_name && Line->type == GV_CENTROID) {
G_debug(4, "Determine centroid for simple features");
if (line_p != NULL) {
int i, found;
struct bound_box box;
struct boxlist list;
struct P_topo_c *topo = (struct P_topo_c *)Line->topo;
/* get area bbox */
Vect_get_area_box(Map, topo->area, &box);
/* search in spatial index for centroid with area bbox */
dig_init_boxlist(&list, TRUE);
Vect_select_lines_by_box(Map, &box, Line->type, &list);
found = -1;
for (i = 0; i < list.n_values; i++) {
if (list.id[i] == line) {
found = i;
break;
}
}
if (found > -1) {
Vect_reset_line(line_p);
Vect_append_point(line_p, list.box[found].E,
list.box[found].N, 0.0);
}
}
if (line_c != NULL) {
/* cat = FID and offset = FID for centroid */
Vect_reset_cats(line_c);
Vect_cat_set(line_c, 1, (int)Line->offset);
}
ret = GV_CENTROID;
}
else {
/* ignore constraints */
ret = read_next_line_pg(Map, line_p, line_c, TRUE);
if (ret != Line->type) {
G_warning(_("Unexpected feature type (%d) - should be (%d)"),
ret, Line->type);
return -1;
}
}
if (Map->constraint.region_flag) {
/* skip by region */
Vect_line_box(line_p, &lbox);
if (!Vect_box_overlap(&lbox, &mbox)) {
Map->next_line++;
continue;
}
}
/* skip by field ignored */
Map->next_line++; /* read next */
return ret;
}
#else
G_fatal_error(_("GRASS is not compiled with PostgreSQL support"));
#endif
return -1; /* not reached */
}
/*!
\brief Read feature from PostGIS layer at given offset (level 1 without
topology)
This function implements random access on level 1.
\param Map pointer to Map_info structure
\param[out] line_p container used to store line points within
(pointer line_pnts struct)
\param[out] line_c container used to store line categories within
(pointer line_cats struct)
\param offset given offset
\return line type
\return 0 dead line
\return -2 no more features
\return -1 out of memory
*/
int V1_read_line_pg(struct Map_info *Map NOPG_UNUSED,
struct line_pnts *line_p NOPG_UNUSED,
struct line_cats *line_c NOPG_UNUSED,
off_t offset NOPG_UNUSED)
{
#ifdef HAVE_POSTGRES
long fid;
int ipart, type;
struct Format_info_pg *pg_info;
pg_info = &(Map->fInfo.pg);
G_debug(3, "V1_read_line_pg(): offset = %lu offset_num = %lu", (long)offset,
(long)pg_info->offset.array_num);
if (offset >= pg_info->offset.array_num)
return -2; /* nothing to read */
if (line_p != NULL)
Vect_reset_line(line_p);
if (line_c != NULL)
Vect_reset_cats(line_c);
fid = pg_info->offset.array[offset];
G_debug(4, " fid = %ld", fid);
/* read feature to cache if necessary */
if (pg_info->cache.fid != fid) {
int type;
G_debug(3, "read (%s) feature (fid = %ld) to cache",
pg_info->table_name, fid);
get_feature(Map, fid, -1);
if (pg_info->cache.sf_type == SF_NONE) {
G_warning(_("Feature %ld without geometry skipped"), fid);
return -1;
}
type = (int)pg_info->cache.sf_type;
if (type < 0) /* -1 || - 2 */
return type;
}
/* get data from cache */
if (pg_info->cache.sf_type == SF_POINT ||
pg_info->cache.sf_type == SF_LINESTRING)
ipart = 0;
else
ipart = pg_info->offset.array[offset + 1];
type = pg_info->cache.lines_types[ipart];
G_debug(3, "read feature part: %d -> type = %d", ipart, type);
if (line_p)
Vect_append_points(line_p, pg_info->cache.lines[ipart], GV_FORWARD);
if (line_c)
Vect_cat_set(line_c, 1, (int)fid);
return type;
#else
G_fatal_error(_("GRASS is not compiled with PostgreSQL support"));
return -1;
#endif
}
/*!
\brief Read feature from PostGIS layer on topological level
This function implements random access on level 2.
Note: Topology must be built at level >= GV_BUILD_BASE
\param Map pointer to Map_info structure
\param[out] line_p container used to store line points within (pointer
line_pnts struct) \param[out] line_c container used to store line categories
within (pointer line_cats struct) \param line feature id to read
\return feature type
\return 0 dead feature
\return -1 on error
*/
int V2_read_line_pg(struct Map_info *Map NOPG_UNUSED,
struct line_pnts *line_p NOPG_UNUSED,
struct line_cats *line_c NOPG_UNUSED, int line NOPG_UNUSED)
{
#ifdef HAVE_POSTGRES
int fid, cache_idx;
struct Format_info_pg *pg_info;
struct P_line *Line;
pg_info = &(Map->fInfo.pg);
if (line < 1 || line > Map->plus.n_lines) {
G_warning(_("Attempt to access feature with invalid id (%d)"), line);
return -1;
}
Line = Map->plus.Line[line];
if (Line == NULL) {
G_warning(_("Attempt to access dead feature %d"), line);
return 0;
}
G_debug(4, "V2_read_line_pg() line = %d type = %d offset = %" PRId64, line,
Line->type, Line->offset);
if (!line_p && !line_c)
return Line->type;
if (line_p)
Vect_reset_line(line_p);
if (Line->type == GV_CENTROID && !pg_info->toposchema_name) {
/* simple features access: get centroid from sidx */
return get_centroid(Map, line, line_p, line_c);
}
/* get feature id */
if (pg_info->toposchema_name)
fid = Line->offset;
else
fid = pg_info->offset.array[Line->offset];
/* read feature */
if (pg_info->cache.ctype == CACHE_MAP) {
cache_idx = line - 1;
if (cache_idx >= pg_info->cache.lines_num)
G_fatal_error(_("Requesting invalid feature from cache (%d). "
"Number of features in cache: %d"),
cache_idx, pg_info->cache.lines_num);
if (pg_info->cache.lines_types[cache_idx] != Line->type)
G_warning(_("Feature %d: unexpected type (%d) - should be %d"),
line, pg_info->cache.lines_types[cache_idx], Line->type);
}
else {
get_feature(Map, fid, Line->type);
cache_idx = 0;
}
/* check sf type */
if (pg_info->cache.sf_type == SF_NONE) {
G_warning(_("Feature %d without geometry skipped"), line);
return -1;
}
if (0 > (int)pg_info->cache.sf_type) /* -1 || - 2 */
return -1;
if (line_c) {
int cat;
Vect_reset_cats(line_c);
if (!pg_info->toposchema_name) { /* simple features access */
cat = fid;
}
else { /* PostGIS Topology (cats are cached) */
cat = pg_info->cache.lines_cats[cache_idx];
if (cat == 0) { /* not cached yet */
int col_idx;
Vect__select_line_pg(pg_info, fid, Line->type);
col_idx = Line->type & GV_POINTS ? 2 : 3;
if (!PQgetisnull(pg_info->res, 0, col_idx))
cat = pg_info->cache.lines_cats[cache_idx] =
atoi(PQgetvalue(pg_info->res, 0, col_idx));
else
pg_info->cache.lines_cats[cache_idx] = -1; /* no cat */
}
}
if (cat > 0)
Vect_cat_set(line_c, 1, cat);
}
if (line_p)
Vect_append_points(line_p, pg_info->cache.lines[cache_idx], GV_FORWARD);
return Line->type;
#else
G_fatal_error(_("GRASS is not compiled with PostgreSQL support"));
return -1;
#endif
}
#ifdef HAVE_POSTGRES
/*!
\brief Read next feature from PostGIS layer.
\param Map pointer to Map_info structure
\param[out] line_p container used to store line points within
(pointer to line_pnts struct)
\param[out] line_c container used to store line categories within
(pointer line_cats struct)
\param ignore_constraints TRUE to ignore constraints (type, region)
\return feature type
\return -2 no more features (EOF)
\return -1 out of memory
*/
int read_next_line_pg(struct Map_info *Map, struct line_pnts *line_p,
struct line_cats *line_c, int ignore_constraints)
{
int itype;
SF_FeatureType sf_type;
struct Format_info_pg *pg_info;
struct bound_box mbox, lbox;
struct line_pnts *iline;
pg_info = &(Map->fInfo.pg);
if (Map->constraint.region_flag && !ignore_constraints)
Vect_get_constraint_box(Map, &mbox);
while (TRUE) {
/* reset data structures */
if (line_p != NULL)
Vect_reset_line(line_p);
if (line_c != NULL)
Vect_reset_cats(line_c);
/* read feature to cache if necessary */
while (pg_info->cache.lines_next == pg_info->cache.lines_num) {
if (pg_info->cache.ctype == CACHE_MAP && pg_info->cache.fid == -2) {
/* stop reading - last cached line */
return -2;
}
/* cache feature -> line_p & line_c */
sf_type = get_feature(Map, -1, -1);
if (sf_type == SF_NONE) {
G_warning(_("Feature %ld without geometry skipped"),
pg_info->cache.fid);
return -1;
}
if ((int)sf_type < 0) { /* -1 || - 2 */
if (pg_info->cache.ctype == CACHE_MAP)
pg_info->cache.fid = -2; /* last line cached */
return (int)sf_type;
}
if (sf_type == SF_GEOMETRY || sf_type == SF_NONE) {
G_warning(_("Feature without geometry. Skipped."));
pg_info->cache.lines_next = pg_info->cache.lines_num = 0;
continue;
}
G_debug(4, "%d lines read to cache", pg_info->cache.lines_num);
/* store fid as offset to be used (used for topo access only */
Map->head.last_offset = pg_info->cache.fid;
}
/* get data from cache, skip dead lines (NULL) */
do {
itype = pg_info->cache.lines_types[pg_info->cache.lines_next];
iline = pg_info->cache.lines[pg_info->cache.lines_next];
pg_info->cache.lines_next++; /* read next line from cache */
} while (iline == NULL);
G_debug(4, "read next cached line %d (type = %d)",
pg_info->cache.lines_next, itype);
/* apply constraints */
if (Map->constraint.type_flag && !ignore_constraints) {
/* skip feature by type */
if (!(itype & Map->constraint.type))
continue;
}
if (line_p && Map->constraint.region_flag && !ignore_constraints) {
/* skip feature by region */
Vect_line_box(iline, &lbox);
if (!Vect_box_overlap(&lbox, &mbox))
continue;
}
/* skip feature by field ignored */
if (line_p)
Vect_append_points(line_p, iline, GV_FORWARD);
if (line_c) {
int cat;
if (!pg_info->toposchema_name) { /* simple features access */
cat = (int)pg_info->cache.fid;
}
else { /* PostGIS Topology (cats are cached) */
cat = pg_info->cache.lines_cats[pg_info->cache.lines_next - 1];
if (cat == 0) { /* not cached yet */
int col_idx;
col_idx = itype & GV_POINTS ? 2 : 3;
if (!PQgetisnull(pg_info->res,
pg_info->cache.lines_next - 1, col_idx))
cat = pg_info->cache.lines_cats[Map->next_line - 1] =
atoi(PQgetvalue(pg_info->res,
pg_info->cache.lines_next - 1,
col_idx));
else
pg_info->cache.lines_cats[Map->next_line - 1] =
-1; /* no cat */
}
}
if (cat > 0)
Vect_cat_set(line_c, 1, cat);
}
return itype;
}
return -1; /* not reached */
}
/*!
\brief Read feature geometry
Geometry is stored in lines cache.
\param[in,out] Map pointer to Map_info struct
\param fid feature id to be read (-1 for next)
\param type feature type (GV_POINT, GV_LINE, ...) - use only for topological
access
\return simple feature type (SF_POINT, SF_LINESTRING, ...)
\return -1 on error
*/
SF_FeatureType get_feature(struct Map_info *Map, int fid, int type)
{
int seq_type;
int force_type; /* force type (GV_BOUNDARY or GV_CENTROID) for topo access
only */
char *data;
struct Format_info_pg *pg_info;
pg_info = &(Map->fInfo.pg);
if (!pg_info->geom_column && !pg_info->topogeom_column) {
G_warning(_("No geometry or topo geometry column defined"));
return -1;
}
if (fid < 1) { /* sequantial access */
if (pg_info->cursor_name == NULL &&
Vect__open_cursor_next_line_pg(pg_info, FALSE, Map->plus.built) !=
0)
return -1;
}
else { /* random access */
if (!pg_info->fid_column && !pg_info->toposchema_name) {
G_warning(_("Random access not supported. "
"Primary key not defined."));
return -1;
}
#ifdef USE_CURSOR_RND
if (pg_info->cursor_fid > 0)
pg_info->next_line = fid - pg_info->cursor_fid;
else
pg_info->next_line = 0;
if (pg_info->next_line < 0 || pg_info->next_line > CURSOR_PAGE)
Vect__close_cursor_pg(pg_info);
if (pg_info->cursor_name == NULL &&
Vect__open_cursor_line_pg(pg_info, fid, type) != 0)
return -1;
#else
pg_info->next_line = 0;
if (Vect__select_line_pg(pg_info, fid, type) != 0)
return -1;
#endif
}
/* do we need to fetch more records ? */
if (PQntuples(pg_info->res) == CURSOR_PAGE &&
PQntuples(pg_info->res) == pg_info->next_line) {
char stmt[DB_SQL_MAX];
PQclear(pg_info->res);
sprintf(stmt, "FETCH %d in %s", CURSOR_PAGE, pg_info->cursor_name);
G_debug(3, "SQL: %s", stmt);
pg_info->res = PQexec(pg_info->conn, stmt);
if (!pg_info->res || PQresultStatus(pg_info->res) != PGRES_TUPLES_OK) {
error_tuples(pg_info);
return -1;
}
pg_info->next_line = 0;
}
G_debug(3, "get_feature(): next_line = %d", pg_info->next_line);
/* out of results ? */
if (PQntuples(pg_info->res) == pg_info->next_line) {
if (Vect__close_cursor_pg(pg_info) != 0)
return -1; /* failure */
else
return -2; /* nothing to read */
}
force_type = -1;
if (pg_info->toposchema_name) {
if (fid < 0) {
/* sequatial access */
seq_type = atoi(PQgetvalue(pg_info->res, pg_info->next_line, 2));
if (seq_type == GV_BOUNDARY ||
(seq_type == GV_LINE && pg_info->feature_type == SF_POLYGON))
force_type = GV_BOUNDARY;
else if (seq_type == GV_CENTROID)
force_type = GV_CENTROID;
}
else {
/* random access: check topological element type consistency */
if (type & GV_POINTS) {
if (type == GV_POINT &&
strlen(PQgetvalue(pg_info->res, pg_info->next_line, 1)) !=
0)
G_warning(_("Inconsistency in topology: detected centroid "
"(should be point)"));
}
else {
int left_face, right_face;
left_face =
atoi(PQgetvalue(pg_info->res, pg_info->next_line, 1));
right_face =
atoi(PQgetvalue(pg_info->res, pg_info->next_line, 2));
if (type == GV_LINE && (left_face != 0 || right_face != 0))
G_warning(_("Inconsistency in topology: detected boundary "
"(should be line)"));
}
}
}
/* get geometry data */
data = (char *)PQgetvalue(pg_info->res, pg_info->next_line, 0);
/* load feature to the cache */
pg_info->cache.sf_type = Vect__cache_feature_pg(data, FALSE, force_type,
&(pg_info->cache), NULL);
/* cache also categories (only for PostGIS Topology) */
if (pg_info->toposchema_name) {
int cat, col_idx;
col_idx =
fid < 0 ? 3 : 2; /* TODO: determine col_idx for random access */
if (!PQgetisnull(pg_info->res, pg_info->next_line, col_idx))
cat = atoi(PQgetvalue(pg_info->res, pg_info->next_line, col_idx));
else
cat = -1; /* no cat */
pg_info->cache.lines_cats[pg_info->cache.lines_next] = cat;
G_debug(3, "line=%d, type=%d -> cat=%d", pg_info->cache.lines_next + 1,
pg_info->cache.lines_types[pg_info->cache.lines_next], cat);
}
/* set feature id */
if (fid < 0) {
pg_info->cache.fid =
atoi(PQgetvalue(pg_info->res, pg_info->next_line, 1));
pg_info->next_line++;
}
else {
pg_info->cache.fid = fid;
}
return pg_info->cache.sf_type;
}
/*!
\brief Convert HEX to WKB data
\param hex_data HEX data
\param[out] nbytes number of bytes in output buffer
\return pointer to WKB data buffer
*/
unsigned char *hex_to_wkb(const char *hex_data, int *nbytes)
{
unsigned int length;
int i;
length = strlen(hex_data) / 2 + 1;
if (length > wkb_data_length) {
wkb_data_length = length;
wkb_data = G_realloc(wkb_data, wkb_data_length);
}
*nbytes = length - 1;
for (i = 0; i < (*nbytes); i++) {
wkb_data[i] =
(unsigned char)((hex_data[2 * i] > 'F' ? hex_data[2 * i] - 0x57
: hex_data[2 * i] > '9' ? hex_data[2 * i] - 0x37
: hex_data[2 * i] - 0x30)
<< 4);
wkb_data[i] |= (unsigned char)(hex_data[2 * i + 1] > 'F'
? hex_data[2 * i + 1] - 0x57
: hex_data[2 * i + 1] > '9'
? hex_data[2 * i + 1] - 0x37
: hex_data[2 * i + 1] - 0x30);
}
wkb_data[(*nbytes)] = 0;
return wkb_data;
}
/*!
\brief Read geometry from HEX data
This code is inspired by OGRGeometryFactory::createFromWkb() from
GDAL/OGR library.
\param data HEX data
\param skip_polygon skip polygons (level 1)
\param force_type force GV_BOUNDARY or GV_CENTROID (used for PostGIS topology
only) \param[out] cache lines cache \param[out] fparts used for building
pseudo-topology (or NULL)
\return simple feature type
\return SF_GEOMETRY on error
*/
SF_FeatureType Vect__cache_feature_pg(const char *data, int skip_polygon,
int force_type,
struct Format_info_cache *cache,
struct feat_parts *fparts)
{
int ret, byte_order, nbytes, is3D;
unsigned char *wkb_data;
unsigned int wkb_flags;
SF_FeatureType ftype;
/* reset cache */
if (cache->ctype == CACHE_MAP)
cache->lines_num++;
else {
/* next to be read from cache */
cache->lines_next = 0;
cache->lines_num = 1;
}
cache->fid = -1;
if (fparts)
fparts->n_parts = 0;
wkb_flags = 0;
wkb_data = hex_to_wkb(data, &nbytes);
if (nbytes < 5) {
/* G_free(wkb_data); */
if (nbytes > 0) {
G_debug(3, "Vect__cache_feature_pg(): invalid geometry");
G_warning(_("Invalid WKB content: %d bytes"), nbytes);
return SF_GEOMETRY;
}
else {
G_debug(3, "Vect__cache_feature_pg(): no geometry");
return SF_NONE;
}
}
/* parsing M coordinate not supported */
memcpy(&wkb_flags, wkb_data + 1, 4);
byte_order = (wkb_data[0] == 0 ? ENDIAN_BIG : ENDIAN_LITTLE);
if (byte_order == ENDIAN_BIG)
wkb_flags = SWAP32(wkb_flags);
if (wkb_flags & 0x40000000) {
G_warning(_("Reading EWKB with 4-dimensional coordinates (XYZM) "
"is not supported"));
/* G_free(wkb_data); */
return SF_GEOMETRY;
}
/* PostGIS EWKB format includes an SRID, but this won't be
understood by OGR, so if the SRID flag is set, we remove the
SRID (bytes at offset 5 to 8).
*/
if (nbytes > 9 && ((byte_order == ENDIAN_BIG && (wkb_data[1] & 0x20)) ||
(byte_order == ENDIAN_LITTLE && (wkb_data[4] & 0x20)))) {
memmove(wkb_data + 5, wkb_data + 9, nbytes - 9);
nbytes -= 4;
if (byte_order == ENDIAN_BIG)
wkb_data[1] &= (~0x20);
else
wkb_data[4] &= (~0x20);
}
if (nbytes < 9 && nbytes != -1) {
/* G_free(wkb_data); */
return SF_GEOMETRY;
}
/* Get the geometry feature type. For now we assume that geometry
type is between 0 and 255 so we only have to fetch one byte.
*/
if (byte_order == ENDIAN_LITTLE) {
ftype = (SF_FeatureType)wkb_data[1];
is3D = wkb_data[4] & 0x80 || wkb_data[2] & 0x80;
}
else {
ftype = (SF_FeatureType)wkb_data[4];
is3D = wkb_data[1] & 0x80 || wkb_data[3] & 0x80;
}
G_debug(3, "Vect__cache_feature_pg(): sf_type = %d", ftype);
/* allocate space in lines cache - be minimalistic
more lines require eg. polygon with more rings, multi-features
or geometry collections
*/
if (cache->ctype == CACHE_MAP) {
Vect__reallocate_cache(cache, 1, TRUE);
}
else {
if (!cache->lines) {
Vect__reallocate_cache(cache, 1, FALSE);
}
}
ret = -1;
if (ftype == SF_POINT) {
cache->lines_types[cache->lines_num - 1] =
force_type == GV_CENTROID ? force_type : GV_POINT;
ret = point_from_wkb(wkb_data, nbytes, byte_order, is3D,
cache->lines[cache->lines_num - 1]);
add_fpart(fparts, ftype, 0, 1);
}
else if (ftype == SF_LINESTRING) {
cache->lines_types[cache->lines_num - 1] =
force_type == GV_BOUNDARY ? force_type : GV_LINE;
ret = linestring_from_wkb(wkb_data, nbytes, byte_order, is3D,
cache->lines[cache->lines_num - 1], FALSE);
add_fpart(fparts, ftype, 0, 1);
}
else if (ftype == SF_POLYGON && !skip_polygon) {
int nrings;
cache->lines_num = 0; /* reset before reading rings */
ret = polygon_from_wkb(wkb_data, nbytes, byte_order, is3D, cache,
&nrings);
add_fpart(fparts, ftype, 0, nrings);
}
else if (ftype == SF_MULTIPOINT || ftype == SF_MULTILINESTRING ||
ftype == SF_MULTIPOLYGON || ftype == SF_GEOMETRYCOLLECTION) {
ret = geometry_collection_from_wkb(wkb_data, nbytes, byte_order, is3D,
cache, fparts);
}
else {
G_warning(_("Unsupported feature type %d"), ftype);
}
if (cache->ctype != CACHE_MAP) {
/* read next feature from cache */
cache->lines_next = 0;
}
/* G_free(wkb_data); */
return ret > 0 ? ftype : SF_GEOMETRY;
}
/*!
\brief Read point for WKB data
See OGRPoint::importFromWkb() from GDAL/OGR library
\param wkb_data WKB data
\param nbytes number of bytes (WKB data buffer)
\param byte_order byte order (ENDIAN_LITTLE, ENDIAN_BIG)
\param with_z WITH_Z for 3D data
\param[out] line_p point geometry (pointer to line_pnts struct)
\return wkb size
\return -1 on error
*/
int point_from_wkb(const unsigned char *wkb_data, int nbytes, int byte_order,
int with_z, struct line_pnts *line_p)
{
double x, y, z;
if (nbytes < 21 && nbytes != -1)
return -1;
/* get vertex */
memcpy(&x, wkb_data + 5, 8);
memcpy(&y, wkb_data + 5 + 8, 8);
if (byte_order == ENDIAN_BIG) {
SWAPDOUBLE(&x);
SWAPDOUBLE(&y);
}
if (with_z) {
if (nbytes < 29 && nbytes != -1)
return -1;
memcpy(&z, wkb_data + 5 + 16, 8);
if (byte_order == ENDIAN_BIG) {
SWAPDOUBLE(&z);
}
}
else {
z = 0.0;
}
if (line_p) {
Vect_reset_line(line_p);
Vect_append_point(line_p, x, y, z);
}
return 5 + 8 * (with_z == WITH_Z ? 3 : 2);
}
/*!
\brief Read line for WKB data
See OGRLineString::importFromWkb() from GDAL/OGR library
\param wkb_data WKB data
\param nbytes number of bytes (WKB data buffer)
\param byte_order byte order (ENDIAN_LITTLE, ENDIAN_BIG)
\param with_z WITH_Z for 3D data
\param[out] line_p line geometry (pointer to line_pnts struct)
\return wkb size
\return -1 on error
*/
int linestring_from_wkb(const unsigned char *wkb_data, int nbytes,
int byte_order, int with_z, struct line_pnts *line_p,
int is_ring)
{
int npoints, point_size, buff_min_size, offset;
int i;
double x, y, z;
if (is_ring)
offset = 5;
else
offset = 0;
if (is_ring && nbytes < 4 && nbytes != -1)
return error_corrupted_data(NULL);
/* get the vertex count */
memcpy(&npoints, wkb_data + (5 - offset), 4);
if (byte_order == ENDIAN_BIG) {
npoints = SWAP32(npoints);
}
/* check if the wkb stream buffer is big enough to store fetched
number of points. 16 or 24 - size of point structure
*/
point_size = with_z ? 24 : 16;
if (npoints < 0 || npoints > INT_MAX / point_size)
return error_corrupted_data(NULL);
buff_min_size = point_size * npoints;
if (nbytes != -1 && buff_min_size > nbytes - (9 - offset))
return error_corrupted_data(_("Length of input WKB is too small"));
if (line_p)
Vect_reset_line(line_p);
/* get the vertex */
for (i = 0; i < npoints; i++) {
memcpy(&x, wkb_data + (9 - offset) + i * point_size, 8);
memcpy(&y, wkb_data + (9 - offset) + 8 + i * point_size, 8);
if (with_z)
memcpy(&z, wkb_data + (9 - offset) + 16 + i * point_size, 8);
else
z = 0.0;
if (byte_order == ENDIAN_BIG) {
SWAPDOUBLE(&x);
SWAPDOUBLE(&y);
if (with_z)
SWAPDOUBLE(&z);
}
if (line_p)
Vect_append_point(line_p, x, y, z);
}
return (9 - offset) + (with_z == WITH_Z ? 3 : 2) * 8 * line_p->n_points;
}
/*!
\brief Read polygon for WKB data
See OGRPolygon::importFromWkb() from GDAL/OGR library
\param wkb_data WKB data
\param nbytes number of bytes (WKB data buffer)
\param byte_order byte order (ENDIAN_LITTLE, ENDIAN_BIG)
\param with_z WITH_Z for 3D data
\param[out] line_p array of rings (pointer to line_pnts struct)
\param[out] nrings number of rings
\return wkb size
\return -1 on error
*/
int polygon_from_wkb(const unsigned char *wkb_data, int nbytes, int byte_order,
int with_z, struct Format_info_cache *cache, int *nrings)
{
int data_offset, i, nsize, isize;
int num_of_rings;
struct line_pnts *line_i;
if (nbytes < 9 && nbytes != -1)
return -1;
/* get the ring count */
memcpy(nrings, wkb_data + 5, 4);
if (byte_order == ENDIAN_BIG) {
*nrings = SWAP32(*nrings);
}
if (*nrings < 0) {
return -1;
}
num_of_rings = *nrings;
/* reallocate space for islands if needed */
Vect__reallocate_cache(cache, num_of_rings, FALSE);
cache->lines_num += num_of_rings;
/* each ring has a minimum of 4 bytes (point count) */
if (nbytes != -1 && nbytes - 9 < num_of_rings * 4) {
return error_corrupted_data(_("Length of input WKB is too small"));
}
data_offset = 9;
if (nbytes != -1)
nbytes -= data_offset;
/* get the rings */
nsize = 9;
for (i = 0; i < num_of_rings; i++) {
if (cache->lines_next >= cache->lines_num)
G_fatal_error(_("Invalid cache index %d (max: %d)"),
cache->lines_next, cache->lines_num);
line_i = cache->lines[cache->lines_next];
cache->lines_types[cache->lines_next++] = GV_BOUNDARY;
linestring_from_wkb(wkb_data + data_offset, nbytes, byte_order, with_z,
line_i, TRUE);
if (nbytes != -1) {
isize = 4 + 8 * (with_z == WITH_Z ? 3 : 2) * line_i->n_points;
nbytes -= isize;
}
nsize += isize;
data_offset += isize;
}
return nsize;
}
/*!
\brief Read geometry collection for WKB data
See OGRGeometryCollection::importFromWkbInternal() from GDAL/OGR library
\param wkb_data WKB data
\param nbytes number of bytes (WKB data buffer)
\param byte_order byte order (ENDIAN_LITTLE, ENDIAN_BIG)
\param with_z WITH_Z for 3D data
\param ipart part to cache (starts at 0)
\param[out] cache lines cache
\param[in,out] fparts feature parts (required for building pseudo-topology)
\return number of parts
\return -1 on error
*/
int geometry_collection_from_wkb(const unsigned char *wkb_data, int nbytes,
int byte_order, int with_z,
struct Format_info_cache *cache,
struct feat_parts *fparts)
{
int ipart, nparts, data_offset, nsize;
unsigned char *wkb_subdata;
SF_FeatureType ftype;
if (nbytes < 9 && nbytes != -1)
return error_corrupted_data(NULL);
/* get the geometry count */
memcpy(&nparts, wkb_data + 5, 4);
if (byte_order == ENDIAN_BIG) {
nparts = SWAP32(nparts);
}
if (nparts < 0 || nparts > INT_MAX / 9) {
return error_corrupted_data(NULL);
}
G_debug(5, "\t(geometry collections) parts: %d", nparts);
/* each geometry has a minimum of 9 bytes */
if (nbytes != -1 && nbytes - 9 < nparts * 9) {
return error_corrupted_data(_("Length of input WKB is too small"));
}
data_offset = 9;
if (nbytes != -1)
nbytes -= data_offset;
/* reallocate space for parts if needed */
Vect__reallocate_cache(cache, nparts, FALSE);
/* get parts */
for (ipart = 0; ipart < nparts; ipart++) {
wkb_subdata = (unsigned char *)wkb_data + data_offset;
if (nbytes < 9 && nbytes != -1)
return error_corrupted_data(NULL);
if (byte_order == ENDIAN_LITTLE) {
ftype = (SF_FeatureType)wkb_subdata[1];
}
else {
ftype = (SF_FeatureType)wkb_subdata[4];
}
if (ftype == SF_POINT) {
cache->lines_types[cache->lines_next] = GV_POINT;
nsize = point_from_wkb(wkb_subdata, nbytes, byte_order, with_z,
cache->lines[cache->lines_next]);
cache->lines_num++;
add_fpart(fparts, ftype, cache->lines_next, 1);
cache->lines_next++;
}
else if (ftype == SF_LINESTRING) {
cache->lines_types[cache->lines_next] = GV_LINE;
nsize = linestring_from_wkb(wkb_subdata, nbytes, byte_order, with_z,
cache->lines[cache->lines_next], FALSE);
cache->lines_num++;
add_fpart(fparts, ftype, cache->lines_next, 1);
cache->lines_next++;
}
else if (ftype == SF_POLYGON) {
int idx, nrings;
idx = cache->lines_next;
nsize = polygon_from_wkb(wkb_subdata, nbytes, byte_order, with_z,
cache, &nrings);
add_fpart(fparts, ftype, idx, nrings);
}
else if (ftype == SF_GEOMETRYCOLLECTION || ftype == SF_MULTIPOLYGON ||
ftype == SF_MULTILINESTRING || ftype == SF_MULTIPOLYGON) {
geometry_collection_from_wkb(wkb_subdata, nbytes, byte_order,
with_z, cache, fparts);
}
else {
G_warning(_("Unsupported feature type %d"), ftype);
}
if (nbytes != -1) {
nbytes -= nsize;
}
data_offset += nsize;
}
return nparts;
}
/*!
\brief Report error message
\param msg message (NULL)
\return -1
*/
int error_corrupted_data(const char *msg)
{
if (msg)
G_warning(_("Corrupted data. %s."), msg);
else
G_warning(_("Corrupted data"));
return -1;
}
/*!
\brief Create select cursor for sequential access (internal use only)
Allocated cursor name should be freed by G_free().
\param pg_info pointer to Format_info_pg struct
\param fetch_all TRUE to fetch all records
\param[out] cursor name
\return 0 on success
\return -1 on failure
*/
int Vect__open_cursor_next_line_pg(struct Format_info_pg *pg_info,
int fetch_all, int built_level)
{
char stmt[DB_SQL_MAX];
if (Vect__execute_pg(pg_info->conn, "BEGIN") == -1)
return -1;
/* set cursor name */
G_asprintf(&(pg_info->cursor_name), "%s_%s_%p", pg_info->schema_name,
pg_info->table_name, (void *)pg_info->conn);
if (!pg_info->toposchema_name) {
/* simple feature access (geom, fid) */
/* TODO: start_fid */
if (pg_info->where) {
/* set attribute filter if where sql statement defined */
char **tokens = G_tokenize(pg_info->where, "=");
if (G_number_of_tokens(tokens) != 2) {
G_warning(_("Unable to parse '%s'"), pg_info->where);
return -1;
}
sprintf(stmt,
"DECLARE %s CURSOR FOR SELECT \"%s\",\"%s\" FROM "
"\"%s\".\"%s\" WHERE \"%s\"=%s ORDER BY \"%s\"",
pg_info->cursor_name, pg_info->geom_column,
pg_info->fid_column, pg_info->schema_name,
pg_info->table_name, tokens[0], tokens[1],
pg_info->fid_column);
G_free_tokens(tokens);
}
else {
sprintf(stmt,
"DECLARE %s CURSOR FOR SELECT \"%s\",\"%s\" FROM "
"\"%s\".\"%s\" ORDER BY \"%s\"",
pg_info->cursor_name, pg_info->geom_column,
pg_info->fid_column, pg_info->schema_name,
pg_info->table_name, pg_info->fid_column);
}
}
else {
/* topology access (geom,id,fid,type) */
/* TODO: optimize SQL statement (for points/centroids) */
sprintf(
stmt,
"DECLARE %s CURSOR FOR "
"SELECT geom,id,type,fid FROM ("
"SELECT tt.node_id AS id,tt.geom, %d AS type, ft.%s AS fid FROM "
"\"%s\".node AS tt "
"LEFT JOIN \"%s\".\"%s\" AS ft ON (%s).type = 1 AND (%s).id = "
"node_id "
"WHERE containing_face IS NULL AND node_id NOT IN "
"(SELECT node FROM (SELECT start_node AS node FROM \"%s\".edge "
"GROUP BY start_node UNION ALL "
"SELECT end_node AS node FROM \"%s\".edge GROUP BY end_node) AS "
"foo) UNION ALL "
"SELECT tt.node_id AS id,tt.geom, %d AS type, ft.%s AS fid FROM "
"\"%s\".node AS tt "
"LEFT JOIN \"%s\".\"%s\" AS ft ON (%s).type = 3 AND (%s).id = %s "
"WHERE containing_face IS NOT NULL AND node_id NOT IN "
"(SELECT node FROM (SELECT start_node AS node FROM \"%s\".edge "
"GROUP BY start_node UNION ALL "
"SELECT end_node AS node FROM \"%s\".edge GROUP BY end_node) AS "
"foo) UNION ALL "
"SELECT tt.edge_id AS id, tt.geom, %d AS type, ft.%s AS fid FROM "
"\"%s\".edge AS tt "
"LEFT JOIN \"%s\".\"%s\" AS ft ON (%s).type = 2 AND (%s).id = "
"edge_id "
"WHERE left_face = 0 AND right_face = 0 UNION ALL "
"SELECT tt.edge_id AS id, tt.geom, %d AS type, ft.%s AS fid FROM "
"\"%s\".edge AS tt "
"LEFT JOIN \"%s\".\"%s\" AS ft ON (%s).type = 2 AND (%s).id = "
"edge_id "
"WHERE left_face != 0 OR right_face != 0 ) AS foo ORDER BY type,id",
pg_info->cursor_name, GV_POINT, pg_info->fid_column,
pg_info->toposchema_name, pg_info->schema_name, pg_info->table_name,
pg_info->topogeom_column, pg_info->topogeom_column,
pg_info->toposchema_name, pg_info->toposchema_name, GV_CENTROID,
pg_info->fid_column, pg_info->toposchema_name, pg_info->schema_name,
pg_info->table_name, pg_info->topogeom_column,
pg_info->topogeom_column,
built_level >= GV_BUILD_CENTROIDS ? "containing_face" : "node_id",
pg_info->toposchema_name, pg_info->toposchema_name, GV_LINE,
pg_info->fid_column, pg_info->toposchema_name, pg_info->schema_name,
pg_info->table_name, pg_info->topogeom_column,
pg_info->topogeom_column, GV_BOUNDARY, pg_info->fid_column,
pg_info->toposchema_name, pg_info->schema_name, pg_info->table_name,
pg_info->topogeom_column, pg_info->topogeom_column);
}
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
if (fetch_all)
sprintf(stmt, "FETCH ALL in %s", pg_info->cursor_name);
else
sprintf(stmt, "FETCH %d in %s", CURSOR_PAGE, pg_info->cursor_name);
G_debug(3, "SQL: %s", stmt);
pg_info->res =
PQexec(pg_info->conn, stmt); /* fetch records from select cursor */
if (!pg_info->res || PQresultStatus(pg_info->res) != PGRES_TUPLES_OK) {
error_tuples(pg_info);
return -1;
}
pg_info->next_line = 0;
return 0;
}
/*!
\brief Open select cursor for random access (internal use only)
Fetch number of feature (given by CURSOR_PAGE) starting with
<em>fid</em>.
Allocated cursor name should be freed by G_free().
\param pg_info pointer to Format_info_pg struct
\param fid feature id to get
\param type feature type
\return 0 on success
\return -1 on failure
*/
int Vect__open_cursor_line_pg(struct Format_info_pg *pg_info, int fid, int type)
{
char stmt[DB_SQL_MAX];
G_debug(3, "Vect__open_cursor_line_pg(): fid range = %d-%d, type = %d", fid,
fid + CURSOR_PAGE, type);
if (Vect__execute_pg(pg_info->conn, "BEGIN") == -1)
return -1;
pg_info->cursor_fid = fid;
G_asprintf(&(pg_info->cursor_name), "%s_%s_%d_%p", pg_info->schema_name,
pg_info->table_name, fid, (void *)pg_info->conn);
if (!pg_info->toposchema_name) {
/* simple feature access (geom) */
sprintf(stmt,
"DECLARE %s CURSOR FOR SELECT %s FROM \"%s\".\"%s\" "
"WHERE %s BETWEEN %d AND %d ORDER BY %s",
pg_info->cursor_name, pg_info->geom_column,
pg_info->schema_name, pg_info->table_name, pg_info->fid_column,
fid, fid + CURSOR_PAGE, pg_info->fid_column);
}
else {
/* topological access */
if (!(type & (GV_POINTS | GV_LINES))) {
G_warning(_("Unsupported feature type %d"), type);
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
if (type & GV_POINTS) {
/* points (geom,containing_face) */
sprintf(stmt,
"DECLARE %s CURSOR FOR SELECT geom,containing_face "
" FROM \"%s\".node WHERE node_id BETWEEN %d AND %d ORDER "
"BY node_id",
pg_info->cursor_name, pg_info->toposchema_name, fid,
fid + CURSOR_PAGE);
}
else {
/* edges (geom,left_face,right_face) */
sprintf(stmt,
"DECLARE %s CURSOR FOR SELECT geom,left_face,right_face "
" FROM \"%s\".edge WHERE edge_id BETWEEN %d AND %d ORDER "
"BY edge_id",
pg_info->cursor_name, pg_info->toposchema_name, fid,
fid + CURSOR_PAGE);
}
}
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
Vect__execute_pg(pg_info->conn, "ROLLBACK");
return -1;
}
pg_info->next_line = 0;
sprintf(stmt, "FETCH ALL in %s", pg_info->cursor_name);
pg_info->res = PQexec(pg_info->conn, stmt);
if (!pg_info->res || PQresultStatus(pg_info->res) != PGRES_TUPLES_OK) {
error_tuples(pg_info);
return -1;
}
return 0;
}
/*!
\brief Close select cursor
\param pg_info pointer to Format_info_pg struct
\return 0 on success
\return -1 on failure
*/
int Vect__close_cursor_pg(struct Format_info_pg *pg_info)
{
if (pg_info->res) {
PQclear(pg_info->res);
pg_info->res = NULL;
}
if (pg_info->cursor_name) {
char stmt[DB_SQL_MAX];
sprintf(stmt, "CLOSE %s", pg_info->cursor_name);
if (Vect__execute_pg(pg_info->conn, stmt) == -1) {
G_warning(_("Unable to close cursor %s"), pg_info->cursor_name);
return -1;
}
Vect__execute_pg(pg_info->conn, "COMMIT");
G_free(pg_info->cursor_name);
pg_info->cursor_name = NULL;
}
return 0;
}
/*!
\brief Select feature (internal use only)
\param pg_info pointer to Format_info_pg struct
\param fid feature id to get
\param type feature type
\return 0 on success
\return -1 on failure
*/
int Vect__select_line_pg(struct Format_info_pg *pg_info, int fid, int type)
{
char stmt[DB_SQL_MAX];
if (!pg_info->toposchema_name) {
/* simple feature access */
sprintf(stmt, "SELECT %s FROM \"%s\".\"%s\" WHERE %s = %d",
pg_info->geom_column, pg_info->schema_name, pg_info->table_name,
pg_info->fid_column, fid);
}
else {
/* topological access */
if (!(type & (GV_POINTS | GV_LINES))) {
G_warning(_("Unsupported feature type %d"), type);
return -1;
}
if (type & GV_POINTS) {
int topotype;
char *nodeid;
if (type == GV_POINT) {
topotype = 1;
nodeid = pg_info->fid_column;
}
else { /* assuming GV_CENTROID */
topotype = 3;
nodeid = "containing_face";
}
sprintf(stmt,
"SELECT tt.geom,tt.containing_face,ft.%s FROM \"%s\".node "
"AS tt "
"LEFT JOIN \"%s\".\"%s\" AS ft ON (%s).type = %d and "
"(%s).id = %s "
"WHERE node_id = %d",
pg_info->fid_column, pg_info->toposchema_name,
pg_info->schema_name, pg_info->table_name,
pg_info->topogeom_column, topotype,
pg_info->topogeom_column, nodeid, fid);
}
else {
sprintf(stmt,
"SELECT tt.geom,tt.left_face,tt.right_face,ft.%s FROM "
"\"%s\".edge AS tt "
"LEFT JOIN \"%s\".\"%s\" AS ft ON (%s).type = 2 and "
"(%s).id = edge_id "
"WHERE edge_id = %d",
pg_info->fid_column, pg_info->toposchema_name,
pg_info->schema_name, pg_info->table_name,
pg_info->topogeom_column, pg_info->topogeom_column, fid);
}
}
G_debug(3, "SQL: %s", stmt);
pg_info->next_line = 0;
pg_info->res = PQexec(pg_info->conn, stmt);
if (!pg_info->res || PQresultStatus(pg_info->res) != PGRES_TUPLES_OK) {
error_tuples(pg_info);
return -1;
}
return 0;
}
/*!
\brief Execute SQL statement
See pg_local_proto.h
\param conn pointer to PGconn
\param stmt query
\return 0 on success
\return -1 on error
*/
int Vect__execute_pg(PGconn *conn, const char *stmt)
{
PGresult *result;
result = NULL;
G_debug(3, "Vect__execute_pg(): %s", stmt);
result = PQexec(conn, stmt);
if (!result || PQresultStatus(result) != PGRES_COMMAND_OK) {
size_t stmt_len;
char stmt_prt[512];
PQclear(result);
stmt_len = strlen(stmt);
strncpy(stmt_prt, stmt, stmt_len > 511 ? 511 : stmt_len);
stmt_prt[stmt_len > 511 ? 511 : stmt_len] = '\0';
G_warning(_("Execution failed: %s (...)\nReason: %s"), stmt_prt,
PQerrorMessage(conn));
return -1;
}
PQclear(result);
return 0;
}
/*!
\brief Execute SQL statement and get value.
\param conn pointer to PGconn
\param stmt query
\return value on success
\return -1 on error
*/
int Vect__execute_get_value_pg(PGconn *conn, const char *stmt)
{
int ret;
PGresult *result;
result = NULL;
G_debug(3, "Vect__execute_get_value_pg(): %s", stmt);
result = PQexec(conn, stmt);
if (!result || PQresultStatus(result) != PGRES_TUPLES_OK ||
PQntuples(result) != 1) {
PQclear(result);
G_warning(_("Execution failed: %s\nReason: %s"), stmt,
PQerrorMessage(conn));
return -1;
}
ret = atoi(PQgetvalue(result, 0, 0));
PQclear(result);
return ret;
}
/*!
\brief Reallocate lines cache
*/
void Vect__reallocate_cache(struct Format_info_cache *cache, int num, int incr)
{
int i;
if (!incr && cache->lines_alloc >= num)
return;
if (!incr && !cache->lines) {
/* most of features requires only one line cache */
cache->lines_alloc = 1;
}
else {
cache->lines_alloc += num;
}
cache->lines = (struct line_pnts **)G_realloc(
cache->lines, cache->lines_alloc * sizeof(struct line_pnts *));
cache->lines_types =
(int *)G_realloc(cache->lines_types, cache->lines_alloc * sizeof(int));
cache->lines_cats =
(int *)G_realloc(cache->lines_cats, cache->lines_alloc * sizeof(int));
if (cache->lines_alloc > 1) {
for (i = cache->lines_alloc - num; i < cache->lines_alloc; i++) {
cache->lines[i] = Vect_new_line_struct();
cache->lines_types[i] = -1;
cache->lines_cats[i] = -1;
}
}
else {
cache->lines[0] = Vect_new_line_struct();
cache->lines_types[0] = -1;
cache->lines_cats[0] = -1;
}
}
void add_fpart(struct feat_parts *fparts, SF_FeatureType ftype, int idx,
int nlines)
{
if (!fparts)
return;
if (fparts->a_parts == 0 || fparts->n_parts >= fparts->a_parts) {
if (fparts->a_parts == 0)
fparts->a_parts = 1;
else
fparts->a_parts += fparts->n_parts;
fparts->ftype = (SF_FeatureType *)G_realloc(
fparts->ftype, fparts->a_parts * sizeof(SF_FeatureType));
fparts->nlines =
(int *)G_realloc(fparts->nlines, fparts->a_parts * sizeof(int));
fparts->idx =
(int *)G_realloc(fparts->idx, fparts->a_parts * sizeof(int));
}
fparts->ftype[fparts->n_parts] = ftype;
fparts->idx[fparts->n_parts] = idx;
fparts->nlines[fparts->n_parts] = nlines;
fparts->n_parts++;
}
/*
\brief Get centroid
\param pg_info pointer to Format_info_pg
\param centroid centroid id
\param[out] line_p output geometry
\return GV_CENTROID on success
\return -1 on error
*/
int get_centroid(struct Map_info *Map, int centroid, struct line_pnts *line_p,
struct line_cats *line_c)
{
int i, found;
struct bound_box box;
struct boxlist list;
struct P_line *Line;
struct P_topo_c *topo;
Line = Map->plus.Line[centroid];
topo = (struct P_topo_c *)Line->topo;
/* get area bbox */
Vect_get_area_box(Map, topo->area, &box);
/* search in spatial index for centroid with area bbox */
dig_init_boxlist(&list, TRUE);
Vect_select_lines_by_box(Map, &box, Line->type, &list);
found = -1;
for (i = 0; i < list.n_values; i++) {
if (list.id[i] == centroid) {
found = i;
break;
}
}
if (found == -1)
return -1;
if (line_p) {
Vect_reset_line(line_p);
Vect_append_point(line_p, list.box[found].E, list.box[found].N, 0.0);
}
if (line_c) {
Vect_cat_set(line_c, 1, Line->offset);
}
return GV_CENTROID;
}
void error_tuples(struct Format_info_pg *pg_info)
{
Vect__execute_pg(pg_info->conn, "ROLLBACK");
G_warning(_("Unable to read features. Reason:\n%s"),
PQresultErrorMessage(pg_info->res));
if (pg_info->res) {
PQclear(pg_info->res);
pg_info->res = NULL;
}
}
#endif
|