hash.c 10.4 KB
Newer Older
D
Daniel Veillard 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * hash.c: chained hash tables
 *
 * Reference: Your favorite introductory book on algorithms
 *
 * Copyright (C) 2000 Bjorn Reese and Daniel Veillard.
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
 * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND
 * CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER.
 *
 * Author: breese@users.sourceforge.net
 */

#define IN_LIBXML

#include <string.h>
23
#include <stdlib.h>
D
Daniel Veillard 已提交
24 25 26 27 28 29 30 31 32
#include "hash.h"

#define MAX_HASH_LEN 8

/* #define DEBUG_GROW */

/*
 * A single entry in the hash table
 */
33 34 35 36
typedef struct _virHashEntry virHashEntry;
typedef virHashEntry *virHashEntryPtr;
struct _virHashEntry {
    struct _virHashEntry *next;
D
Daniel Veillard 已提交
37 38 39 40 41 42 43 44
    char *name;
    void *payload;
    int valid;
};

/*
 * The entire hash table
 */
45 46
struct _virHashTable {
    struct _virHashEntry *table;
D
Daniel Veillard 已提交
47 48 49 50 51
    int size;
    int nbElems;
};

/*
52
 * virHashComputeKey:
D
Daniel Veillard 已提交
53 54 55
 * Calculate the hash key
 */
static unsigned long
56
virHashComputeKey(virHashTablePtr table, const char *name) {
D
Daniel Veillard 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69
    unsigned long value = 0L;
    char ch;
    
    if (name != NULL) {
	value += 30 * (*name);
	while ((ch = *name++) != 0) {
	    value = value ^ ((value << 5) + (value >> 3) + (unsigned long)ch);
	}
    }
    return (value % table->size);
}

/**
70
 * virHashCreate:
D
Daniel Veillard 已提交
71 72
 * @size: the size of the hash table
 *
73
 * Create a new virHashTablePtr.
D
Daniel Veillard 已提交
74 75 76
 *
 * Returns the newly created object, or NULL if an error occured.
 */
77 78 79
virHashTablePtr
virHashCreate(int size) {
    virHashTablePtr table;
D
Daniel Veillard 已提交
80 81 82 83
  
    if (size <= 0)
        size = 256;
  
84
    table = malloc(sizeof(virHashTable));
D
Daniel Veillard 已提交
85 86 87
    if (table) {
        table->size = size;
	table->nbElems = 0;
88
        table->table = malloc(size * sizeof(virHashEntry));
D
Daniel Veillard 已提交
89
        if (table->table) {
90
  	    memset(table->table, 0, size * sizeof(virHashEntry));
D
Daniel Veillard 已提交
91 92 93 94 95 96 97 98
  	    return(table);
        }
        free(table);
    }
    return(NULL);
}

/**
99
 * virHashGrow:
D
Daniel Veillard 已提交
100 101 102 103 104 105 106 107
 * @table: the hash table
 * @size: the new size of the hash table
 *
 * resize the hash table
 *
 * Returns 0 in case of success, -1 in case of failure
 */
static int
108
virHashGrow(virHashTablePtr table, int size) {
D
Daniel Veillard 已提交
109 110
    unsigned long key;
    int oldsize, i;
111 112
    virHashEntryPtr iter, next;
    struct _virHashEntry *oldtable;
D
Daniel Veillard 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
#ifdef DEBUG_GROW
    unsigned long nbElem = 0;
#endif
  
    if (table == NULL)
	return(-1);
    if (size < 8)
        return(-1);
    if (size > 8 * 2048)
	return(-1);

    oldsize = table->size;
    oldtable = table->table;
    if (oldtable == NULL)
        return(-1);
  
129
    table->table = malloc(size * sizeof(virHashEntry));
D
Daniel Veillard 已提交
130 131 132 133
    if (table->table == NULL) {
	table->table = oldtable;
	return(-1);
    }
134
    memset(table->table, 0, size * sizeof(virHashEntry));
D
Daniel Veillard 已提交
135 136 137 138 139 140 141 142 143 144 145
    table->size = size;

    /*	If the two loops are merged, there would be situations where
	a new entry needs to allocated and data copied into it from 
	the main table. So instead, we run through the array twice, first
	copying all the elements in the main array (where we can't get
	conflicts) and then the rest, so we only free (and don't allocate)
    */
    for (i = 0; i < oldsize; i++) {
	if (oldtable[i].valid == 0) 
	    continue;
146 147
	key = virHashComputeKey(table, oldtable[i].name);
	memcpy(&(table->table[key]), &(oldtable[i]), sizeof(virHashEntry));
D
Daniel Veillard 已提交
148 149 150 151 152 153 154 155 156 157 158 159
	table->table[key].next = NULL;
    }

    for (i = 0; i < oldsize; i++) {
	iter = oldtable[i].next;
	while (iter) {
	    next = iter->next;

	    /*
	     * put back the entry in the new table
	     */

160
	    key = virHashComputeKey(table, iter->name);
D
Daniel Veillard 已提交
161
	    if (table->table[key].valid == 0) {
162
		memcpy(&(table->table[key]), iter, sizeof(virHashEntry));
D
Daniel Veillard 已提交
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
		table->table[key].next = NULL;
		free(iter);
	    } else {
	    	iter->next = table->table[key].next;
	    	table->table[key].next = iter;
	    }

#ifdef DEBUG_GROW
	    nbElem++;
#endif

	    iter = next;
	}
    }

    free(oldtable);

#ifdef DEBUG_GROW
    xmlGenericError(xmlGenericErrorContext,
182
	    "virHashGrow : from %d to %d, %d elems\n", oldsize, size, nbElem);
D
Daniel Veillard 已提交
183 184 185 186 187 188
#endif

    return(0);
}

