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
|
/****************************************************************************
*
* MODULE: gis library
* AUTHOR(S): Glynn Clements <glynn@gclements.plus.com>
* COPYRIGHT: (C) 2007 Glynn Clements and the GRASS Development Team
*
* NOTE: Based upon open.c
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*****************************************************************************/
#include <grass/config.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <grass/gis.h>
#include <grass/glocale.h>
static int G__open_misc(const char *dir,
const char *element,
const char *name, const char *mapset, int mode)
{
char path[GPATH_MAX];
char xname[GNAME_MAX], xmapset[GMAPSET_MAX];
G__check_gisinit();
/* READ */
if (mode == 0) {
if (G__name_is_fully_qualified(name, xname, xmapset)) {
if (*mapset && strcmp(xmapset, mapset) != 0) {
G_warning(_("G__open_misc(read): mapset <%s> doesn't match xmapset <%s>"),
mapset, xmapset);
return -1;
}
name = xname;
mapset = xmapset;
}
else if (!*mapset)
mapset = G_find_file2_misc(dir, element, name, mapset);
if (!mapset)
return -1;
G__file_name_misc(path, dir, element, name, mapset);
return open(path, 0);
}
/* WRITE */
if (mode == 1 || mode == 2) {
mapset = G_mapset();
if (G__name_is_fully_qualified(name, xname, xmapset)) {
if (strcmp(xmapset, mapset) != 0) {
G_warning(_("G__open_misc(write): xmapset <%s> != G_mapset() <%s>"),
xmapset, mapset);
return -1;
}
name = xname;
}
if (G_legal_filename(name) == -1)
return -1;
G__file_name_misc(path, dir, element, name, mapset);
if (mode == 1 || access(path, 0) != 0) {
G__make_mapset_element_misc(dir, name);
close(creat(path, 0666));
}
return open(path, mode);
}
return -1;
}
/*!
* \brief open a new database file
*
* The database file <b>name</b> under the <b>element</b> in the
* current mapset is created and opened for writing (but not reading).
* The UNIX open( ) routine is used to open the file. If the file does not exist,
* -1 is returned. Otherwise the file is positioned at the end of the file and
* the file descriptor from the open( ) is returned.
*
* \param element
* \param name
* \return int
*/
int G_open_new_misc(const char *dir, const char *element, const char *name)
{
return G__open_misc(dir, element, name, G_mapset(), 1);
}
/*!
* \brief open a database file for reading
*
* The database file <b>name</b> under the
* <b>element</b> in the specified <b>mapset</b> is opened for reading (but
* not for writing).
* The UNIX open( ) routine is used to open the file. If the file does not exist,
* -1 is returned. Otherwise the file descriptor from the open( ) is returned.
*
* \param element
* \param name
* \param mapset
* \return int
*/
int G_open_old_misc(const char *dir, const char *element, const char *name,
const char *mapset)
{
return G__open_misc(dir, element, name, mapset, 0);
}
/*!
* \brief open a database file for update
*
* The database file <b>name</b> under the <b>element</b> in the
* current mapset is opened for reading and writing.
* The UNIX open( ) routine is used to open the file. If the file does not exist,
* -1 is returned. Otherwise the file is positioned at the end of the file and
* the file descriptor from the open( ) is returned.
*
* \param element
* \param name
* \return int
*/
int G_open_update_misc(const char *dir, const char *element, const char *name)
{
int fd;
fd = G__open_misc(dir, element, name, G_mapset(), 2);
if (fd >= 0)
lseek(fd, 0L, SEEK_END);
return fd;
}
/*!
* \brief open a new database file
*
* The database file <b>name</b> under the <b>element</b> in the
* current mapset is created and opened for writing (but not reading).
* The UNIX fopen( ) routine, with "w" write mode, is used to open the file. If
* the file does not exist, the NULL pointer is returned. Otherwise the file is
* positioned at the end of the file and the file descriptor from the fopen( ) is
* returned.
*
* \param element
* \param name
* \return FILE *
*/
FILE *G_fopen_new_misc(const char *dir, const char *element, const char *name)
{
int fd;
fd = G__open_misc(dir, element, name, G_mapset(), 1);
if (fd < 0)
return (FILE *) 0;
return fdopen(fd, "w");
}
/*!
* \brief open a database file for reading
*
* The database file <b>name</b> under the
* <b>element</b> in the specified <b>mapset</b> is opened for reading (but
* not for writing).
* The UNIX fopen( ) routine, with "r" read mode, is used to open the file. If
* the file does not exist, the NULL pointer is returned. Otherwise the file
* descriptor from the fopen( ) is returned.
*
* \param element
* \param name
* \param mapset
* \return FILE *
*/
FILE *G_fopen_old_misc(const char *dir, const char *element, const char *name,
const char *mapset)
{
int fd;
fd = G__open_misc(dir, element, name, mapset, 0);
if (fd < 0)
return (FILE *) 0;
return fdopen(fd, "r");
}
FILE *G_fopen_append_misc(const char *dir, const char *element,
const char *name)
{
int fd;
fd = G__open_misc(dir, element, name, G_mapset(), 2);
if (fd < 0)
return (FILE *) 0;
lseek(fd, 0L, SEEK_END);
return fdopen(fd, "a");
}
FILE *G_fopen_modify_misc(const char *dir, const char *element,
const char *name)
{
int fd;
fd = G__open_misc(dir, element, name, G_mapset(), 2);
if (fd < 0)
return (FILE *) 0;
lseek(fd, 0L, SEEK_END);
return fdopen(fd, "r+");
}
|