symtab.c revision 95bcf47ff9b8073faea99ea9bd65a7119ea4ee41
/*
* Copyright (C) 1996, 1997, 1998 Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
* CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
* SOFTWARE.
*/
#include <config.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <isc/assertions.h>
#include "util.h"
typedef struct elt {
char * key;
unsigned int type;
} elt_t;
struct isc_symtab {
/* Unlocked. */
unsigned int magic;
unsigned int size;
};
{
unsigned int i;
return (ISC_R_NOMEMORY);
return (ISC_R_NOMEMORY);
}
for (i = 0; i < size; i++)
return (ISC_R_SUCCESS);
}
void
unsigned int i;
}
}
}
static inline unsigned int
const char *s;
unsigned int h = 0;
unsigned int g;
int c;
/*
* P. J. Weinberger's hash function, adapted from p. 436 of
* _Compilers: Principles, Techniques, and Tools_, Aho, Sethi
* and Ullman, Addison-Wesley, 1986, ISBN 0-201-10088-6.
*/
for (s = key; *s != '\0'; s++) {
c = *s;
c = tolower(c);
h = ( h << 4 ) + c;
if ((g = ( h & 0xf0000000 )) != 0) {
h = h ^ (g >> 24);
h = h ^ g;
}
}
return (h);
}
#define FIND(s, k, t, b, e) \
if (((t) == 0 || e->type == (t)) && \
strcasecmp(e->key, (k)) == 0) \
break; \
}
{
unsigned int bucket;
return (ISC_R_NOTFOUND);
return (ISC_R_SUCCESS);
}
{
unsigned int bucket;
if (exists_policy == isc_symexists_reject)
return (ISC_R_EXISTS);
} else {
return (ISC_R_NOMEMORY);
}
/*
* We prepend so that a 'type 0' lookup will return the most
* recent definition, and a 'type 0' undefine will undefine the
* most recent definition.
*/
return (ISC_R_SUCCESS);
}
unsigned int bucket;
return (ISC_R_NOTFOUND);
return (ISC_R_SUCCESS);
}