GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
|
GIS library - Mapset user permission routines. More...
#include <grass/config.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <grass/gis.h>
#include <grass/glocale.h>
Go to the source code of this file.
Functions | |
int | G_make_mapset_element (const char *p_element) |
Create element in the current mapset. More... | |
int | G_make_mapset_element_tmp (const char *p_element) |
Create element in the temporary directory. More... | |
int | G__make_mapset_element_misc (const char *dir, const char *name) |
Create misc element in the current mapset. More... | |
int | G_mapset_permissions (const char *mapset) |
Check for user mapset permission. More... | |
int | G_mapset_permissions2 (const char *gisdbase, const char *location, const char *mapset) |
Check for user mapset permission. More... | |
GIS library - Mapset user permission routines.
(C) 1999-2014 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.
Definition in file mapset_msc.c.
int G__make_mapset_element_misc | ( | const char * | dir, |
const char * | name | ||
) |
Create misc element in the current mapset.
dir | directory path |
name | element to be created in mapset |
Definition at line 112 of file mapset_msc.c.
References G_make_mapset_element(), and GNAME_MAX.
Referenced by I_fopen_signature_file_new(), I_fopen_sigset_file_new(), I_fopen_subgroup_file_append(), I_fopen_subgroup_file_new(), Rast__close_null(), and Rast__quant_export().
int G_make_mapset_element | ( | const char * | p_element | ) |
Create element in the current mapset.
Make the specified element in the current mapset will check for the existence of the element and do nothing if it is found so this routine can be called even if the element already exists.
Calls G_fatal_error() on failure.
p_element | element to be created in mapset |
Definition at line 38 of file mapset_msc.c.
References G_file_name(), G_mapset(), GPATH_MAX, and NULL.
Referenced by db_set_default_connection(), G__make_mapset_element_misc(), M_do_copy(), Rast3d_make_mapset_map_directory(), Rast__quant_export(), and Vect_copy().
int G_make_mapset_element_tmp | ( | const char * | p_element | ) |
Create element in the temporary directory.
See G_file_name_tmp() for details.
p_element | element to be created in mapset |
Definition at line 56 of file mapset_msc.c.
References G_file_name_tmp(), G_mapset(), GPATH_MAX, and NULL.
int G_mapset_permissions | ( | const char * | mapset | ) |
Check for user mapset permission.
mapset | mapset name |
Definition at line 145 of file mapset_msc.c.
References G_file_name(), G_stat(), and GPATH_MAX.
int G_mapset_permissions2 | ( | const char * | gisdbase, |
const char * | location, | ||
const char * | mapset | ||
) |
Check for user mapset permission.
gisdbase | full path to GISDBASE |
location | location name |
mapset | mapset name |
Definition at line 174 of file mapset_msc.c.