Suporta indicadores de segurança, imposto pago e antecipado.
[cascardo/declara.git] / base.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 "cmd.h"
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <errno.h>
24 #include "rendimento.h"
25 #include "util.h"
26
27 SET_INT(ano);
28 SET_STRING(cpf);
29 SET_STRING(nome);
30 SET_STRING(recibo);
31 SET_STRING(retifica);
32
33 static int run_resumo(struct declaracao *dec, char **args, int argc)
34 {
35         if (dec->retifica)
36                 printf("retificadora\n");
37         if (dec->obrigatoria)
38                 printf("obrigatoria\n");
39         printf("pago: %lld.%02d\n", dec->pago / 100, dec->pago % 100);
40         printf("retido: %lld.%02d\n", dec->retido / 100, dec->retido % 100);
41         printf("devido: %lld.%02d\n", dec->devido / 100, dec->devido % 100);
42         if (dec->restituicao > 0)
43                 printf("restituicao: %lld.%02d\n", dec->restituicao / 100, dec->restituicao % 100);
44         if (dec->pagar > 0)
45                 printf("a pagar: %lld.%02d\n", dec->pagar / 100, dec->pagar % 100);
46         return 0;
47 }
48
49 static void salva(struct declaracao *dec, FILE *f)
50 {
51         fprintf(f, "ano %d\n", dec->ano);
52         if (dec->cpf)
53                 fprintf(f, "cpf \"%s\"\n", dec->cpf);
54         if (dec->nome)
55                 fprintf(f, "nome \"%s\"\n", dec->nome);
56         if (dec->recibo)
57                 fprintf(f, "recibo \"%s\"\n", dec->recibo);
58         if (dec->retifica)
59                 fprintf(f, "retifica \"%s\"\n", dec->retifica);
60         contribuinte_salva(dec, f);
61         rendimento_salva(dec, f);
62 }
63
64 static int run_salva(struct declaracao *dec, char **args, int argc)
65 {
66         FILE *f;
67         char *filename;
68         if (argc != 2)
69                 return -EINVAL;
70         filename = args[1];
71         f = fopen(filename, "w");
72         if (!f)
73                 return -errno;
74         salva(dec, f);
75         fclose(f);
76         return 0;
77 }
78
79 static struct cmd cmd_salva = {
80         .name = "salva",
81         .run = run_salva,
82 };
83
84 static struct cmd cmd_resumo = {
85         .name = "resumo",
86         .run = run_resumo,
87 };
88
89 int base_cmd_init(void)
90 {
91         cmd_add(&cmd_salva);
92         cmd_add(&cmd_resumo);
93         cmd_add(&cmd_ano);
94         cmd_add(&cmd_cpf);
95         cmd_add(&cmd_recibo);
96         cmd_add(&cmd_retifica);
97         cmd_add(&cmd_nome);
98         return 0;
99 }