Suporta bens móveis.
[cascardo/declara.git] / lib / declaracao.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 "declaracao.h"
20 #include <stdlib.h>
21 #include <string.h>
22 #include "list.h"
23 #include "rendimento.h"
24 #include "pagamento.h"
25 #include "bem.h"
26 #include "pmhash.h"
27
28 struct declaracao * declaracao_new(int ano)
29 {
30         struct declaracao *dec;
31         dec = malloc(sizeof(*dec));
32         if (!dec)
33                 return NULL;
34         memset(dec, 0, sizeof(*dec));
35         dec->ano = ano;
36         dec->rendimento = list_new();
37         if (!dec->rendimento)
38                 goto out_rendimento;
39         dec->pagamentos = list_new();
40         if (!dec->pagamentos)
41                 goto out_pagamentos;
42         dec->bens = list_new();
43         if (!dec->bens)
44                 goto out_bens;
45         dec->totais = pmhash_new();
46         if (!dec->totais)
47                 goto out_totais;
48         dec->pago = 0;
49         dec->devido = 0;
50         dec->restituicao = 0;
51         dec->tipo = SIMPLES;
52         return dec;
53 out_totais:
54         list_free(dec->bens, bem_free);
55 out_bens:
56         list_free(dec->pagamentos, pagamento_free);
57 out_pagamentos:
58         list_free(dec->rendimento, rendimento_free);
59 out_rendimento:
60         free(dec);
61         return NULL;
62 }
63
64 void declaracao_free(struct declaracao *dec)
65 {
66         if (dec->cpf)
67                 free(dec->cpf);
68         if (dec->nome)
69                 free(dec->nome);
70         if (dec->recibo)
71                 free(dec->recibo);
72         if (dec->retifica)
73                 free(dec->retifica);
74         if (dec->banco)
75                 free(dec->banco);
76         if (dec->agencia)
77                 free(dec->agencia);
78         if (dec->contacorrente)
79                 free(dec->contacorrente);
80         if (dec->dvconta)
81                 free(dec->dvconta);
82         list_free(dec->rendimento, rendimento_free);
83         list_free(dec->pagamentos, pagamento_free);
84         list_free(dec->bens, bem_free);
85         pmhash_del(dec->totais);
86         free(dec);
87 }