/**
189
 * virHashFree:
D
Daniel Veillard 已提交
190 191 192 193 194 195 196
 * @table: the hash table
 * @f:  the deallocator function for items in the hash
 *
 * Free the hash @table and its contents. The userdata is
 * deallocated with @f if provided.
 */
void
197
virHashFree(virHashTablePtr table, virHashDeallocator f) {
D
Daniel Veillard 已提交
198
    int i;
199 200
    virHashEntryPtr iter;
    virHashEntryPtr next;
D
Daniel Veillard 已提交
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
    int inside_table = 0;
    int nbElems;

    if (table == NULL)
	return;
    if (table->table) {
	nbElems = table->nbElems;
	for(i = 0; (i < table->size) && (nbElems > 0); i++) {
	    iter = &(table->table[i]);
	    if (iter->valid == 0)
		continue;
	    inside_table = 1;
	    while (iter) {
		next = iter->next;
		if ((f != NULL) && (iter->payload != NULL))
		    f(iter->payload, iter->name);
		if (iter->name)
		    free(iter->name);
		iter->payload = NULL;
		if (!inside_table)
		    free(iter);
		nbElems--;
		inside_table = 0;
		iter = next;
	    }
	    inside_table = 0;
	}
	free(table->table);
    }
    free(table);
}

/**
234
 * virHashAddEntry3:
D
Daniel Veillard 已提交
235 236 237 238 239 240 241 242 243 244
 * @table: the hash table
 * @name: the name of the userdata
 * @userdata: a pointer to the userdata
 *
 * Add the @userdata to the hash @table. This can later be retrieved
 * by using @name. Duplicate entries generate errors.
 *
 * Returns 0 the addition succeeded and -1 in case of error.
 */
int
245
virHashAddEntry(virHashTablePtr table, const char *name,
D
Daniel Veillard 已提交
246 247
		 void *userdata) {
    unsigned long key, len = 0;
248 249
    virHashEntryPtr entry;
    virHashEntryPtr insert;
D
Daniel Veillard 已提交
250 251 252 253 254 255 256

    if ((table == NULL) || (name == NULL))
	return(-1);

    /*
     * Check for duplicate and insertion location.
     */
257
    key = virHashComputeKey(table, name);
D
Daniel Veillard 已提交
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
    if (table->table[key].valid == 0) {
	insert = NULL;
    } else {
	for (insert = &(table->table[key]); insert->next != NULL;
	     insert = insert->next) {
	    if (!strcmp(insert->name, name))
		return(-1);
	    len++;
	}
	if (!strcmp(insert->name, name))
	    return(-1);
    }

    if (insert == NULL) {
	entry = &(table->table[key]);
    } else {
274
	entry = malloc(sizeof(virHashEntry));
D
Daniel Veillard 已提交
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
	if (entry == NULL)
	     return(-1);
    }

    entry->name = strdup(name);
    entry->payload = userdata;
    entry->next = NULL;
    entry->valid = 1;


    if (insert != NULL) 
	insert->next = entry;

    table->nbElems++;

    if (len > MAX_HASH_LEN)
291
	virHashGrow(table, MAX_HASH_LEN * table->size);
D
Daniel Veillard 已提交
292 293 294 295 296

    return(0);
}

/**
297
 * virHashUpdateEntry:
D
Daniel Veillard 已提交
298 299 300 301 302 303 304 305 306 307 308 309
 * @table: the hash table
 * @name: the name of the userdata
 * @userdata: a pointer to the userdata
 * @f: the deallocator function for replaced item (if any)
 *
 * Add the @userdata to the hash @table. This can later be retrieved
 * by using @name. Existing entry for this tuple
 * will be removed and freed with @f if found.
 *
 * Returns 0 the addition succeeded and -1 in case of error.
 */
