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
|
/*!
\file lib/vector/Vlib/open.c
\brief Vector library - Open existing or create new vector map
(native or OGR/PostGIS format)
Higher level functions for reading/writing/manipulating vectors.
(C) 2001-2015 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 Original author CERL, probably Dave Gerdes or Mike Higgins.
\author Update to GRASS 5.7 Radim Blazek and David D. Gray.
\author Update to GRASS 7 Martin Landa <landa.martin gmail.com> (better OGR
support and native PostGIS access)
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <grass/vector.h>
#include <grass/glocale.h>
#include "local_proto.h"
#ifdef HAVE_POSTGRES
#include "pg_local_proto.h"
#endif
/*
\brief Number of levels
- 1 without topology
- 2 with 2D topology
\todo Implement
- 3 with 3D topology
*/
#define MAX_OPEN_LEVEL 2
static int open_old_dummy(struct Map_info *Map UNUSED, int update UNUSED)
{
return 0;
}
static int open_new_dummy(struct Map_info *Map UNUSED, const char *name UNUSED,
int with_z UNUSED)
{
return 0;
}
#if !defined HAVE_OGR || !defined HAVE_POSTGRES
static int format_old(struct Map_info *Map UNUSED, int update UNUSED)
{
G_fatal_error(_("Requested format is not compiled in this version"));
return 0;
}
static int format_new(struct Map_info *Map UNUSED, const char *name UNUSED,
int with_z UNUSED)
{
G_fatal_error(_("Requested format is not compiled in this version"));
return 0;
}
#endif
static int Open_level = 0;
static int (*Open_old_array[][2])(struct Map_info *,
int) = {{open_old_dummy, V1_open_old_nat}
#ifdef HAVE_OGR
,
{open_old_dummy, V1_open_old_ogr},
{open_old_dummy, V1_open_old_ogr}
#else
,
{open_old_dummy, format_old},
{open_old_dummy, format_old}
#endif
#ifdef HAVE_POSTGRES
,
{open_old_dummy, V1_open_old_pg}
#else
,
{open_old_dummy, format_old}
#endif
};
static int (*Open_new_array[][2])(struct Map_info *Map, const char *name,
int with_z) = {
{open_new_dummy, V1_open_new_nat}
#ifdef HAVE_OGR
,
{open_new_dummy, V1_open_new_ogr},
{open_new_dummy, V1_open_new_ogr}
#else
,
{open_new_dummy, format_new},
{open_new_dummy, format_new}
#endif
#ifdef HAVE_POSTGRES
,
{open_new_dummy, V1_open_new_pg}
#else
,
{open_new_dummy, format_new}
#endif
};
static int open_new(struct Map_info *, const char *, int, int);
static int map_format(struct Map_info *);
/*!
\brief Predetermine level at which a vector map will be opened for
reading.
If it can't open that level, the open will fail. The specified level
must be set before any call to open. The default is to try to open
the highest level possible, and keep stepping down until success.
NOTE: This should only be used to set when you wish to force a lower
level open. If you require a higher level, then just check the
return to verify the level instead of forcing it. This is because
future releases will have higher levels which will be downward
compatible and which your programs should support by default.
\param level vector access level
\return 0 on success
\return 1 on error (invalid access level)
*/
int Vect_set_open_level(int level)
{
Open_level = level;
if (Open_level < 1 || Open_level > MAX_OPEN_LEVEL) {
G_warning(_("Programmer requested unknown access level %d"),
Open_level);
Open_level = 0;
return 1;
}
return 0;
}
/*!
\brief Open existing vector map for reading (internal use only)
\param[out] Map pointer to Map_info structure
\param name name of vector map to open
\param mapset mapset name ("" for search path)
\param layer layer name (OGR format only)
\param update non-zero to open for update otherwise read-only mode
\param head_only read only header info from 'head', 'dbln', 'topo',
'cidx' is not opened. The header may be opened on level 2 only.
\param is_tmp non-zero code for temporary maps
\return level of openness (1, 2)
\return -1 in error
*/
int Vect__open_old(struct Map_info *Map, const char *name, const char *mapset,
const char *layer, int update, int head_only, int is_tmp)
{
char xname[GNAME_MAX], xmapset[GMAPSET_MAX];
char path[GPATH_MAX];
FILE *fp;
int level, level_request;
int format, ret;
int ogr_mapset;
const char *fmapset;
G_debug(
1,
"Vect__open_old(): name = %s, mapset = %s, layer = %s, update = %d, "
"head_only = %d, is_tmp = %d",
name, mapset, layer ? layer : "NULL", update, head_only, is_tmp);
if (update && !is_tmp) {
is_tmp = getenv("GRASS_VECTOR_TEMPORARY") ? TEMPORARY_MAP_ENV
: TEMPORARY_MAP_DISABLED;
G_debug(1,
"Vect__open_old(): is_tmp = %d (check GRASS_VECTOR_TEMPORARY)",
is_tmp);
}
/* zero Map_info structure */
G_zero(Map, sizeof(struct Map_info));
/* TODO: Open header for update ('dbln') */
level_request = Open_level;
Open_level = 0;
/* initialize Map->head */
Vect__init_head(Map);
/* initialize support structures for 2D, update to 3D when reading
support files */
Map->plus.spidx_with_z = Map->plus.with_z = Map->head.with_z = WITHOUT_Z;
/* initialize Map->plus */
dig_init_plus(&(Map->plus));
/* check OGR mapset */
ogr_mapset = FALSE;
if (G_name_is_fully_qualified(name, xname, xmapset)) {
if (strcasecmp(xmapset, "ogr") == 0) {
/* unique OGR mapset detected */
G_debug(1, "OGR mapset detected");
ogr_mapset = TRUE;
Map->fInfo.ogr.dsn = G_store(xname);
if (layer) {
Map->fInfo.ogr.layer_name =
G_store(layer); /* no layer to be open */
}
}
Map->name = G_store(xname);
Map->mapset = G_store(xmapset);
}
else {
Map->name = G_store(name);
Map->temporary = is_tmp;
/* temporary maps can be accessed only in the current mapset */
if (mapset)
Map->mapset = G_store(mapset);
else
Map->mapset = G_store("");
}
Vect__get_path(path, Map);
if (!ogr_mapset) {
/* try to find vector map (not for OGR mapset) */
if (!Map->temporary) {
fmapset = G_find_vector2(Map->name, Map->mapset);
if (fmapset == NULL) {
if (mapset && strcmp(mapset, G_mapset()) == 0)
G_fatal_error(
_("Vector map <%s> not found in current mapset"),
Vect_get_name(Map));
else
G_fatal_error(_("Vector map <%s> not found"),
Vect_get_full_name(Map));
return -1;
}
Map->mapset = G_store(fmapset);
}
else {
char file_path[GPATH_MAX];
/* reduce to current mapset if search path was set */
if (strcmp(Map->mapset, "") == 0)
Map->mapset = G_store(G_mapset());
/* temporary map: reduce to current mapset if search path
* was set */
if (strcmp(Map->mapset, "") == 0)
Map->mapset = G_store(G_mapset());
else {
if (strcmp(Map->mapset, G_mapset()) != 0) {
G_warning(_("Temporary vector maps can be accessed only in "
"the current mapset"));
return -1;
}
}
Vect__get_element_path(file_path, Map, GV_HEAD_ELEMENT);
if (access(file_path, F_OK) != 0) {
/* unable to find header file for temporary map, try
* to switch to normal mode, useful when updating
* existing map */
Map->temporary = FALSE;
Vect__get_path(path, Map); /* path must be updated for
* subsequent operations */
Vect__get_element_path(file_path, Map, GV_HEAD_ELEMENT);
if (access(file_path, F_OK) != 0)
return -1;
}
}
}
Map->location = G_store(G_location());
Map->gisdbase = G_store(G_gisdbase());
if (update && !ogr_mapset && (0 != strcmp(Map->mapset, G_mapset()))) {
G_warning(_("Vector map which is not in the current mapset cannot be "
"opened for update"));
return -1;
}
G_debug(1, "Map: name = %s, mapset = %s, temporary = %d", Map->name,
Map->mapset, Map->temporary);
/* read vector format information */
if (ogr_mapset) {
format = GV_FORMAT_OGR_DIRECT;
}
else {
format = 0;
fp = G_fopen_old(path, GV_FRMT_ELEMENT, Map->mapset);
if (fp == NULL) {
G_debug(1, "Vector format: %d (native)", format);
format = GV_FORMAT_NATIVE;
}
else {
format = dig_read_frmt_ascii(fp, &(Map->fInfo));
fclose(fp);
G_debug(1, "Vector format: %d (non-native)", format);
if (format < 0) {
G_fatal_error(_("Unable to open vector map <%s>"),
Vect_get_full_name(Map));
return -1;
}
}
}
Map->format = format;
/* read vector head (ignored for OGR mapset) */
if (!ogr_mapset && Vect__read_head(Map) != 0) {
G_fatal_error(_("Unable to read header file of vector map <%s>"),
Vect_get_full_name(Map));
}
/* projection is not written to head but zone ??? */
if (Vect_get_zone(Map) == -1)
Vect_set_zone(Map, G_zone());
Vect_set_proj(Map, G_projection());
G_debug(1, "Level request = %d", level_request);
/* There are only 2 possible open levels, 1 and 2. Try first to
open 'support' files (topo, sidx, cidx), these files are the same
for all formats. If it is not possible and requested level is
2, return error, otherwise call Open_old_array[format][1], to
open remaining files/sources (level 1)
*/
/* try to open support files if level was not requested or
* requested level is 2 (format independent) */
if (level_request == 0 || level_request > 1) {
level = 2; /* we expect success */
/* open topo */
ret = -1;
#ifdef HAVE_POSTGRES
if (Map->format == GV_FORMAT_POSTGIS)
/* try to read full-topology for PostGIS links */
ret = Vect__open_topo_pg(Map, head_only, update);
#endif
if (ret != 0) {
/* read topology for native format
read pseudo-topology for OGR/PostGIS links */
ret = Vect_open_topo(Map, head_only);
if (ret == 1) { /* topo file is not available */
G_debug(1, "topo file for vector '%s' not available.",
Vect_get_full_name(Map));
level = 1;
}
else if (ret == -1) {
G_fatal_error(
_("Unable to open topology file for vector map <%s>"),
Vect_get_full_name(Map));
}
}
/* open spatial index */
if (level >= 2) {
ret = Vect_open_sidx(Map, (update != 0));
if (ret == 1) { /* sidx file is not available */
G_debug(1, "sidx file for vector '%s' not available.",
Vect_get_full_name(Map));
if (!Map->fInfo.pg
.toposchema_name) /* optional for PostGIS Topology */
level = 1;
}
else if (ret == -1) {
G_fatal_error(
_("Unable to open spatial index file for vector map <%s>"),
Vect_get_full_name(Map));
}
/* check with_z consistency */
if ((Map->plus.with_z != 0 && Map->plus.spidx_with_z == 0) ||
(Map->plus.with_z == 0 && Map->plus.spidx_with_z != 0)) {
G_warning(
"Vector map <%s>: topology is %s, but spatial index is %s",
Vect_get_full_name(Map),
(Map->plus.with_z != 0 ? "3D" : "2D"),
(Map->plus.spidx_with_z != 0 ? "3D" : "2D"));
level = 1;
}
}
/* open category index */
if (level >= 2) {
ret = Vect_cidx_open(Map, head_only);
if (ret == 1) { /* category index is not available */
G_debug(1, "cidx file for vector '%s' not available.",
Vect_get_full_name(Map));
if (!Map->fInfo.pg
.toposchema_name) { /* optional for PostGIS Topology */
dig_free_plus(&(Map->plus)); /* free topology */
level = 1;
}
}
else if (ret == -1) { /* file exists, but cannot be opened */
G_fatal_error(
_("Unable to open category index file for vector map <%s>"),
Vect_get_full_name(Map));
}
}
#ifdef HAVE_OGR
/* open OGR specific support files */
if (level == 2 && Map->format == GV_FORMAT_OGR) {
if (V2_open_old_ogr(Map) < 0) {
dig_free_plus(&(Map->plus));
level = 1;
}
}
#endif
#ifdef HAVE_POSTGRES
/* open OGR (pseudo-topology access only) specific support
* files */
if (level == 2 && Map->format == GV_FORMAT_POSTGIS) {
if (V2_open_old_pg(Map) < 0) {
dig_free_plus(&(Map->plus));
level = 1;
}
}
#endif
if (level_request == 2 && level < 2) {
if (!ogr_mapset) {
/* for direct OGR read access is built pseudo-topology on the
* fly */
G_warning(_("Unable to open vector map <%s> on level %d. "
"Try to rebuild vector topology with v.build."),
Vect_get_full_name(Map), level_request);
return -1;
}
}
}
else {
level = 1; /* i.e. requested level is 1 */
}
/* open level 1 files / sources (format specific) */
if (!head_only || ogr_mapset || format == GV_FORMAT_POSTGIS) {
/* no need to open coordinates */
if (0 != (*Open_old_array[format][1])(Map, update)) { /* cannot open */
if (level >= 2) { /* support files opened */
dig_free_plus(&(Map->plus));
}
G_fatal_error(_("Unable to open vector map <%s>"),
Vect_get_full_name(Map));
return -1;
}
if (ogr_mapset && !head_only && level_request != 1) {
/* build pseudo-topology on the fly */
int verbose;
verbose = G_verbose();
G_message(_("Building topology for OGR layer <%s> from datasource "
"'%s'..."),
Map->fInfo.ogr.layer_name, Map->fInfo.ogr.dsn);
G_set_verbose(0);
if (Vect_build(Map)) {
level = 2;
}
G_set_verbose(verbose);
if (level < level_request)
G_fatal_error(_("Unable to open vector map <%s> on level %d"),
Map->fInfo.ogr.layer_name, level_request);
}
if (level < 2 && Map->head.with_z) {
/* topo has been initialized as 2D, update to 3D */
dig_free_plus(&(Map->plus));
dig_init_plus(&(Map->plus));
Map->plus.with_z = Map->head.with_z;
}
}
else if (level > 1) {
/* take dimension from topo if topo is available */
Map->head.with_z = Map->plus.with_z;
}
/* set status */
Map->open = VECT_OPEN_CODE;
Map->level = level;
Map->head_only = head_only;
Map->support_updated = FALSE;
if (update) {
Map->mode = GV_MODE_RW;
Map->plus.mode = GV_MODE_RW;
}
else {
Map->mode = GV_MODE_READ;
Map->plus.mode = GV_MODE_READ;
}
if (head_only) {
Map->head_only = TRUE;
}
else {
Map->head_only = FALSE;
}
G_debug(1, "Vect__open_old(): vector opened on level %d", level);
if (level == 1) { /* without topology */
Map->plus.built = GV_BUILD_NONE;
}
else { /* level 2, with topology */
Map->plus.built =
GV_BUILD_ALL; /* highest level of topology for level 2 */
}
Map->plus.uplist.do_uplist = FALSE;
/* read db links */
Map->dblnk = Vect_new_dblinks_struct();
Vect_read_dblinks(Map);
/* open history file */
if (update && !ogr_mapset) { /* native only */
Map->hist_fp = G_fopen_modify(path, GV_HIST_ELEMENT);
if (Map->hist_fp == NULL) {
G_warning(_("Unable to open history file for vector map <%s>"),
Vect_get_full_name(Map));
return -1;
}
G_fseek(Map->hist_fp, (off_t)0, SEEK_END);
Vect_hist_write(Map, "-------------------------------------------------"
"--------------------------------\n");
}
else {
if (Map->format == GV_FORMAT_NATIVE || Map->format == GV_FORMAT_OGR ||
Map->format == GV_FORMAT_POSTGIS) {
Map->hist_fp = G_fopen_old(path, GV_HIST_ELEMENT, Map->mapset);
/* If NULL (does not exist) then Vect_hist_read() handle that */
}
else {
Map->hist_fp = NULL;
}
}
if (!head_only) { /* cannot rewind if not fully opened */
Vect_rewind(Map);
}
/* delete support files if native format was opened for update (not
* head_only) */
if (update && !head_only) {
char file_path[GPATH_MAX];
Vect__get_element_path(file_path, Map, GV_TOPO_ELEMENT);
if (access(file_path, F_OK) == 0) /* topo file exists? */
unlink(file_path);
Vect__get_element_path(file_path, Map, GV_SIDX_ELEMENT);
if (access(file_path, F_OK) == 0) /* sidx file exists? */
unlink(file_path);
Vect__get_element_path(file_path, Map, GV_CIDX_ELEMENT);
if (access(file_path, F_OK) == 0) /* cidx file exists? */
unlink(file_path);
if (format == GV_FORMAT_OGR || format == GV_FORMAT_POSTGIS) {
Vect__get_element_path(file_path, Map, GV_FIDX_ELEMENT);
if (access(file_path, F_OK) == 0) /* fidx file exists? */
unlink(file_path);
}
Map->support_updated = TRUE;
}
return level;
}
/*!
\brief Open existing vector map for reading
This function is replaced by Vect_open_old2() to handle also direct
OGR support.
Calls G_fatal_error() on failure.
\param[out] Map pointer to Map_info structure
\param name name of vector map to open
\param mapset mapset name ("" for search path)
\return 1 open on level 1 (without topology)
\return 2 open on level 2 (with topology)
\return -1 on error
*/
int Vect_open_old(struct Map_info *Map, const char *name, const char *mapset)
{
return Vect__open_old(Map, name, mapset, NULL, FALSE, FALSE, FALSE);
}
/*!
\brief Open existing temporary vector map for reading
Temporary vector maps are stored in the current mapset (directory
<tt>.tmp/<hostname>/vector</tt>).
Calls G_fatal_error() on failure.
\todo Create new vector map if doesn't exist.
\param[out] Map pointer to Map_info structure
\param name name of vector map to open
\param mapset mapset name ("" for search path)
\return 1 open on level 1 (without topology)
\return 2 open on level 2 (with topology)
\return -1 on error
*/
int Vect_open_tmp_old(struct Map_info *Map, const char *name,
const char *mapset)
{
return Vect__open_old(Map, name, mapset, NULL, FALSE, FALSE, TRUE);
}
/*!
\brief Open existing vector map for reading
Calls G_fatal_error() on failure.
\param[out] Map pointer to Map_info structure
\param name name of vector map to open (datasource for direct OGR access)
\param mapset mapset name ("" for search path, "OGR" for direct OGR access)
\param layer layer name (OGR layer for direct OGR access)
\return 1 open on level 1 (without topology)
\return 2 open on level 2 (with topology)
\return -1 on error
*/
int Vect_open_old2(struct Map_info *Map, const char *name, const char *mapset,
const char *layer)
{
return Vect__open_old(Map, name, mapset, layer, FALSE, FALSE, FALSE);
}
/*!
\brief Open existing vector map for reading/writing
This function is replaced by Vect_open_update2() to handle also
direct OGR support.
By default list of updated features is not maintained, see
Vect_set_updated() for details.
Calls G_fatal_error() on failure.
\param[out] Map pointer to Map_info structure
\param name name of vector map to update
\param mapset mapset name
\return 1 open on level 1 (without topology)
\return 2 open on level 2 (with topology)
\return -1 on error
*/
int Vect_open_update(struct Map_info *Map, const char *name, const char *mapset)
{
return Vect__open_old(Map, name, mapset, NULL, TRUE, FALSE, FALSE);
}
/*!
\brief Open existing temporary vector map for reading/writing
Temporary vector maps are stored in the current mapset (directory
<tt>.tmp/<hostname>/vector</tt>).
By default list of updated features is not maintained, see
Vect_set_updated() for details.
Calls G_fatal_error() on failure.
\todo Create new vector map if doesn't exist.
\param[out] Map pointer to Map_info structure
\param name name of vector map to update
\param mapset mapset name
\return 1 open on level 1 (without topology)
\return 2 open on level 2 (with topology)
\return -1 on error
*/
int Vect_open_tmp_update(struct Map_info *Map, const char *name,
const char *mapset)
{
return Vect__open_old(Map, name, mapset, NULL, TRUE, FALSE, TRUE);
}
/*!
\brief Open existing vector map for reading/writing
By default list of updated features is not maintained, see
Vect_set_updated() for details.
Calls G_fatal_error() on failure.
\param[out] Map pointer to Map_info structure
\param name name of vector map to open (datasource for direct OGR access)
\param mapset mapset name ("" for search path, "OGR" for direct OGR access)
\param layer layer name (OGR layer for direct OGR access)
\return 1 open on level 1 (without topology)
\return 2 open on level 2 (with topology)
\return -1 on error
*/
int Vect_open_update2(struct Map_info *Map, const char *name,
const char *mapset, const char *layer)
{
return Vect__open_old(Map, name, mapset, layer, TRUE, FALSE, FALSE);
}
/*!
\brief Reads only info about vector map (headers)
Reads from headers of 'head', 'dbln', 'topo' and 'cidx' file.
This function is replaced by Vect_open_old_head2() to handle also
direct OGR support.
Calls G_fatal_error() on failure.
\param[out] Map pointer to Map_info structure
\param name name of vector map to read
\param mapset mapset name ("" for search path)
\return 1 open on level 1 (without topology)
\return 2 open on level 2 (with topology)
\return -1 on error
*/
int Vect_open_old_head(struct Map_info *Map, const char *name,
const char *mapset)
{
return Vect__open_old(Map, name, mapset, NULL, FALSE, TRUE, FALSE);
}
/*!
\brief Reads only info about vector map (headers)
Reads from headers of 'head', 'dbln', 'topo' and 'cidx' file.
Calls G_fatal_error() on failure.
\param[out] Map pointer to Map_info structure
\param name name of vector map to read (dsn for OGR)
\param mapset mapset name ("" for search path)
\param layer layer name (OGR format)
\param[out] Map pointer to Map_info structure
\param name name of vector map to open (datasource for direct OGR access)
\param mapset mapset name ("" for search path, "OGR" for direct OGR access)
\param layer layer name (OGR layer for direct OGR access)
\return 1 open on level 1 (without topology)
\return 2 open on level 2 (with topology)
\return -1 on error
*/
int Vect_open_old_head2(struct Map_info *Map, const char *name,
const char *mapset, const char *layer)
{
return Vect__open_old(Map, name, mapset, layer, FALSE, TRUE, FALSE);
}
/*! \brief Open header file of existing vector map for updating
(mostly for database link updates)
\param[out] Map pointer to Map_info structure
\param name name of vector map to update
\param mapset mapset name
\return 1 open on level 1 (without topology)
\return 2 open on level 2 (with topology)
\return -1 on error
*/
int Vect_open_update_head(struct Map_info *Map, const char *name,
const char *mapset)
{
return Vect__open_old(Map, name, mapset, NULL, TRUE, TRUE, FALSE);
}
int open_new(struct Map_info *Map, const char *name, int with_z, int is_tmp)
{
int ret;
char xname[GNAME_MAX], xmapset[GMAPSET_MAX];
G_debug(1, "Vect_open_new(): name = %s with_z = %d is_tmp = %d", name,
with_z, is_tmp);
/* zero Map_info structure */
G_zero(Map, sizeof(struct Map_info));
/* init header info */
Vect__init_head(Map);
/* check for fully-qualified map name */
if (G_name_is_fully_qualified(name, xname, xmapset)) {
if (strcmp(xmapset, G_mapset()) != 0) {
G_warning(_("Unable to create vector map: <%s> is not in the "
"current mapset (%s)"),
name, G_mapset());
return -1;
}
name = xname;
}
/* check for [A-Za-z][A-Za-z0-9_]* in name */
if (Vect_legal_filename(name) < 0) {
G_fatal_error(
_("Unable to create vector map: <%s> is not SQL compliant"), name);
return -1;
}
/* store basic info */
Map->name = G_store(name);
Map->mapset = G_store(G_mapset());
Map->location = G_store(G_location());
Map->gisdbase = G_store(G_gisdbase());
Map->temporary = is_tmp;
/* determine output format */
Map->format = map_format(Map);
if (Map->format != GV_FORMAT_OGR_DIRECT &&
getenv("GRASS_VECTOR_PGFILE") ==
NULL) { /* GRASS_VECTOR_PGFILE defined by v.out.postgis */
char *env;
char path[GPATH_MAX];
G_debug(2, " using non-direct format");
/* check if map already exists
temporary maps are automatically overwritten
*/
if (Map->temporary) {
if (-1 == Vect__delete(name, Map->temporary)) {
G_warning(_("Unable to delete vector map <%s>"), name);
return -1;
}
}
env = getenv("GRASS_VECTOR_TEMPORARY");
if (!Map->temporary || (env && strcmp(env, "move") == 0)) {
if (G_find_vector2(name, G_mapset()) != NULL) {
G_warning(
_("Vector map <%s> already exists and will be overwritten"),
name);
ret = Vect_delete(name);
if (ret == -1) {
G_warning(_("Unable to delete vector map <%s>"), name);
return -1;
}
}
}
/* write header file
note: header & history file is also written for external
formats since vector library create links automatically
when closing the map
*/
Map->head.size = 0;
Map->head.head_size = GV_COOR_HEAD_SIZE + 4;
Vect__write_head(Map);
/* create history file */
Vect__get_path(path, Map);
Map->hist_fp = G_fopen_new(path, GV_HIST_ELEMENT);
if (Map->hist_fp == NULL) {
G_warning(_("Unable to open history file of vector map <%s>"),
name);
return -1;
}
}
/* set 2D/3D */
Map->plus.spidx_with_z = Map->plus.with_z = Map->head.with_z =
(with_z != 0);
Map->level = LEVEL_1;
if ((*Open_new_array[Map->format][1])(Map, name, with_z) < 0) {
if (getenv("GRASS_VECTOR_PGFILE") ==
NULL) /* GRASS_VECTOR_PGFILE defined by v.out.postgis */
Vect_delete(name); /* clean up */
return -1;
}
Open_level = 0;
/* initialize topo */
Map->plus.Spidx_file = 0;
dig_init_plus(&(Map->plus));
/* open new spatial index */
if (Vect_open_sidx(Map, 2) < 0)
G_fatal_error(
_("Unable to open spatial index file for vector map <%s>"),
Vect_get_full_name(Map));
Map->open = VECT_OPEN_CODE;
Map->head_only = FALSE;
Map->support_updated = FALSE;
Map->plus.built = GV_BUILD_NONE;
Map->mode = GV_MODE_RW;
Map->plus.uplist.do_uplist = FALSE;
Vect_set_proj(Map, G_projection());
Vect_set_zone(Map, G_zone());
Map->dblnk = Vect_new_dblinks_struct();
if (Map->fInfo.ogr.driver_name) {
G_verbose_message(_("Using OGR/%s format"), Map->fInfo.ogr.driver_name);
}
else if (Map->fInfo.pg.conninfo) {
if (Map->fInfo.pg.toposchema_name)
G_verbose_message(_("Using PostGIS Topology format"));
else
G_verbose_message(_("Using PostGIS format"));
}
else {
G_verbose_message(_("Using native format"));
}
return 1;
}
/*!
\brief Create new vector map for reading/writing
By default list of updated features is not maintained, see
Vect_set_updated() for details.
By default map format is native (GV_FORMAT_NATIVE). If OGR file is
found in the current mapset then the map (ie. OGR layer) is created
in given OGR datasource (GV_FORMAT_OGR). Similarly if PG file exists
then the map (ie. PostGIS table) is created using PostGIS interface
(GV_FORMAT_POSTGIS). The format of map is stored in Map->format.
\param[out] Map pointer to Map_info structure
\param name name of vector map to be created
\param with_z WITH_Z for 3D vector data otherwise WITHOUT_Z
\return 1 on success
\return -1 on error
*/
int Vect_open_new(struct Map_info *Map, const char *name, int with_z)
{
int is_tmp;
is_tmp = getenv("GRASS_VECTOR_TEMPORARY") ? TEMPORARY_MAP_ENV
: TEMPORARY_MAP_DISABLED;
G_debug(1, "Vect_open_new(): is_tmp = %d", is_tmp);
return open_new(Map, name, with_z, is_tmp);
}
/*!
\brief Create new temporary vector map
Temporary vector maps are stored in the current mapset (directory
<tt>.tmp/<hostname>/vector</tt>). If the map already exists, it is
overwritten.
Temporary vector maps are automatically deleted when closing the map
(see Vect_close() for details).
If <em>name</em> is not given (is NULL), then the name is determined
by process id (<tt>tmp_<pid></tt>).
\param[out] Map pointer to output Map_info struct
\param name name for new vector map (or NULL)
\param with_z WITH_Z for 3D vector data otherwise WITHOUT_Z
\return 1 on success
\return -1 on error
*/
int Vect_open_tmp_new(struct Map_info *Map, const char *name, int with_z)
{
char tmp_name[GNAME_MAX];
if (!name) {
sprintf(tmp_name, "tmp_%d", getpid());
}
else {
sprintf(tmp_name, "%s", name);
}
G_debug(1, "Vect_open_tmp_new(): name = '%s' with_z = %d", name, with_z);
return open_new(Map, tmp_name, with_z, TEMPORARY_MAP); /* temporary map */
}
/*!
\brief Update Coor_info structure
\param Map pointer to Map_info structure
\param[out] Info pointer to Coor_info structure
\return 1 on success
\return 0 on error
*/
int Vect_coor_info(struct Map_info *Map, struct Coor_info *Info)
{
char file_path[GPATH_MAX];
struct stat stat_buf;
switch (Map->format) {
case GV_FORMAT_NATIVE:
Vect__get_element_path(file_path, Map, GV_COOR_ELEMENT);
G_debug(1, "get coor info: %s", file_path);
if (0 != stat(file_path, &stat_buf)) {
G_warning(_("Unable to stat file <%s>"), file_path);
Info->size = -1L;
Info->mtime = -1L;
}
else {
Info->size = (off_t)stat_buf.st_size; /* file size */
Info->mtime = (long)stat_buf.st_mtime; /* last modified time */
}
/* stat does not give correct size on MINGW
* if the file is opened */
#ifdef __MINGW32__
if (Map->open == VECT_OPEN_CODE) {
dig_fseek(&(Map->dig_fp), 0L, SEEK_END);
G_debug(2, "dig_ftell = %d", dig_ftell(&(Map->dig_fp)));
Info->size = dig_ftell(&(Map->dig_fp));
}
#endif
break;
case GV_FORMAT_OGR:
case GV_FORMAT_OGR_DIRECT:
case GV_FORMAT_POSTGIS:
Info->size = 0L;
Info->mtime = 0L;
break;
}
G_debug(1, "Vect_coor_info(): Info->size = %lu, Info->mtime = %ld",
(unsigned long)Info->size, Info->mtime);
return 1;
}
/*!
\brief Gets vector map format (as string)
Note: string is allocated by G_store(). Free allocated memory with
G_free().
Currently are implemented:
- Native format (native)
- OGR format (ogr)
- PostGIS format (postgis)
\param Map pointer to Map_info structure
\return maptype string on success (allocated by G_store())
\return error message on error
*/
const char *Vect_maptype_info(struct Map_info *Map)
{
char maptype[1000];
switch (Map->format) {
case GV_FORMAT_NATIVE:
sprintf(maptype, "native");
break;
case GV_FORMAT_OGR:
case GV_FORMAT_OGR_DIRECT:
sprintf(maptype, "OGR");
break;
case GV_FORMAT_POSTGIS:
sprintf(maptype, "PostGIS");
break;
default:
sprintf(maptype, _("unknown %d (update Vect_maptype_info)"),
Map->format);
}
return G_store(maptype);
}
/*!
\brief Gets vector map format
Currently are implemented:
- Native format (GV_FORMAT_NATIVE)
- OGR format linked via v.external (GV_FORMAT_OGR)
- OGR format (GV_FORMAT_OGR_DIRECT)
- PostGIS format (GV_FORMAT_POSTGIS)
\param Map pointer to Map_info structure
\return map format code
*/
int Vect_maptype(struct Map_info *Map)
{
if (Map->temporary) {
const struct Format_info *finfo;
finfo = &(Map->fInfo);
if (finfo->ogr.driver_name) {
return GV_FORMAT_OGR;
}
if (finfo->pg.conninfo) {
return GV_FORMAT_POSTGIS;
}
}
return Map->format;
}
/*!
\brief Open topology file ('topo')
\param[in,out] Map pointer to Map_info structure
\param head_only TRUE to read only header
\return 0 on success
\return 1 file does not exist
\return -1 on error
*/
int Vect_open_topo(struct Map_info *Map, int head_only)
{
int err, ret;
char file_path[GPATH_MAX], path[GPATH_MAX];
struct gvfile fp;
struct Coor_info CInfo;
struct Plus_head *Plus;
G_debug(1, "Vect_open_topo(): name = %s mapset = %s", Map->name,
Map->mapset);
Plus = &(Map->plus);
Vect__get_path(path, Map);
Vect__get_element_path(file_path, Map, GV_TOPO_ELEMENT);
if (access(file_path, F_OK) != 0) { /* does not exist */
return 1;
}
dig_file_init(&fp);
fp.file = G_fopen_old(path, GV_TOPO_ELEMENT, Map->mapset);
if (fp.file == NULL) { /* topo file is not available */
G_debug(1, "Cannot open topo file for vector '%s@%s'.", Map->name,
Map->mapset);
return -1;
}
/* get coor info */
/* NOTE: coor file not yet opened */
Vect_coor_info(Map, &CInfo);
/* load head */
if (dig_Rd_Plus_head(&fp, Plus) == -1)
return -1;
G_debug(1, "Topo head: coor size = %lu, coor mtime = %ld",
(unsigned long)Plus->coor_size, Plus->coor_mtime);
/* do checks */
err = 0;
if (CInfo.size != Plus->coor_size) {
G_warning(
_("Size of 'coor' file differs from value saved in topology file"));
err = 1;
}
/* Do not check mtime because mtime is changed by copy */
/*
if ( CInfo.mtime != Plus->coor_mtime ) {
G_warning ( "Time of last modification for 'coor' file differs from value
saved in topo file.\n"); err = 1;
}
*/
if (err) {
G_warning(_("Please rebuild topology for vector map <%s@%s>"),
Map->name, Map->mapset);
return -1;
}
/* load file to the memory */
/* dig_file_load ( &fp); */
/* load topo to memory */
ret = dig_load_plus(Plus, &fp, head_only);
fclose(fp.file);
/* dig_file_free(&fp); */
return ret == 0 ? -1 : 0;
}
/*!
\brief Open spatial index file ('sidx')
\param[in,out] Map pointer to Map_info
\param mode 0 old, 1 update, 2 new
\return 1 if sidx file is not available
\return 0 on success
\return -1 on error
*/
int Vect_open_sidx(struct Map_info *Map, int mode)
{
int err;
struct Coor_info CInfo;
struct Plus_head *Plus;
G_debug(1, "Vect_open_sidx(): name = %s mapset= %s mode = %s", Map->name,
Map->mapset, mode == 0 ? "old" : (mode == 1 ? "update" : "new"));
Plus = &(Map->plus);
if (Plus->Spidx_built) {
G_debug(1, "Spatial index already opened");
return 0;
}
dig_file_init(&(Plus->spidx_fp));
if (mode < 2) {
char path[GPATH_MAX], file_path[GPATH_MAX];
Vect__get_path(path, Map);
Vect__get_element_path(file_path, Map, GV_SIDX_ELEMENT);
if (access(file_path, F_OK) != 0) /* does not exist */
return 1;
Plus->spidx_fp.file = G_fopen_old(path, GV_SIDX_ELEMENT, Map->mapset);
if (Plus->spidx_fp.file == NULL) { /* sidx file is not available */
G_debug(1, "Cannot open spatial index file for vector '%s@%s'.",
Map->name, Map->mapset);
return -1;
}
/* get coor info */
/* NOTE: coor file not yet opened */
Vect_coor_info(Map, &CInfo);
/* initialize spatial index */
Plus->Spidx_new = FALSE;
if (mode == 0) {
/* free old indices */
dig_spidx_free(Plus);
/* initialize file based indices */
Plus->Spidx_file = 1;
dig_spidx_init(Plus);
}
/* load head */
if (dig_Rd_spidx_head(&(Plus->spidx_fp), Plus) == -1) {
fclose(Plus->spidx_fp.file);
return -1;
}
G_debug(1, "Sidx head: coor size = %lu, coor mtime = %ld",
(unsigned long)Plus->coor_size, Plus->coor_mtime);
/* do checks */
err = 0;
if (CInfo.size != Plus->coor_size) {
G_warning(
_("Size of 'coor' file differs from value saved in sidx file"));
err = 1;
}
/* Do not check mtime because mtime is changed by copy */
/*
if ( CInfo.mtime != Plus->coor_mtime ) {
G_warning ( "Time of last modification for 'coor' file differs from
value saved in topo file.\n"); err = 1;
}
*/
if (err) {
G_warning(_("Please rebuild topology for vector map <%s@%s>"),
Map->name, Map->mapset);
fclose(Plus->spidx_fp.file);
return -1;
}
}
if (mode) {
/* open new spatial index */
Plus->Spidx_new = TRUE;
/* file based or memory based */
if (getenv("GRASS_VECTOR_LOWMEM")) {
/* free old indices */
dig_spidx_free(Plus);
/* initialize file based indices */
Plus->Spidx_file = 1;
dig_spidx_init(Plus);
}
G_debug(1, "%s based spatial index",
Plus->Spidx_file == 0 ? "Memory" : "File");
if (mode == 1) {
/* load spatial index for update */
if (dig_Rd_spidx(&(Plus->spidx_fp), Plus) == -1) {
fclose(Plus->spidx_fp.file);
return -1;
}
}
}
Plus->Spidx_built = TRUE;
return 0;
}
/* check for external formats definition */
int map_format(struct Map_info *Map)
{
int format;
char *def_file;
format = GV_FORMAT_NATIVE;
/* temporary maps can be stored only in native format */
if (Map->temporary || getenv("GRASS_VECTOR_EXTERNAL_IGNORE"))
return format;
if (G_find_file2("", "OGR", G_mapset())) {
/* OGR */
FILE *fp;
const char *p;
struct Key_Value *key_val;
struct Format_info_ogr *ogr_info;
G_debug(2, " using OGR format");
if (getenv("GRASS_VECTOR_EXTERNAL_IMMEDIATE")) {
/* vector features are written directly to OGR layer */
format = GV_FORMAT_OGR;
}
else {
/* vector features are written to the temporary vector map
* in the native format and when closing the map
* transferred to output OGR layer */
format = GV_FORMAT_NATIVE;
Map->temporary = TEMPORARY_MAP;
}
fp = G_fopen_old("", "OGR", G_mapset());
if (!fp) {
G_fatal_error(_("Unable to open OGR file"));
}
key_val = G_fread_key_value(fp);
fclose(fp);
ogr_info = &(Map->fInfo.ogr);
/* format */
p = G_find_key_value("format", key_val);
if (p)
ogr_info->driver_name = G_store(p);
/* dsn */
p = G_find_key_value("dsn", key_val);
if (p)
ogr_info->dsn = G_store(p);
/* options */
p = G_find_key_value("options", key_val);
if (p)
ogr_info->layer_options = G_tokenize(p, ",");
ogr_info->layer_name = G_store(Map->name);
}
def_file = getenv("GRASS_VECTOR_PGFILE"); /* GRASS_VECTOR_PGFILE defined by
v.out.postgis */
if (G_find_file2("", def_file ? def_file : "PG", G_mapset())) {
/* PostGIS */
if (Map->fInfo.ogr.driver_name) {
G_warning(_("OGR output also detected, using OGR"));
}
else {
FILE *fp;
const char *p;
struct Key_Value *key_val;
struct Format_info_pg *pg_info;
G_debug(2, " using PostGIS format");
fp = G_fopen_old("", def_file ? def_file : "PG", G_mapset());
if (!fp) {
G_fatal_error(_("Unable to open PG file"));
}
key_val = G_fread_key_value(fp);
fclose(fp);
pg_info = &(Map->fInfo.pg);
/* conninfo */
p = G_find_key_value("conninfo", key_val);
if (p) {
pg_info->conninfo = G_store(p);
G_debug(1, "PG: conninfo = '%s'", pg_info->conninfo);
}
/* schema (default: public) */
p = G_find_key_value("schema", key_val);
if (p)
pg_info->schema_name = G_store(p);
else
pg_info->schema_name = G_store("public");
G_debug(1, "PG: schema_name = '%s'", pg_info->schema_name);
/* fid column (default: FID_COLUMN) */
p = G_find_key_value("fid", key_val);
if (p)
pg_info->fid_column = G_store(p);
else
#ifdef HAVE_POSTGRES
pg_info->fid_column = G_store(GV_PG_FID_COLUMN);
#endif
G_debug(1, "PG: fid_column = '%s'", pg_info->fid_column);
/* geometry column (default: GEOMETRY_COLUMN) */
p = G_find_key_value("geometry_name", key_val);
if (p)
pg_info->geom_column = G_store(p);
else
#ifdef HAVE_POSTGRES
pg_info->geom_column = G_store(GV_PG_GEOMETRY_COLUMN);
#endif
G_debug(1, "PG: geom_column = '%s'", pg_info->geom_column);
/* srid (default: 0) */
p = G_find_key_value("srid", key_val);
if (p) {
pg_info->srid = atoi(p);
}
else {
/* not defined by v.external.out, so try if EPSG code
* is defined */
p = G_database_epsg_code();
if (p)
pg_info->srid = atoi(p);
}
G_debug(1, "PG: srid = %d", pg_info->srid);
/* table name */
Map->fInfo.pg.table_name = G_store(Map->name);
/* PostGIS topology enabled ? */
p = G_find_key_value("topology", key_val);
if (p && G_strcasecmp(p, "yes") == 0) {
/* define topology name */
p = G_find_key_value("toposchema_name", key_val);
if (p)
pg_info->toposchema_name = G_store(p);
else
G_asprintf(&(pg_info->toposchema_name), "topo_%s",
pg_info->table_name);
G_debug(1, "PG: topology = yes, schema_name = %s",
pg_info->toposchema_name);
}
G_debug(1, "PG: topology = no");
if (getenv("GRASS_VECTOR_EXTERNAL_IMMEDIATE")) {
/* vector features are written directly to PostGIS layer */
format = GV_FORMAT_POSTGIS;
}
else {
/* vector features are written to the temporary vector map
* in the native format and when closing the map
* transferred to output PostGIS layer */
format = GV_FORMAT_NATIVE;
Map->temporary = TEMPORARY_MAP;
}
}
}
G_debug(2, "map_format = %d", format);
return format;
}
/*!
\brief Get map directory name (internal use only)
\param file_path path string buffer
\param Map pointer to Map_info struct
\return buffer containing path
*/
char *Vect__get_path(char *path, struct Map_info *Map)
{
if (Map->temporary) {
char path_tmp[GPATH_MAX];
G__temp_element(path_tmp, TRUE);
sprintf(path, "%s/%s/%s", path_tmp, GV_DIRECTORY, Map->name);
}
else {
sprintf(path, "%s/%s", GV_DIRECTORY, Map->name);
}
return path;
}
/*!
\brief Get map element full path (internal use only)
Allocate string should be freed by G_free().
\param Map pointer to Map_info struct
\param element element name, eg. GV_TOPO_ELEMENT
\return allocated buffer containing path
*/
char *Vect__get_element_path(char *file_path, struct Map_info *Map,
const char *element)
{
char path[GPATH_MAX];
Vect__get_path(path, Map);
if (Map->temporary)
G_file_name_tmp(file_path, path, element, Map->mapset);
else
G_file_name(file_path, path, element, Map->mapset);
return file_path;
}
|