forked from yaosj2k/dnsforwarder
-
Notifications
You must be signed in to change notification settings - Fork 9
/
simpleht.c
executable file
·183 lines (142 loc) · 4.18 KB
/
simpleht.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
#include <string.h>
#include "simpleht.h"
typedef struct _Sht_Slot{
int32_t Next;
} Sht_Slot;
static const Sht_Slot EmptySlot = {-1};
int SimpleHT_Init(SimpleHT *ht, int DataLength, size_t MaxLoadFactor, uint32_t (*HashFunction)(const char *, uint32_t))
{
int loop;
if( Array_Init(&(ht->Slots), sizeof(Sht_Slot), 7, FALSE, NULL) != 0 )
{
return -1;
}
for( loop = 0; loop != 7; ++loop )
{
Array_PushBack(&(ht->Slots), &EmptySlot, NULL);
}
if( Array_Init(&(ht->Nodes), sizeof(Sht_NodeHead) + DataLength, 0, FALSE, NULL) != 0 )
{
Array_Free(&(ht->Slots));
return -2;
}
ht->MaxLoadFactor = MaxLoadFactor;
ht->LeftSpace = 7 * MaxLoadFactor;
ht->HashFunction = HashFunction;
return 0;
}
static int SimpleHT_AddToSlot(SimpleHT *ht, Sht_NodeHead *Node, int NodeSubscript)
{
int NumberOfSlots = Array_GetUsed(&(ht->Slots));
Sht_Slot *TheSlot;
TheSlot = Array_GetBySubscript(&(ht->Slots), Node->HashValue % NumberOfSlots);
if( TheSlot == NULL )
{
return -1;
}
Node->Next = TheSlot->Next;
TheSlot->Next = NodeSubscript;
return 0;
}
static int SimpleHT_Expand(SimpleHT *ht)
{
int NumberOfSlots_Old = Array_GetUsed(&(ht->Slots));
int NumberOfNodes = Array_GetUsed(&(ht->Nodes));
Sht_NodeHead *nh = NULL;
int loop;
for( loop = 0; loop < NumberOfSlots_Old; ++loop )
{
if( Array_PushBack(&(ht->Slots), &EmptySlot, NULL) < 0 )
{
return -1;
}
}
memset(ht->Slots.Data, -1, NumberOfSlots_Old * ht->Slots.DataLength);
for( loop = 0; loop < NumberOfNodes; ++loop )
{
nh = Array_GetBySubscript(&(ht->Nodes), loop);
SimpleHT_AddToSlot(ht, nh, loop);
}
return 0;
}
const char *SimpleHT_Add(SimpleHT *ht, const char *Key, int KeyLength, const char *Data, const uint32_t *HashValue)
{
Sht_NodeHead *New;
int NewSubscript;
if( ht->LeftSpace == 0 )
{
int NumberOfSlots_Old = Array_GetUsed(&(ht->Slots));
if( SimpleHT_Expand(ht) != 0 )
{
return NULL;
}
ht->LeftSpace = NumberOfSlots_Old * ht->MaxLoadFactor;
}
NewSubscript = Array_PushBack(&(ht->Nodes), NULL, NULL);
if( NewSubscript < 0 )
{
return NULL;
}
New = Array_GetBySubscript(&(ht->Nodes), NewSubscript);
if( HashValue == NULL )
{
New->HashValue = (ht->HashFunction)(Key, KeyLength);
} else {
New->HashValue = *HashValue;
}
memcpy(New + 1, Data, ht->Nodes.DataLength - sizeof(Sht_NodeHead));
SimpleHT_AddToSlot(ht, New, NewSubscript);
--(ht->LeftSpace);
return (const char *)(New + 1);
}
const char *SimpleHT_Find(SimpleHT *ht, const char *Key, int KeyLength, const uint32_t *HashValue, const char *Start)
{
int NumberOfSlots = Array_GetUsed(&(ht->Slots));
Sht_NodeHead *Node;
if( NumberOfSlots <= 0 )
{
return NULL;
}
if( Start != NULL )
{
Node = Array_GetBySubscript(&(ht->Nodes), (((Sht_NodeHead *)Start) - 1)->Next);
} else {
Sht_Slot *TheSlot;
int SlotNumber;
if( HashValue == NULL )
{
SlotNumber = (ht->HashFunction)(Key, KeyLength) % NumberOfSlots;
} else {
SlotNumber = (*HashValue) % NumberOfSlots;
}
TheSlot = Array_GetBySubscript(&(ht->Slots), SlotNumber);
if( TheSlot == NULL )
{
return NULL;
}
Node = Array_GetBySubscript(&(ht->Nodes), TheSlot->Next);
}
if( Node == NULL )
{
return NULL;
}
return (const char *)(Node + 1);
}
const char *SimpleHT_Enum(SimpleHT *ht, int32_t *Start)
{
const Array *Nodes = &(ht->Nodes);
const Sht_NodeHead *Node;
Node = Array_GetBySubscript(Nodes, *Start);
if( Node != NULL )
{
++(*Start);
return (const char *)(Node + 1);
} else {
return NULL;
}
}
void SimpleHT_Free(SimpleHT *ht)
{
Array_Free(&(ht->Slots));
Array_Free(&(ht->Nodes));
}