Separa código em diretórios.
[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 "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 SET_STRING(banco);
34 SET_STRING(agencia);
35 SET_STRING(contacorrente);
36 SET_STRING(dvconta);
37
38 static int run_resumo(struct declaracao *dec, char **args, int argc)
39 {
40         if (dec->retifica)
41                 printf("retificadora\n");
42         if (dec->obrigatoria)
43                 printf("obrigatoria\n");
44         printf("pago: %lld.%02d\n", reais(dec->pago), centavos(dec->pago));
45         printf("retido: %lld.%02d\n", reais(dec->retido),
46                                       centavos(dec->retido));
47         printf("devido: %lld.%02d\n", reais(dec->devido),
48                                       centavos(dec->devido));
49         if (dec->restituicao > 0)
50                 printf("restituicao: %lld.%02d\n", reais(dec->restituicao),
51                                                    centavos(dec->restituicao));
52         if (dec->pagar > 0)
53                 printf("a pagar: %lld.%02d\n", reais(dec->pagar),
54                                                centavos(dec->pagar));
55         return 0;
56 }
57
58 static void salva(struct declaracao *dec, FILE *f)
59 {
60         fprintf(f, "ano %d\n", dec->ano);
61         if (dec->cpf)
62                 fprintf(f, "cpf \"%s\"\n", dec->cpf);
63         if (dec->nome)
64                 fprintf(f, "nome \"%s\"\n", dec->nome);
65         if (dec->recibo)
66                 fprintf(f, "recibo \"%s\"\n", dec->recibo);
67         if (dec->retifica)
68                 fprintf(f, "retifica \"%s\"\n", dec->retifica);
69         contribuinte_salva(dec, f);
70         rendimento_salva(dec, f);
71 }
72
73 static int run_salva(struct declaracao *dec, char **args, int argc)
74 {
75         FILE *f;
76         char *filename;
77         if (argc != 2)
78                 return -EINVAL;
79         filename = args[1];
80         f = fopen(filename, "w");
81         if (!f)
82                 return -errno;
83         salva(dec, f);
84         fclose(f);
85         return 0;
86 }
87
88 static struct cmd cmd_salva = {
89         .name = "salva",
90         .run = run_salva,
91 };
92
93 static struct cmd cmd_resumo = {
94         .name = "resumo",
95         .run = run_resumo,
96 };
97
98 int base_cmd_init(void)
99 {
100         cmd_add(&cmd_salva);
101         cmd_add(&cmd_resumo);
102
103         cmd_add(&cmd_ano);
104         cmd_add(&cmd_cpf);
105         cmd_add(&cmd_recibo);
106         cmd_add(&cmd_retifica);
107         cmd_add(&cmd_nome);
108
109         cmd_add(&cmd_banco);
110         cmd_add(&cmd_agencia);
111         cmd_add(&cmd_contacorrente);
112         cmd_add(&cmd_dvconta);
113
114         return 0;
115 }