Permite expandir cálculo para outros anos.
[cascardo/declara.git] / lib / calcula.c
index 71b94b4..8507a50 100644 (file)
@@ -1,5 +1,5 @@
 /*
- *  Copyright (C) 2015  Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
+ *  Copyright (C) 2015-2016  Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
 #include "rendimento.h"
 #include "totais.h"
 #include "util.h"
+#include "ano.h"
 
-static const long long dependente2015 = 215652;
+static const long long dependente[ANO(MAX_ANOS)] = {
+       [ANO(2015)] = 215652,
+};
 
 long long deducao_dependente(struct declaracao *dec)
 {
-       if (dec->ano == 2015)
-               return dependente2015;
+       if (ANO_VALIDO(dec->ano))
+               return dependente[ANO(dec->ano)];
        return 0;
 }
 
@@ -83,9 +86,17 @@ static struct taxtable table2015[] = {
        { 9999999999999LL, 0, 0, },
 };
 
-static const long long simples2015 = 1588089;
+static struct taxtable *table[ANO(MAX_ANOS)] = {
+       [ANO(2015)] = table2015,
+};
 
-static const long long obrigatoriedade2015 = 2681655;
+static const long long simples[ANO(MAX_ANOS)] = {
+       [ANO(2015)] = 1588089,
+};
+
+static const long long obrigatoriedade[ANO(MAX_ANOS)] = {
+       [ANO(2015)] = 2681655,
+};
 
 static long long imposto(struct taxtable *tt, long long tr, int verbose)
 {
@@ -103,12 +114,12 @@ static long long imposto_simples(struct declaracao *dec)
 {
        struct taxtable *tt;
        long long tr, td;
-       tt = table2015;
+       tt = table[ANO(dec->ano)];
        tr = totais_get(dec, "RENDPJ");
-       if (tr / 5 < simples2015)
+       if (tr / 5 < simples[ANO(dec->ano)])
                td = tr / 5;
        else
-               td = simples2015;
+               td = simples[ANO(dec->ano)];
        totais_add(dec, "DESCONTO", td);
        tr -= td;
        totais_add(dec, "BASESIMPLES", tr);
@@ -122,10 +133,7 @@ static long long imposto_completa(struct declaracao *dec)
 {
        struct taxtable *tt;
        long long tr, td;
-       if (dec->ano != 2015) {
-               return -EINVAL;
-       }
-       tt = table2015;
+       tt = table[ANO(dec->ano)];
        tr = totais_get(dec, "RENDPJ");
        td = total_deducao(dec);
        totais_add(dec, "DEDUCOES", td);
@@ -140,16 +148,16 @@ static long long imposto_completa(struct declaracao *dec)
 int calcula(struct declaracao *dec)
 {
        long long i_simples, i_completa;
-       if (dec->ano != 2015) {
+       if (!ANO_VALIDO(dec->ano)) {
                return -EINVAL;
        }
-       if (totais_get(dec, "RENDPJ") > obrigatoriedade2015) {
+       if (totais_get(dec, "RENDPJ") > obrigatoriedade[ANO(dec->ano)]) {
                if (dec->verbose) {
                        printf("Declaracao obrigatoria pois rendimento e"
                                "maior que mínimo para declaracao: "
                                FMT_R" > "FMT_R"\n",
                                R(totais_get(dec, "RENDPJ")),
-                               R(obrigatoriedade2015));
+                               R(obrigatoriedade[ANO(dec->ano)]));
                }
                dec->obrigatoria = 1;
        }