-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.c
More file actions
85 lines (63 loc) · 1.47 KB
/
Copy pathmain.c
File metadata and controls
85 lines (63 loc) · 1.47 KB
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
#include <ctype.h>
#include <hashtable.h>
#include <json_parser.h>
#include <tvl.h>
#include <logger/logger.h>
#include "config.h"
void OnError(FILE* fpi, FILE* fpo)
{
if (fpo != NULL)
fclose(fpo);
if (fpi != NULL)
fclose(fpi);
LogInfo("Task ended with error");
exit(EXIT_FAILURE);
}
int main(int argc, char *argv[])
{
//input file
FILE* fpi;
//output file
FILE* fpo;
char buf[INPUT_STRLEN];
char* line = buf;
LogInfo("Start entity");
if ((fpo = fopen(OUTPUT_FILE, "wb")) == NULL)
{
LogInfo("Can't create output file %s", OUTPUT_FILE);
OnError(fpo, fpi);
}
if ((fpi = fopen(INPUT_FILE, "r")) == NULL)
{
LogInfo("Can't open input file: %s", INPUT_FILE);
OnError(fpo, fpi);
}
//hashtable for tags
HashTable_t tab;
if (!CreateHashTable(&tab))
{
LogInfo("Can't init hashtable");
OnError(fpo, fpi);
}
size_t len = 0;
ssize_t read;
bool result = true;
while ((read = getline(&line, &len, fpi)) != -1)
{
if (len >= INPUT_STRLEN)
{
LogInfo("Input string is too long");
OnError(fpo, fpi);
}
LogInfo("Parsing input string: %s", line);
if (!TVLDumpJstring(line, read, &tab, fpo))
{
OnError(fpo, fpi);
}
}
TVLDumpDict(&tab, fpo);
LogInfo("Task successfully ended");
fclose(fpi);
fclose(fpo);
return 0;
}