summaryrefslogtreecommitdiff
path: root/set.c
blob: 66ae2556705a8c7b258c341d44f6d1f2266331f8 (plain)
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
/*
 * Copyright © 2009 Intel Corporation
 * Copyright © 1988-2004 Keith Packard and Bart Massey.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 * IN THE SOFTWARE.
 *
 * Except as contained in this notice, the names of the authors
 * or their institutions shall not be used in advertising or
 * otherwise to promote the sale, use or other dealings in this
 * Software without prior written authorization from the
 * authors.
 *
 * Authors:
 *    Eric Anholt <eric@anholt.net>
 *    Keith Packard <keithp@keithp.com>
 */

#include <assert.h>
#include <stdlib.h>

#include "set.h"

#define ARRAY_SIZE(array) (sizeof(array) / sizeof(array[0]))

/*
 * From Knuth -- a good choice for hash/rehash values is p, p-2 where
 * p and p-2 are both prime.  These tables are sized to have an extra 10%
 * free to avoid exponential performance degradation as the hash table fills
 */

static const uint32_t deleted_key_value;
static const void *deleted_key = &deleted_key_value;

static const struct {
   uint32_t max_entries, size, rehash;
} hash_sizes[] = {
    { 2,		5,		3	  },
    { 4,		7,		5	  },
    { 8,		13,		11	  },
    { 16,		19,		17	  },
    { 32,		43,		41        },
    { 64,		73,		71        },
    { 128,		151,		149       },
    { 256,		283,		281       },
    { 512,		571,		569       },
    { 1024,		1153,		1151      },
    { 2048,		2269,		2267      },
    { 4096,		4519,		4517      },
    { 8192,		9013,		9011      },
    { 16384,		18043,		18041     },
    { 32768,		36109,		36107     },
    { 65536,		72091,		72089     },
    { 131072,		144409,		144407    },
    { 262144,		288361,		288359    },
    { 524288,		576883,		576881    },
    { 1048576,		1153459,	1153457   },
    { 2097152,		2307163,	2307161   },
    { 4194304,		4613893,	4613891   },
    { 8388608,		9227641,	9227639   },
    { 16777216,		18455029,	18455027  },
    { 33554432,		36911011,	36911009  },
    { 67108864,		73819861,	73819859  },
    { 134217728,	147639589,	147639587 },
    { 268435456,	295279081,	295279079 },
    { 536870912,	590559793,	590559791 },
    { 1073741824,	1181116273,	1181116271},
    { 2147483648ul,	2362232233ul,	2362232231ul}
};

static int
entry_is_free(const struct set_entry *entry)
{
	return entry->key == NULL;
}

static int
entry_is_deleted(const struct set_entry *entry)
{
	return entry->key == deleted_key;
}

static int
entry_is_present(const struct set_entry *entry)
{
	return entry->key != NULL && entry->key != deleted_key;
}

struct set *
set_create(uint32_t (*hash_function)(const void *key),
	   int key_equals_function(const void *a,
				   const void *b))
{
	struct set *set;

	set = malloc(sizeof(*set));
	if (set == NULL)
		return NULL;

	set->size_index = 0;
	set->size = hash_sizes[set->size_index].size;
	set->rehash = hash_sizes[set->size_index].rehash;
	set->max_entries = hash_sizes[set->size_index].max_entries;
	set->hash_function = hash_function;
	set->key_equals_function = key_equals_function;
	set->table = calloc(set->size, sizeof(*set->table));
	set->entries = 0;
	set->deleted_entries = 0;

	if (set->table == NULL) {
		free(set);
		return NULL;
	}

	return set;
}

/**
 * Frees the given set.
 *
 * If delete_function is passed, it gets called on each entry present before
 * freeing.
 */
void
set_destroy(struct set *set, void (*delete_function)(struct set_entry *entry))
{
	if (!set)
		return;

	if (delete_function) {
		struct set_entry *entry;

		set_foreach(set, entry) {
			delete_function(entry);
		}
	}
	free(set->table);
	free(set);
}

/* Does the set contain an entry with the given key.
 */
bool
set_contains(struct set *set, const void *key)
{
	struct set_entry *entry;

	entry = set_search(set, key);

	return entry != NULL;
}

/**
 * Finds a set entry with the given key.
 *
 * Returns NULL if no entry is found.
 */
struct set_entry *
set_search(struct set *set, const void *key)
{
	uint32_t hash = set->hash_function(key);

	return set_search_pre_hashed (set, hash, key);
}

/**
 * Finds a set entry with the given key and hash of that key.
 *
 * Returns NULL if no entry is found.
 */
struct set_entry *
set_search_pre_hashed(struct set *set, uint32_t hash, const void *key)
{
	uint32_t hash_address;

	hash_address = hash % set->size;
	do {
		uint32_t double_hash;

		struct set_entry *entry = set->table + hash_address;

		if (entry_is_free(entry)) {
			return NULL;
		} else if (entry_is_present(entry) && entry->hash == hash) {
			if (set->key_equals_function(key, entry->key)) {
				return entry;
			}
		}

		double_hash = 1 + hash % set->rehash;

		hash_address = (hash_address + double_hash) % set->size;
	} while (hash_address != hash % set->size);

	return NULL;
}

