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