Home | History | Annotate | Line # | Download | only in stdlib
hcreate.c revision 1.7
      1  1.7  christos /* $NetBSD: hcreate.c,v 1.7 2011/09/14 23:33:51 christos Exp $ */
      2  1.1       cgd 
      3  1.1       cgd /*
      4  1.1       cgd  * Copyright (c) 2001 Christopher G. Demetriou
      5  1.1       cgd  * All rights reserved.
      6  1.1       cgd  *
      7  1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8  1.1       cgd  * modification, are permitted provided that the following conditions
      9  1.1       cgd  * are met:
     10  1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11  1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12  1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14  1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15  1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     16  1.1       cgd  *    must display the following acknowledgement:
     17  1.1       cgd  *          This product includes software developed for the
     18  1.4      salo  *          NetBSD Project.  See http://www.NetBSD.org/ for
     19  1.1       cgd  *          information about NetBSD.
     20  1.1       cgd  * 4. The name of the author may not be used to endorse or promote products
     21  1.1       cgd  *    derived from this software without specific prior written permission.
     22  1.1       cgd  *
     23  1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     24  1.1       cgd  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     25  1.1       cgd  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     26  1.1       cgd  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     27  1.1       cgd  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     28  1.1       cgd  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     29  1.1       cgd  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     30  1.1       cgd  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     31  1.1       cgd  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     32  1.1       cgd  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     33  1.1       cgd  *
     34  1.1       cgd  * <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
     35  1.1       cgd  */
     36  1.1       cgd 
     37  1.1       cgd /*
     38  1.1       cgd  * hcreate() / hsearch() / hdestroy()
     39  1.1       cgd  *
     40  1.1       cgd  * SysV/XPG4 hash table functions.
     41  1.1       cgd  *
     42  1.1       cgd  * Implementation done based on NetBSD manual page and Solaris manual page,
     43  1.1       cgd  * plus my own personal experience about how they're supposed to work.
     44  1.1       cgd  *
     45  1.1       cgd  * I tried to look at Knuth (as cited by the Solaris manual page), but
     46  1.1       cgd  * nobody had a copy in the office, so...
     47  1.1       cgd  */
     48  1.1       cgd 
     49  1.1       cgd #include <sys/cdefs.h>
     50  1.1       cgd #if defined(LIBC_SCCS) && !defined(lint)
     51  1.7  christos __RCSID("$NetBSD: hcreate.c,v 1.7 2011/09/14 23:33:51 christos Exp $");
     52  1.1       cgd #endif /* LIBC_SCCS and not lint */
     53  1.1       cgd 
     54  1.1       cgd #if !defined(lint)
     55  1.6     lukem __COPYRIGHT("@(#) Copyright (c) 2001\
     56  1.6     lukem  Christopher G. Demetriou.  All rights reserved.");
     57  1.1       cgd #endif /* not lint */
     58  1.1       cgd 
     59  1.1       cgd #include "namespace.h"
     60  1.1       cgd #include <assert.h>
     61  1.1       cgd #include <errno.h>
     62  1.1       cgd #include <inttypes.h>
     63  1.1       cgd #include <search.h>
     64  1.1       cgd #include <stdlib.h>
     65  1.1       cgd #include <string.h>
     66  1.1       cgd #include <sys/queue.h>
     67  1.1       cgd 
     68  1.1       cgd /*
     69  1.1       cgd  * DO NOT MAKE THIS STRUCTURE LARGER THAN 32 BYTES (4 ptrs on 64-bit
     70  1.1       cgd  * ptr machine) without adjusting MAX_BUCKETS_LG2 below.
     71  1.1       cgd  */
     72  1.1       cgd struct internal_entry {
     73  1.1       cgd 	SLIST_ENTRY(internal_entry) link;
     74  1.1       cgd 	ENTRY ent;
     75  1.1       cgd };
     76  1.1       cgd SLIST_HEAD(internal_head, internal_entry);
     77  1.1       cgd 
     78  1.1       cgd #define	MIN_BUCKETS_LG2	4
     79  1.1       cgd #define	MIN_BUCKETS	(1 << MIN_BUCKETS_LG2)
     80  1.1       cgd 
     81  1.1       cgd /*
     82  1.1       cgd  * max * sizeof internal_entry must fit into size_t.
     83  1.1       cgd  * assumes internal_entry is <= 32 (2^5) bytes.
     84  1.1       cgd  */
     85  1.1       cgd #define	MAX_BUCKETS_LG2	(sizeof (size_t) * 8 - 1 - 5)
     86  1.2      ross #define	MAX_BUCKETS	((size_t)1 << MAX_BUCKETS_LG2)
     87  1.1       cgd 
     88  1.1       cgd /* Default hash function, from db/hash/hash_func.c */
     89  1.1       cgd extern u_int32_t (*__default_hash)(const void *, size_t);
     90  1.1       cgd 
     91  1.7  christos static struct hsearch_data htable;
     92  1.1       cgd 
     93  1.1       cgd int
     94  1.1       cgd hcreate(size_t nel)
     95  1.1       cgd {
     96  1.7  christos 	_DIAGASSERT(htable.table == NULL);
     97  1.1       cgd 
     98  1.5    simonb 	/* Make sure this isn't called when a table already exists. */
     99  1.7  christos 	if (htable.table != NULL) {
    100  1.1       cgd 		errno = EINVAL;
    101  1.1       cgd 		return 0;
    102  1.1       cgd 	}
    103  1.7  christos 	return hcreate_r(nel, &htable);
    104  1.7  christos }
    105  1.7  christos 
    106  1.7  christos int
    107  1.7  christos hcreate_r(size_t nel, struct hsearch_data *head)
    108  1.7  christos {
    109  1.7  christos 	struct internal_head *table;
    110  1.7  christos 	size_t idx;
    111  1.7  christos 	unsigned int p2;
    112  1.7  christos 	void *p;
    113  1.1       cgd 
    114  1.1       cgd 	/* If nel is too small, make it min sized. */
    115  1.1       cgd 	if (nel < MIN_BUCKETS)
    116  1.1       cgd 		nel = MIN_BUCKETS;
    117  1.1       cgd 
    118  1.1       cgd 	/* If it's too large, cap it. */
    119  1.1       cgd 	if (nel > MAX_BUCKETS)
    120  1.1       cgd 		nel = MAX_BUCKETS;
    121  1.1       cgd 
    122  1.1       cgd 	/* If it's is not a power of two in size, round up. */
    123  1.1       cgd 	if ((nel & (nel - 1)) != 0) {
    124  1.1       cgd 		for (p2 = 0; nel != 0; p2++)
    125  1.1       cgd 			nel >>= 1;
    126  1.1       cgd 		_DIAGASSERT(p2 <= MAX_BUCKETS_LG2);
    127  1.1       cgd 		nel = 1 << p2;
    128  1.1       cgd 	}
    129  1.1       cgd 
    130  1.1       cgd 	/* Allocate the table. */
    131  1.7  christos 	head->size = nel;
    132  1.7  christos 	head->filled = 0;
    133  1.7  christos 	p = malloc(nel * sizeof table[0]);
    134  1.7  christos 	if (p == NULL) {
    135  1.1       cgd 		errno = ENOMEM;
    136  1.1       cgd 		return 0;
    137  1.1       cgd 	}
    138  1.7  christos 	head->table = p;
    139  1.7  christos 	table = p;
    140  1.1       cgd 
    141  1.1       cgd 	/* Initialize it. */
    142  1.7  christos 	for (idx = 0; idx < nel; idx++)
    143  1.7  christos 		SLIST_INIT(&table[idx]);
    144  1.1       cgd 
    145  1.1       cgd 	return 1;
    146  1.1       cgd }
    147  1.1       cgd 
    148  1.1       cgd void
    149  1.1       cgd hdestroy(void)
    150  1.1       cgd {
    151  1.7  christos 	_DIAGASSERT(htable.table != NULL);
    152  1.7  christos 	hdestroy_r(&htable);
    153  1.7  christos }
    154  1.7  christos 
    155  1.7  christos void
    156  1.7  christos hdestroy_r(struct hsearch_data *head)
    157  1.7  christos {
    158  1.1       cgd 	struct internal_entry *ie;
    159  1.1       cgd 	size_t idx;
    160  1.7  christos 	void *p;
    161  1.7  christos 	struct internal_head *table;
    162  1.1       cgd 
    163  1.7  christos 	if (head == NULL)
    164  1.1       cgd 		return;
    165  1.1       cgd 
    166  1.7  christos 	p = head->table;
    167  1.7  christos 	head->table = NULL;
    168  1.7  christos 	table = p;
    169  1.7  christos 
    170  1.7  christos 	for (idx = 0; idx < head->size; idx++) {
    171  1.7  christos 		while (!SLIST_EMPTY(&table[idx])) {
    172  1.7  christos 			ie = SLIST_FIRST(&table[idx]);
    173  1.7  christos 			SLIST_REMOVE_HEAD(&table[idx], link);
    174  1.1       cgd 			free(ie->ent.key);
    175  1.1       cgd 			free(ie);
    176  1.1       cgd 		}
    177  1.1       cgd 	}
    178  1.7  christos 	free(table);
    179  1.1       cgd }
    180  1.1       cgd 
    181  1.1       cgd ENTRY *
    182  1.1       cgd hsearch(ENTRY item, ACTION action)
    183  1.1       cgd {
    184  1.7  christos 	ENTRY *ep;
    185  1.7  christos 	_DIAGASSERT(htable.table != NULL);
    186  1.7  christos 	(void)hsearch_r(item, action, &ep, &htable);
    187  1.7  christos 	return ep;
    188  1.7  christos }
    189  1.7  christos 
    190  1.7  christos int
    191  1.7  christos hsearch_r(ENTRY item, ACTION action, ENTRY **itemp, struct hsearch_data *head)
    192  1.7  christos {
    193  1.7  christos 	struct internal_head *table, *chain;
    194  1.1       cgd 	struct internal_entry *ie;
    195  1.1       cgd 	uint32_t hashval;
    196  1.1       cgd 	size_t len;
    197  1.7  christos 	void *p;
    198  1.1       cgd 
    199  1.3     lukem 	_DIAGASSERT(item.key != NULL);
    200  1.3     lukem 	_DIAGASSERT(action == ENTER || action == FIND);
    201  1.1       cgd 
    202  1.7  christos 	p = head->table;
    203  1.7  christos 	table = p;
    204  1.7  christos 
    205  1.1       cgd 	len = strlen(item.key);
    206  1.1       cgd 	hashval = (*__default_hash)(item.key, len);
    207  1.1       cgd 
    208  1.7  christos 	chain = &table[hashval & (head->size - 1)];
    209  1.7  christos 	ie = SLIST_FIRST(chain);
    210  1.1       cgd 	while (ie != NULL) {
    211  1.1       cgd 		if (strcmp(ie->ent.key, item.key) == 0)
    212  1.1       cgd 			break;
    213  1.1       cgd 		ie = SLIST_NEXT(ie, link);
    214  1.1       cgd 	}
    215  1.1       cgd 
    216  1.7  christos 	if (ie != NULL) {
    217  1.7  christos 		*itemp = &ie->ent;
    218  1.7  christos 		return 1;
    219  1.7  christos 	} else if (action == FIND) {
    220  1.7  christos 		*itemp = NULL;
    221  1.7  christos 		errno = ESRCH;
    222  1.7  christos 		return 1;
    223  1.7  christos 	}
    224  1.1       cgd 
    225  1.1       cgd 	ie = malloc(sizeof *ie);
    226  1.1       cgd 	if (ie == NULL)
    227  1.7  christos 		return 0;
    228  1.1       cgd 	ie->ent.key = item.key;
    229  1.1       cgd 	ie->ent.data = item.data;
    230  1.1       cgd 
    231  1.7  christos 	SLIST_INSERT_HEAD(chain, ie, link);
    232  1.7  christos 	*itemp = &ie->ent;
    233  1.7  christos 	head->filled++;
    234  1.7  christos 	return 1;
    235  1.1       cgd }
    236