-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathetdc_tool.h
392 lines (338 loc) · 11.3 KB
/
etdc_tool.h
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
#ifndef ETDC_TOOL_H
#define ETDC_TOOL_H
#include "common.h"
#include <string>
#include <map>
#include <unordered_map>
#include <vector>
namespace ETDC {
#define ETDC_SEPARATORS " \r\n\t"
typedef struct {
char * token;
size_t occurences;
} s_token;
typedef struct {
byte *bytes;
int length; // number of bytes
} ETDC_code;
int token_compar (const s_token * a, const s_token * b) {
if ( a->occurences < b->occurences ) return 1;
if ( a->occurences == b->occurences ) return 0;
return -1;
}
int token_compar2 (const s_token * a, const s_token * b) {
return strcmp(a->token, b->token);
}
bool file_exists(const char * filename) {
if (FILE * file = fopen(filename, "rb")) {
fclose(file);
return true;
}
return false;
}
long file_size(const char * filename) {
if (FILE * file = fopen(filename, "rb")) {
fseek(file, 0, SEEK_END);
long result = ftell(file);
fclose(file);
return result;
}
return -1;
}
uint32_t myRand() {
uint32_t r = rand()<<16;
r |= rand();
return r;
}
/* Major Functions */
/*
Creates dictionary of file sorted by frequency
*/
int ETDC_create_dictionary(char *set_filename, char *dict_filename) {
char *text = NULL;
printf("Text file reading (%s)\n", set_filename);
long text_size = read_file_content<char>(&text, set_filename);
if(text_size <= 0) { printf("Error: File (%s) does not exists, is empty, there is not enough RAM, or you don't have permissions.\n", set_filename); return EXIT_FAILURE; }
char *pch = strtok (text, ETDC_SEPARATORS);
long count = 0;
std::map<std::string, int> tokens; // use hash instead of string to improve performance
std::string str = "";
printf("Histogram creation\n");
while (pch != NULL) {
str = pch;
if(count++ % 100000 == 0) printf("+");
if (tokens.find(str) != tokens.end()) {
tokens[str]++;
} else {
tokens.insert(std::pair<std::string,int>(str,1));
}
pch = strtok (NULL, ETDC_SEPARATORS);
}
s_token *toks = (s_token*)malloc(999999*sizeof(s_token));
std::map<std::string, int>::iterator it;
size_t idx = 0;
for(it = tokens.begin(); it != tokens.end(); it++, idx++) {
toks[idx].token = (char*)it->first.c_str();
toks[idx].occurences = it->second;
}
printf("\n");
printf("Sorting (number of tokens: %zu)\n", idx);
std::qsort(toks, idx, sizeof(s_token), (int(*)(const void*, const void*))token_compar);
printf("Saving dictionary to file (%s)\n", dict_filename);
FILE *f = fopen(dict_filename, "w");
if(f==NULL) { printf("You don't have permission to file (%s) or disk is full", dict_filename); exit(EXIT_FAILURE); }
for(unsigned long int i = 0; i < idx; ++i) {
fprintf(f, "%s\n", toks[i].token);
}
fclose(f);
printf("Done.\n");
free(text);
free(toks);
return EXIT_SUCCESS;
}
int ETDC_decode(byte *bytes, int *decoded) {
if(bytes[0] & 1<<7) {
*decoded = bytes[0] ^ 1<<7;
return 1;
} else if(bytes[1] & 1<<7) {
*decoded = ((bytes[1] ^ (1<<7))<<7)+bytes[0];
return 2;
} else if(bytes[2] & 1<<7) {
*decoded = ((bytes[2] ^ (1<<7))<<14) + (bytes[1]<<7) + bytes[0];
return 3;
} else {
printf("Not supported code (first 4 bytes -> %d | %d | %d | %d)\n", bytes[0], bytes[1], bytes[2], bytes[3]);
printf("bytes pos = %p\n", bytes);
exit(EXIT_FAILURE);
}
}
ETDC_code ETDC_encode(int idx) {
ETDC_code code;
if (idx <= 127) {
code.length = 1;
byte *b = (byte*)malloc(1*sizeof(byte));
b[0] = (idx & 127) | 1 << 7;
code.bytes = b;
} else if (idx > 127 && idx <= 16383 ) {
code.length = 2;
byte *b = (byte*)malloc(2*sizeof(byte));
b[0] = (idx & 127) | 0 << 7;
b[1] = ( (idx >> 7 ) & 127) | 1 << 7;
code.bytes = b;
} else {
code.length = 3;
byte *b = (byte*)malloc(3*sizeof(byte));
b[0] = (idx & 127) | 0 << 7;
b[1] = ( (idx >> 7 ) & 127) | 0 << 7;
b[2] = ( (idx >> 14) & 127) | 1 << 7;
code.bytes = b;
}
return code;
}
/*
Creates map from dictionary in form of...
to
the
of
...
map[to] = 0
map[the] = 1
map[of] = 2
...
returns number of elements
*/
size_t ETDC_create_map_str_to_etdc(char *dict, std::unordered_map<std::string, ETDC_code> *dictionary) {
if(dict==NULL) { printf("Error: ETDC_create_map_str_to_etdc: dict is NULL \n"); exit(EXIT_FAILURE); }
std::string str = "";
char *pch;
size_t idx = 0;
pch = strtok (dict, ETDC_SEPARATORS);
if(pch==NULL) { printf("Error: There are no tokens inside the dictionary file\n"); exit(EXIT_FAILURE); }
do {
str = pch;
dictionary->insert(std::pair<std::string,ETDC_code>(str,ETDC_encode(idx++)));
} while ( (pch = strtok (NULL, ETDC_SEPARATORS)) != NULL );
return idx;
}
size_t ETDC_create_map_etdc_to_str(char *dict, std::unordered_map<int, std::string> *dictionary) {
std::string str = "";
char *pch;
size_t idx = 0;
pch = strtok (dict, ETDC_SEPARATORS);
do {
str = pch;
dictionary->insert(std::pair<int, std::string>(idx++, str));
} while ( (pch = strtok (NULL, ETDC_SEPARATORS)) != NULL );
return idx;
}
int ETDC_create_etdc_file(char *text_filename, char *dict_filename, char *encoded_text_filename) {
char *text = NULL;
printf("Text file reading (%s)\n", text_filename);
long text_size = read_file_content<char>(&text, text_filename);
char *dict = NULL;
printf("Dictionary file reading (%s)\n", dict_filename);
long dict_size = read_file_content<char>(&dict, dict_filename);
printf("Preparing dictionary\n");
std::unordered_map<std::string, ETDC_code> dictionary;
ETDC_create_map_str_to_etdc(dict, &dictionary);
printf("Encoding text to file (%s)\n", encoded_text_filename);
FILE *f = fopen(encoded_text_filename, "wb");
char *pch = strtok (text, ETDC_SEPARATORS);
size_t count = 0;
std::string str;
do {
if(count++ % 100000 == 0) printf("+");
str = pch;
if (dictionary.find(str) != dictionary.end()) {
fwrite(dictionary[str].bytes, sizeof(byte), dictionary[str].length, f);
} else {
printf("Error: Something went wrong (this token doesn't exists in dictionary)\n");
return EXIT_FAILURE;
}
} while ( (pch = strtok (NULL, ETDC_SEPARATORS)) != NULL);
fclose(f);
printf("\nDone.\n");
return EXIT_SUCCESS;
}
// below function should be embeded into ETDC_encode_file function
int ETDC_create_index_file(const char *encoded_text_filename, const char *index_filename, std::unordered_map<int, std::string> *map_etdc_to_str, int offset) {
printf("Index file creation\n");
printf("Creating %s index file\n", index_filename);
FILE *f_in = fopen(encoded_text_filename, "rb");
FILE *f_out = fopen(index_filename, "wb");
int code = 0;
int size = 0;
uint32_t length = 0;
uint32_t byte_num = 0;
byte bytes[3] = {0};
fwrite(&length, sizeof(uint32_t), 1, f_out);
while(fread( &(bytes[size]) , sizeof(byte), 1, f_in) == sizeof(byte)) {
if( ( bytes[size] & (1<<7) ) != 0 ) {
ETDC_decode(bytes, &code);
length += (*map_etdc_to_str)[code].size() + 1; // +1 because of separator
bytes[0] = 0; bytes[1] = 0; bytes[2] = 0;
size = 0;
} else {
size++;
}
if(++byte_num % offset == 0) {
fwrite(&length, sizeof(uint32_t), 1, f_out);
}
}
printf("%d chars are in the decoded text\n", length);
fclose(f_in);
fclose(f_out);
return EXIT_SUCCESS;
}
// index for word position finding
long ETDC_read_index_file(const char *index_filename, uint32_t **dst) {
long to_read = file_size(index_filename);
(*dst) = (uint32_t*)malloc(to_read);
FILE *f = fopen(index_filename, "rb");
fread((*dst), sizeof(byte), to_read, f);
fclose(f);
long count = to_read / sizeof(uint32_t);
return count;
}
/// position - position in encoded text
inline long ETDC_find_position(long position, byte *encoded_text, uint32_t *index, long index_count, long offset, std::unordered_map<int, std::string> *map_etdc_to_str) {
int code;
long idx_pos = position / offset;
long pos = index[idx_pos]; // position in decoded text
long start = idx_pos * offset;
long i = start - 1;
long stop = position;
// If there is exact position in index then return it
if( ( (position % offset) == 0 ) && ( ( encoded_text[position - 1] & (1<<7) ) == (1<<7) ) ) { return index[idx_pos] + 1; }
// If pos is in the middle of ETDC go back and add length of previous word
if(start!=0) while( (encoded_text[i] & (1<<7)) != (1<<7) ) { i--; } i++;
start = i + ETDC_decode(encoded_text + i, &code);
pos += (*map_etdc_to_str)[code].size() + 1;
// Then count lenghts of all words from indexed position to current byte
for(long i = start; i < stop;) {
i+= ETDC_decode(encoded_text+i, &code);
pos += (*map_etdc_to_str)[code].size() + 1; // +1 because of separator
}
return pos + 1;
}
void ETDC_create_decoded_file(char *decoded_text_filename, byte *encoded_text, long encoded_text_length, std::unordered_map<int, std::string> *map_etdc_to_str) {
int code;
FILE *f_out = fopen(decoded_text_filename, "wt");
for(long i = 0; i < encoded_text_length;) {
i+= ETDC_decode(encoded_text+i, &code);
fwrite((*map_etdc_to_str)[code].c_str(), sizeof(char), (*map_etdc_to_str)[code].size(), f_out);
fwrite(" ", sizeof(char), 1, f_out);
}
fclose(f_out);
}
int ETDC_create_pattern_file(char *processed_text_filename, char *dict_filename, char *patterns_filename, unsigned int p_length, int p_number, char *patterns_filename_txt) {
std::string str = "";
size_t idx;
char *text = NULL;
printf("Text file reading (%s)\n", processed_text_filename);
long text_size = read_file_content<char>(&text, processed_text_filename);
char *dict = NULL;
printf("Dictionary file reading (%s)\n", dict_filename);
long dict_size = read_file_content<char>(&dict, dict_filename);
printf("Reading all tokens from text\n");
char *pch;
char **tokens = (char**)malloc(sizeof(char*)*50000000);
pch = strtok (text, ETDC_SEPARATORS);
size_t count = 0; // number of all tokens in file
do {
if(count % 100000 == 0) printf("+");
tokens[count++] = pch;
} while ( (pch = strtok (NULL, ETDC_SEPARATORS)) != NULL );
--count;
printf("\n");
// read dictionary
printf("Dictionary map creation\n");
std::unordered_map<std::string, ETDC_code> dictionary;
ETDC_create_map_str_to_etdc(dict, &dictionary);
printf("Generating patterns to file (%s)\n", patterns_filename);
FILE *f = fopen(patterns_filename, "wb");
FILE *f2 = fopen(patterns_filename_txt, "wt");
char patterns_words_filename_txt[250];
sprintf(patterns_words_filename_txt, "%s.words.txt", patterns_filename_txt);
FILE *f3 = fopen(patterns_words_filename_txt, "wt");
srand (time(NULL));
int step = ceil((double)p_number/(double)80);
byte bytes[10000];
printf("Number of tokens in file: %zu\n", count);
for(int i = 0; i < p_number; i++) {
if (count + 1 - p_length < 1) {
printf("Error: Too small number of tokens in a file\n");
return EXIT_FAILURE;
}
idx = myRand() % (count + 1 - p_length);
memset(bytes, 0, 500);
byte *b_tmp = bytes + 1; // left one byte for number of bytes
for(unsigned int j = idx; j < idx + p_length; j++) {
str = tokens[j];
fprintf(f3, "%s ", str.c_str());
if (dictionary.find(str) != dictionary.end()) {
bytes[0] += dictionary[str].length;
memcpy(b_tmp, dictionary[str].bytes, dictionary[str].length);
b_tmp = bytes + bytes[0] + 1;
} else {
printf("Error: Something went wrong (this token doesn't exists in dictionary)\n");
return EXIT_FAILURE;
}
}
fprintf(f3, "\n");
fwrite(bytes, sizeof(byte), bytes[0] + 1, f); // +1 because of the first byte
for(int a = 0; a < bytes[0] + 1; a++) {
fprintf(f2, "%d|", bytes[a]);
}
}
printf("\n");
fclose(f);
fclose(f2);
fclose(f3);
free(text);
free(dict);
free(tokens);
return EXIT_SUCCESS;
}
}
#endif