6f6a7416df05b87bf60027e9e2730b600bf6f1b7
[cascardo/declara.git] / src / declara.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 <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <errno.h>
23 #include <fcntl.h>
24 #include <unistd.h>
25
26 #include "declaracao.h"
27 #include "cmd.h"
28 #include "base.h"
29 #include "contribuinte.h"
30 #include "conjuge.h"
31 #include "rendimento.h"
32 #include "isento.h"
33 #include "pagamento.h"
34 #include "bem.h"
35 #include "dependente.h"
36 #include "calcula.h"
37 #include "gera.h"
38
39 static int realprocess(struct declaracao *dec, int fd)
40 {
41         char *line = NULL;
42         size_t lsz = 0;
43         FILE *f;
44         int r;
45         int n = 1;
46         f = fdopen(fd, "r");
47         if (!f)
48                 return -errno;
49         while ((r = getline(&line, &lsz, f)) > 0) {
50                 r = cmd_run(dec, line);
51                 if (r < 0) {
52                         fprintf(stderr, "Não foi possível executar comando na linha %d: %s\n",
53                                 n, strerror(-r));
54                 }
55                 n++;
56         }
57         free(line);
58         return r;
59 }
60
61 static int process(char *filename)
62 {
63         int r = 0;
64         int fd;
65         struct declaracao *dec;
66         dec = declaracao_new(-1);
67         if (!dec)
68                 return -errno;
69         fd = open(filename, O_RDONLY);
70         if (fd < 0) {
71                 r = -errno;
72                 goto out_open;
73         }
74         realprocess(dec, fd);
75         close(fd);
76 out_open:
77         declaracao_free(dec);
78         return r;
79 }
80
81 static void usage(void)
82 {
83         fprintf(stderr, "declara <filename>\n");
84         exit(1);
85 }
86
87 int main(int argc, char **argv)
88 {
89         char *filename;
90         int r;
91         if (argc < 2)
92                 usage();
93
94         cmd_init();
95         base_cmd_init();
96         contribuinte_cmd_init();
97         conjuge_cmd_init();
98         rendimento_cmd_init();
99         isento_cmd_init();
100         pagamento_cmd_init();
101         bem_cmd_init();
102         dependente_cmd_init();
103         calcula_cmd_init();
104         gera_cmd_init();
105         sistema_cmd_init();
106
107         filename = argv[1];
108         r = process(filename);
109         if (r)
110                 return 1;
111         return 0;
112 }