1998-12-18 19:07:29 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 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.
|
|
|
|
*/
|
|
|
|
|
1998-12-19 00:13:59 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
1998-12-18 19:07:29 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1998-12-30 22:07:20 +00:00
|
|
|
#include <unistd.h>
|
1998-12-18 19:07:29 +00:00
|
|
|
|
|
|
|
#include <isc/assertions.h>
|
|
|
|
#include <isc/result.h>
|
|
|
|
#include <isc/symtab.h>
|
|
|
|
|
|
|
|
isc_mem_t *mctx;
|
|
|
|
isc_symtab_t *st;
|
|
|
|
|
1998-12-18 21:16:45 +00:00
|
|
|
static void
|
|
|
|
undefine_action(char *key, unsigned int type, isc_symvalue_t value) {
|
1998-12-19 00:13:59 +00:00
|
|
|
INSIST(type == 1);
|
1998-12-18 21:16:45 +00:00
|
|
|
isc_mem_free(mctx, key);
|
|
|
|
isc_mem_free(mctx, value.as_pointer);
|
|
|
|
}
|
|
|
|
|
1998-12-18 19:07:29 +00:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[]) {
|
|
|
|
char s[1000], *cp, *key;
|
|
|
|
size_t len;
|
|
|
|
isc_result_t result;
|
|
|
|
isc_symvalue_t value;
|
|
|
|
int trace = 0;
|
|
|
|
int c;
|
1998-12-19 00:13:59 +00:00
|
|
|
isc_symexists_t exists_policy = isc_symexists_reject;
|
1998-12-18 19:07:29 +00:00
|
|
|
|
|
|
|
INSIST(isc_mem_create(0, 0, &mctx) == ISC_R_SUCCESS);
|
1998-12-18 21:16:45 +00:00
|
|
|
INSIST(isc_symtab_create(mctx, 691, undefine_action, &st) ==
|
|
|
|
ISC_R_SUCCESS);
|
1998-12-18 19:07:29 +00:00
|
|
|
|
1998-12-19 00:13:59 +00:00
|
|
|
while ((c = getopt(argc, argv, "tar")) != -1) {
|
1998-12-18 19:07:29 +00:00
|
|
|
switch (c) {
|
|
|
|
case 't':
|
|
|
|
trace = 1;
|
|
|
|
break;
|
1998-12-19 00:13:59 +00:00
|
|
|
case 'a':
|
|
|
|
exists_policy = isc_symexists_add;
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
exists_policy = isc_symexists_replace;
|
|
|
|
break;
|
1998-12-18 19:07:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while (gets(s) != NULL) {
|
|
|
|
len = strlen(s);
|
|
|
|
|
|
|
|
cp = s;
|
|
|
|
|
|
|
|
if (cp[0] == '!') {
|
|
|
|
cp++;
|
1998-12-19 00:13:59 +00:00
|
|
|
result = isc_symtab_undefine(st, cp, 1);
|
1998-12-18 19:07:29 +00:00
|
|
|
if (trace || result != ISC_R_SUCCESS)
|
|
|
|
printf("undefine('%s'): %s\n", cp,
|
|
|
|
isc_result_totext(result));
|
|
|
|
} else {
|
|
|
|
key = cp;
|
|
|
|
while (*cp != '\0' && *cp != ' ' && *cp != '\t')
|
|
|
|
cp++;
|
|
|
|
if (*cp == '\0') {
|
|
|
|
result = isc_symtab_lookup(st, key, 0, &value);
|
|
|
|
if (trace || result != ISC_R_SUCCESS) {
|
|
|
|
printf("lookup('%s'): %s", key,
|
|
|
|
isc_result_totext(result));
|
|
|
|
if (result == ISC_R_SUCCESS) {
|
|
|
|
cp = value.as_pointer;
|
|
|
|
printf(", value == '%s'", cp);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
*cp++ = '\0';
|
1998-12-30 20:19:14 +00:00
|
|
|
key = isc_mem_strdup(mctx, key);
|
|
|
|
value.as_pointer = isc_mem_strdup(mctx, cp);
|
1998-12-19 00:13:59 +00:00
|
|
|
result = isc_symtab_define(st, key, 1, value,
|
|
|
|
exists_policy);
|
1998-12-19 00:22:00 +00:00
|
|
|
if (trace || result != ISC_R_SUCCESS) {
|
1998-12-18 19:07:29 +00:00
|
|
|
printf("define('%s', '%s'): %s\n",
|
|
|
|
key, cp,
|
|
|
|
isc_result_totext(result));
|
1998-12-19 00:22:00 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
undefine_action(key, 1, value);
|
|
|
|
}
|
1998-12-18 19:07:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
isc_symtab_destroy(&st);
|
|
|
|
isc_mem_stats(mctx, stdout);
|
|
|
|
isc_mem_destroy(&mctx);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|