X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Frnetclient.git;a=blobdiff_plain;f=t-parse.c;fp=t-parse.c;h=827dcecb2d572a4b60f57f6c55b40f15d652652b;hp=0000000000000000000000000000000000000000;hb=4623dc854f1320cb40231becdc2d036eaef2ccb2;hpb=26470029ecff8baa9b7a5a8162618c51e891fc8b diff --git a/t-parse.c b/t-parse.c new file mode 100644 index 0000000..827dcec --- /dev/null +++ b/t-parse.c @@ -0,0 +1,54 @@ +/* + * Copyright (C) 2016 Gabriel F. T. Gomes + * + * 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 + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#include + +#include "decfile.h" +#include "rnet_encode.h" + +int main(void) +{ + int i, r; + struct rnet_decfile *decfile; + struct rnet_message *message = NULL; + char *filename[4] = { + SRCDIR"/data/12345678909-IRPF-A-2013-2012-ORIGI.DEC", + SRCDIR"/data/12345678909-IRPF-A-2014-2013-ORIGI.DEC", + SRCDIR"/data/12345678909-IRPF-A-2015-2014-ORIGI.DEC", + SRCDIR"/data/12345678909-IRPF-A-2016-2015-ORIGI.DEC" + }; + + for (i = 0; i < 4; i++) { + + decfile = rnet_decfile_open(filename[i]); + if (decfile == NULL) { + fprintf(stderr, "Error opening DEC file.\n"); + return -1; + } + + r = rnet_encode(decfile, &message); + if (r < 0) { + fprintf(stderr, "Error encoding message\n"); + return -1; + } + + rnet_message_del(message); + } + + return 0; +}