Não totaliza rendimentos de dependentes como de titular.
[cascardo/declara.git] / lib / isento.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 "isento.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 #include "totais.h"
29
30 static int isento_totais_update(struct declaracao *dec, struct isento *isento)
31 {
32         int r = 0;
33         switch (isento->codigo) {
34         case 82:
35                 r = totais_add(dec, "DOACOES", isento->valor);
36                 r += totais_add(dec, "ISENTOS", isento->valor);
37                 if (isento->dependente) {
38                         r += totais_add(dec, "ISENTOSDEP", isento->valor);
39                 } else {
40                         r += totais_add(dec, "ISENTOSTIT", isento->valor);
41                 }
42                 break;
43         case 96:
44                 r = totais_add(dec, "PLR", isento->valor);
45                 r += totais_add(dec, "EXCLUSIVOS", isento->valor);
46                 if (isento->dependente) {
47                         r += totais_add(dec, "EXCLUSIVOSDEP", isento->valor);
48                 } else {
49                         r += totais_add(dec, "EXCLUSIVOSTIT", isento->valor);
50                 }
51                 break;
52         case 98:
53                 r = totais_add(dec, "POUPANCA", isento->valor);
54                 r += totais_add(dec, "ISENTOS", isento->valor);
55                 if (isento->dependente) {
56                         r += totais_add(dec, "ISENTOSDEP", isento->valor);
57                 } else {
58                         r += totais_add(dec, "ISENTOSTIT", isento->valor);
59                 }
60                 break;
61         case 99:
62                 r = totais_add(dec, "APLICACOES", isento->valor);
63                 r += totais_add(dec, "EXCLUSIVOS", isento->valor);
64                 if (isento->dependente) {
65                         r += totais_add(dec, "EXCLUSIVOSDEP", isento->valor);
66                 } else {
67                         r += totais_add(dec, "EXCLUSIVOSTIT", isento->valor);
68                 }
69                 break;
70         }
71         return r;
72 }
73
74 void isento_free(void *pointer)
75 {
76         struct isento *isento = pointer;
77         if (isento->cnpj)
78                 free(isento->cnpj);
79         if (isento->nome)
80                 free(isento->nome);
81         free(isento);
82 }
83
84 static int isento_cmp(void *p1, void *p2)
85 {
86         struct isento *r1 = p1;
87         struct isento *r2 = p2;
88         /* O rendimento maior vem primeiro. */
89         if (r1->valor > r2->valor)
90                 return -1;
91         else if (r1->valor < r2->valor)
92                 return 1;
93         return 0;
94 }
95
96 static struct isento * isento_new(char **args, int argc)
97 {
98         struct isento *isento;
99         int r = 0;
100         isento = malloc(sizeof(*isento));
101         isento->cnpj = strdup(args[2]);
102         isento->nome = strdup(args[3]);
103         /* TODO: consertar set_int para funcionar como set_llong */
104         r += set_int(args, 2, &isento->codigo);
105         r += set_llong(args[4], &isento->valor);
106         if (!isento->cnpj || !isento->nome) {
107                 isento_free(isento);
108                 return NULL;
109         }
110         if (r < 0 || isento->codigo < 0 ||
111             isento->valor < 0) {
112                 isento_free(isento);
113                 return NULL;
114         }
115         if (argc == 6) {
116                 r = set_int(&args[4], 2, &isento->dependente);
117         } else {
118                 isento->dependente = 0;
119         }
120         if (r < 0 || isento->dependente < 0) {
121                 isento_free(isento);
122                 return NULL;
123         }
124         return isento;
125 }
126
127 static int run_isento(struct declaracao *dec, char **args, int argc)
128 {
129         struct isento *isento;
130         int r;
131         if (argc != 5 && argc != 6)
132                 return -EINVAL;
133         isento = isento_new(args, argc);
134         if (!isento)
135                 return -ENOMEM;
136         if (isento->dependente > list_size(dec->dependentes)) {
137                 isento_free(isento);
138                 return -EINVAL;
139         }
140         r = list_insert_ordered(&dec->isentos, isento, isento_cmp);
141         if (r < 0) {
142                 isento_free(isento);
143                 return r;
144         }
145         r = isento_totais_update(dec, isento);
146         if (r) {
147                 isento_free(isento);
148                 return r;
149         }
150         return 0;
151 }
152
153 void isento_salva(struct declaracao *dec, FILE *f)
154 {
155         int i;
156         struct isento *j;
157         for (i = 0; j = list_get(dec->isentos, i); i++)
158                 fprintf(f, "isento %d \"%s\" \"%s\" %lld %d\n",
159                         j->codigo, j->cnpj, j->nome, j->valor, j->dependente);
160 }
161
162 static struct cmd cmd_isento = {
163         .name = "isento",
164         .run = run_isento,
165 };
166
167 int isento_cmd_init(void)
168 {
169         cmd_add(&cmd_isento);
170         return 0;
171 }
172
173 struct isento * isento_get(struct declaracao *dec, int codigo, int n)
174 {
175         struct isento *isento;
176         int i;
177         int j = 0;
178         for (i = 0; (isento = list_get(dec->isentos, i)); i++) {
179                 if (isento->codigo == codigo && j++ == n)
180                         break;
181         }
182         return isento;
183 }