FIXME: Usa códigos novos para rendimentos isentos
[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                 isento->exclusivo = 0;
36                 r = totais_add(dec, "DOACOES", isento->valor);
37                 break;
38         case 93:
39                 isento->exclusivo = 0;
40                 r = totais_add(dec, "INDENIZACOES", isento->valor);
41                 break;
42         case 11:
43         case 96:
44                 isento->exclusivo = 1;
45                 r = totais_add(dec, "PLR", isento->valor);
46                 break;
47         case 97:
48                 break;
49         case 12:
50         case 98:
51                 isento->exclusivo = 0;
52                 r = totais_add(dec, "POUPANCA", isento->valor);
53                 break;
54         case 6:
55         case 99:
56                 isento->exclusivo = 1;
57                 r = totais_add(dec, "APLICACOES", isento->valor);
58                 break;
59         }
60         if (isento->exclusivo) {
61                 r += totais_add(dec, "EXCLUSIVOS", isento->valor);
62                 if (isento->dependente) {
63                         r += totais_add(dec, "EXCLUSIVOSDEP", isento->valor);
64                 } else {
65                         r += totais_add(dec, "EXCLUSIVOSTIT", isento->valor);
66                 }
67         } else {
68                 r += totais_add(dec, "ISENTOS", isento->valor);
69                 if (isento->dependente) {
70                         r += totais_add(dec, "ISENTOSDEP", isento->valor);
71                 } else {
72                         r += totais_add(dec, "ISENTOSTIT", isento->valor);
73                 }
74         }
75         return r;
76 }
77
78 void isento_free(void *pointer)
79 {
80         struct isento *isento = pointer;
81         if (isento->cnpj)
82                 free(isento->cnpj);
83         if (isento->nome)
84                 free(isento->nome);
85         if (isento->descricao)
86                 free(isento->descricao);
87         free(isento);
88 }
89
90 static int isento_cmp(void *p1, void *p2)
91 {
92         struct isento *r1 = p1;
93         struct isento *r2 = p2;
94         if (r1->exclusivo != r2->exclusivo)
95                 return r2->exclusivo - r1->exclusivo;
96         /* O rendimento maior vem primeiro. */
97         if (r1->valor > r2->valor)
98                 return -1;
99         else if (r1->valor < r2->valor)
100                 return 1;
101         return 0;
102 }
103
104 static struct isento * isento_new(char **args, int argc)
105 {
106         struct isento *isento;
107         int r = 0;
108         isento = malloc(sizeof(*isento));
109
110         if (!strcmp(args[0], "exclusivo")) {
111                 isento->exclusivo = 1;
112         }
113
114         r += set_int(args[1], &isento->codigo);
115         r += set_string(args[2], &isento->cnpj);
116         r += set_string(args[3], &isento->nome);
117         r += set_llong(args[4], &isento->valor);
118         if (r < 0 || isento->codigo < 0 ||
119             isento->valor < 0) {
120                 isento_free(isento);
121                 return NULL;
122         }
123         if (argc == 6) {
124                 r = set_int(args[5], &isento->dependente);
125         } else {
126                 isento->dependente = 0;
127         }
128         if (r < 0 || isento->dependente < 0) {
129                 isento_free(isento);
130                 return NULL;
131         }
132         if (argc == 7) {
133                 r = set_string(args[6], &isento->descricao);
134                 if (r < 0) {
135                         isento_free(isento);
136                         return NULL;
137                 }
138         } else {
139                 isento->descricao = NULL;
140         }
141         return isento;
142 }
143
144 static int run_isento(struct declaracao *dec, char **args, int argc)
145 {
146         struct isento *isento;
147         int r;
148         if (argc < 5 || argc > 7)
149                 return -EINVAL;
150         isento = isento_new(args, argc);
151         if (!isento)
152                 return -ENOMEM;
153         if (isento->dependente > list_size(dec->dependentes)) {
154                 isento_free(isento);
155                 return -EINVAL;
156         }
157         r = isento_totais_update(dec, isento);
158         if (r) {
159                 isento_free(isento);
160                 return r;
161         }
162         r = list_add(&dec->isentos, isento);
163         if (r < 0) {
164                 isento_free(isento);
165                 return r;
166         }
167         return 0;
168 }
169
170 void isento_salva(struct declaracao *dec, FILE *f)
171 {
172         int i;
173         struct isento *j;
174         for (i = 0; j = list_get(dec->isentos, i); i++) {
175                 if (j->codigo == 97 && j->exclusivo)
176                         fprintf(f, "exclusivo ");
177                 else
178                         fprintf(f, "isento ");
179                 fprintf(f, "%d \"%s\" \"%s\" %lld %d",
180                         j->codigo, j->cnpj, j->nome, j->valor, j->dependente);
181                 if (j->descricao)
182                         fprintf(f, " \"%s\"", j->descricao);
183                 fprintf(f, "\n");
184         }
185 }
186
187 static struct cmd cmd_isento = {
188         .name = "isento",
189         .run = run_isento,
190 };
191
192 static struct cmd cmd_exclusivo = {
193         .name = "exclusivo",
194         .run = run_isento,
195 };
196
197 int isento_cmd_init(void)
198 {
199         cmd_add(&cmd_isento);
200         cmd_add(&cmd_exclusivo);
201         return 0;
202 }
203
204 struct isento * isento_get(struct declaracao *dec, int codigo, int n)
205 {
206         struct isento *isento;
207         int i;
208         int j = 0;
209         for (i = 0; (isento = list_get(dec->isentos, i)); i++) {
210                 if (isento->codigo == codigo && j++ == n)
211                         break;
212         }
213         return isento;
214 }