aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
blob: 71b4d3c581ea41c90d1c5a9f7856a5e30cdbfd16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <stdbool.h>   

/* #include "inirw_internal.h" */ 
#include "lightconfini.h"
#include "main.h"
#define main_c  


/* int lens=46, lenp=36, lenv=56, lenc=74, elen=65; */
int lens=16, lenp=16, lenv=16, lenc=24, elen=55;
lcinimyReadFunc mylciniReadOutFunct=myfunct;
/*lcinimyReadFunc mylciniReadOutFunct=NULL;*/






void myfunct(int line, int linelen, char *section, int sectionlen, char *param, int paramlen, char *value, int valuelen, char *comment, int commentlen, char *error, int errorlen ){
    
    printf("LN: %d,\tLL: %d, \tSC: %*s,%2d P: %*s,%2d V: %*s,%2d C: %*s,%2d ER: %*s,%2d\n", line, linelen, lens, section,sectionlen,
     lenp, param, paramlen, lenv, value, valuelen, lenc, comment, commentlen, elen, error, errorlen);
}


int main(int argc, char* argv[]){

    int len,r;
    char filename[4096] = "tests/test.ini", *buff1, *buff2, *buff3, *buff4, *buff5, *buff6;
    lcini_data *ini=NULL, *tmp=NULL;
    FILE *fp;
    lcini_shortret *sret;

    if(argc > 1){
        memset(filename, 0, 4096);
        /* snprintf(filename, 4096, "%s", argv[1]); */
        sprintf(filename, "%s", argv[1]);
    }
    fp = fopen(filename, "rb");
    len = lciniFileMaxLineLen(fp)+1;
    if(fp != NULL) { fclose(fp);}

    /* len = 24000; */    /*Debug*/

    buff1 = calloc((len+100), sizeof(char));
    buff2 = calloc((len+100), sizeof(char));
    buff3 = calloc((len+100), sizeof(char));
    buff4 = calloc((len+100), sizeof(char));
    buff5 = calloc((elen+100),sizeof(char));
    buff6 = calloc(100, sizeof(char));


    printf("\nLineMax: %d\n\n",len); 
    printf("FUNC: lciniReadOut() \n\n");

    ini = lciniReadOut(filename);
    tmp = ini;
    while(tmp != NULL){ 
    /*    snprintf(buff1, len+3, "'%s' %3ld",tmp->section, tmp->sectionLen);
        snprintf(buff2, len+3, "'%s' %3ld",tmp->param, tmp->paramLen);
        snprintf(buff3, len+3, "'%s' %3ld",tmp->value, tmp->valueLen);
        snprintf(buff4, len+3, "'%s' %3ld",tmp->comment, tmp->commentLen);
        snprintf(buff5, elen+3,  "'%s' %3ld",tmp->errorMsg, tmp->errorMsgLen); */

        sprintf(buff1, "'%s' %3d",tmp->section, tmp->sectionLen);
        sprintf(buff2, "'%s' %3d",tmp->param, tmp->paramLen);
        sprintf(buff3, "'%s' %3d",tmp->value, tmp->valueLen);
        sprintf(buff4, "'%s' %3d",tmp->comment, tmp->commentLen);
        sprintf(buff5, "'%s' %3d",tmp->errorMsg, tmp->errorMsgLen);


        printf("LN: %d,\tLL: %d, \tSC: %*s,%2d P: %*s,%2d V: %*s,%2d C: %*s,%2d ER: %*s \n", tmp->lineNum, tmp->lineLen, lens, buff1,tmp->sectionStartPos,    lenp, buff2, tmp->paramStartPos, lenv, buff3, tmp->valueStartPos, lenc, buff4, tmp->commentStartPos, elen, buff5); 
        /* myfunct(tmp->lineNum, tmp->lineLen, (char*)tmp->section, tmp->sectionLen, (char*)tmp->param, tmp->paramLen, (char*)tmp->value, tmp->valueLen, (char*)tmp->comment, tmp->commentLen, (char*)tmp->errorMsg, tmp->errorMsgLen); */

        tmp=tmp->next;
    }
    
    

    printf("\n\nFUNC: lciniReadOutOwn()\n\n");
    lciniReadOutOwn(filename);

    printf("\n\n FUNC: lciniGet()\n\n");
    tmp = lciniGet(ini, "bom_section", "mmm");
    printf("X->0x%x\n", tmp);
    if(tmp){
        printf("x->S: '%s', x->P: '%s', x->V: '%s', x->E: '%s'\n",tmp->section, tmp->param, tmp->value, tmp->errorMsg);
    }


    printf("\n\n FUNC: lciniGetStr()\n\n");
    r=lciniGetStr(ini, "bom_section", "mmm", buff6, 100);
    printf("r: %d, R: '%s' \n",r,buff6);



    printf("\n\n FUNC: lciniGetShort()\n\n");
    sret = lciniGetShort(ini, "bom_section", "key");
    printf("SR: '%s', %d, t: ",sret->ret,sret->retlen);
    if(sret->retType == lcini_shortretEMPTY){
        printf("sret_empty\n");
    }else if(sret->retType == lcini_shortretERROR){
        printf("sret_err\n");
    } else {
        printf("sret_ok\n");
    }


    lciniDestroyShortRet(sret);
    lciniDestroyNodes(ini);
    free(buff1);
    free(buff2);
    free(buff3);
    free(buff4);
    free(buff5); 
    free(buff6);
    printf("\n");
    return 0;
}