Support binutils 2.100 and 3.0.
[glibc.git] / misc / hsearch_r.c
blob73b95650304062d22e91941f56ec88263afe706b
1 /* Copyright (C) 1993,1995-1997,2002,2005,2007,2008,2009
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1993.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 #include <errno.h>
22 #include <malloc.h>
23 #include <string.h>
25 #include <search.h>
27 /* [Aho,Sethi,Ullman] Compilers: Principles, Techniques and Tools, 1986
28 [Knuth] The Art of Computer Programming, part 3 (6.4) */
31 /* The reentrant version has no static variables to maintain the state.
32 Instead the interface of all functions is extended to take an argument
33 which describes the current status. */
34 typedef struct _ENTRY
36 unsigned int used;
37 ENTRY entry;
39 _ENTRY;
42 /* For the used double hash method the table size has to be a prime. To
43 correct the user given table size we need a prime test. This trivial
44 algorithm is adequate because
45 a) the code is (most probably) called a few times per program run and
46 b) the number is small because the table must fit in the core */
47 static int
48 isprime (unsigned int number)
50 /* no even number will be passed */
51 unsigned int div = 3;
53 while (div * div < number && number % div != 0)
54 div += 2;
56 return number % div != 0;
60 /* Before using the hash table we must allocate memory for it.
61 Test for an existing table are done. We allocate one element
62 more as the found prime number says. This is done for more effective
63 indexing as explained in the comment for the hsearch function.
64 The contents of the table is zeroed, especially the field used
65 becomes zero. */
66 int
67 hcreate_r (nel, htab)
68 size_t nel;
69 struct hsearch_data *htab;
71 /* Test for correct arguments. */
72 if (htab == NULL)
74 __set_errno (EINVAL);
75 return 0;
78 /* There is still another table active. Return with error. */
79 if (htab->table != NULL)
80 return 0;
82 /* We need a size of at least 3. Otherwise the hash functions we
83 use will not work. */
84 if (nel < 3)
85 nel = 3;
86 /* Change nel to the first prime number not smaller as nel. */
87 nel |= 1; /* make odd */
88 while (!isprime (nel))
89 nel += 2;
91 htab->size = nel;
92 htab->filled = 0;
94 /* allocate memory and zero out */
95 htab->table = (_ENTRY *) calloc (htab->size + 1, sizeof (_ENTRY));
96 if (htab->table == NULL)
97 return 0;
99 /* everything went alright */
100 return 1;
102 libc_hidden_def (hcreate_r)
105 /* After using the hash table it has to be destroyed. The used memory can
106 be freed and the local static variable can be marked as not used. */
107 void
108 hdestroy_r (htab)
109 struct hsearch_data *htab;
111 /* Test for correct arguments. */
112 if (htab == NULL)
114 __set_errno (EINVAL);
115 return;
118 /* Free used memory. */
119 free (htab->table);
121 /* the sign for an existing table is an value != NULL in htable */
122 htab->table = NULL;
124 libc_hidden_def (hdestroy_r)
127 /* This is the search function. It uses double hashing with open addressing.
128 The argument item.key has to be a pointer to an zero terminated, most
129 probably strings of chars. The function for generating a number of the
130 strings is simple but fast. It can be replaced by a more complex function
131 like ajw (see [Aho,Sethi,Ullman]) if the needs are shown.
133 We use an trick to speed up the lookup. The table is created by hcreate
134 with one more element available. This enables us to use the index zero
135 special. This index will never be used because we store the first hash
136 index in the field used where zero means not used. Every other value
137 means used. The used field can be used as a first fast comparison for
138 equality of the stored and the parameter value. This helps to prevent
139 unnecessary expensive calls of strcmp. */
141 hsearch_r (item, action, retval, htab)
142 ENTRY item;
143 ACTION action;
144 ENTRY **retval;
145 struct hsearch_data *htab;
147 unsigned int hval;
148 unsigned int count;
149 unsigned int len = strlen (item.key);
150 unsigned int idx;
152 /* Compute an value for the given string. Perhaps use a better method. */
153 hval = len;
154 count = len;
155 while (count-- > 0)
157 hval <<= 4;
158 hval += item.key[count];
160 if (hval == 0)
161 ++hval;
163 /* First hash function: simply take the modul but prevent zero. */
164 idx = hval % htab->size + 1;
166 if (htab->table[idx].used)
168 /* Further action might be required according to the action value. */
169 if (htab->table[idx].used == hval
170 && strcmp (item.key, htab->table[idx].entry.key) == 0)
172 *retval = &htab->table[idx].entry;
173 return 1;
176 /* Second hash function, as suggested in [Knuth] */
177 unsigned int hval2 = 1 + hval % (htab->size - 2);
178 unsigned int first_idx = idx;
182 /* Because SIZE is prime this guarantees to step through all
183 available indeces. */
184 if (idx <= hval2)
185 idx = htab->size + idx - hval2;
186 else
187 idx -= hval2;
189 /* If we visited all entries leave the loop unsuccessfully. */
190 if (idx == first_idx)
191 break;
193 /* If entry is found use it. */
194 if (htab->table[idx].used == hval
195 && strcmp (item.key, htab->table[idx].entry.key) == 0)
197 *retval = &htab->table[idx].entry;
198 return 1;
201 while (htab->table[idx].used);
204 /* An empty bucket has been found. */
205 if (action == ENTER)
207 /* If table is full and another entry should be entered return
208 with error. */
209 if (htab->filled == htab->size)
211 __set_errno (ENOMEM);
212 *retval = NULL;
213 return 0;
216 htab->table[idx].used = hval;
217 htab->table[idx].entry = item;
219 ++htab->filled;
221 *retval = &htab->table[idx].entry;
222 return 1;
225 __set_errno (ESRCH);
226 *retval = NULL;
227 return 0;
229 libc_hidden_def (hsearch_r)