Rendimentos isentos e de tributação exclusiva.
[cascardo/declara.git] / lib / gera.c
1 /*
2  *  Copyright (C) 2015  Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
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 "gera.h"
20 #include <errno.h>
21 #include <stdio.h>
22 #include <string.h>
23 #include <stdlib.h>
24 #include <zlib.h>
25 #include "declaracao.h"
26 #include "cmd.h"
27 #include "rendimento.h"
28 #include "isento.h"
29 #include "pagamento.h"
30 #include "bem.h"
31 #include "totais.h"
32
33 static void gera_header(struct declaracao *dec, FILE *f)
34 {
35         fprintf(f, "IRPF    ");
36         fprintf(f, "%04d", dec->ano); /* Exercício */
37         fprintf(f, "%04d", dec->ano - 1); /* Ano base */
38         fprintf(f, "2500"); /* Código */
39         fprintf(f, "%s", dec->retifica ? "1" : "0"); /* Retificadora */
40         fprintf(f, "%s", dec->cpf); /* CPF: 11 dígitos */
41         fprintf(f, "   "); /* Filler */
42         fprintf(f, "1"); /* Tipo NI: Pessoa Física (1) */
43         fprintf(f, "100"); /* Versão IRPF */
44         fprintf(f, "%-60.60s", dec->nome);
45         fprintf(f, "%s", dec->contribuinte.uf);
46         fprintf(f, "%s", "0000000000"); /* FIXME: hash */
47         fprintf(f, "1"); /* TODO: certificavel */
48         fprintf(f, "%s", dec->contribuinte.dn);
49         fprintf(f, "%s", dec->tipo == COMPLETA ? "S" : "N");
50         fprintf(f, "%s", dec->restituicao ? "2" : "0"); /* TODO: resultado imposto, 2 - restituicao */
51         fprintf(f, "S"); /* TODO: gerada? */
52         fprintf(f, "%-10.10s", dec->retifica ?: ""); /* recibo retificada ex. atual */
53         fprintf(f, "2"); /* TODO: PGD */
54         fprintf(f, "LINUX         "); /* TODO: SO */
55         fprintf(f, "3.16.0-"); /* TODO: versao SO */
56         fprintf(f, "1.7.0_75 "); /* TODO: versao JVM */
57         fprintf(f, "%-10.10s", ""); /* TODO: última declaração transmitida (pode ser vazio?) */
58         fprintf(f, "%04d", dec->contribuinte.cd_municipio);
59         fprintf(f, "           "); /* TODO: CPF conjuge */
60         fprintf(f, "%d", dec->obrigatoria ? 1 : 0); /* obrigatoria entrega */
61         fprintf(f, "%013lld", dec->devido); /* imposto devido, carne-leao, complementar dos dependentes */
62         fprintf(f, "%-10.10s", dec->recibo ?: ""); /* recibo ex. anterior */
63         /* Indicador de segurança: 0 se retificadora, 2 se recibo
64          * anterior, se não 1. */
65         fprintf(f, "%d", dec->retifica ? 0 : (dec->recibo ? 2 : 1));
66         /* Indicador imposto pago, TODO: carnê leão e Lei 11.033. */
67         fprintf(f, "%02d", dec->retido ? 1 : 0);
68         /* Indicador imposto antecipado, TODO: carnê leão, Lei 11.033,
69          * outros. */
70         fprintf(f, "%d", dec->retido ? 1 : 0);
71         fprintf(f, "0"); /* TODO: mudanca endereco */
72         fprintf(f, "%s", dec->contribuinte.cep);
73         fprintf(f, "0"); /* TODO: debito 1a quota */
74         fprintf(f, "%-3.3s", dec->banco); /* no banco */
75         fprintf(f, "%-4.4s", dec->agencia); /* agencia */
76         fprintf(f, " "); /* TODO: filler */
77         fprintf(f, "00000000"); /* transito julgado, gravado apenas se espolio */
78         fprintf(f, "%013lld", dec->pagar); /* imposto a pagar */
79         fprintf(f, " "); /* RRA1 */
80         fprintf(f, "%-11.11s", ""); /* CPF RRA1 */
81         fprintf(f, " "); /* RRA2 */
82         fprintf(f, "%-11.11s", ""); /* CPF RRA2 */
83         fprintf(f, " "); /* RRA3 */
84         fprintf(f, "%-11.11s", ""); /* CPF RRA3 */
85         fprintf(f, " "); /* RRA4 */
86         fprintf(f, "%-11.11s", ""); /* CPF RRA4 */
87         fprintf(f, "0000000000000"); /* TODO: Doacao ECA */
88         fprintf(f, "%-14.14s", rendimento_cnpj_ordenado(dec, 0)); /* TODO: CNPJ maior */
89         fprintf(f, "%-14.14s", rendimento_cnpj_ordenado(dec, 1)); /* TODO: CNPJ maior 2 */
90         fprintf(f, "%-14.14s", rendimento_cnpj_ordenado(dec, 2)); /* TODO: CNPJ maior 3 */
91         fprintf(f, "%-14.14s", rendimento_cnpj_ordenado(dec, 3)); /* TODO: CNPJ maior 4 */
92         fprintf(f, "%-11.11s", ""); /* CPF Dependente 1 */
93         fprintf(f, "%-8.8s", ""); /* DN Dependente 1 */
94         fprintf(f, "%-11.11s", ""); /* CPF Dependente 2 */
95         fprintf(f, "%-8.8s", ""); /* DN Dependente 2 */
96         fprintf(f, "%-11.11s", ""); /* CPF Dependente 3 */
97         fprintf(f, "%-8.8s", ""); /* DN Dependente 3 */
98         fprintf(f, "%-11.11s", ""); /* CPF Dependente 4 */
99         fprintf(f, "%-8.8s", ""); /* DN Dependente 4 */
100         fprintf(f, "%-11.11s", ""); /* CPF Dependente 5 */
101         fprintf(f, "%-8.8s", ""); /* DN Dependente 5 */
102         fprintf(f, "%-11.11s", ""); /* CPF Dependente 6 */
103         fprintf(f, "%-8.8s", ""); /* DN Dependente 6 */
104         /* medico maior, TODO: outros códigos */
105         fprintf(f, "%-14.14s", pagamento_cnpj_ordenado(dec, 26, 0));
106         /* medico maior 2, TODO: outros códigos */
107         fprintf(f, "%-14.14s", pagamento_cnpj_ordenado(dec, 26, 1));
108         fprintf(f, "%-11.11s", ""); /* CPF pensao */
109         fprintf(f, "%-11.11s", ""); /* CPF inventariante */
110         fprintf(f, "%-40.40s", dec->contribuinte.municipio);
111         fprintf(f, "%-60.60s", dec->nome);
112         fprintf(f, "%-11.11s", ""); /* CPF empregada */
113         fprintf(f, "000000000000"); /* FIXME: MAC */
114         fprintf(f, "%08d", 0); /* Data saída */
115         fprintf(f, "%-11.11s", ""); /* CPF procurador */
116         fprintf(f, "%03d", dec->obrigatoria); /* criterio obrigatoriedade */
117         fprintf(f, "%013lld", totais_get(dec, "RENDPJ")); /* Total tributavel */
118         /* CNPJ previdencia */
119         fprintf(f, "%-14.14s", pagamento_cnpj_ordenado(dec, 36, 0));
120         /* CNPJ previdencia 2 */
121         fprintf(f, "%-14.14s", pagamento_cnpj_ordenado(dec, 36, 1));
122         /* Total isentos */
123         fprintf(f, "%013lld", totais_get(dec, "ISENTOS"));
124         /* Total exclusivo */
125         fprintf(f, "%013lld", totais_get(dec, "EXCLUSIVOS"));
126         /* Total pagamentos */
127         fprintf(f, "%013lld", totais_get(dec, "PAGAMENTOS"));
128         fprintf(f, "%-13.13s", dec->contacorrente); /* numero conta */
129         fprintf(f, "%-2.2s", dec->dvconta); /* DV conta */
130         fprintf(f, "0"); /* TODO: revalidar DV conta */
131
132         /* Mudanças de 2015 */
133
134         fprintf(f, "%02d", dec->contribuinte.natureza_ocupacao); /* natureza ocupacao */
135         fprintf(f, "%-11.11s", ""); /* CPF domestica */
136         fprintf(f, "%-11.11s", ""); /* NI domestica */
137         fprintf(f, "%-11.11s", ""); /* CPF domestica 2 */
138         fprintf(f, "%-11.11s", ""); /* NI domestica 2 */
139         fprintf(f, "%-11.11s", ""); /* CPF domestica 3 */
140         fprintf(f, "%-11.11s", ""); /* NI domestica 3 */
141         fprintf(f, "1"); /* Declaracao iniciada */
142         fprintf(f, "1"); /* Utilizou PGD */
143         fprintf(f, "0"); /* Utilizou APP */
144         fprintf(f, "0"); /* Utilizou online */
145         fprintf(f, "0"); /* Utilizou rascunho */
146         fprintf(f, "0"); /* Utilizou pre preenchida */
147         fprintf(f, "0"); /* Utilizou fontes */
148         fprintf(f, "0"); /* Utilizou plano saude */
149         fprintf(f, "0"); /* Utilizou recuperar */
150         fprintf(f, "1"); /* Declaracao iniciada */
151
152         /* Fim das mudanças de 2015 */
153
154         fprintf(f, "   "); /* Teste PGD, FILLER2 */
155 }
156
157 static void gera_contribuinte(struct declaracao *dec, FILE *f)
158 {
159         fprintf(f, "16");
160         fprintf(f, "%s", dec->cpf);
161         fprintf(f, "%-60.60s", dec->nome);
162         fprintf(f, "%-15.15s", dec->contribuinte.tipo_logradouro);
163         fprintf(f, "%-40.40s", dec->contribuinte.logradouro);
164         fprintf(f, "%-6.6s", dec->contribuinte.numero);
165         fprintf(f, "%-21.21s", dec->contribuinte.complemento);
166         fprintf(f, "%-19.19s", dec->contribuinte.bairro);
167         fprintf(f, "%-9.9s", dec->contribuinte.cep);
168         fprintf(f, "%04d", dec->contribuinte.cd_municipio);
169         fprintf(f, "%-40.40s", dec->contribuinte.municipio);
170         fprintf(f, "%-2.2s", dec->contribuinte.uf);
171         fprintf(f, "   "); /* TODO: código exterior */
172         fprintf(f, "105"); /* TODO: código país */
173         fprintf(f, "%-100.100s", ""); /* TODO: FILLER3 */
174         fprintf(f, "%-4.4s", ""); /* TODO: FILLER1 */
175         fprintf(f, "%-8.8s", ""); /* TODO: FILLER2 */
176         fprintf(f, "%-4.4s", dec->contribuinte.ddd);
177         fprintf(f, "%-9.9s", dec->contribuinte.telefone);
178         fprintf(f, "%-8.8s", dec->contribuinte.dn);
179         fprintf(f, "%-13.13s", dec->contribuinte.titulo_eleitor);
180         fprintf(f, "%03d", dec->contribuinte.ocupacao_principal);
181         fprintf(f, "%02d", dec->contribuinte.natureza_ocupacao);
182         fprintf(f, "0"); /* TODO: qnt quotas */
183         fprintf(f, "%s", dec->tipo == COMPLETA ? "S" : "N");
184         fprintf(f, "%s", dec->retifica ? "S" : "N");
185         fprintf(f, "S"); /* GERADO */
186         fprintf(f, "N"); /* TODO: mudança de endereço */
187         fprintf(f, "%-12.12s", dec->retifica ? : ""); /* Recibo declaração original */
188         fprintf(f, "%-3.3s", dec->banco); /* banco */
189         fprintf(f, "%-4.4s", dec->agencia); /* agência */
190         fprintf(f, "N"); /* TODO: deficiência */
191         fprintf(f, "0"); /* FILLER: pré-preenchida */
192         fprintf(f, "%-13.13s", dec->contacorrente); /* conta */
193         fprintf(f, "%-2.2s", dec->dvconta); /* DV conta */
194         fprintf(f, "N"); /* TODO: débito automático */
195         fprintf(f, "0"); /* TODO: débito primeira quota */
196         /* CNPJ principal fonte */
197         fprintf(f, "%-14.14s", rendimento_cnpj_ordenado(dec, 0));
198         fprintf(f, "%-10.10s", dec->recibo ?: ""); /* Recibo última declaração ano anterior */
199         fprintf(f, "A"); /* Declaração de Ajuste */
200         fprintf(f, "%-11.11s", ""); /* TODO: CPF procurador */
201 }
202
203 static void gera_simples(struct declaracao *dec, FILE *f)
204 {
205         fprintf(f, "17");
206         fprintf(f, "%s", dec->cpf); /* CPF: 11 dígitos */
207         fprintf(f, "%013lld", 0); /* TODO: carnê leão */
208         fprintf(f, "%013lld", 0); /* TODO: lucros e dividendos */
209         /* rendimentos isentos */
210         fprintf(f, "%013lld", totais_get(dec, "ISENTOS"));
211         /* rendimentos tributação exclusiva, exceto décimo terceiro */
212         fprintf(f, "%013lld", totais_get(dec, "EXCLUSIVOS_SEM_13o"));
213         /* 13o. */
214         fprintf(f, "%013lld", totais_get(dec, "DECIMOTERCEIRO"));
215         fprintf(f, "%013lld", 0); /* TODO: retido na fonte (Lei 11.033) */
216         fprintf(f, "%013lld", 0); /* TODO: 13o. dependentes */
217         fprintf(f, "%013lld", 0); /* TODO: lucros dependentes */
218         fprintf(f, "%013lld", 0); /* TODO: isentos dependentes */
219         fprintf(f, "%013lld", 0); /* TODO: exclusivos dependentes */
220         fprintf(f, "%-13.13s", ""); /* FILLER */
221         fprintf(f, "%-13.13s", ""); /* FILLER */
222         fprintf(f, "%013lld", 0); /* TODO: rendimentos PF */
223         fprintf(f, "%013lld", 0); /* TODO: rendimentos PF dependentes */
224         fprintf(f, "%013lld", 0); /* TODO: rendimentos PF exterior */
225         fprintf(f, "%013lld", 0); /* TODO: rendimentos PF ext. depend. */
226         fprintf(f, "%013lld", 0); /* TODO: carnê-leão PF? */
227         fprintf(f, "%013lld", 0); /* TODO: carnê-leão dependentes */
228         fprintf(f, "%013lld", 0); /* TODO: dedução dependentes */
229         fprintf(f, "%013lld", 0); /* TODO: previdência RRA */
230         fprintf(f, "%013lld", 0); /* TODO: previdência RRA dependentes */
231         fprintf(f, "%013lld", 0); /* TODO: pensão RRA */
232         fprintf(f, "%013lld", 0); /* TODO: pensão RRA dependentes */
233         fprintf(f, "%013lld", 0); /* TODO: imposto pago exterior */
234         fprintf(f, "%013lld", 0); /* TODO: imposto devido sem rendimento exterior */
235         fprintf(f, "%013lld", 0); /* TODO: limite imposto pago exterior */
236 }
237
238 static void gera_totais_simples(struct declaracao *dec, FILE *f)
239 {
240         fprintf(f, "18");
241         fprintf(f, "%s", dec->cpf); /* CPF: 11 dígitos */
242         fprintf(f, "%013lld", totais_get(dec, "RENDPJ")); /* TODO: rendimentos tributáveis */
243         /* desconto simplificado */
244         fprintf(f, "%013lld", totais_get(dec, "DESCONTO"));
245          /* base de cálculo */
246         fprintf(f, "%013lld", totais_get(dec, "BASE"));
247         fprintf(f, "%013lld", dec->devido); /* imposto devido */
248         fprintf(f, "%013lld", dec->retido); /* imposto retido */
249         fprintf(f, "%013lld", 0); /* TODO: imposto complementar */
250         fprintf(f, "%013lld", 0); /* TODO: carnê-leão */
251         fprintf(f, "%013lld", 0); /* TODO: imposto retido Lei 11.033 */
252         fprintf(f, "%013lld", dec->restituicao); /* imposto a restituir */
253         fprintf(f, "%013lld", dec->pagar); /* imposto pagar */
254         fprintf(f, "%d", 0); /* TODO: quotas */
255         fprintf(f, "%013lld", 0); /* TODO: valor quota */
256         fprintf(f, "%013lld", totais_get(dec, "ISENTOS")); /* rendimentos isentos */
257         fprintf(f, "%013lld", totais_get(dec, "EXCLUSIVOS")); /* rendimentos tributação exclusiva */
258         fprintf(f, "%013lld", 0); /* TODO: conjuge */
259         fprintf(f, "%013lld", 0); /* TODO: rendimento PJ dependente */
260         fprintf(f, "%013lld", 0); /* TODO: imposto retido dependente */
261         fprintf(f, "%013lld", 0); /* TODO: imposto ganhos de capital */
262         fprintf(f, "%013lld", totais_get(dec, "RENDPJTIT")); /* rendimento tributável PJ titular */
263         fprintf(f, "%013lld", 0); /* TODO: total rural */
264         fprintf(f, "%013lld", dec->retido); /* imposto retido titular */
265         fprintf(f, "%013lld", totais_get(dec, "BENSANTERIOR")); /* total bens ano anterior */
266         fprintf(f, "%013lld", totais_get(dec, "BENS")); /* total bens ano base */
267         fprintf(f, "%013lld", totais_get(dec, "ISENTOSTIT")); /* rendimentos isentos titular */
268         fprintf(f, "%013lld", 0); /* TODO: rendimentos isentos dependentes */
269         fprintf(f, "%013lld", totais_get(dec, "EXCLUSIVOSTIT")); /* TODO: tributação exclusiva titular */
270         fprintf(f, "%013lld", 0); /* TODO: tributação exclusiva dependentes */
271         fprintf(f, "%013lld", 0); /* TODO: total não tributável */
272         fprintf(f, "%013lld", 0); /* TODO: total dívidas ano anterior */
273         fprintf(f, "%013lld", 0); /* TODO: total dívidas ano base */
274         fprintf(f, "%013lld", 0); /* TODO: retido fonte Lei 11.033 */
275         fprintf(f, "%013lld", 0); /* TODO: isentos e não tributáveis, transportado */
276         fprintf(f, "%013lld", 0); /* TODO: tributação exclusiva, transportado */
277         fprintf(f, "%013lld", 0); /* TODO: ganhos líquidos renda variável */
278         fprintf(f, "%013lld", 0); /* TODO: parcela isenta ganhos capital */
279         fprintf(f, "%013lld", 0); /* TODO: rendimentos PF exterior titular */
280         fprintf(f, "%013lld", 0); /* TODO: rendimentos PF exterior dependentes */
281         fprintf(f, "%013lld", 0); /* TODO: doações campanha */
282         fprintf(f, "%013lld", 0); /* TODO: rendimentos PF exigibilidade suspensa titular */
283         fprintf(f, "%013lld", 0); /* TODO: rendimentos PF exigibilidade suspensa dependentes */
284         fprintf(f, "%013lld", 0); /* TODO: depósitos judiciais exigibilidade suspensa titular */
285         fprintf(f, "%013lld", 0); /* TODO: depósitos judiciais exigibilidade suspensa dependentes */
286         fprintf(f, "%013lld", 0); /* TODO: rendimentos RRA titular */
287         fprintf(f, "%013lld", 0); /* TODO: IRF RRA titular */
288         fprintf(f, "%013lld", 0); /* TODO: imposto RRA titular */
289         fprintf(f, "%013lld", 0); /* TODO: rendimentos RRA dependentes */
290         fprintf(f, "%013lld", 0); /* TODO: IRF RRA dependentes */
291         fprintf(f, "%013lld", 0); /* TODO: imposto RRA dependentes */
292         fprintf(f, "%013lld", dec->devido); /* imposto devido */
293         fprintf(f, "%013lld", 0); /* TODO: imposto diferido ganho capital */
294         fprintf(f, "%013lld", 0); /* TODO: imposto devido ganho capital */
295         fprintf(f, "%013lld", 0); /* TODO: imposto ganho líquido renda variável */
296         fprintf(f, "%013lld", 0); /* TODO: imposto devido ganho capital moeda estrangeira */
297         fprintf(f, "%013lld", 0); /* TODO: imposto pago exterior */
298 }
299
300 static void gera_completa(struct declaracao *dec, FILE *f)
301 {
302         fprintf(f, "19");
303         fprintf(f, "%s", dec->cpf); /* CPF: 11 dígitos */
304         fprintf(f, "%-14.14s", ""); /* TODO: CNPJ maior */
305         /* FIXME: completar campos */
306 }
307
308 static void gera_totais_completa(struct declaracao *dec, FILE *f)
309 {
310         fprintf(f, "20");
311         fprintf(f, "%s", dec->cpf); /* CPF: 11 dígitos */
312         /* FIXME: completar campos */
313 }
314
315 static void gera_trailler(struct declaracao *dec, FILE *f)
316 {
317         int i;
318         fprintf(f, "T9");
319         fprintf(f, "%s", dec->cpf); /* CPF: 11 dígitos */
320         fprintf(f, "%06d", dec->linhas[0]);
321         for (i = 16; i < 100; i++)
322                 if (i == 44)
323                         fprintf(f, "%-5.5s", "0"); /* FILLER */
324                 else if (i == 49 || i == 57 || i == 64 || i == 79)
325                         ;
326                 else
327                         fprintf(f, "%05d", dec->linhas[i]);
328 }
329
330 static void gera_reciboheader(struct declaracao *dec, FILE *f)
331 {
332         fprintf(f, "HR");
333         fprintf(f, "%s", dec->cpf); /* CPF: 11 dígitos */
334         fprintf(f, "%-3.3s", ""); /* FILLER */
335 }
336
337 static void gera_recibodetalhe(struct declaracao *dec, FILE *f)
338 {
339         fprintf(f, "DR");
340         fprintf(f, "%s", dec->cpf); /* CPF: 11 dígitos */
341         fprintf(f, "%-3.3s", ""); /* FILLER */
342         fprintf(f, "%s", dec->tipo == COMPLETA ? "S" : "N");
343         fprintf(f, "%-60.60s", dec->nome);
344         fprintf(f, "%-15.15s", dec->contribuinte.tipo_logradouro);
345         fprintf(f, "%-40.40s", dec->contribuinte.logradouro);
346         fprintf(f, "%-6.6s", dec->contribuinte.numero);
347         fprintf(f, "%-21.21s", dec->contribuinte.complemento);
348         fprintf(f, "%-19.19s", dec->contribuinte.bairro);
349         fprintf(f, "%-9.9s", dec->contribuinte.cep);
350         fprintf(f, "%04d", dec->contribuinte.cd_municipio);
351         fprintf(f, "%-40.40s", dec->contribuinte.municipio);
352         fprintf(f, "%-2.2s", dec->contribuinte.uf);
353         fprintf(f, "%-100.100s", ""); /* FILLER */
354         fprintf(f, "%-4.4s", ""); /* FILLER */
355         fprintf(f, "%-8.8s", ""); /* FILLER */
356         fprintf(f, "%-4.4s", dec->contribuinte.ddd);
357         fprintf(f, "%-9.9s", dec->contribuinte.telefone);
358         fprintf(f, "%s", dec->retifica ? "S" : "N"); /* Retificadora */
359         fprintf(f, "%013lld", totais_get(dec, "RENDPJ")); /* Total tributavel */
360         fprintf(f, "%013lld", dec->devido); /* Imposto devido */
361         fprintf(f, "%013lld", dec->restituicao); /* Imposto a restituir */
362         fprintf(f, "%013lld", dec->pagar); /* Imposto a pagar */
363         fprintf(f, "%d", 0); /* TODO: quotas */
364         fprintf(f, "%013lld", 0); /* TODO: valor quota */
365         fprintf(f, "%-3.3s", dec->banco); /* numero banco */
366         fprintf(f, "%-4.4s", dec->agencia); /* numero agencia */
367         fprintf(f, " "); /* FILLER */
368         fprintf(f, "%d", 0); /* TODO: debito primeira quota */
369         fprintf(f, "%013lld", 0); /* TODO: imposto pago ganho de capital */
370         fprintf(f, "%-13.13s", dec->contacorrente); /* numero conta */
371         fprintf(f, "%-2.2s", dec->dvconta); /* DV conta */
372         fprintf(f, "%013lld", 0); /* TODO: imposto alienacao moeda estrangeira em especie */
373 }
374
375 static void gera_recibotrailler(struct declaracao *dec, FILE *f)
376 {
377         fprintf(f, "R9");
378         fprintf(f, "%s", dec->cpf); /* CPF: 11 dígitos */
379         fprintf(f, "%-3.3s", ""); /* FILLER */
380         fprintf(f, "%-10.10s", "0000000000"); /* FIXME: hash */
381 }
382
383 static void gera_rendimento(struct declaracao *dec, FILE *f)
384 {
385         struct rendimento *r;
386         r = list_get(dec->rendimento, dec->linhas[21]);
387         fprintf(f, "21");
388         fprintf(f, "%s", dec->cpf);
389         fprintf(f, "%-14.14s", r->cnpj);
390         fprintf(f, "%-60.60s", r->nome);
391         fprintf(f, "%013lld", r->rendimento);
392         fprintf(f, "%013lld", r->previdencia);
393         fprintf(f, "%013lld", r->decimoterceiro);
394         fprintf(f, "%013lld", r->imposto);
395         fprintf(f, "%-8.8s", r->saida);
396         fprintf(f, "%013lld", r->imposto_13o);
397 }
398
399 static void gera_pagamento(struct declaracao *dec, FILE *f)
400 {
401         struct pagamento *p;
402         p = list_get(dec->pagamentos, dec->linhas[26]);
403         fprintf(f, "26");
404         fprintf(f, "%s", dec->cpf);
405         fprintf(f, "%02d", p->codigo);
406         fprintf(f, "%05d", 0); /* TODO: chave dependente */
407         fprintf(f, "%-14.14s", p->cnpj);
408         fprintf(f, "%-60.60s", p->nome);
409         fprintf(f, "%-11.11s", ""); /* TODO: NIT */
410         fprintf(f, "%013lld", p->pagamento);
411         fprintf(f, "%013lld", p->reembolso);
412         /* CPF (1?) ou CNPJ (2), FIXME */
413         fprintf(f, "2");
414         /* Titular (T), Dependente (D), Alimentando (A), FIXME */
415         fprintf(f, "T");
416 }
417
418 static void gera_isento(struct declaracao *dec, FILE *f, int codigo)
419 {
420         struct isento *i;
421         i = isento_get(dec, codigo, dec->linhas[codigo]);
422         fprintf(f, "%02d", codigo);
423         fprintf(f, "%-11.11s", dec->cpf); /* Titular, TODO: dependente */
424         fprintf(f, "%05d", dec->linhas[codigo] + 1); /* Chave */
425         fprintf(f, "%c", 'T'); /* FIXME: dependente */
426         fprintf(f, "%-14.14s", i->cnpj);
427         fprintf(f, "%-60.60s", i->nome);
428         fprintf(f, "%013lld", i->valor);
429         fprintf(f, "%-11.11s", dec->cpf);
430 }
431
432 static void gera_plr(struct declaracao *dec, FILE *f)
433 {
434         gera_isento(dec, f, 96);
435 }
436
437 static void gera_poupanca(struct declaracao *dec, FILE *f)
438 {
439         gera_isento(dec, f, 98);
440 }
441
442 static void gera_bem(struct declaracao *dec, FILE *f)
443 {
444         struct bem *b;
445         b = list_get(dec->bens, dec->linhas[27]);
446
447         fprintf(f, "27");
448         fprintf(f, "%s", dec->cpf);
449         fprintf(f, "%02d", b->codigo);
450
451         /* FIXME: exterior */
452         fprintf(f, "0");
453         fprintf(f, "105"); /* código Brasil */
454
455         fprintf(f, "%-512.512s", b->descricao);
456         fprintf(f, "%013lld", b->valor_anterior);
457         fprintf(f, "%013lld", b->valor);
458
459         /* Imóvel */
460         fprintf(f, "%-40.40s", b->logradouro ?: "");
461         fprintf(f, "%-6.6s", b->numero ?: "");
462         fprintf(f, "%-40.40s", b->complemento ?: "");
463         fprintf(f, "%-40.40s", b->bairro ?: "");
464         fprintf(f, "%-9.9s", b->cep ?: "");
465         fprintf(f, "%-2.2s", b->uf ?: "");
466         fprintf(f, "%04d", b->cd_municipio);
467         fprintf(f, "%-40.40s", b->municipio ?: "");
468         /* FIXME: Registro de imóveis, Nao (0), Sim (1), Vazio (2) */
469         fprintf(f, "%d", b->registro ? 1 : 0);
470         fprintf(f, "%-40.40s", b->matricula ?: "");
471         fprintf(f, "%-40.40s", b->registro ?: "");
472         fprintf(f, "%011lld", b->area);
473         /* FIXME: Area, M2 (0), Ha (1), Vazio (2) */
474         fprintf(f, "%d", 0);
475         fprintf(f, "%-60.60s", b->cartorio ?: "");
476
477         /* Número de chave */
478         fprintf(f, "%05d", dec->linhas[27] + 1);
479 }
480
481 typedef void (gera_linha)(struct declaracao *dec, FILE *f);
482
483 static int wrap(gera_linha fn, struct declaracao *dec, FILE *f)
484 {
485         FILE *m;
486         char *buf = NULL;
487         size_t bsize;
488         int linha;
489         int r;
490         uLong c = crc32(0L, Z_NULL, 0);
491         m = open_memstream(&buf, &bsize);
492         if (!m) {
493                 return -errno;
494         }
495         fn(dec, m);
496         dec->linhas[0]++;
497         fflush(m);
498
499         /* Calcula CRC32 para campo de controle dos registros. */
500         c = crc32(c, buf, bsize);
501         fprintf(m, "%010ld\r\n", c);
502
503         fclose(m);
504         r = sscanf(buf, "%2d", &linha);
505         if (r == 1 && linha >= 0 && linha < 100) {
506                 dec->linhas[linha]++;
507         }
508         fwrite(buf, bsize, 1, f);
509         free(buf);
510         return 0;
511 }
512
513 static int gera(struct declaracao *dec, char *filename)
514 {
515         FILE *f;
516         int r;
517         int i;
518         struct rendimento *rendimento;
519         struct isento *isento;
520         struct pagamento *pagamento;
521         struct bem *bem;
522
523 #define W(fn, dec, f) \
524         do { \
525                 r = wrap(fn, dec, f); \
526                 if (r < 0) \
527                         goto out; \
528         } while (0);
529
530         f = fopen(filename, "w");
531         if (!f)
532                 return -errno;
533         memset(dec->linhas, 0, sizeof(dec->linhas));
534         W(gera_header, dec, f);
535         W(gera_contribuinte, dec, f);
536         if (dec->tipo == COMPLETA) {
537                 W(gera_completa, dec, f);
538                 W(gera_totais_completa, dec, f);
539         } else {
540                 W(gera_simples, dec, f);
541                 W(gera_totais_simples, dec, f);
542         }
543         for (i = 0; rendimento = list_get(dec->rendimento, i); i++) {
544                 W(gera_rendimento, dec, f);
545         }
546         for (i = 0; (pagamento = list_get(dec->pagamentos, i)); i++) {
547                 W(gera_pagamento, dec, f);
548         }
549         for (i = 0; (bem = list_get(dec->bens, i)); i++) {
550                 W(gera_bem, dec, f);
551         }
552
553         /* Rendimentos isentos e com tributação exclusiva */
554         /* Registros 82 a 89, e 92 a 99 */
555 #define IW(fn, codigo) \
556         for (i = 0; ; i++) { \
557                 isento = isento_get(dec, codigo, i); \
558                 if (!isento) \
559                         break; \
560                 W(fn, dec, f); \
561         }
562         IW(gera_plr, 96);
563         IW(gera_poupanca, 98);
564
565         W(gera_trailler, dec, f);
566         W(gera_reciboheader, dec, f);
567         W(gera_recibodetalhe, dec, f);
568         W(gera_recibotrailler, dec, f);
569
570         fclose(f);
571         return 0;
572 out:
573         fclose(f);
574         return r;
575 }
576
577 static int run_gera(struct declaracao *dec, char **args, int argc)
578 {
579         if (argc != 2)
580                 return -EINVAL;
581         return gera(dec, args[1]);
582 }
583
584 static struct cmd cmd_gera = {
585         .name = "gera",
586         .run = run_gera,
587 };
588
589 int gera_cmd_init(void)
590 {
591         cmd_add(&cmd_gera);
592         return 0;
593 }