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