symtab.c revision 15a44745412679c30a6d022733925af70a38b715
/*
* Copyright (C) 1996-2000 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.
*/
/* $Id: symtab.c,v 1.19 2000/07/27 09:51:16 tale Exp $ */
#include <config.h>
#include <ctype.h>
typedef struct elt {
char * key;
unsigned int type;
} elt_t;
struct isc_symtab {
/* Unlocked. */
unsigned int magic;
unsigned int size;
void * undefine_arg;
};
void *undefine_arg,
{
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.
*/
if (case_sensitive) {
for (s = key; *s != '\0'; s++) {
h = ( h << 4 ) + *s;
if ((g = ( h & 0xf0000000 )) != 0) {
h = h ^ (g >> 24);
h = h ^ g;
}
}
} else {
for (s = key; *s != '\0'; s++) {
c = *s;
c = tolower((unsigned char)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 ((s)->case_sensitive) { \
if (((t) == 0 || e->type == (t)) && \
break; \
} \
} else { \
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);
}
/*
* Though the "key" can be const coming in, it is not stored as const
* so that the calling program can easily have writable access to
* it in its undefine_action function. In the event that it *was*
* truly const coming in and then the caller modified it anyway ...
* well, don't do that!
*/
/*
* We prepend so that the most recent definition will be found.
*/
return (ISC_R_SUCCESS);
}
unsigned int bucket;
return (ISC_R_NOTFOUND);
return (ISC_R_SUCCESS);
}