-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathHashTable.hpp
269 lines (201 loc) · 6.06 KB
/
HashTable.hpp
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
/*
Copyright (c) 2012 Christopher A. Taylor. 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.
* Neither the name of LibCat nor the names of its contributors may be used
to endorse or promote products derived from this software without
specific prior written permission.
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.
*/
#ifndef CAT_HASH_TABLE_HPP
#define CAT_HASH_TABLE_HPP
#include <cat/lang/Strings.hpp>
#include <cat/lang/LinkedLists.hpp>
#include <cat/lang/MergeSort.hpp>
namespace cat {
static const int MAX_HASH_KEY_CHARS = 256;
//// Free functions
int SanitizeKeyStringCase(const char *key, /*char *sanitized_string,*/ char *case_string);
int SanitizeKeyString(const char *key, char *sanitized_string);
int SanitizeKeyRangeString(const char *key, int len, char *sanitized_string);
//// SanitizedKey
class CAT_EXPORT SanitizedKey
{
char _key[MAX_HASH_KEY_CHARS+1];
int _len;
u32 _hash;
public:
SanitizedKey(const char *key);
SanitizedKey(const char *key, int len);
CAT_INLINE u32 Hash() const { return _hash; }
CAT_INLINE const char *Key() const { return _key; }
CAT_INLINE int Length() const { return _len; }
};
//// KeyAdapter
class CAT_EXPORT KeyAdapter
{
const char *_key;
int _len;
u32 _hash;
public:
CAT_INLINE KeyAdapter::KeyAdapter(SanitizedKey &key)
{
_key = key.Key();
_len = key.Length();
_hash = key.Hash();
}
CAT_INLINE KeyAdapter(const char *key, int len, u32 hash)
{
_key = key;
_len = len;
_hash = hash;
}
CAT_INLINE u32 Hash() const { return _hash; }
CAT_INLINE const char *Key() const { return _key; }
CAT_INLINE int Length() const { return _len; }
};
//// HashKey
class CAT_EXPORT HashKey
{
protected:
NulTermFixedStr<MAX_HASH_KEY_CHARS> _key;
int _len;
u32 _hash;
public:
HashKey(const KeyAdapter &key);
//CAT_INLINE virtual ~HashKey() {}
CAT_INLINE const char *Key() { return _key; }
CAT_INLINE int Length() { return _len; }
CAT_INLINE u32 Hash() { return _hash; }
CAT_INLINE bool operator==(const KeyAdapter &key)
{
return _hash == key.Hash() &&
_len == key.Length() &&
memcmp(_key, key.Key(), _len) == 0;
}
};
//// HashValue
class CAT_EXPORT HashValue
{
protected:
NulTermFixedStr<MAX_HASH_KEY_CHARS> _value;
public:
CAT_INLINE HashValue() {}
HashValue(const char *key, int len);
//CAT_INLINE virtual ~HashValue() {}
CAT_INLINE void ClearValue() { _value.Clear(); }
CAT_INLINE int GetValueInt() { return atoi(_value); }
CAT_INLINE const char *GetValueStr() { return _value; }
CAT_INLINE void SetValueRangeStr(const char *value, int len)
{
_value.SetFromRangeString(value, len);
}
CAT_INLINE void SetValueStr(const char *value)
{
_value.SetFromNulTerminatedString(value);
}
CAT_INLINE void SetValueInt(int ivalue)
{
_value.SetFromInteger(ivalue);
}
};
//// HashItem
class CAT_EXPORT HashItem : public HashKey, public HashValue, public SListItem, public SortableItem<HashItem, u32>
{
friend class HashTableBase;
public:
HashItem(const KeyAdapter &key);
//CAT_INLINE virtual ~HashItem() {}
template<class T>
CAT_INLINE void Unwrap(T *&to)
{
to = static_cast<T*>( this );
}
};
//// HashTable
class CAT_EXPORT HashTableBase
{
friend class Iterator;
CAT_NO_COPY(HashTableBase);
static const u32 PREALLOC = 64;
static const u32 GROW_THRESH = 2;
static const u32 GROW_RATE = 2;
u32 _allocated, _used;
SListForward *_buckets;
typedef SListForward::Iterator<HashItem> iter;
bool Grow();
protected:
CAT_INLINE virtual HashItem *Allocate(const KeyAdapter &key)
{
return new HashItem(key);
}
public:
HashTableBase();
~HashTableBase();
HashItem *Lookup(const KeyAdapter &key); // Returns 0 if key not found
HashItem *Create(const KeyAdapter &key); // Creates if it does not exist yet
// Iterator
class CAT_EXPORT Iterator
{
u32 _remaining;
SListForward *_bucket;
iter _ii;
void IterateNext();
public:
Iterator(HashTableBase &head);
CAT_INLINE operator HashItem *()
{
return _ii;
}
CAT_INLINE HashItem *operator->()
{
return _ii;
}
CAT_INLINE Iterator &operator++() // pre-increment
{
IterateNext();
return *this;
}
CAT_INLINE Iterator &operator++(int) // post-increment
{
return ++*this;
}
};
};
template<class T>
class CAT_EXPORT HashTable : protected HashTableBase
{
CAT_NO_COPY(HashTable);
CAT_INLINE HashItem *Allocate(const KeyAdapter &key)
{
return new T(key);
}
public:
CAT_INLINE HashTable() {}
CAT_INLINE ~HashTable() {}
CAT_INLINE T *Lookup(const KeyAdapter &key)
{
return static_cast<T*>( HashTableBase::Lookup(key) );
}
CAT_INLINE T *Create(const KeyAdapter &key)
{
return static_cast<T*>( HashTableBase::Create(key) );
}
};
} // namespace cat
#endif // CAT_HASH_TABLE_HPP