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
|
/*
* %CopyrightBegin%
*
* Copyright Ericsson AB 2008-2009. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* %CopyrightEnd%
*/
/*
** General thread safe hash table. Simular interface as hash.h
**
** Author: Sverker Eriksson
*/
#ifndef __SAFE_HASH_H__
#define __SAFE_HASH_H__
#ifndef __SYS_H__
#include "sys.h"
#endif
#include "erl_alloc.h"
typedef unsigned long SafeHashValue;
typedef int (*SHCMP_FUN)(void*, void*);
typedef SafeHashValue (*SH_FUN)(void*);
typedef void* (*SHALLOC_FUN)(void*);
typedef void (*SHFREE_FUN)(void*);
/*
** This bucket must be placed in top of
** every object that uses hashing!!!
** (Object*) == (Object*) &bucket
*/
typedef struct safe_hashbucket
{
struct safe_hashbucket* next; /* Next bucket */
SafeHashValue hvalue; /* Store hash value for get, rehash */
} SafeHashBucket;
typedef struct safe_hashfunctions
{
SH_FUN hash;
SHCMP_FUN cmp;
SHALLOC_FUN alloc;
SHFREE_FUN free;
} SafeHashFunctions;
typedef struct {
char *name;
int size;
int used;
int objs;
int depth;
} SafeHashInfo;
#define SAFE_HASH_LOCK_CNT 16
typedef struct
{
SafeHashFunctions fun; /* (C) Function block */
ErtsAlcType_t type; /* (C) */
char* name; /* (C) Table name (static, for debugging) */
int size_mask; /* (RW) Number of slots - 1 */
SafeHashBucket** tab; /* (RW) Vector of bucket pointers (objects) */
int grow_limit; /* (RW) Threshold for growing table */
erts_smp_atomic_t nitems; /* (A) Number of items in table */
erts_smp_atomic_t is_rehashing; /* (A) Table rehashing in progress */
union {
erts_smp_mtx_t mtx;
byte __cache_line__[64];
}lock_vec[SAFE_HASH_LOCK_CNT];
/* C: Constants initialized once */
/* RW: One lock (or is_rehashing) to read and _all_ locks to write */
/* A: Lockless atomics */
} SafeHash;
SafeHash* safe_hash_init(ErtsAlcType_t, SafeHash*, char*, int, SafeHashFunctions);
void safe_hash_get_info(SafeHashInfo*, SafeHash*);
int safe_hash_table_sz(SafeHash *);
void* safe_hash_get(SafeHash*, void*);
void* safe_hash_put(SafeHash*, void*);
void* safe_hash_erase(SafeHash*, void*);
void safe_hash_for_each(SafeHash*, void (*func)(void *, void *), void *);
#endif /* __SAFE_HASH_H__ */
|