forked from OSGeo/grass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkey_value2.c
70 lines (56 loc) · 1.41 KB
/
key_value2.c
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
/*!
\file lib/gis/key_value2.c
\brief Read/write Key_Value from/to file.
(C) 2001-2008, 2012 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 CERL
*/
#include <grass/gis.h>
/*!
\brief Write key/value pairs to file
\param[in,out] fd file to write to
\param kv pointer Key_Value structure
\return 0 success
\return -1 error writing
*/
int G_fwrite_key_value(FILE * fd, const struct Key_Value *kv)
{
int n;
int err;
err = 0;
for (n = 0; n < kv->nitems; n++)
if (kv->value[n][0]) {
if (EOF == fprintf(fd, "%s: %s\n", kv->key[n], kv->value[n]))
err = -1;
}
return err;
}
/*!
\brief Read key/values pairs from file
Allocated memory must be freed G_free_key_value().
\param fd file to read key/values from
\return pointer to allocated Key_Value structure
\return NULL on error
*/
struct Key_Value *G_fread_key_value(FILE * fd)
{
struct Key_Value *kv;
char *key, *value;
char buf[1024];
kv = G_create_key_value();
if (kv == NULL)
return NULL;
while (G_getl2(buf, sizeof(buf) - 1, fd) != 0) {
key = value = buf;
while (*value && *value != ':')
value++;
if (*value != ':')
continue;
*value++ = 0;
G_strip(key);
G_strip(value);
G_set_key_value(key, value, kv);
}
return kv;
}