Adiciona comando de resumo.
[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
32 static int run_dump(struct declaracao *dec, char **args, int argc)
33 {
34         printf("ano: %d\n", dec->ano);
35         printf("cpf: %s\n", dec->cpf);
36         printf("nome: %s\n", dec->nome);
37         printf("recibo: %s\n", dec->recibo);
38         rendimento_dump(dec);
39         printf("pago: %lld.%02d\n", dec->pago / 100, dec->pago % 100);
40         printf("devido: %lld.%02d\n", dec->devido / 100, dec->devido % 100);
41         printf("restituicao: %lld.%02d\n", dec->restituicao / 100, dec->restituicao % 100);
42         return 0;
43 }
44
45 static int run_resumo(struct declaracao *dec, char **args, int argc)
46 {
47         printf("pago: %lld.%02d\n", dec->pago / 100, dec->pago % 100);
48         printf("devido: %lld.%02d\n", dec->devido / 100, dec->devido % 100);
49         printf("restituicao: %lld.%02d\n", dec->restituicao / 100, dec->restituicao % 100);
50         return 0;
51 }
52
53 static void salva(struct declaracao *dec, FILE *f)
54 {
55         fprintf(f, "ano %d\n", dec->ano);
56         if (dec->cpf)
57                 fprintf(f, "cpf \"%s\"\n", dec->cpf);
58         if (dec->nome)
59                 fprintf(f, "nome \"%s\"\n", dec->nome);
60         if (dec->recibo)
61                 fprintf(f, "recibo \"%s\"\n", dec->recibo);
62         contribuinte_salva(dec, f);
63         rendimento_salva(dec, f);
64 }
65
66 static int run_salva(struct declaracao *dec, char **args, int argc)
67 {
68         FILE *f;
69         char *filename;
70         if (argc != 2)
71                 return -EINVAL;
72         filename = args[1];
73         f = fopen(filename, "w");
74         if (!f)
75                 return -errno;
76         salva(dec, f);
77         fclose(f);
78         return 0;
79 }
80
81 static struct cmd cmd_dump = {
82         .name = "dump",
83         .run = run_dump,
84 };
85
86 static struct cmd cmd_salva = {
87         .name = "salva",
88         .run = run_salva,
89 };
90
91 static struct cmd cmd_resumo = {
92         .name = "resumo",
93         .run = run_resumo,
94 };
95
96 int base_cmd_init(void)
97 {
98         cmd_add(&cmd_dump);
99         cmd_add(&cmd_salva);
100         cmd_add(&cmd_resumo);
101         cmd_add(&cmd_ano);
102         cmd_add(&cmd_cpf);
103         cmd_add(&cmd_recibo);
104         cmd_add(&cmd_nome);
105         return 0;
106 }