static void
set_rehash(struct set *set, int new_size_index)
{
	struct set old_set;
	struct set_entry *table, *entry;

	if (new_size_index >= ARRAY_SIZE(hash_sizes))
		return;

	table = calloc(hash_sizes[new_size_index].size, sizeof(*set->table));
	if (table == NULL)
		return;

	old_set = *set;

	set->table = table;
	set->size_index = new_size_index;
	set->size = hash_sizes[set->size_index].size;
	set->rehash = hash_sizes[set->size_index].rehash;
	set->max_entries = hash_sizes[set->size_index].max_entries;
	set->entries = 0;
	set->deleted_entries = 0;

	set_foreach(&old_set, entry) {
		set_add_pre_hashed(set, entry->hash, entry->key);
	}

	free(old_set.table);
}

/**
 * Inserts the key into the set.
 *
 * Note that insertion may rearrange the set on a resize or rehash, so
 * previously found set_entry pointers are no longer valid after this
 * function.
 */
struct set_entry *
set_add(struct set *set, const void *key)
{
	uint32_t hash = set->hash_function(key);

	/* Make sure nobody tries to add one of the magic values as a
	 * key. If you need to do so, either do so in a wrapper, or
	 * store keys with the magic values separately in the struct
	 * set.
	 */
	assert(key != NULL);

	return set_add_pre_hashed(set, hash, key);
}

/**
 * Inserts the key with the given hash into the set.
 *
 * Note that insertion may rearrange the set on a resize or rehash, so
 * previously found set_entry pointers are no longer valid after this
 * function.
 */
struct set_entry *
set_add_pre_hashed(struct set *set, uint32_t hash, const void *key)
{
	uint32_t hash_address;
	struct set_entry *available_entry = NULL;

	if (set->entries >= set->max_entries) {
		set_rehash(set, set->size_index + 1);
	} else if (set->deleted_entries + set->entries >= set->max_entries) {
		set_rehash(set, set->size_index);
	}

	hash_address = hash % set->size;
	do {
		struct set_entry *entry = set->table + hash_address;
		uint32_t double_hash;

		if (!entry_is_present(entry)) {
			/* Stash the first available entry we find */
			if (available_entry == NULL)
				available_entry = entry;
			if (entry_is_free(entry))
				break;
		}

		/* Implement replacement when another insert happens
		 * with a matching key.  This is a relatively common
		 * feature of hash tables, with the alternative
		 * generally being "insert the new value as well, and
		 * return it first when the key is searched for".
		 *
		 * Note that the set doesn't have a delete callback.
		 * If freeing of old keys is required to avoid memory leaks,
		 * perform a search before inserting.
		 */
		if (!entry_is_deleted(entry) &&
		    entry->hash == hash &&
		    set->key_equals_function(key, entry->key)) {
			entry->key = key;
			return entry;
		}

		double_hash = 1 + hash % set->rehash;

		hash_address = (hash_address + double_hash) % set->size;
	} while (hash_address != hash % set->size);

	if (available_entry) {
		if (entry_is_deleted(available_entry))
			set->deleted_entries--;
		available_entry->hash = hash;
		available_entry->key = key;
		set->entries++;
		return available_entry;
	}

	/* We could hit here if a required resize failed. An unchecked-malloc
	 * application could ignore this result.
	 */
	return NULL;
}

/**
 * This function searches for, and removes an entry from the set.
 *
 * If the caller has previously found a struct set_entry pointer,
 * (from calling set_search or remembering it from set_add), then
 * set_remove_entry can be called instead to avoid an extra search.
 */
void
set_remove(struct set *set, const void *key)
{
	struct set_entry *entry;

	entry = set_search(set, key);

	set_remove_entry(set, entry);
}

/**
 * This function deletes the set given set entry.
 *
 * Note that deletion doesn't otherwise modify the set, so an
 * iteration over the set deleting entries is safe.
 */
void
set_remove_entry(struct set *set, struct set_entry *entry)
{
	if (!entry)
		return;

	entry->key = deleted_key;
	set->entries--;
	set->deleted_entries++;
}

/**
 * This function is an iterator over the set.
 *
 * Pass in NULL for the first entry, as in the start of a for loop.
 * Note that an iteration over the set is O(table_size) not
 * O(entries).
 */
struct set_entry *
set_next_entry(struct set *set, struct set_entry *entry)
{
	if (entry == NULL)
		entry = set->table;
	else
		entry = entry + 1;

	for (; entry != set->table + set->size; entry++) {
		if (entry_is_present(entry)) {
			return entry;
		}
	}

	return NULL;
}

struct set_entry *
set_random_entry(struct set *set,
		 int (*predicate)(struct set_entry *entry))
{
	struct set_entry *entry;
	uint32_t i = random() % set->size;

	if (set->entries == 0)
		return NULL;

	for (entry = set->table + i; entry != set->table + set->size; entry++) {
		if (entry_is_present(entry) &&
		    (!predicate || predicate(entry))) {
			return entry;
		}
	}

	for (entry = set->table; entry != set->table + i; entry++) {
		if (entry_is_present(entry) &&
		    (!predicate || predicate(entry))) {
			return entry;
		}
	}

	return NULL;
}