123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- /*!
- \file lib/manage/do_remove.c
-
- \brief Manage Library - Remove elements
-
- (C) 2001-2011 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
- */
- #include <stdio.h>
- #include <string.h>
- #include <grass/gis.h>
- #include <grass/vector.h>
- #include <grass/glocale.h>
- #include <grass/raster3d.h>
- #include "manage_local_proto.h"
- /*!
- \brief Remove elements from data base
- \param n element id
- \param old name of element to be removed
- \return 0 on success
- \return 1 on error
- */
- int M_do_remove(int n, const char *old)
- {
- int i, ret;
- const char *mapset;
- int result = 0;
- int removed = 0;
- char xname[GNAME_MAX], xmapset[GMAPSET_MAX];
- G_message(_("Removing %s <%s>"), list[n].maindesc, old);
- M__hold_signals(1);
- if (G_name_is_fully_qualified(old, xname, xmapset)) {
- if (strcmp(xmapset, G_mapset()) != 0)
- G_fatal_error("%s is not in the current mapset (%s)", old,
- G_mapset());
- old = xname;
- }
- if (G_strcasecmp(list[n].alias, "vector") == 0) {
- if ((mapset = G_find_vector2(old, "")) == NULL) {
- G_warning(_("Vector map <%s> not found"), old);
- }
- else {
- ret = Vect_delete(old);
- if (ret != -1) {
- removed = 1;
- }
- else {
- G_warning(_("Unable to delete vector map"));
- result = 1;
- }
- }
- }
- else {
- if (G_strcasecmp(list[n].alias, "raster") == 0) {
- if ((mapset = G_find_raster2(old, "")) == NULL)
- G_warning(_("Raster map <%s> not found"), old);
- }
- if (G_strcasecmp(list[n].alias, "raster_3d") == 0) {
- if ((mapset = G_find_raster3d(old, "")) == NULL)
- G_warning(_("3D raster map <%s> not found"), old);
- }
- for (i = 0; i < list[n].nelem; i++) {
- switch (G_remove(list[n].element[i], old)) {
- case -1:
- G_warning(_("Unable to remove %s element"), list[n].desc[i]);
- result = 1;
- break;
- case 0:
- G_verbose_message(_("%s is missing"), list[n].desc[i]);
- break;
- case 1:
- G_verbose_message(_("%s removed"), list[n].desc[i]);
- removed = 1;
- break;
- }
- }
- }
- if (G_strcasecmp(list[n].element[0], "cell") == 0) {
- char colr2[6 + GMAPSET_MAX];
- if (snprintf(colr2, 6 + GMAPSET_MAX, "colr2/%s", G_mapset()) >=
- 6 + GMAPSET_MAX)
- G_warning(_("String for secondary color table has been truncated"));
- switch (G_remove(colr2, old)) {
- case -1:
- G_warning(_("Unable to remove %s"), colr2);
- result = 1;
- break;
- case 0:
- G_verbose_message(_("%s is missing"), colr2);
- break;
- case 1:
- G_verbose_message(_("%s removed"), colr2);
- removed = 1;
- break;
- }
- }
- M__hold_signals(0);
- if (!removed)
- G_warning(_("<%s> nothing removed"), old);
- return result;
- }
|