80311db25885c6ea8f0a0e268b9240ed6e8e670f
[cascardo/declara.git] / rendimento.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 "rendimento.h"
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <errno.h>
24 #include <stdio.h>
25 #include "cmd.h"
26 #include "list.h"
27 #include "util.h"
28
29 void rendimento_free(void *pointer)
30 {
31         struct rendimento *rendimento = pointer;
32         if (rendimento->cnpj)
33                 free(rendimento->cnpj);
34         if (rendimento->nome)
35                 free(rendimento->nome);
36         if (rendimento->saida)
37                 free(rendimento->saida);
38         free(rendimento);
39 }
40
41 static struct rendimento * rendimento_new(char **args)
42 {
43         struct rendimento *rendimento;
44         int r = 0;
45         rendimento = malloc(sizeof(*rendimento));
46         rendimento->cnpj = strdup(args[1]);
47         rendimento->nome = strdup(args[2]);
48         rendimento->saida = strdup(args[8]);
49         r += set_llong(args[3], &rendimento->rendimento);
50         r += set_llong(args[4], &rendimento->previdencia);
51         r += set_llong(args[5], &rendimento->decimoterceiro);
52         r += set_llong(args[6], &rendimento->imposto);
53         r += set_llong(args[7], &rendimento->imposto_13o);
54         if (!rendimento->cnpj || !rendimento->nome || !rendimento->saida) {
55                 rendimento_free(rendimento);
56                 return NULL;
57         }
58         if (r < 0 || rendimento->rendimento < 0 || rendimento->previdencia < 0 ||
59             rendimento->decimoterceiro < 0 || rendimento->imposto < 0 ||
60             rendimento->imposto_13o < 0) {
61                 rendimento_free(rendimento);
62                 return NULL;
63         }
64         return rendimento;
65 }
66
67 static int run_rendimento(struct declaracao *dec, char **args, int argc)
68 {
69         struct rendimento *rendimento;
70         int r;
71         if (argc != 9)
72                 return -EINVAL;
73         rendimento = rendimento_new(args);
74         if (!rendimento)
75                 return -ENOMEM;
76         r = list_add(&dec->rendimento, rendimento);
77         if (r < 0) {
78                 rendimento_free(rendimento);
79                 return r;
80         }
81         return 0;
82 }
83
84 void rendimento_salva(struct declaracao *dec, FILE *f)
85 {
86         int i;
87         struct rendimento *j;
88         for (i = 0; j = list_get(dec->rendimento, i); i++)
89                 fprintf(f, "rendimento \"%s\" \"%s\" %lld %lld %lld %lld %lld \"%s\"\n",
90                         j->cnpj, j->nome, j->rendimento, j->previdencia,
91                         j->decimoterceiro, j->imposto, j->imposto_13o, j->saida);
92 }
93
94 static struct cmd cmd_rendimento = {
95         .name = "rendimento",
96         .run = run_rendimento,
97 };
98
99 int rendimento_cmd_init(void)
100 {
101         cmd_add(&cmd_rendimento);
102         return 0;
103 }