12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100 |
- /*!
- * \file lib/vector/Vlib/open.c
- *
- * \brief Vector library - Open vector map (native or OGR format)
- *
- * Higher level functions for reading/writing/manipulating vectors.
- *
- * (C) 2001-2009 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.
- */
- #include <grass/config.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
- #include <unistd.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <grass/gis.h>
- #include <grass/vector.h>
- #include <grass/glocale.h>
- /*
- \brief Number of levels - without and with topology
- */
- #define MAX_OPEN_LEVEL 2
- static int open_old_dummy()
- {
- return 0;
- }
- static int open_new_dummy()
- {
- return 0;
- }
- #ifndef HAVE_OGR
- static int format()
- {
- 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]) () = {
- {
- 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}
- , {
- open_old_dummy, format}
- #endif
- };
- static int (*Open_new_array[][2]) () = {
- {
- 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}
- , {
- open_new_dummy, format}
- #endif
- };
- static void fatal_error(int ferror, char *errmsg)
- {
- switch (ferror) {
- case GV_FATAL_EXIT:
- G_fatal_error(errmsg);
- break;
- case GV_FATAL_PRINT:
- G_warning(errmsg);
- break;
- case GV_FATAL_RETURN:
- break;
- }
- }
- /*!
- * \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
- */
- 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)
- *
- * In case of error, the functions respect fatal error settings.
- *
- * \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.
- *
- * \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)
- {
- char buf[GNAME_MAX + 10], buf2[GMAPSET_MAX + 10], xname[GNAME_MAX],
- xmapset[GMAPSET_MAX], errmsg[2000];
- FILE *fp;
- int level, level_request, ferror;
- int format, ret;
- int ogr_mapset;
- const char *fmapset;
- G_debug(1, "Vect__open_old(): name = %s mapset = %s layer= %s update = %d", name,
- mapset, layer, update);
- /* zero Map_info structure */
- G_zero(Map, sizeof(struct Map_info));
- /* TODO: Open header for update ('dbln') */
- ferror = Vect_get_fatal_error();
- Vect_set_fatal_error(GV_FATAL_EXIT);
- 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 = 0;
- /* initialize Map->plus */
- dig_init_plus(&(Map->plus));
- /* check OGR mapset */
- ogr_mapset = 0;
- 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 = 1;
- Map->fInfo.ogr.dsn = G_store(xname);
- if (layer) {
- Map->fInfo.ogr.layer_name = G_store(layer); /* no layer to be open */
- }
- }
- else {
- sprintf(buf, "%s/%s", GV_DIRECTORY, xname);
- sprintf(buf2, "%s@%s", GV_COOR_ELEMENT, xmapset);
- }
- Map->name = G_store(xname);
- Map->mapset = G_store(xmapset);
- }
- else {
- sprintf(buf, "%s/%s", GV_DIRECTORY, name);
- sprintf(buf2, "%s", GV_COOR_ELEMENT);
- Map->name = G_store(name);
- if (mapset)
- Map->mapset = G_store(mapset);
- else
- Map->mapset = G_store("");
- }
- if (!ogr_mapset) {
- /* try to find vector map (not for OGR mapset) */
- fmapset = G_find_vector2(Map->name, Map->mapset);
- if (fmapset == NULL) {
- sprintf(errmsg, _("Vector map <%s> not found"),
- Vect_get_full_name(Map));
- fatal_error(ferror, errmsg);
- return -1;
- }
- Map->mapset = G_store(fmapset);
- }
-
- 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", Map->name);
- G_debug(1, "Map mapset: %s", Map->mapset);
- /* Read vector format information */
- if (ogr_mapset) {
- format = GV_FORMAT_OGR_DIRECT;
- }
- else {
- format = 0;
- sprintf(buf, "%s/%s", GV_DIRECTORY, Map->name);
- G_debug(1, "open format file: '%s/%s/%s'", Map->mapset, buf,
- GV_FRMT_ELEMENT);
- fp = G_fopen_old(buf, 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) {
- sprintf(errmsg, _("Unable to open vector map <%s>"),
- Vect_get_full_name(Map));
- fatal_error(ferror, errmsg);
- return -1;
- }
- }
- }
- Map->format = format;
- /* projection info */
- Vect_set_proj(Map, G_projection());
- Vect_set_zone(Map, G_zone());
-
- /* read vector head (ignored for OGR mapset) */
- if (!ogr_mapset && Vect__read_head(Map) != 0) {
- sprintf(errmsg,
- _("Unable to open vector map <%s> on level %d. "
- "Try to rebuild vector topology by v.build."),
- Vect_get_full_name(Map), level_request);
- G_warning(_("Unable to read header file of vector map <%s>"),
- Vect_get_full_name(Map));
- }
-
- /* zone not set */
- if (Vect_get_zone(Map) == -1)
- Vect_set_zone(Map, G_zone());
-
- 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 == 2) {
- level = 2; /* we expect success */
- /* open topo */
- 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));
- 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));
- dig_free_plus(&(Map->plus)); /* free topology */
- dig_spidx_free(&(Map->plus)); /* free spatial index */
- 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));
- dig_spidx_free(&(Map->plus));
- dig_cidx_free(&(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 */
- sprintf(errmsg,
- _("Unable to open vector map <%s> on level %d. "
- "Try to rebuild vector topology by v.build."),
- Vect_get_full_name(Map), level_request);
- fatal_error(ferror, errmsg);
- return -1;
- }
- }
- }
- else {
- level = 1; /* i.e. requested level is 1 */
- }
- /* open level 1 files / sources (format specific) */
- if (!head_only || ogr_mapset) { /* 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));
- dig_spidx_free(&(Map->plus));
- dig_cidx_free(&(Map->plus));
- }
- sprintf(errmsg,
- _("Unable to open vector map <%s> on level %d. "
- "Try to rebuild vector topology by v.build."),
- Vect_get_full_name(Map), level_request);
- fatal_error(ferror, errmsg);
- 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);
- }
- }
- else {
- Map->head.with_z = Map->plus.with_z; /* take dimension from topo */
- }
- /* set status */
- Map->open = VECT_OPEN_CODE;
- Map->level = level;
- Map->head_only = head_only;
- Map->support_updated = 0;
- 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 = 1;
- }
- else {
- Map->head_only = 0;
- }
- Map->Constraint_region_flag = 0;
- Map->Constraint_type_flag = 0;
- 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.do_uplist = 0;
- /* read db links */
- Map->dblnk = Vect_new_dblinks_struct();
- Vect_read_dblinks(Map);
- /* open history file */
- sprintf(buf, "%s/%s", GV_DIRECTORY, Map->name);
- if (update && !ogr_mapset) { /* native only */
- Map->hist_fp = G_fopen_modify(buf, GV_HIST_ELEMENT);
- if (Map->hist_fp == NULL) {
- sprintf(errmsg,
- _("Unable to open history file for vector map <%s>"),
- Vect_get_full_name(Map));
- fatal_error(ferror, errmsg);
- 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->hist_fp =
- G_fopen_old(buf, 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[2000];
- sprintf(buf, "%s/%s", GV_DIRECTORY, name);
- G__file_name(file_path, buf, GV_TOPO_ELEMENT, G_mapset());
- if (access(file_path, F_OK) == 0) /* file exists? */
- unlink(file_path);
- G__file_name(file_path, buf, GV_SIDX_ELEMENT, G_mapset());
- if (access(file_path, F_OK) == 0) /* file exists? */
- unlink(file_path);
- G__file_name(file_path, buf, GV_CIDX_ELEMENT, G_mapset());
- if (access(file_path, F_OK) == 0) /* file exists? */
- unlink(file_path);
- }
- return (level);
- }
- /*!
- * \brief Open existing vector map for reading (native or OGR format
- * via v.external)
- *
- * This function is replaced by Vect_open_old2() to handle also direct
- * OGR support.
- *
- * In case of error, the functions respect fatal error settings.
- *
- * \param[out] Map pointer to Map_info structure
- * \param name name of vector map to open
- * \param mapset mapset name
- *
- * \return level of openness [1, 2, (3)]
- * \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, 0, 0));
- }
- /*!
- * \brief Open existing vector map for reading (native and OGR format)
- *
- * In case of error, the functions respect fatal error settings.
- *
- * \param[out] Map pointer to Map_info structure
- * \param name name of vector map to open
- * \param mapset mapset name
- * \param layer layer name (OGR format)
- *
- * \return level of openness [1, 2, (3)]
- * \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, 0, 0));
- }
- /*!
- * \brief Open existing vector map for reading/writing (native or OGR
- * format via v.external)
- *
- * This function is replaced by Vect_open_update2() to handle also
- * direct OGR support.
- *
- * In case of error, the functions respect fatal error settings.
- *
- * \param[out] Map pointer to Map_info structure
- * \param name name of vector map to update
- * \param mapset mapset name
- *
- * \return level of openness [1, 2, (3)]
- * \return -1 on error
- */
- int Vect_open_update(struct Map_info *Map, const char *name, const char *mapset)
- {
- int ret;
-
- ret = Vect__open_old(Map, name, mapset, NULL, 1, 0);
-
- /* the update lists are unused, a waste of time and memory */
- /*
- if (ret > 0) {
- Map->plus.do_uplist = 1;
- Map->plus.uplines = NULL;
- Map->plus.n_uplines = 0;
- Map->plus.alloc_uplines = 0;
- Map->plus.upnodes = NULL;
- Map->plus.n_upnodes = 0;
- Map->plus.alloc_upnodes = 0;
- }
- */
- return ret;
- }
- /*!
- * \brief Open existing vector map for reading/writing (native or OGR
- * format)
- *
- * In case of error, the functions respect fatal error settings.
- *
- * \param[out] Map pointer to Map_info structure
- * \param name name of vector map to update
- * \param mapset mapset name
- * \param layer layer name (OGR format)
- *
- * \return level of openness [1, 2, (3)]
- * \return -1 on error
- */
- int Vect_open_update2(struct Map_info *Map, const char *name, const char *mapset, const char *layer)
- {
- int ret;
-
- ret = Vect__open_old(Map, name, mapset, layer, 1, 0);
-
- return ret;
- }
- /*!
- * \brief Reads only info about vector map from headers of 'head',
- * 'dbln', 'topo' and 'cidx' file (native or OGR format via
- * v.external)
- *
- * This function is replaced by Vect_open_old_head2() to handle also
- * direct OGR support.
- *
- * In case of error, the functions respect fatal error settings.
- *
- * \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)
- *
- * \return level of openness [1, 2, (3)]
- * \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, 0, 1));
- }
- /*!
- * \brief Reads only info about vector map from headers of 'head',
- * 'dbln', 'topo' and 'cidx' file (native or OGR format)
- *
- * In case of error, the functions respect fatal error settings.
- *
- * \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)
- *
- * \return level of openness [1, 2, (3)]
- * \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, 0, 1));
- }
- /*!
- * \brief Open header file of existing vector map for updating (mostly
- * for database link updates)
- *
- * In case of error, the functions respect fatal error settings.
- *
- * \param[out] Map pointer to Map_info structure
- * \param name name of vector map to update
- * \param mapset mapset name
- *
- * \return level of openness [1, 2, (3)]
- * \return -1 on error
- */
- int Vect_open_update_head(struct Map_info *Map, const char *name,
- const char *mapset)
- {
- int ret;
- ret = Vect__open_old(Map, name, mapset, NULL, 1, 1);
- /* the update lists are unused, a waste of time and memory */
- /*
- if (ret > 0) {
- Map->plus.do_uplist = 1;
- Map->plus.uplines = NULL;
- Map->plus.n_uplines = 0;
- Map->plus.alloc_uplines = 0;
- Map->plus.upnodes = NULL;
- Map->plus.n_upnodes = 0;
- Map->plus.alloc_upnodes = 0;
- }
- */
- return ret;
- }
- /*!
- * \brief Create new vector map for reading/writing
- *
- * \param[in,out] Map pointer to Map_info structure
- * \param name name of vector map
- * \param with_z non-zero value for 3D vector data
- *
- * \return 1 on success
- * \return -1 on error
- */
- int Vect_open_new(struct Map_info *Map, const char *name, int with_z)
- {
- int ret, ferror;
- char errmsg[2000], buf[500];
- char xname[GNAME_MAX], xmapset[GMAPSET_MAX];
- G_debug(2, "Vect_open_new(): name = %s", name);
- G_zero(Map, sizeof(struct Map_info));
-
- /* init header */
- Vect__init_head(Map);
- /* error handling */
- ferror = Vect_get_fatal_error();
- Vect_set_fatal_error(GV_FATAL_EXIT);
- if (G_name_is_fully_qualified(name, xname, xmapset)) {
- if (strcmp(xmapset, G_mapset()) != 0) {
- sprintf(errmsg, _("%s is not in the current mapset (%s)"), name,
- G_mapset());
- fatal_error(ferror, errmsg);
- }
- name = xname;
- }
- /* check for [A-Za-z][A-Za-z0-9_]* in name */
- if (Vect_legal_filename(name) < 0) {
- sprintf(errmsg, _("Vector map name is not SQL compliant"));
- fatal_error(ferror, errmsg);
- return -1;
- }
- /* determine output format native or ogr */
- if (G_find_file2("", "OGR", G_mapset())) {
- /* OGR */
- FILE *fp;
- struct Key_Value *key_val;
- const char *p;
- G_debug(2, " using OGR format");
- Map->format = GV_FORMAT_OGR_DIRECT;
- fp = G_fopen_old("", "OGR", G_mapset());
- if (!fp) {
- sprintf(errmsg, _("Unable to open OGR file"));
- fatal_error(ferror, errmsg);
- }
- key_val = G_fread_key_value(fp);
- fclose(fp);
- p = G_find_key_value("format", key_val);
- if (p)
- Map->fInfo.ogr.driver_name = G_store(p);
- p = G_find_key_value("dsn", key_val);
- if (p)
- Map->fInfo.ogr.dsn = G_store(p);
- Map->fInfo.ogr.layer_name = G_store(name);
- }
- else {
- /* native */
- G_debug(2, " using native format");
- Map->format = GV_FORMAT_NATIVE;
- /* check if map already exists */
- 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) {
- sprintf(errmsg, _("Unable to delete vector map <%s>"), name);
- fatal_error(ferror, errmsg);
- return -1;
- }
- }
- }
- Map->name = G_store(name);
- Map->mapset = G_store(G_mapset());
- Map->location = G_store(G_location());
- Map->gisdbase = G_store(G_gisdbase());
-
- /* set 2D/3D */
- Map->plus.spidx_with_z = Map->plus.with_z = Map->head.with_z = (with_z != 0);
- if ((*Open_new_array[Map->format][1]) (Map, name, with_z) < 0) {
- sprintf(errmsg, _("Unable to create vector map <%s>"),
- Vect_get_full_name(Map));
- fatal_error(ferror, errmsg);
- return -1;
- }
- if (Map->format == GV_FORMAT_NATIVE) {
- /* Open history file */
- sprintf(buf, "%s/%s", GV_DIRECTORY, Map->name);
- Map->hist_fp = G_fopen_new(buf, GV_HIST_ELEMENT);
- if (Map->hist_fp == NULL) {
- sprintf(errmsg, _("Unable to open history file of vector map <%s>"),
- Vect_get_full_name(Map));
- fatal_error(ferror, errmsg);
- return -1;
- }
- }
-
- Open_level = 0;
- /* initialize topo */
- dig_init_plus(&(Map->plus));
- /* open new spatial index */
- Vect_open_sidx(Map, 2);
- Map->open = VECT_OPEN_CODE;
- Map->level = 1;
- Map->head_only = 0;
- Map->support_updated = 0;
- Map->plus.built = GV_BUILD_NONE;
- Map->mode = GV_MODE_RW;
- Map->Constraint_region_flag = 0;
- Map->Constraint_type_flag = 0;
- Map->plus.do_uplist = 0;
- Vect_set_proj(Map, G_projection());
- Vect_set_zone(Map, G_zone());
- Map->dblnk = Vect_new_dblinks_struct();
- return 1;
- }
- /*!
- * \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(const struct Map_info *Map, struct Coor_info *Info)
- {
- char buf[2000], path[2000];
- STRUCT_STAT stat_buf;
-
- switch (Map->format) {
- case GV_FORMAT_NATIVE:
- sprintf(buf, "%s/%s", GV_DIRECTORY, Map->name);
- G__file_name(path, buf, GV_COOR_ELEMENT, Map->mapset);
- G_debug(1, "get coor info: %s", path);
- if (0 != stat(path, &stat_buf)) {
- G_warning(_("Unable to stat file <%s>"), 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:
- Info->size = 0L;
- Info->mtime = 0L;
- break;
- }
- G_debug(1, "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 implemeted:
- * - Native format (native)
- * - OGR format (ogr)
- *
- * \param Map pointer to Map_info structure
- *
- * \return maptype string on success
- * \return error message on error
- */
- const char *Vect_maptype_info(const 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;
- default:
- sprintf(maptype, _("unknown %d (update Vect_maptype_info)"),
- Map->format);
- }
- return G_store(maptype);
- }
- /*!
- \brief Gets vector map format
- Currently are implemeted:
- - Native format (GV_FORMAT_NATIVE)
- - OGR format linked via v.external (GV_FORMAT_OGR)
- - OGR format (GV_FORMAT_DIRECT)
- \param Map pointer to Map_info structure
-
- \return maptype code
- */
- int Vect_maptype(const struct Map_info *Map)
- {
- return Map->format;
- }
- /*!
- * \brief Open topology file ('topo')
- *
- * \param[in,out] Map pointer to Map_info structure
- * \param head_only open only head
- *
- * \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 buf[500], file_path[2000];
- 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);
- sprintf(buf, "%s/%s", GV_DIRECTORY, Map->name);
- G__file_name(file_path, buf, GV_TOPO_ELEMENT, Map->mapset);
- if (access(file_path, F_OK) != 0) /* does not exist */
- return 1;
- dig_file_init(&fp);
- fp.file = G_fopen_old(buf, 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); */
- if (ret == 0)
- return -1;
- return 0;
- }
- /*!
- * \brief Open spatial index file ('sidx')
- *
- * \param[in,out] Map pointer to Map_info
- * \param mode 0 old, 1 update, 2 new
- *
- * \return 0 on success
- * \return -1 on error
- */
- int Vect_open_sidx(struct Map_info *Map, int mode)
- {
- char buf[500], file_path[2000];
- 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"));
- if (Map->plus.Spidx_built == 1) {
- G_warning("Spatial index already opened");
- return 0;
- }
- Plus = &(Map->plus);
- dig_file_init(&(Map->plus.spidx_fp));
- if (mode < 2) {
- sprintf(buf, "%s/%s", GV_DIRECTORY, Map->name);
- G__file_name(file_path, buf, GV_SIDX_ELEMENT, Map->mapset);
- if (access(file_path, F_OK) != 0) /* does not exist */
- return 1;
- Map->plus.spidx_fp.file =
- G_fopen_old(buf, GV_SIDX_ELEMENT, Map->mapset);
- if (Map->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 */
- Map->plus.Spidx_new = 0;
- /* load head */
- if (dig_Rd_spidx_head(&(Map->plus.spidx_fp), Plus) == -1) {
- fclose(Map->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(Map->plus.spidx_fp.file);
- return -1;
- }
- }
- if (mode) {
- /* open new spatial index */
- Map->plus.Spidx_new = 1;
- if (mode == 1) {
- /* load spatial index for update */
- if (dig_Rd_spidx(&(Map->plus.spidx_fp), Plus) == -1) {
- fclose(Map->plus.spidx_fp.file);
- return -1;
- }
- }
- }
- Map->plus.Spidx_built = 1;
- return 0;
- }
|