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 int hash_string (const unsigned char *s, int n)
41 h = (h * SOMEPRIME) % n;
42 h = (h >= 0) ? h : h + n;
48 HASH *hash_create (int nelem)
50 HASH *table = safe_malloc (sizeof (HASH));
54 table->table = safe_calloc (nelem, sizeof (struct hash_elem *));
58 /* table hash table to update
60 * data data to associate with `key'
61 * allow_dup if nonzero, duplicate keys are allowed in the table
63 int hash_insert (HASH * table, const char *key, void *data, int allow_dup)
65 struct hash_elem *ptr;
68 ptr = (struct hash_elem *) safe_malloc (sizeof (struct hash_elem));
69 h = hash_string ((unsigned char *) key, table->nelem);
75 ptr->next = table->table[h];
76 table->table[h] = ptr;
80 struct hash_elem *tmp, *last;
83 for (tmp = table->table[h], last = NULL; tmp; last = tmp, tmp = tmp->next)
85 r = mutt_strcmp (tmp->key, key);
97 table->table[h] = ptr;
103 void *hash_find_hash (const HASH * table, int hash, const char *key)
105 struct hash_elem *ptr = table->table[hash];
106 for (; ptr; ptr = ptr->next)
108 if (mutt_strcmp (key, ptr->key) == 0)
114 void hash_delete_hash (HASH * table, int hash, const char *key, const void *data,
115 void (*destroy) (void *))
117 struct hash_elem *ptr = table->table[hash];
118 struct hash_elem **last = &table->table[hash];
122 if ((data == ptr->data || !data)
123 && mutt_strcmp (ptr->key, key) == 0)
140 /* ptr pointer to the hash table to be freed
141 * destroy() function to call to free the ->data member (optional)
143 void hash_destroy (HASH **ptr, void (*destroy) (void *))
147 struct hash_elem *elem, *tmp;
149 for (i = 0 ; i < pptr->nelem; i++)
151 for (elem = pptr->table[i]; elem; )
161 FREE (ptr); /* __FREE_CHECKED__ */