-
Notifications
You must be signed in to change notification settings - Fork 6
/
standard-burst-trie.c
executable file
·701 lines (592 loc) · 19.3 KB
/
standard-burst-trie.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
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
/*******************************************************************************
* // Begin statement *
* *
* Author: Dr. Nikolas Askitis *
* Email: [email protected] *
* Github.com: https://github.com/naskitis *
* *
* Copyright @ 2016. All rights reserved. *
* *
* Permission to use my software is granted provided that this statement *
* is retained. *
* *
* My software is for non-commercial use only. *
* *
* If you want to share my software with others, please do so by *
* sharing a link to my repository on github.com. *
* *
* If you would like to use any part of my software in a commercial or public *
* environment/product/service, please contact me first so that I may *
* give you written permission. *
* *
* This program is distributed without any warranty; without even the *
* implied warranty of merchantability or fitness for a particular purpose. *
* *
* // End statement *
******************************************************************************/
#include "include/common.h"
#define BUCKET_OVERHEAD 16
#define STRING_EXHAUST_TRIE 31
#define STRING_EXHAUST_CONTAINER 8
#define ALLOC_OVERHEAD 16
char **trie_pack=NULL;
uint32_t trie_pack_idx=0;
uint32_t trie_counter=0;
uint32_t trie_pack_entry_capacity=65536;
uint32_t trie_pack_capacity=256;
uint32_t total_trie_pack_memory=0;
int BUCKET_SIZE_LIM=35;
char *trie_buffer;
char *current_bucket;
char *root_trie;
int depth=0;
int num_buckets=0;
int num_tries=0;
int trie_buffer_capacity=65536;
int trie_buffer_size=0;
uint64_t bucket_mem=0;
int max_trie_depth=0;
int depth_accumumlator=0;
int mtf_counter=0;
void destroy();
void split_container(char *bucket, char **c_trie);
void burst_container(char *, char, char **);
/* the structure of a node in a container */
typedef struct node
{
char *word;
struct node *next;
}node;
/* the structure that houses a linked list of nodes */
typedef struct head_node
{
struct node *head;
unsigned char overhead;
//unsigned char a[7];
}head_node;
/* this function returns the address of a new trie node. Trie
* nodes are stored within a block of memory. Once the block is
* full, then a new block is allocated.
*/
char * new_trie()
{
/* check whether you need to allocate a new block */
if(trie_counter == trie_pack_entry_capacity)
{
trie_pack_idx++;
*(trie_pack+trie_pack_idx) = calloc(trie_pack_entry_capacity*TRIE_SIZE, sizeof(char));
trie_counter=0;
}
/* return the address of the vacant node within the current block */
return *(trie_pack + trie_pack_idx) + (trie_counter++ * TRIE_SIZE);
}
/* take a pointer and return 1 if it points to a trie node. This can
* be determined by checking whether the address lies within the blocks
* of memory used to store the trie nodes
*/
int is_it_a_trie(char *x)
{
register int idx=0;
for(; idx <= trie_pack_idx; idx++)
{
if ( x >= *(trie_pack+idx) && x <= (*(trie_pack+idx)+(TRIE_SIZE * (trie_pack_entry_capacity-1) )) )
return 1;
}
return 0;
}
/* add a string to a bucket or container, return 1 on success, 0 otherwise */
int add_to_bucket(char *bucket, char *query_start)
{
char *array;
char *query=query_start;
int entries=0;
head_node *root = (head_node *)bucket;
node *traverse = root->head;
node *new_node;
node *previous=NULL;
/* traverse the container (its linked list) to find a match or
* until the list is exhausted. If you find a match, then move
* the node to the start of the list. You can only insert a
* new string when no match is found
*/
while(traverse!=NULL)
{
array=traverse->word;
query=query_start;
/* compare the query string to the string held within the node */
for (; *query == *array && *query != '\0'; query++, array++);
/* if there was a match, then move to node to the start of the
* list if required, and terminate the insertion process in failure
*/
if ( *query == '\0' && *array == '\0')
{
if(previous!=NULL)
{
previous->next=traverse->next;
traverse->next=root->head;
root->head=traverse;
mtf_counter++;
}
return 0;
}
/* grab the next node in the list to compare */
previous=traverse;
traverse=traverse->next;
entries++;
}
/* allocate a node node */
if ((new_node = malloc(sizeof(struct node))) == NULL) fatal (MEMORY_EXHAUSTED);
new_node->next=NULL;
/* get the length of the string to insert */
for(; *query != '\0'; query++);
/* allocate space for the string */
if ((new_node->word=malloc(query - query_start + 1)) == NULL) fatal(MEMORY_EXHAUSTED);
array=new_node->word;
/* copy the string within the node */
while( *query_start != '\0')
{
*array++ = *query_start++;
}
*array='\0';
/* assign the node to the list held within the container to complete the insertion */
new_node->next=root->head;
root->head=new_node;
return ++entries;
}
/* add a string to a container without searching if it exists */
char * add_to_bucket_no_search(char *bucket, char *query_start)
{
char *array;
char *query=query_start;
head_node *root = (head_node *)bucket;
node *new_node = NULL;
/* allocate space for the node */
if ((new_node = malloc(sizeof(struct node))) == NULL) fatal(MEMORY_EXHAUSTED);
/* get the length of the string to insert */
for(; *query != '\0'; query++);
/* allocate space for the string */
if ((new_node->word=malloc(query - query_start + 1)) == NULL) fatal(MEMORY_EXHAUSTED);
new_node->next=NULL;
array=new_node->word;
/* copy the string into the node */
while( *query_start != '\0')
{
*array++ = *query_start++;
}
*array='\0';
/* assign the node to the linked list that is held within the container */
new_node->next=root->head;
root->head=new_node;
return bucket;
}
/* initalize the standard-chain burst trie */
int init()
{
char **c_trie=NULL;
int i=0;
/* allocate the array of pointers that will be used to point to the
* blocks of memory that house the trie nodes.
*/
trie_pack = (char **) calloc (trie_pack_capacity, sizeof(char *));
trie_pack_idx=0;
trie_counter=0;
/* assign the first pointer in the trie_pack array to block of memory */
*(trie_pack+trie_pack_idx) = calloc(trie_pack_entry_capacity*TRIE_SIZE,
sizeof(char));
/* allocate a new trie node and assign it as the root trie node */
root_trie=new_trie();
c_trie = (char **)root_trie;
/* make sure its pointers are null */
for(i=0; i<128; i++) *(c_trie+i)=NULL;
/* make sure you clear the string-exhaust flag in the trie node */
*(c_trie+STRING_EXHAUST_TRIE)=0;
return 0;
}
/* search for a string in a bucket or container. Returns 1 on success,
* 0 otherwise
*/
int bucket_search(char *bucket, char *query_start)
{
char *array;
char *query=query_start;
head_node *header = (head_node *) bucket;
node *traverse = header->head;
node *previous=NULL;
/* traverse the container (its linked list) to find a match or
* until the list is exhausted
*/
while(traverse!=NULL)
{
array=traverse->word;
query=query_start;
/* compare the query string to the string held within the node */
for (; *query == *array && *query != '\0'; query++, array++);
/* on match, move the node to the start of the list to complete the search */
if ( *query == '\0' && *array == '\0')
{
if(previous!=NULL)
{
previous->next=traverse->next;
traverse->next=header->head;
header->head=traverse;
mtf_counter++;
}
return 1;
}
/* grab the next node in the list */
previous=traverse;
traverse=traverse->next;
}
return 0;
}
/* search the standard-chain burst trie for a string. Returns 1 on
* success, 0 otherwise
*/
int search(char *word)
{
char **c_trie = (char **)root_trie;
char *x;
/* grab the leading character of the query string */
while( *word != '\0')
{
/* use the leading character to fetch a pointer in the current trie,
* if the pointer is null, then the string does not exist in the burst
* trie
*/
if ( (x = *(c_trie + *word)) == NULL)
{
return 0;
}
/* check if the pointer is refering to a container or a
* trie node.
*/
if ( is_it_a_trie(x) )
{
c_trie= (char **)x;
}
else /* the pointer refers to a container */
{
/* consume the lead character from the query string */
word++;
/* if there are no more characters in the query string, then
* return the string-exhaust flag in the current container
*/
if( *word == '\0')
{
if(*(x+STRING_EXHAUST_CONTAINER))
{
return 1;
}
else
{
return 0;
}
}
/* if the string has not been exhausted, then search the container
* using the remaining characters (the suffix)
*/
return bucket_search(x, word);
}
/* consume the lead character from the query string and continue to process
* the next trie node
*/
word++;
}
/* if the string is exhausted prior to reaching a container, then check
* the string-exhaust flag in the current trie node to decide the status
* of the search.
*/
if( *(uint64_t *)(c_trie+STRING_EXHAUST_TRIE))
{
return 1;
}
else
{
return 0;
}
}
/* allocate a new container */
int new_container(char **c_trie, char path, char *word)
{
char *x;
/* allocate space for the container */
if((x=malloc(BUCKET_OVERHEAD)) == NULL) fatal(MEMORY_EXHAUSTED);
/* make sure the string-exhaust flag is cleared, and the
* bytes used to store the pointer to the head of the list is
* null.
*/
*(uint64_t *)x=0;
*(x+STRING_EXHAUST_CONTAINER)=0;
/* assign the parent pointer to the new container */
*(c_trie + path)=x;
if( *word == '\0' )
{
*(x+STRING_EXHAUST_CONTAINER) = 1;
}
else
{
add_to_bucket_no_search(x, word);
}
return 1;
}
/* insert a string into the standard-chain burst trie */
int insert(char *word)
{
char **c_trie= (char **) root_trie;
char *x;
int r=0;
/* grab the leading character from the query string */
while( *word != '\0')
{
/* if the pointer that maps to the leading character is null,
* then create a new container to house the string, to complete
* the insertion process
*/
if ( (x = *(c_trie + *word)) == NULL)
return new_container(c_trie, *word, word+1);
/* check whether the pointer that maps to the leading character
* leads to a trie node or to a container
*/
if( is_it_a_trie(x) )
{
c_trie=(char **)x;
}
else
{
/* consume the lead character */
word++;
/* if the query string has been consumed entirely, then set
* the string-exhaust flag within the current node to complete
* the insertion
*/
if( *word == '\0')
{
if( *(x+STRING_EXHAUST_CONTAINER))
{
return 0;
}
else
{
*(x+STRING_EXHAUST_CONTAINER) = 1;
return 1;
}
}
/* otherwise, a container is acquired. Attempt to add the string
* to the container. If the function returns a non-null value,
* then the insertion was a success. In this case, check to see
* whether the container needs to be burst
*/
if( (r=add_to_bucket(x, word)) )
{
/* if the number of entries in the current container exceed the
* container limit, then the container needs to be burst
*/
if( r > BUCKET_SIZE_LIM )
{
burst_container(x, *(word-1), c_trie);
}
return 1;
}
return 0;
}
/* consume the current character and continue with the traversal */
word++;
}
/* if the string was consumed prior to reaching a container, then
* set the string-exhaust flag within the current trie node to
* complete the insertion. If it has already been set, then the
* insertion is a failure.
*/
if( *(uint64_t *)(c_trie+STRING_EXHAUST_TRIE))
{
return 0;
}
else
{
*(uint64_t *)(c_trie+STRING_EXHAUST_TRIE) = 1;
return 1;
}
}
int main(int argc, char **argv)
{
char *to_insert=NULL, *to_search=NULL;
int num_files=0,i=0,j=0;
double mem=0, insert_real_time=0.0, search_real_time=0.0;
/* get the container limit */
BUCKET_SIZE_LIM = atoi(argv[1]);
/* get the number of files to insert */
num_files = atoi(argv[2]);
init();
/* insert the files in sequence into the standard-chain burst trie and
* accumulate the time required
*/
for(i=0, j=3; i<num_files; i++, j++)
{
to_insert=argv[j];
insert_real_time+=perform_insertion(to_insert);
}
uint64_t vsize=0;
{
pid_t mypid;
FILE * statf;
char fname[1024];
uint64_t ret;
uint64_t pid;
char commbuf[1024];
char state;
uint64_t ppid, pgrp, session, ttyd, tpgid;
uint64_t flags, minflt, cminflt, majflt, cmajflt;
uint64_t utime, stime, cutime, cstime, counter, priority;
uint64_t timeout, itrealvalue;
uint64_t starttime;
uint64_t rss, rlim, startcode, endcode, startstack, kstkesp, ksteip;
uint64_t signal, blocked, sigignore, sigcatch;
uint64_t wchan;
uint64_t size, resident, share, trs, drs, lrs, dt;
mypid = getpid();
snprintf(fname, 1024, "/proc/%u/stat", mypid);
statf = fopen(fname, "r");
ret = fscanf(statf, "%lu %s %c %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu "
"%lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu",
&pid, commbuf, &state, &ppid, &pgrp, &session, &ttyd, &tpgid,
&flags, &minflt, &cminflt, &majflt, &cmajflt, &utime, &stime,
&cutime, &cstime, &counter, &priority, &timeout, &itrealvalue,
&starttime, &vsize, &rss, &rlim, &startcode, &endcode, &startstack,
&kstkesp, &ksteip, &signal, &blocked, &sigignore, &sigcatch,
&wchan);
if (ret != 35) {
fprintf(stderr, "Failed to read all 35 fields, only %d decoded\n",
ret);
}
fclose(statf);
}
/* get the number of files to search */
num_files = atoi(argv[j++]);
/* insert the files in sequence into the standard-chain burst trie
* and accumulate the time required
*/
for(i=0; i<num_files; i++, j++)
{
to_search=argv[j];
search_real_time+=perform_search(to_search);
}
destroy();
mem=((total_trie_pack_memory/(double)TO_MB) + ((double)bucket_mem/TO_MB));
printf("Standard-burst-trie %.2f %.2f %.2f %.2f %d %d %d --- Dr. Nikolas Askitis, Copyright @ 2016, [email protected]\n", vsize / (double) TO_MB,
mem, insert_real_time, search_real_time, get_inserted(), get_found(), BUCKET_SIZE_LIM);
return 0;
}
void burst_container(char *bucket, char c_char, char **c_trie)
{
char *n_trie;
/* allocate a new trie node as a parent */
n_trie = new_trie();
*(c_trie+c_char)=n_trie;
c_trie = (char **) n_trie;
/* make sure you transfer the string-exhaust flag from the old container to the new trie node */
*(uint64_t *)(c_trie+STRING_EXHAUST_TRIE) = (uint64_t ) *(bucket+STRING_EXHAUST_CONTAINER);
/* reset the string exhaust flag in the container */
*(bucket+STRING_EXHAUST_CONTAINER)=0;
/* split the container, passing the reference to the new trie node into the function */
split_container(bucket, c_trie);
}
void split_container(char *bucket, char **c_trie)
{
head_node *root= (head_node *)(bucket);
node *traverse=root->head;
node *tmp;
char *x;
char *array;
/* traverse the container (its linked list) */
while(traverse!=NULL)
{
/* access the word stored within the current node in the container */
array=traverse->word;
/* use the leading character of the current word to map into the parent trie */
x = *(c_trie + *array);
/* if the acquired pointer in the parent trie is null, then create a new container */
if (x == NULL)
{
if ((x=malloc(BUCKET_OVERHEAD))==NULL) fatal(MEMORY_EXHAUSTED);
*(uint64_t *)(x)=0;
*(x+STRING_EXHAUST_CONTAINER)=0;
/* assign the new container to the parent trie node */
*(c_trie + *array)=x;
}
/* if consuming the lead character results in an empty string, then set the
* string-exhaust flag within the current container
*/
if( *(array+1) == '\0' )
{
*(x+STRING_EXHAUST_CONTAINER)= 1;
}
else
{
/* consume the lead character and add it to the container */
array++;
add_to_bucket_no_search(x, array);
}
/* grab the next node in the list, but first keep a pointer to the current node */
tmp=traverse;
traverse=traverse->next;
/* delete the current node and its string, as they are not needed anymore */
free(tmp->word);
free(tmp);
}
/* once all the string in the current container have been moved into new containers,
* delete the old container to complete the burst
*/
free(bucket);
}
/* run an in-order traversal of the burst trie to accumulate the amount of memory
* allocated and to free the space allocated
*/
void in_order(char **c_trie, int local_depth)
{
int i=0;
char *x;
if(local_depth > max_trie_depth) max_trie_depth=local_depth;
num_tries++;
for(i=MIN_RANGE; i<MAX_RANGE; i++)
{
if ( (x = *(c_trie + i)) == NULL)
{
continue;
}
if ( is_it_a_trie(x) )
{
in_order( (char **)x, local_depth+1);
}
else
{
head_node *header = (head_node *) x;
node *traverse = header->head;
node *previous=NULL;
bucket_mem += BUCKET_OVERHEAD+16;
while(traverse!=NULL)
{
bucket_mem += sizeof(struct node)+16;
bucket_mem += strlen(traverse->word)+1+16;
free(traverse->word);
previous=traverse;
traverse=traverse->next;
free(previous);
}
num_buckets++;
depth_accumumlator+=local_depth;
free(header);
}
}
}
/* free the memory allocated by the standard burst trie, including the trie nodes */
void destroy()
{
int i=0;
in_order((char **)root_trie, 1);
for(i=0; i<=trie_pack_idx; i++)
{
total_trie_pack_memory += (((trie_pack_entry_capacity*TRIE_SIZE) + sizeof(char))+ALLOC_OVERHEAD);
free ( *(trie_pack + i ) );
}
free(trie_pack);
}