-
Notifications
You must be signed in to change notification settings - Fork 6
/
nikolas_askitis_array_burst_trie.c
executable file
·1125 lines (929 loc) · 31 KB
/
nikolas_askitis_array_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
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*******************************************************************************
* // 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"
#include <assert.h>
#define BUCKET_OVERHEAD 2
#define STRING_EXHAUST_TRIE 31
#define STRING_EXHAUST_CONTAINER 0
#define CONSUMED 1
#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=32768;
uint32_t trie_pack_capacity=256;
uint32_t total_trie_pack_memory=0;
char *trie_buffer;
char *current_bucket;
char *root_trie;
int BUCKET_SIZE_LIM=35;
int inserted=0;
int searched=0;
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 *, char **);
void burst_container(char *, char, char **);
void resize_container(char **, uint32_t, uint32_t);
int add_to_bucket(char *bucket,
char path,
char *query_start,
char **c_trie);
int add_to_bucket_no_search(char *bucket,
char path,
char *query_start,
char **c_trie);
int add_to_bucket_no_search_with_len(char *bucket,
char path,
char *query_start,
char **c_trie, int len);
/* resize a container in the array burst trie */
void resize_container(char **bucket, uint32_t array_offset, uint32_t required_increase)
{
#ifdef EXACT_FIT
char *tmp = malloc(array_offset + required_increase + BUCKET_OVERHEAD );
if(tmp == NULL) fatal (MEMORY_EXHAUSTED);
/* copy the existing array into the new one */
if(array_offset==0)
{
memcpy(tmp, *bucket, array_offset+BUCKET_OVERHEAD);
}
else
{
/* once extra byte to transfer the end-of-container flag */
memcpy(tmp, *bucket, array_offset+1+BUCKET_OVERHEAD);
}
/* free the old array and assign the container pointer to the new array */
free( *bucket );
*bucket = tmp;
/* else grow the array in blocks or pages */
#else
if(array_offset==0)
{
/* otherwise, grow the array with paging */
/* if the required space is less than 32 bytes, than allocate a 32 byte block */
if(required_increase + BUCKET_OVERHEAD <= _32_BYTES)
{
char *tmp = malloc(_32_BYTES);
if(tmp == NULL) fatal (MEMORY_EXHAUSTED);
memcpy(tmp, *bucket, array_offset+BUCKET_OVERHEAD);
/* free the old array and assign the container pointer to the new array */
free( *bucket );
*bucket = tmp;
}
/* otherwise, allocate as many 64-byte blocks as required */
else
{
uint32_t number_of_blocks = ((int)( (required_increase - 1 + BUCKET_OVERHEAD) >> 6)+1);
char *tmp = malloc(number_of_blocks << 6);
if(tmp == NULL) fatal (MEMORY_EXHAUSTED);
memcpy(tmp, *bucket, array_offset+BUCKET_OVERHEAD);
/* free the old array and assign the container pointer to the new array */
free( *bucket );
*bucket = tmp;
}
return;
}
uint32_t old_array_size = array_offset + 1 + BUCKET_OVERHEAD;
uint32_t new_array_size = (array_offset + required_increase + BUCKET_OVERHEAD);
/* if the new array size can fit within the previously allocated 32-byte block,
* then no memory needs to be allocated.
*/
if ( old_array_size <= _32_BYTES && new_array_size <= _32_BYTES )
{
return;
}
/* if the new array size can fit within a 64-byte block, then allocate only a
* single 64-byte block.
*/
else if ( old_array_size <= _32_BYTES && new_array_size <= _64_BYTES)
{
char *tmp = malloc(_64_BYTES);
if(tmp == NULL) fatal (MEMORY_EXHAUSTED);
/* copy the old array into the new */
memcpy(tmp, *bucket, old_array_size);
/* delete the old array */
free( *bucket );
/* assign the container pointer to the new array */
*bucket = tmp;
return;
}
/* if the new array size can fit within a 64-byte block, then return */
else if (old_array_size <= _64_BYTES && new_array_size <= _64_BYTES )
{
return;
}
/* resize the current array by as many 64-byte blocks as required */
else
{
uint32_t number_of_blocks = ((int)( (old_array_size-1) >> 6) + 1);
uint32_t number_of_new_blocks = ((int)( (new_array_size-1) >> 6) + 1);
if(number_of_new_blocks > number_of_blocks)
{
/* allocate as many blocks as required */
char *tmp = malloc(number_of_new_blocks << 6);
if (tmp==NULL) fatal(MEMORY_EXHAUSTED);
/* copy the old array, a word at a time, into a new array */
node_cpy( (uint32_t *) tmp, (uint32_t *) *bucket, number_of_blocks<<6);
/* free the old array */
free( *bucket );
/* assign the container pointer to the new array */
*bucket = tmp;
}
}
#endif
}
/* need to implement if it runs of out packs. See source of HAT-trie for more details. */
char * new_trie()
{
if(trie_counter == trie_pack_entry_capacity)
{
trie_pack_idx++;
assert(trie_pack_idx<128);
*(trie_pack+trie_pack_idx) = calloc(trie_pack_entry_capacity*TRIE_SIZE, sizeof(char));
trie_counter=0;
}
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;
}
/* initalize the standard-chain burst trie */
void 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;
}
/* add a string to a bucket or container, return 1 on success, 0 otherwise */
int add_to_bucket(char *bucket,
char path,
char *query_start,
char **c_trie)
{
char *array, *array_start, *query;
char *word_start;
char *tmp=*(c_trie+path);
int num=0;
char *consumed=0;
uint32_t array_offset;
uint32_t register len;
#ifdef MTF_ON
char *word_start_with_len;
#endif
array = (char *)(bucket+BUCKET_OVERHEAD);
consumed = (char *)(bucket+CONSUMED);
array_start=array;
query = query_start;
if(*consumed == 0) { *consumed = 1; goto insert;}
/* scan the container until the null character is encountered */
while( *array != '\0' )
{
query = query_start;
#ifdef MTF_ON
word_start_with_len=array;
#endif
/*
* strings are length-encoded. The first byte of each string is its length. If however,
* the most significant bit is set, this means that the length of the string is greater than
* 127 characters, and so, the next byte also represents the string length. In which case, the
* first byte is moved into an integer, followed by the second byte, thus forming the string length.
*/
if( ( len = (unsigned int) *array ) >= 128 )
{
len = (unsigned int) ( ( *array & 0x7f ) << 8 ) | (unsigned int) ( *(++array) & 0xff );
}
/*
* once the length has been acquired, move to the next byte which represents the
* first character of the string or the end-of-bucket flag (a null character)
*/
array++;
word_start = array;
/*
* compare the query to the word in the array, a character a time until a mismatch
* occurs or a null character is encountered
*/
for (; *query != '\0' && *query == *array; query++, array++);
if ( *query == '\0' && (array-word_start) == len )
{
#ifdef MTF_ON
/* if the word found is the first word in the container, then we dont need to move-to-front */
if( word_start_with_len != array_start /* && (word_start_with_len - array_start) > CACHE_LINE_SIZE */)
{
/* otherwise move the word found to the start of the array, according to its length */
if( len < 128 )
{
/* slide the start of the array to the right by the length of the word and a byte (its length),
* then copy the query to the start of the array, along with its length to complete the move-to-front
* process
*/
memmove(array_start + len + 1, array_start, (word_start_with_len-array_start));
memcpy (array_start + 1, query_start, len);
*array_start = (char) len;
}
else
{
/* move the string to the start of the array, plus 2 bytes for its length */
memmove(array_start + len + 2, array_start, (word_start_with_len-array_start));
memcpy (array_start + 2, query_start, len);
/* store the length of the string, which is broken up into two byte */
*array_start = (char) ( len >> 8 ) | 0x80;
*(array_start+1) = (char) ( len ) & 0xff;
}
mtf_counter++;
}
#endif
return 0;
}
/* a mismatch occured during the string comparison phase. skip to the next word */
array = word_start + len;
num++;
}
insert:
/* get the length of the string to insert */
for(; *query != '\0'; query++);
len = query - query_start;
/* get the size of the array */
array_offset = array-array_start;
/* resize the array to fit the new string */
resize_container((char **)(c_trie+path), array_offset, ( len < 128 ) ? len+2 : len+3);
/* reinitialize the array pointers, the point to the end of the array */
array = (char *)( *(c_trie+path) + BUCKET_OVERHEAD);
array_start=array;
array += array_offset;
/* if the length of the string is less than 128 characters, then only a single byte is
* needed to store its length
*/
if( len < 128 )
{
*array = (char) len;
}
else
{
*array = (char) ( len >> 8) | 0x80;
*(++array) = (char) ( len ) & 0xff;
}
array++;
/* copy the string into the array */
while( *query_start != '\0')
{
*array++ = *query_start++;
}
/* make sure the array is null terminated */
*array='\0';
num++;
return num;
}
int add_to_bucket_no_search(char *bucket,
char path,
char *query_start,
char **c_trie)
{
char *array, *array_start, *query;
char *tmp=*(c_trie+path);
char *consumed=0;
uint32_t array_offset;
uint32_t register len;
array = (char *)(bucket+BUCKET_OVERHEAD);
consumed = (char *)(bucket+CONSUMED);
array_start=array;
query = query_start;
if(*consumed == 0) { *consumed = 1; goto insert; }
/* scan the container until you reach the null (end-of-bucket) character */
while( *array != '\0')
{
if( ( len = (unsigned int) *array ) >= 128 )
{
len = (unsigned int) ( ( *array & 0x7f ) << 8 ) | (unsigned int) ( *(++array) & 0xff );
}
array = (array+1) + len;
}
insert:
/* get the length of the string to insert */
for(; *query != '\0'; query++);
len = query - query_start;
/* get the size of the array */
array_offset = array-array_start;
/* resize the array to fit the new string */
resize_container((char **)(c_trie+path), array_offset, ( len < 128 ) ? len+2 : len+3);
/* reinitialize the array pointers, the point to the end of the array */
array = (char *)( *(c_trie+path) + BUCKET_OVERHEAD);
array_start=array;
array += array_offset;
/* if the length of the string is less than 128 characters, then only a single byte is
* needed to store its length
*/
if( len < 128 )
{
*array = (char) len;
}
/* if the length of the string is greater than 128 characters, then two bytes are required to
* store the string
*/
else
{
*array = (char) ( len >> 8) | 0x80;
*(++array) = (char) ( len ) & 0xff;
}
array++;
/* copy the string into the array */
while( *query_start != '\0')
{
*array++ = *query_start++;
}
/* make sure the array is null terminated */
*array='\0';
return 1;
}
int add_to_bucket_no_search_with_len(char *bucket,
char path,
char *query_start,
char **c_trie, int query_len)
{
char *array, *array_start;
char *tmp=*(c_trie+path);
uint32_t len;
char *consumed=0;
uint32_t array_offset;
array = (char *)(bucket+BUCKET_OVERHEAD);
consumed = (char *)(bucket+CONSUMED);
array_start=array;
if(*consumed == 0) { *consumed = 1; goto insert; }
/* scan the container until you reach the null (end-of-bucket) character */
while( *array != '\0')
{
if( ( len = (unsigned int) *array ) >= 128 )
{
len = (unsigned int) ( ( *array & 0x7f ) << 8 ) | (unsigned int) ( *(++array) & 0xff );
}
array = (array+1) + len;
}
insert:
/* get the length of the string to insert */
len = query_len;
/* get the size of the array */
array_offset = array-array_start;
/* resize the array to fit the new string */
resize_container((char **)(c_trie+path), array_offset, ( len < 128 ) ? len+2 : len+3);
/* reinitialize the array pointers, the point to the end of the array */
array = (char *)( *(c_trie+path) + BUCKET_OVERHEAD);
array_start=array;
array += array_offset;
/* if the length of the string is less than 128 characters, then only a single byte is
* needed to store its length
*/
if( len < 128 )
{
*array = (char) len;
}
/* if the length of the string is greater than 128 characters, then two bytes are required to
* store the string
*/
else
{
*array = (char) ( len >> 8) | 0x80;
*(++array) = (char) ( len ) & 0xff;
}
array++;
/* copy the string into the array */
while( len!=0 )
{
*array++ = *query_start++;
len--;
}
/* make sure the array is null terminated */
*array = '\0';
return 1;
}
/*
* checks whether a string exists in a container. 1 is returned
* if the string is found, 0 otherwise.
*/
int bucket_search(char *bucket, char *query_start)
{
char *array, *query;
char *word_start;
uint32_t register len=0;
char *consumed;
#ifdef MTF_ON
char *array_start;
char *word_start_with_len;
#endif
array = (char *)(bucket+BUCKET_OVERHEAD);
consumed = (char *)(bucket+CONSUMED);
if(*consumed == 0) return 0;
#ifdef MTF_ON
array_start=array;
#endif
loop:
query = query_start;
#ifdef MTF_ON
word_start_with_len=array;
#endif
/*
* strings are length-encoded. The first byte of each string is its length. If however,
* the most significant bit is set, this means that the length of the string is greater than
* 127 characters, and so, the next byte also represents the string length. In which case, the
* first byte is moved into an integer, followed by the second byte, thus forming the string length.
*/
if( (len = (unsigned int) *array ) >= 128)
{
len = (unsigned int) ( ( *array & 0x7f ) << 8 ) | (unsigned int) ( *(++array) & 0xff );
}
/*
* once the length has been acquired, move to the next byte which represents the
* first character of the string or the end-of-bucket flag (a null character)
*/
array++;
word_start = array;
/*
* compare the query to the word in the array, a character a time until a mismatch
* occurs or a null character is encountered
*/
for (; *query != '\0' && *query == *array; query++, array++);
/*
* if every character of the query string was compared and the length of
* the query matches the length of the string compared, then its a match
*/
if ( *query == '\0' && (array-word_start) == len )
{
#ifdef MTF_ON
/* if the word found is the first word in the container, then we dont need to move-to-front */
if( word_start_with_len != array_start /* && (word_start_with_len - array_start) > CACHE_LINE_SIZE */ )
{
/* otherwise move the word found to the start of the array, according to its length */
if( len < 128 )
{
/* slide the start of the array to the right by the length of the word and a byte (its length),
* then copy the query to the start of the array, along with its length to complete the move-to-front
* process
*/
memmove(array_start + len + 1, array_start, (word_start_with_len-array_start));
memcpy (array_start + 1, query_start, len);
*array_start = (char) ( len ) & 0xff;
}
else
{
/* move the string to the start of the array, plus 2 bytes for its length */
memmove(array_start + len + 2, array_start, (word_start_with_len-array_start));
memcpy (array_start + 2, query_start, len);
/* store the length of the string, which is broken up into two byte */
*array_start = (char) ( len >> 8 ) | 0x80;
*(array_start+1) = (char) ( len ) & 0xff;
}
mtf_counter++;
}
#endif
return 1;
}
/* a mismatch occured during the string comparison phase. skip to the next word */
array = word_start + len;
/* if the next character is the end-of-bucket flag, then the search failed */
if ( *array == '\0')
{
return 0;
}
goto loop;
}
/* 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;
register int result=0;
/* 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 */
x=malloc(BUCKET_OVERHEAD);
if (x==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.
*/
*(x+STRING_EXHAUST_CONTAINER)=0;
*(x+CONSUMED)=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, path, word, c_trie);
}
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-1), word, c_trie)) )
{
x = *(c_trie + *(word-1));
/* 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;
int i=0;
int j=0;
double mem=0;
double insert_real_time=0.0, search_real_time=0.0;
/* get the container limit */
BUCKET_SIZE_LIM = atoi(argv[1]);
/* make sure the user supplied a valid bucket size */
if (BUCKET_SIZE_LIM < 64 || BUCKET_SIZE_LIM > 512)
{
puts("Keep bucket size between 128 and 256 strings, inclusive");
exit(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("Array-burst-trie %.2f %.2f %.2f %.2f %d %d %d --- Dr. Nikolas Askitis, Copyright @ 2016, [email protected] ", vsize / (double) TO_MB,
mem, insert_real_time, search_real_time, get_inserted(),
get_found(), BUCKET_SIZE_LIM);
#ifdef PAGING
printf("%s", "Paging ");
#endif
#ifdef EXACT_FIT
printf("%s", "Exact-fit ");
#endif
#ifdef MTF_ON
printf(" MTF_ON");
#endif
puts("");
return 0;
}
void burst_container(char *bucket, char path, char **c_trie)
{
char *n_trie;
/* allocate a new trie node as a parent */
n_trie = new_trie();
*(c_trie+path)=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)
{
char *array = (char *)(bucket+BUCKET_OVERHEAD), *word_start;
char *x;
uint32_t len;
/* scan the container until you reach the end-of-container (null) flag */