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
|
#include "system.h"
#include <stdio.h>
#include <rpm/rpmstring.h>
#include <rpm/rpmstrpool.h>
#include "debug.h"
#define STRDATA_CHUNK 65536
#define STROFFS_CHUNK 2048
/* XXX this is ridiculously small... */
#define STRHASH_INITSIZE 5
static int pool_debug = 0;
typedef struct poolHash_s * poolHash;
typedef struct poolHashBucket_s * poolHashBucket;
struct poolHashBucket_s {
poolHashBucket next;
rpmsid keyid;
};
struct poolHash_s {
int numBuckets;
poolHashBucket * buckets;
int bucketCount;
int keyCount;
};
struct rpmstrPool_s {
size_t * offs; /* offsets into data area */
rpmsid offs_size; /* largest offset index */;
rpmsid offs_alloced; /* offsets allocation size */
char * data; /* string data area */
size_t data_size; /* string data area size */
size_t data_alloced; /* string data area allocation size */
poolHash hash; /* string -> sid hash table */
int frozen; /* are new id additions allowed? */
int nrefs; /* refcount */
};
static poolHash poolHashCreate(int numBuckets)
{
poolHash ht;
ht = xmalloc(sizeof(*ht));
ht->numBuckets = numBuckets;
ht->buckets = xcalloc(numBuckets, sizeof(*ht->buckets));
ht->bucketCount = ht->keyCount = 0;
return ht;
}
static void poolHashResize(rpmstrPool pool, int numBuckets)
{
poolHash ht = pool->hash;
poolHashBucket * buckets = xcalloc(numBuckets, sizeof(*ht->buckets));
for (int i=0; i<ht->numBuckets; i++) {
poolHashBucket b = ht->buckets[i];
poolHashBucket nextB;
while (b != NULL) {
unsigned int keyHash = rstrhash(rpmstrPoolStr(pool, b->keyid));
unsigned int hash = keyHash % numBuckets;
nextB = b->next;
b->next = buckets[hash];
buckets[hash] = b;
b = nextB;
}
}
free(ht->buckets);
ht->buckets = buckets;
ht->numBuckets = numBuckets;
}
static void poolHashAddHEntry(rpmstrPool pool, const char * key, unsigned int keyHash, rpmsid keyid)
{
poolHash ht = pool->hash;
unsigned int hash = keyHash % ht->numBuckets;
poolHashBucket b = ht->buckets[hash];
if (b == NULL) {
ht->bucketCount += 1;
}
while (b && strcmp(rpmstrPoolStr(pool, b->keyid), key)) {
b = b->next;
}
if (b == NULL) {
ht->keyCount += 1;
b = xmalloc(sizeof(*b));
b->keyid = keyid;
b->next = ht->buckets[hash];
ht->buckets[hash] = b;
if (ht->keyCount > ht->numBuckets) {
poolHashResize(pool, ht->numBuckets * 2);
}
}
}
static void poolHashAddEntry(rpmstrPool pool, const char * key, rpmsid keyid)
{
poolHashAddHEntry(pool, key, rstrhash(key), keyid);
}
static void poolHashEmpty( poolHash ht)
{
poolHashBucket b, n;
int i;
if (ht->bucketCount == 0) return;
for (i = 0; i < ht->numBuckets; i++) {
b = ht->buckets[i];
if (b == NULL)
continue;
ht->buckets[i] = NULL;
do {
n = b->next;
b = _free(b);
} while ((b = n) != NULL);
}
ht->bucketCount = 0;
ht->keyCount = 0;
}
static poolHash poolHashFree(poolHash ht)
{
if (ht==NULL)
return ht;
poolHashEmpty(ht);
ht->buckets = _free(ht->buckets);
ht = _free(ht);
return NULL;
}
static rpmsid poolHashGetHEntry(rpmstrPool pool, const char * key, unsigned int keyHash)
{
poolHash ht = pool->hash;
unsigned int hash = keyHash % ht->numBuckets;
poolHashBucket b = ht->buckets[hash];
while (b && strcmp(rpmstrPoolStr(pool, b->keyid), key))
b = b->next;
return (b == NULL) ? 0 : b->keyid;
}
static void poolHashPrintStats(poolHash ht)
{
int i;
poolHashBucket bucket;
int hashcnt=0, bucketcnt=0;
int maxbuckets=0;
for (i=0; i<ht->numBuckets; i++) {
int buckets = 0;
for (bucket=ht->buckets[i]; bucket; bucket=bucket->next){
buckets++;
}
if (maxbuckets < buckets) maxbuckets = buckets;
if (buckets) hashcnt++;
bucketcnt += buckets;
}
fprintf(stderr, "Hashsize: %i\n", ht->numBuckets);
fprintf(stderr, "Hashbuckets: %i\n", hashcnt);
fprintf(stderr, "Keys: %i\n", bucketcnt);
fprintf(stderr, "Max Keys/Bucket: %i\n", maxbuckets);
}
static void rpmstrPoolRehash(rpmstrPool pool)
{
int sizehint;
if (pool->offs_size < STRHASH_INITSIZE)
sizehint = STRHASH_INITSIZE;
else
sizehint = pool->offs_size * 2;
if (pool->hash)
pool->hash = poolHashFree(pool->hash);
pool->hash = poolHashCreate(sizehint);
for (int i = 1; i < pool->offs_size; i++)
poolHashAddEntry(pool, rpmstrPoolStr(pool, i), i);
}
rpmstrPool rpmstrPoolCreate(void)
{
rpmstrPool pool = xcalloc(1, sizeof(*pool));
rpmstrPoolRehash(pool);
pool->nrefs = 1;
return pool;
}
rpmstrPool rpmstrPoolFree(rpmstrPool pool)
{
if (pool) {
if (pool->nrefs > 1) {
pool->nrefs--;
} else {
if (pool_debug)
poolHashPrintStats(pool->hash);
poolHashFree(pool->hash);
free(pool->offs);
free(pool->data);
free(pool);
}
}
return NULL;
}
rpmstrPool rpmstrPoolLink(rpmstrPool pool)
{
if (pool)
pool->nrefs++;
return pool;
}
void rpmstrPoolFreeze(rpmstrPool pool, int keephash)
{
if (pool && !pool->frozen) {
/*
* realloc() might require rehashing even when downsizing,
* dont bother unless we're also discarding the hash.
*/
if (!keephash) {
pool->hash = poolHashFree(pool->hash);
pool->data_alloced = pool->data_size;
pool->data = xrealloc(pool->data, pool->data_alloced);
pool->offs_alloced = pool->offs_size + 1;
pool->offs = xrealloc(pool->offs,
pool->offs_alloced * sizeof(*pool->offs));
}
pool->frozen = 1;
}
}
void rpmstrPoolUnfreeze(rpmstrPool pool)
{
if (pool) {
if (pool->hash == NULL) {
rpmstrPoolRehash(pool);
}
pool->frozen = 0;
}
}
static rpmsid rpmstrPoolPut(rpmstrPool pool, const char *s, size_t slen, unsigned int hash)
{
const char *t = NULL;
size_t ssize = slen + 1;
if (ssize > pool->data_alloced - pool->data_size) {
size_t need = pool->data_size + ssize;
size_t alloced = pool->data_alloced;
while (alloced < need)
alloced += STRDATA_CHUNK;
pool->data = xrealloc(pool->data, alloced);
pool->data_alloced = alloced;
}
pool->offs_size += 1;
if (pool->offs_alloced <= pool->offs_size) {
pool->offs_alloced += STROFFS_CHUNK;
pool->offs = xrealloc(pool->offs,
pool->offs_alloced * sizeof(*pool->offs));
}
t = memcpy(pool->data + pool->data_size, s, ssize);
pool->offs[pool->offs_size] = pool->data_size;
pool->data_size += ssize;
poolHashAddHEntry(pool, t, hash, pool->offs_size);
return pool->offs_size;
}
rpmsid rpmstrPoolIdn(rpmstrPool pool, const char *s, size_t slen, int create)
{
rpmsid sid = 0;
if (pool && pool->hash && s) {
unsigned int hash = rstrhash(s);
sid = poolHashGetHEntry(pool, s, hash);
if (sid == 0 && create && !pool->frozen) {
sid = rpmstrPoolPut(pool, s, slen, hash);
}
}
return sid;
}
rpmsid rpmstrPoolId(rpmstrPool pool, const char *s, int create)
{
return rpmstrPoolIdn(pool, s, strlen(s), create);
}
const char * rpmstrPoolStr(rpmstrPool pool, rpmsid sid)
{
const char *s = NULL;
if (pool && sid > 0 && sid <= pool->offs_size)
s = pool->data + pool->offs[sid];
return s;
}
size_t rpmstrPoolStrlen(rpmstrPool pool, rpmsid sid)
{
size_t slen = 0;
if (pool && sid <= pool->offs_size) {
size_t end = (sid < pool->offs_size) ? pool->offs[sid + 1] :
pool->offs_size;
slen = end - pool->offs[sid] - 1;
}
return slen;
}
int rpmstrPoolStreq(rpmstrPool poolA, rpmsid sidA,
rpmstrPool poolB, rpmsid sidB)
{
if (poolA == poolB)
return (sidA == sidB);
else
return rstreq(rpmstrPoolStr(poolA, sidA), rpmstrPoolStr(poolB, sidB));
}
|