-
Notifications
You must be signed in to change notification settings - Fork 0
/
barser_index_rbt.c
161 lines (123 loc) · 3.85 KB
/
barser_index_rbt.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
/* BSD 2-Clause License
*
* Copyright (c) 2018, Wojciech Owczarek
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/**
* @file rbt_index.c
* @date Sun Apr15 13:40:12 2018
*
* @brief A red-black tree based index implementation for barser
*
*/
#include <stdint.h>
#include <stdio.h>
#include "rbt/rbt.h"
#include "xalloc.h"
#include "barser.h"
/*
* index management wrappers for rbt
*/
/* create index */
void* bsIndexCreate() {
return rbCreate();
}
static void bsIndexFreeCallback(void* head) {
BsNode* node = head;
BsNode* tmp;
while(node != NULL) {
tmp = node;
node = node->_indexNext;
bsFreeNode(tmp);
}
}
/* free index */
void bsIndexFree(void* index) {
((RbTree*)index)->freeCallback = bsIndexFreeCallback;
rbFree(index);
}
/* retrieve node list from index */
void* bsIndexGet(void *index, const uint32_t hash) {
RbNode *ret = rbSearch(((RbTree*)index)->root, hash);
if(ret != NULL) {
return ret->value;
}
return NULL;
}
/* insert node into index */
void bsIndexPut(BsDict *dict, BsNode* node) {
/* rbInsert returns new tree node on insertion, or existing node if key exists */
RbNode* inode = rbInsert((RbTree*)(dict->index), node->hash);
if(inode == NULL) {
fprintf(stderr, "*** %s(): dictionary \"%s\", rbInsert() returned NULL, this should not happen, index is broken ***\n",
__func__, dict->name);
exit(EXIT_ALLOCERR);
}
#ifdef COLL_DEBUG
if(inode->value != NULL) {
BsNode *n = inode->value;
#include <stdio.h>
BS_GETNP(n, p1);
BS_GETNP(node, p2);
fprintf(stderr, "*** hash collision: '%s' and '%s' share hash 0x%08x\n", p1, p2, node->hash);
dict->collcount++;
/*
* collision count is maintained in the first node in list,
* this is enough for simple hash collision tracking.
*/
n->collcount++;
dict->maxcoll = max(dict->maxcoll, n->collcount);
}
#endif /* COLL_DEBUG */
/* insert at the top of the list */
node->_indexNext = inode->value;
inode->value = node;
node->flags |= BS_INDEXED;
}
/* delete node from index */
void bsIndexDelete(void *index, BsNode* node) {
RbTree *tree = index;
BsNode *n;
BsNode *prev = NULL;
RbNode *inode = rbSearch(tree->root, node->hash);
if(inode != NULL) {
for(n = inode->value; n != NULL; n = n->_indexNext) {
if(n == node) {
break;
}
prev = n;
}
if(n != NULL) {
if(prev == NULL) {
/* this index node is now empty, delete it */
rbDeleteNode(tree, inode);
} else {
prev->_indexNext = n->_indexNext;
}
n->_indexNext = NULL;
/* clear indexed flag */
n->flags &= ~BS_INDEXED;
}
}
}