int
310 311
virHashUpdateEntry(virHashTablePtr table, const char *name,
		   void *userdata, virHashDeallocator f) {
D
Daniel Veillard 已提交
312
    unsigned long key;
313 314
    virHashEntryPtr entry;
    virHashEntryPtr insert;
D
Daniel Veillard 已提交
315 316 317 318 319 320 321

    if ((table == NULL) || name == NULL)
	return(-1);

    /*
     * Check for duplicate and insertion location.
     */
322
    key = virHashComputeKey(table, name);
D
Daniel Veillard 已提交
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
    if (table->table[key].valid == 0) {
	insert = NULL;
    } else {
	for (insert = &(table->table[key]); insert->next != NULL;
	     insert = insert->next) {
	    if (!strcmp(insert->name, name)) {
		if (f)
		    f(insert->payload, insert->name);
		insert->payload = userdata;
		return(0);
	    }
	}
	if (!strcmp(insert->name, name)) {
	    if (f)
		f(insert->payload, insert->name);
	    insert->payload = userdata;
	    return(0);
	}
    }

    if (insert == NULL) {
	entry =  &(table->table[key]);
    } else {
346
	entry = malloc(sizeof(virHashEntry));
D
Daniel Veillard 已提交
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
	if (entry == NULL)
	     return(-1);
    }

    entry->name = strdup(name);
    entry->payload = userdata;
    entry->next = NULL;
    entry->valid = 1;
    table->nbElems++;


    if (insert != NULL) {
	insert->next = entry;
    }
    return(0);
}

/**
365
 * virHashLookup:
D
Daniel Veillard 已提交
366 367 368 369 370 371 372 373
 * @table: the hash table
 * @name: the name of the userdata
 *
 * Find the userdata specified by the (@name, @name2, @name3) tuple.
 *
 * Returns the a pointer to the userdata
 */
void *
374
virHashLookup(virHashTablePtr table, const char *name) {
D
Daniel Veillard 已提交
375
    unsigned long key;
376
    virHashEntryPtr entry;
D
Daniel Veillard 已提交
377 378 379 380 381

    if (table == NULL)
	return(NULL);
    if (name == NULL)
	return(NULL);
382
    key = virHashComputeKey(table, name);
D
Daniel Veillard 已提交
383 384 385 386 387 388 389 390 391 392
    if (table->table[key].valid == 0)
	return(NULL);
    for (entry = &(table->table[key]); entry != NULL; entry = entry->next) {
	if (!strcmp(entry->name, name))
	    return(entry->payload);
    }
    return(NULL);
}

/**
393
 * virHashSize:
D
Daniel Veillard 已提交
394 395 396 397 398 399 400 401
 * @table: the hash table
 *
 * Query the number of elements installed in the hash @table.
 *
 * Returns the number of elements in the hash table or
 * -1 in case of error
 */
int
402
virHashSize(virHashTablePtr table) {
D
Daniel Veillard 已提交
403 404 405 406 407 408
    if (table == NULL)
	return(-1);
    return(table->nbElems);
}

/**
409
 * virHashRemoveEntry:
D
Daniel Veillard 已提交
410 411 412 413 414 415 416 417 418 419 420
 * @table: the hash table
 * @name: the name of the userdata
 * @f: the deallocator function for removed item (if any)
 *
 * Find the userdata specified by the @name and remove
 * it from the hash @table. Existing userdata for this tuple will be removed
 * and freed with @f.
 *
 * Returns 0 if the removal succeeded and -1 in case of error or not found.
 */
int
421 422
virHashRemoveEntry(virHashTablePtr table, const char *name,
                   virHashDeallocator f) {
D
Daniel Veillard 已提交
423
    unsigned long key;
424 425
    virHashEntryPtr entry;
    virHashEntryPtr prev = NULL;
D
Daniel Veillard 已提交
426 427 428 429

    if (table == NULL || name == NULL)
        return(-1);

430
    key = virHashComputeKey(table, name);
D
Daniel Veillard 已提交
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
    if (table->table[key].valid == 0) {
        return(-1);
    } else {
        for (entry = &(table->table[key]); entry != NULL; entry = entry->next) {
            if (!strcmp(entry->name, name)) {
                if ((f != NULL) && (entry->payload != NULL))
                    f(entry->payload, entry->name);
                entry->payload = NULL;
		if(entry->name)
		    free(entry->name);
                if(prev) {
                    prev->next = entry->next;
		    free(entry);
		} else {
		    if (entry->next == NULL) {
			entry->valid = 0;
		    } else {
			entry = entry->next;
449
			memcpy(&(table->table[key]), entry, sizeof(virHashEntry));
D
Daniel Veillard 已提交
450 451 452 453 454 455 456 457 458 459 460 461
			free(entry);
		    }
		}
                table->nbElems--;
                return(0);
            }
            prev = entry;
        }
        return(-1);
    }
}