Salva dados bancários, pagamentos e bens.
[cascardo/declara.git] / lib / 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 "pagamento.h"
26 #include "bem.h"
27 #include "util.h"
28
29 SET_INT(ano);
30 SET_STRING(cpf);
31 SET_STRING(nome);
32 SET_STRING(recibo);
33 SET_STRING(retifica);
34
35 SET_STRING(banco);
36 SET_STRING(agencia);
37 SET_STRING(contacorrente);
38 SET_STRING(dvconta);
39
40 static int run_resumo(struct declaracao *dec, char **args, int argc)
41 {
42         if (dec->retifica)
43                 printf("retificadora\n");
44         if (dec->obrigatoria)
45                 printf("obrigatoria\n");
46         printf("pago: %lld.%02d\n", reais(dec->pago), centavos(dec->pago));
47         printf("retido: %lld.%02d\n", reais(dec->retido),
48                                       centavos(dec->retido));
49         printf("devido: %lld.%02d\n", reais(dec->devido),
50                                       centavos(dec->devido));
51         if (dec->restituicao > 0)
52                 printf("restituicao: %lld.%02d\n", reais(dec->restituicao),
53                                                    centavos(dec->restituicao));
54         if (dec->pagar > 0)
55                 printf("a pagar: %lld.%02d\n", reais(dec->pagar),
56                                                centavos(dec->pagar));
57         return 0;
58 }
59
60 static void salva(struct declaracao *dec, FILE *f)
61 {
62         fprintf(f, "ano %d\n", dec->ano);
63         if (dec->cpf)
64                 fprintf(f, "cpf \"%s\"\n", dec->cpf);
65         if (dec->nome)
66                 fprintf(f, "nome \"%s\"\n", dec->nome);
67         if (dec->recibo)
68                 fprintf(f, "recibo \"%s\"\n", dec->recibo);
69         if (dec->retifica)
70                 fprintf(f, "retifica \"%s\"\n", dec->retifica);
71         if (dec->banco)
72                 fprintf(f, "banco \"%s\"\n", dec->banco);
73         if (dec->agencia)
74                 fprintf(f, "agencia \"%s\"\n", dec->agencia);
75         if (dec->contacorrente)
76                 fprintf(f, "contacorrente \"%s\"\n", dec->contacorrente);
77         if (dec->dvconta)
78                 fprintf(f, "dvconta \"%s\"\n", dec->dvconta);
79         contribuinte_salva(dec, f);
80         rendimento_salva(dec, f);
81         pagamento_salva(dec, f);
82         bem_salva(dec, f);
83 }
84
85 static int run_salva(struct declaracao *dec, char **args, int argc)
86 {
87         FILE *f;
88         char *filename;
89         if (argc != 2)
90                 return -EINVAL;
91         filename = args[1];
92         f = fopen(filename, "w");
93         if (!f)
94                 return -errno;
95         salva(dec, f);
96         fclose(f);
97         return 0;
98 }
99
100 static struct cmd cmd_salva = {
101         .name = "salva",
102         .run = run_salva,
103 };
104
105 static struct cmd cmd_resumo = {
106         .name = "resumo",
107         .run = run_resumo,
108 };
109
110 int base_cmd_init(void)
111 {
112         cmd_add(&cmd_salva);
113         cmd_add(&cmd_resumo);
114
115         cmd_add(&cmd_ano);
116         cmd_add(&cmd_cpf);
117         cmd_add(&cmd_recibo);
118         cmd_add(&cmd_retifica);
119         cmd_add(&cmd_nome);
120
121         cmd_add(&cmd_banco);
122         cmd_add(&cmd_agencia);
123         cmd_add(&cmd_contacorrente);
124         cmd_add(&cmd_dvconta);
125
126         return 0;
127 }