Implementa opção verbose.
[cascardo/declara.git] / lib / totais.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 "totais.h"
20 #include <stdlib.h>
21 #include <string.h>
22 #include <errno.h>
23 #include "pmhash.h"
24 #include "util.h"
25
26 int totais_add(struct declaracao *dec, char *key, long long val)
27 {
28         long long *p;
29         int r = -ENOMEM;
30         p = pmhash_get(dec->totais, key);
31         if (!p) {
32                 p = malloc(sizeof(*p));
33                 if (!p)
34                         goto out_p;
35                 key = strdup(key);
36                 if (!key)
37                         goto out_key;
38                 r = pmhash_add(&dec->totais, key, p);
39                 if (r)
40                         goto out_hash;
41                 *p = 0;
42         }
43         if (dec->verbose) {
44                 printf("Somando "FMT_R" a %s: "FMT_R" -> "FMT_R"\n",
45                         R(val), key, R(*p), R(*p + val));
46         }
47         *p += val;
48         return 0;
49 out_hash:
50         free(key);
51 out_key:
52         free(p);
53 out_p:
54         return r;
55 }
56
57 long long totais_get(struct declaracao *dec, char *key)
58 {
59         long long *p;
60         p = pmhash_get(dec->totais, key);
61         if (!p)
62                 return 0;
63         return *p;
64 }