ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/lookup.c
(Generate patch)

Comparing ray/src/common/lookup.c (file contents):
Revision 2.1 by greg, Wed Jul 6 15:14:15 1994 UTC vs.
Revision 2.18 by greg, Fri Feb 18 00:40:25 2011 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1994 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Table lookup routines
6   */
7  
8   #include <stdio.h>
9 + #include <stdlib.h>
10 + #include <string.h>
11 +
12   #include "lookup.h"
13  
14 #define MEM_PTR         char *
14  
16 extern MEM_PTR  calloc();
17
18
15   int
16 < lu_init(tbl, nel)               /* initialize tbl for at least nel elements */
17 < register LUTAB  *tbl;
18 < int     nel;
16 > lu_init(                /* initialize tbl for at least nel elements */
17 >        register LUTAB  *tbl,
18 >        int     nel
19 > )
20   {
21          static int  hsiztab[] = {
22 <                31, 61, 127, 251, 509, 1021, 2039, 4093, 8191, 16381, 0
22 >                31, 61, 127, 251, 509, 1021, 2039, 4093, 8191, 16381,
23 >                32749, 65521, 131071, 262139, 524287, 1048573, 2097143,
24 >                4194301, 8388593, 0
25          };
26          register int  *hsp;
27  
# Line 40 | Line 39 | int    nel;
39   }
40  
41  
42 < long
43 < lu_shash(s)                     /* hash a nul-terminated string */
44 < register char  *s;
42 > unsigned long
43 > lu_shash(                       /* hash a nul-terminated string */
44 >        const char      *s
45 > )
46   {
47 +        static unsigned char shuffle[256] = {
48 +                0, 157, 58, 215, 116, 17, 174, 75, 232, 133, 34,
49 +                191, 92, 249, 150, 51, 208, 109, 10, 167, 68, 225,
50 +                126, 27, 184, 85, 242, 143, 44, 201, 102, 3, 160,
51 +                61, 218, 119, 20, 177, 78, 235, 136, 37, 194, 95,
52 +                252, 153, 54, 211, 112, 13, 170, 71, 228, 129, 30,
53 +                187, 88, 245, 146, 47, 204, 105, 6, 163, 64, 221,
54 +                122, 23, 180, 81, 238, 139, 40, 197, 98, 255, 156,
55 +                57, 214, 115, 16, 173, 74, 231, 132, 33, 190, 91,
56 +                248, 149, 50, 207, 108, 9, 166, 67, 224, 125, 26,
57 +                183, 84, 241, 142, 43, 200, 101, 2, 159, 60, 217,
58 +                118, 19, 176, 77, 234, 135, 36, 193, 94, 251, 152,
59 +                53, 210, 111, 12, 169, 70, 227, 128, 29, 186, 87,
60 +                244, 145, 46, 203, 104, 5, 162, 63, 220, 121, 22,
61 +                179, 80, 237, 138, 39, 196, 97, 254, 155, 56, 213,
62 +                114, 15, 172, 73, 230, 131, 32, 189, 90, 247, 148,
63 +                49, 206, 107, 8, 165, 66, 223, 124, 25, 182, 83,
64 +                240, 141, 42, 199, 100, 1, 158, 59, 216, 117, 18,
65 +                175, 76, 233, 134, 35, 192, 93, 250, 151, 52, 209,
66 +                110, 11, 168, 69, 226, 127, 28, 185, 86, 243, 144,
67 +                45, 202, 103, 4, 161, 62, 219, 120, 21, 178, 79,
68 +                236, 137, 38, 195, 96, 253, 154, 55, 212, 113, 14,
69 +                171, 72, 229, 130, 31, 188, 89, 246, 147, 48, 205,
70 +                106, 7, 164, 65, 222, 123, 24, 181, 82, 239, 140,
71 +                41, 198, 99
72 +        };
73          register int    i = 0;
74 <        register long   h = 0;
74 >        register unsigned long  h = 0;
75 >        register unsigned const char *t = (unsigned const char *)s;
76  
77 <        while (*s)
78 <                h ^= (long)(*s++ & 0xff) << (i++ & 15);
77 >        while (*t)
78 >                h ^= (unsigned long)shuffle[*t++] << ((i+=11) & 0xf);
79 >
80          return(h);
81   }
82  
83  
84   LUENT *
85 < lu_find(tbl, key)               /* find a table entry */
86 < register LUTAB  *tbl;
87 < char    *key;
85 > lu_find(                /* find a table entry */
86 >        register LUTAB  *tbl,
87 >        const char      *key
88 > )
89   {
90 <        long    hval;
91 <        int     i;
90 >        unsigned long   hval;
91 >        int     i, n;
92          register int    ndx;
93 <        register LUENT  *oldtabl;
93 >        register LUENT  *le;
94                                          /* look up object */
95 +        if (tbl->tsiz == 0 && !lu_init(tbl, 1))
96 +                return(NULL);
97          hval = (*tbl->hashf)(key);
98   tryagain:
99 <        for (i = 0; i < tbl->tsiz; i++) {
100 <                ndx = (hval + i*i) % tbl->tsiz;
101 <                if (tbl->tabl[ndx].key == NULL) {
102 <                        tbl->tabl[ndx].hval = hval;
103 <                        return(&tbl->tabl[ndx]);
99 >        ndx = hval % tbl->tsiz;
100 >        for (i = 0, n = 1; i < tbl->tsiz; i++, n += 2) {
101 >                le = &tbl->tabl[ndx];
102 >                if (le->key == NULL) {
103 >                        le->hval = hval;
104 >                        return(le);
105                  }
106 <                if ( tbl->tabl[ndx].hval == hval && (tbl->keycmp == NULL ||
107 <                                !(*tbl->keycmp)(tbl->tabl[ndx].key, key)) )
108 <                        return(&tbl->tabl[ndx]);
106 >                if (le->hval == hval &&
107 >                      (tbl->keycmp == NULL || !(*tbl->keycmp)(le->key, key))) {
108 >                        return(le);
109 >                }
110 >                if ((ndx += n) >= tbl->tsiz)    /* this happens rarely */
111 >                        ndx = ndx % tbl->tsiz;
112          }
113                                          /* table is full, reallocate */
114 <        oldtabl = tbl->tabl;
114 >        le = tbl->tabl;
115          ndx = tbl->tsiz;
116          i = tbl->ndel;
117 <        if (!lu_init(tbl, ndx-i)) {     /* no more memory! */
118 <                tbl->tabl = oldtabl;
117 >        if (!lu_init(tbl, ndx-i+1)) {   /* no more memory! */
118 >                tbl->tabl = le;
119                  tbl->tsiz = ndx;
120                  tbl->ndel = i;
121                  return(NULL);
122          }
88        if (!ndx)
89                goto tryagain;
123          /*
124           * The following code may fail if the user has reclaimed many
125           * deleted entries and the system runs out of memory in a
126           * recursive call to lu_find().
127           */
128          while (ndx--)
129 <                if (oldtabl[ndx].key != NULL)
130 <                        if (oldtabl[ndx].data != NULL)
131 <                                *lu_find(tbl, oldtabl[ndx].key) = oldtabl[ndx];
129 >                if (le[ndx].key != NULL) {
130 >                        if (le[ndx].data != NULL)
131 >                                *lu_find(tbl,le[ndx].key) = le[ndx];
132                          else if (tbl->freek != NULL)
133 <                                (*tbl->freek)(oldtabl[ndx].key);
134 <        free((MEM_PTR)oldtabl);
133 >                                (*tbl->freek)(le[ndx].key);
134 >                }
135 >        free((void *)le);
136          goto tryagain;                  /* should happen only once! */
137   }
138  
139  
140   void
141 < lu_delete(tbl, key)             /* delete a table entry */
142 < register LUTAB  *tbl;
143 < char    *key;
141 > lu_delete(              /* delete a table entry */
142 >        register LUTAB  *tbl,
143 >        const char      *key
144 > )
145   {
146          register LUENT  *le;
147  
# Line 121 | Line 156 | char   *key;
156   }
157  
158  
159 + int
160 + lu_doall(               /* loop through all valid table entries */
161 +        register const LUTAB    *tbl,
162 +        /* int  (*f)(const LUENT *) */
163 +        lut_doallf_t *f,
164 +        void *p
165 + )
166 + {
167 +        int     rval = 0;
168 +        register const LUENT    *tp;
169 +
170 +        for (tp = tbl->tabl + tbl->tsiz; tp-- > tbl->tabl; )
171 +                if (tp->data != NULL) {
172 +                        if (f != NULL) {
173 +                                int     r = (*f)(tp, p);
174 +                                if (r < 0)
175 +                                        return(-1);
176 +                                rval += r;
177 +                        } else
178 +                                rval++;
179 +                }
180 +        return(rval);
181 + }
182 +
183 +
184   void
185 < lu_done(tbl)                    /* free table and contents */
186 < register LUTAB  *tbl;
185 > lu_done(                        /* free table and contents */
186 >        register LUTAB  *tbl
187 > )
188   {
189          register LUENT  *tp;
190  
# Line 136 | Line 197 | register LUTAB *tbl;
197                          if (tp->data != NULL && tbl->freed != NULL)
198                                  (*tbl->freed)(tp->data);
199                  }
200 <        free((MEM_PTR)tbl->tabl);
200 >        free((void *)tbl->tabl);
201          tbl->tabl = NULL;
202          tbl->tsiz = 0;
203          tbl->ndel = 0;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines