3f98dbc3861bf5d662d9d17452b4dabb5499037b
[cascardo/declara.git] / lib / attr.c
1 /*
2  *  Copyright (C) 2015  Thadeu Lima de Souza Cascardo <cascardo@cascardo.eti.br>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 3 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #include "attr.h"
20 #include <string.h>
21 #include <errno.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include "pmhash.h"
25
26 int attr_set(struct pmhash **pmhash, char *key, char *val)
27 {
28         int r = -ENOMEM;
29         key = strdup(key);
30         if (!key)
31                 return r;
32         val = strdup(val);
33         if (!val) {
34                 free(val);
35                 return r;
36         }
37         r = pmhash_add(pmhash, key, val);
38         if (r) {
39                 free(key);
40                 free(val);
41         }
42         return r;
43 }
44
45 int attr_parse(struct pmhash **pmhash, char *arg)
46 {
47         int r = -EINVAL;
48         char *val;
49         val = strchr(arg, '=');
50         if (!val)
51                 return r;
52         *val++ = '\0';
53         return attr_set(pmhash, arg, val);
54 }
55
56 char * attr_get(struct pmhash *pmhash, char *key)
57 {
58         return (char *) pmhash_get(pmhash, key);
59 }
60
61 int attr_out(FILE *f, struct pmhash *attr, char *key, int size)
62 {
63         return fprintf(f, "%-*.*s", size, size, attr_get(attr, key) ?: "");
64 }