2 * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
29 #define SOMEPRIME 149711
31 unsigned int hash_string (const unsigned char *s, unsigned int n)
37 h = (h * SOMEPRIME) % n;
42 HASH *hash_create (int nelem)
44 HASH *table = safe_malloc (sizeof (HASH));
48 table->table = safe_calloc (nelem, sizeof (struct hash_elem *));
52 /* table hash table to update
54 * data data to associate with `key'
55 * allow_dup if nonzero, duplicate keys are allowed in the table
57 int hash_insert (HASH * table, const char *key, void *data, int allow_dup)
59 struct hash_elem *ptr;
62 ptr = (struct hash_elem *) safe_malloc (sizeof (struct hash_elem));
63 h = hash_string ((unsigned char *) key, table->nelem);
69 ptr->next = table->table[h];
70 table->table[h] = ptr;
74 struct hash_elem *tmp, *last;
77 for (tmp = table->table[h], last = NULL; tmp; last = tmp, tmp = tmp->next)
79 r = mutt_strcmp (tmp->key, key);
91 table->table[h] = ptr;
97 void *hash_find_hash (const HASH * table, int hash, const char *key)
99 struct hash_elem *ptr = table->table[hash];
100 for (; ptr; ptr = ptr->next)
102 if (mutt_strcmp (key, ptr->key) == 0)
108 void hash_delete_hash (HASH * table, int hash, const char *key, const void *data,
109 void (*destroy) (void *))
111 struct hash_elem *ptr = table->table[hash];
112 struct hash_elem **last = &table->table[hash];
116 if ((data == ptr->data || !data)
117 && mutt_strcmp (ptr->key, key) == 0)
134 /* ptr pointer to the hash table to be freed
135 * destroy() function to call to free the ->data member (optional)
137 void hash_destroy (HASH **ptr, void (*destroy) (void *))
141 struct hash_elem *elem, *tmp;
143 for (i = 0 ; i < pptr->nelem; i++)
145 for (elem = pptr->table[i]; elem; )
155 FREE (ptr); /* __FREE_CHECKED__ */