-
Notifications
You must be signed in to change notification settings - Fork 8
/
htable.c
172 lines (154 loc) · 4.76 KB
/
htable.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
/*
* Simple hash table implementation
*
* Authors: Simon Kuenzer <[email protected]>
*
*
* Copyright (c) 2013-2017, NEC Europe Ltd., NEC Corporation All rights reserved.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* General Public License (GPL) Version 2, or the BSD license below:
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
* 3. Neither the name of the copyright holder 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.
*
*/
#if defined(__MINIOS__)
#include <target/sys.h>
#include <mini-os/os.h>
#include <mini-os/types.h>
#include <mini-os/xmalloc.h>
#elif defined(__KERNEL__)
#include <target/sys.h>
#include <linux/types.h>
#include <target/stubs.h>
#include <asm/bug.h>
#else
#include <stdlib.h>
#include <string.h>
#define target_free(p) free(p)
#define target_malloc(a, l) malloc(l)
#endif
#ifndef MIN_ALIGN
#define MIN_ALIGN ((size_t) 8)
#endif
#include "htable.h"
#ifndef max
#define max(a, b) \
({ __typeof__ (a) __a = (a); \
__typeof__ (b) __b = (b); \
__a > __b ? __a : __b; })
#endif
static inline size_t align_up(size_t size, size_t align)
{
return (size + align - 1) & ~(align - 1);
}
struct htable *alloc_htable(uint32_t nb_bkts, uint32_t el_per_bkt, uint8_t hlen, size_t el_private_len, size_t align)
{
size_t ht_size;
size_t bkt_hdr_size;
size_t bkt_size;
size_t el_hdr_size;
size_t el_size;
struct htable *ht;
struct htable_bkt *bkt;
struct htable_el *el;
uint32_t i, j;
align = max(MIN_ALIGN, align);
el_hdr_size = align_up(sizeof(struct htable_el), align);
el_size = el_hdr_size + align_up(el_private_len, align);
bkt_hdr_size = align_up(sizeof(struct htable_bkt)
+ (sizeof(hash512_t) * el_per_bkt), align); /* hash list */
bkt_size = bkt_hdr_size
+ (el_size * el_per_bkt) /* element list */;
ht_size = sizeof(struct htable)
+ sizeof(struct htable_bkt *) * nb_bkts;
#ifdef HTABLE_DEBUG
printf("el_size = %lu B\n", el_size);
printf("bkt_size = %lu B\n", bkt_size);
printf("ht_size = %lu B\n", ht_size);
#endif
/* allocate main htable struct */
ht = target_malloc(align, ht_size);
if (!ht) {
errno = ENOMEM;
goto err_out;
}
memset(ht, 0, ht_size);
#ifdef HTABLE_DEBUG
printf("htable (%lu B) @ %p\n", ht_size);
#endif
ht->nb_bkts = nb_bkts;
ht->el_per_bkt = el_per_bkt;
ht->hlen = hlen;
ht->head = NULL;
ht->tail = NULL;
/* allocate buckets */
for (i = 0; i < nb_bkts; ++i) {
bkt = target_malloc(align, bkt_size);
if (!bkt) {
errno = ENOMEM;
goto err_free_bkts;
}
memset(bkt, 0, bkt_size);
#ifdef HTABLE_DEBUG
printf(" bucket %lu (%lu B) @ %p\n", i, bkt_size, bkt);
#endif
ht->b[i] = bkt;
bkt->el = (void *) (((uint8_t *) ht->b[i]) + bkt_hdr_size);
bkt->el_size = el_size;
bkt->el_private_len = el_private_len;
for (j = 0; j < el_per_bkt; ++j) {
el = _htable_bkt_el(bkt, j);
el->h = &bkt->h[j];
el->private = (void *) (((uint8_t *) el) + el_hdr_size);
#ifdef HTABLE_DEBUG
//printf(" entry %3lu:%02lu (%p): h = @%p; private = @%p\n",
// i, j, el, el->h, el->private);
#endif
}
}
return ht;
err_free_bkts:
for (i = 0; i < nb_bkts; ++i) {
if (ht->b[i]) {
target_free(ht->b[i]);
}
}
target_free(ht);
err_out:
return NULL;
}
void free_htable(struct htable *ht)
{
uint32_t i;
for (i = 0; i < ht->nb_bkts; ++i) {
if (ht->b[i]) {
target_free(ht->b[i]);
}
}
target_free(ht);
}