darling-Libnotify/table.in.c
2022-11-20 18:42:59 -08:00

210 lines
4.5 KiB
C

/*
* Copyright (c) 2018 Apple Inc. All rights reserved.
*
* @APPLE_LICENSE_HEADER_START@
*
* This file contains Original Code and/or Modifications of Original Code
* as defined in and that are subject to the Apple Public Source License
* Version 2.0 (the 'License'). You may not use this file except in
* compliance with the License. Please obtain a copy of the License at
* http://www.opensource.apple.com/apsl/ and read it before using this
* file.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
* INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
* Please see the License for the specific language governing rights and
* limitations under the License.
*
* @APPLE_LICENSE_HEADER_END@
*/
static inline void *
ns(_value)(struct ns() *t, uint32_t i)
{
return (void *)((uintptr_t)t->keys[i] - t->key_offset);
}
static inline void
ns(_clear)(struct ns() *t)
{
free(t->keys);
ns(_init)(t, t->key_offset);
}
void
ns(_init)(struct ns() *t, size_t offset)
{
*t = (struct ns()){
.grow_shift = TABLE_MINSHIFT,
.key_offset = (uint16_t)offset,
};
}
OS_NOINLINE
static void
ns(_rehash)(struct ns() *t, int direction)
{
struct ns() old = *t;
if (direction > 0) {
t->size += (1 << t->grow_shift);
if (t->size == ((uint32_t)8 << t->grow_shift)) {
t->grow_shift++;
}
} else if (direction < 0) {
if (t->grow_shift > TABLE_MINSHIFT) {
t->grow_shift--;
}
t->size = roundup(t->size / 2, (1 << t->grow_shift));
}
t->count = 0;
t->tombstones = 0;
t->keys = calloc(t->size, sizeof(key_t *));
if (t->keys == NULL) {
NOTIFY_INTERNAL_CRASH(0, "Unable to grow table: registration leak?");
}
for (uint32_t i = 0; i < old.size; i++) {
if (old.keys[i] == NULL || old.keys[i] == TABLE_TOMBSTONE) {
continue;
}
ns(_insert)(t, old.keys[i]);
}
free(old.keys);
}
void *
ns(_find)(struct ns() *t, ckey_t key)
{
if (t->count == 0) {
return NULL;
}
uint32_t size = t->size, loop_limit = t->size;
uint32_t i = key_hash(key) % size;
for (;;) {
if (os_unlikely(loop_limit-- == 0)) {
NOTIFY_INTERNAL_CRASH(0, "Corrupt hash table");
}
if (t->keys[i] != TABLE_TOMBSTONE) {
if (t->keys[i] == NULL) {
return NULL;
}
if (key_equals(key, *t->keys[i])) {
return ns(_value)(t, i);
}
}
i = table_next(i, size);
}
}
void
ns(_insert)(struct ns() *t, key_t *key)
{
/*
* Our algorithm relies on having enough NULLS to end loops.
* Make sure their density is never below 25%.
*
* When it drops too low, if the ratio of tombstones is low,
* assume we're on a growth codepath.
*
* Else, we just rehash in place to prune tombstones.
*/
if (os_unlikely(t->count + t->tombstones >= 3 * t->size / 4)) {
if (t->count >= 4 * t->tombstones) {
ns(_rehash)(t, 1);
} else {
ns(_rehash)(t, 0);
}
}
uint32_t size = t->size, loop_limit = t->size;
uint32_t i = key_hash(*key) % size;
for (;;) {
if (os_unlikely(loop_limit-- == 0)) {
NOTIFY_INTERNAL_CRASH(0, "Corrupt hash table");
}
if (t->keys[i] == NULL) {
break;
}
if (t->keys[i] == TABLE_TOMBSTONE) {
t->tombstones--;
break;
}
i = table_next(i, size);
}
t->keys[i] = key;
t->count++;
}
void
ns(_delete)(struct ns() *t, ckey_t key)
{
if (t->count == 0) {
return;
}
uint32_t size = t->size, loop_limit = t->size;
uint32_t i = key_hash(key) % size;
for (;;) {
if (os_unlikely(loop_limit-- == 0)) {
NOTIFY_INTERNAL_CRASH(0, "Corrupt hash table");
}
if (t->keys[i] != TABLE_TOMBSTONE) {
if (t->keys[i] == NULL) {
return;
}
if (key_equals(key, *t->keys[i])) {
break;
}
}
i = table_next(i, size);
}
t->keys[i] = TABLE_TOMBSTONE;
t->tombstones++;
t->count--;
if (t->keys[table_next(i, size)] == NULL) {
do {
t->tombstones--;
t->keys[i] = NULL;
i = table_prev(i, size);
} while (t->keys[i] == TABLE_TOMBSTONE);
}
if (t->count == 0) {
/* if the table is empty, free all its resources */
ns(_clear)(t);
} else if (t->size >= TABLE_MINSIZE * 2 && t->count < t->size / 8) {
/* if the table density drops below 12%, shrink it */
ns(_rehash)(t, -1);
}
}
void
ns(_foreach)(struct ns() *t, bool (^handler)(void *))
{
for (uint32_t i = 0; i < t->size; i++) {
if (t->keys[i] != NULL && t->keys[i] != TABLE_TOMBSTONE) {
if (!handler(ns(_value)(t, i))) break;
}
}
}
#undef ns
#undef key_t
#undef ckey_t
#undef key_hash
#undef key_equals
#undef make_map