-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
132 lines (110 loc) · 4.02 KB
/
main.c
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
124
125
126
127
128
129
130
131
132
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <stdbool.h>
#include "../include/ac.h"
#include "../include/dat.h"
#include "../include/needle.h"
#include "../include/print.h"
#include "../include/tail.h"
#include "../include/list.h"
#include "../include/file.h"
#include "../include/thread.h"
#include "../include/socket.h"
#include "../include/socket_ac.h"
#include "../include/user_data.h"
static struct trieNeedle *safeCreateNeedle(const char *string) {
struct trieNeedle *needle = createTrieNeedle(string);
if (needle == NULL) {
fprintf(stderr, "needle is not valid UTF8");
exit(EXIT_FAILURE);
}
return needle;
}
int main(void) {
const char *needles[] = {
// it is really long when printing trie with these characters
// "\xc2\xa5\0", // 2B
// "\xe2\xbf\x86\0", // 3B
// "\xf0\x9f\xa6\x84\0", // 4B
// "\xf0\x9f\xa7\x99\xf0\x9f\xa7\x99\0", // two same 4B emojis
"bachelor\0",
"jar\0",
"badge\0",
"baby\0",
"ara\0",
"bar\0",
"arab\0",
"baraba\0",
"barbara\0",
};
const int needlesLength = sizeof(needles) / sizeof(needles[0]);
struct userData userData = createUserData(4, "\xf0\x9f\xa7\x99");
struct trieOptions *options = createTrieOptions(true, true, 4);
struct tailBuilder *tailBuilder = createTailBuilder(10);
struct userDataList *userDataList = createUserDataList(10);
struct trie *trie = createTrie(options, tailBuilder, userDataList, 10);
struct trieNeedle *trieNeedle;
for (int i = 0; i < needlesLength; i++) {
trieNeedle = safeCreateNeedle(needles[i]);
printf("%s (%lu)\n", needles[i], trieNeedle_getLength(trieNeedle));
trie_addNeedleWithData(trie, trieNeedle, userData);
trieNeedle_free(trieNeedle);
}
trie_print(trie);
tailBuilder_print(tailBuilder);
userDataList_print(trie_getSize(trie), userDataList);
struct tail *tail = createTailFromBuilder(tailBuilder);
tailBuilder_free(tailBuilder);
struct list *list = createList(10);
struct automaton *automaton = createAutomaton_BFS(trie, list);
automaton_print(automaton);
tail_print(tail);
const char *path = "../dictionary";
file_store(path, automaton, tail, userDataList);
automaton_free(automaton);
tail_free(tail);
userDataList_free(userDataList);
struct fileData data = file_load(path);
if (0 != remove(path)) {
fprintf(stderr, "can not remove dictionary");
exit(EXIT_FAILURE);
}
automaton = data.automaton;
tail = data.tail;
userDataList = data.userDataList;
automaton_print(automaton);
tail_print(tail);
userDataList_print(automaton_getSize(automaton), userDataList);
for (size_t i = 0; i < needlesLength; i++) {
struct occurrence *occurrence = automaton_search(automaton, tail, userDataList, needles[i], SEARCH_MODE_USER_DATA|SEARCH_MODE_FIRST|SEARCH_MODE_NEEDLE);
if (!occurrence) {
fprintf(stderr, "can not find word %s", needles[i]);
exit(EXIT_FAILURE);
}
needle_free(occurrence_getNeedle(occurrence));
occurrence_free(occurrence);
}
struct timeval serverTimeout = { 2, 0 };
HandlerData *handlerData = createHandlerData(automaton, tail, userDataList);
struct workerPool *pool = createWorkerPool(getAvailableCores(), socketJobHandler);
struct serverConfig *config = createServerConfig(
-1,
NULL,
&serverTimeout,
ahoCorasickHandler,
handlerData
);
// SocketInfo *socketInfo = createUnixSocketInfo("../test.sock");
struct socketInfo *socketInfo = createTCPSocketInfo(80);
struct server *server = createServer(config, pool);
server_run(server, socketInfo);
handlerData_free(handlerData);
serverConfig_free(config);
automaton_free(automaton);
userDataList_free(userDataList);
tail_free(tail);
list_free(list);
trie_free(trie);
trieOptions_free(options);
}