1998-12-18 19:07:29 +00:00
|
|
|
/*
|
2016-06-27 14:56:38 +10:00
|
|
|
* Copyright (C) 1998-2001, 2004, 2005, 2007, 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
|
2000-08-01 01:33:37 +00:00
|
|
|
*
|
2016-06-27 14:56:38 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
1998-12-18 19:07:29 +00:00
|
|
|
*/
|
|
|
|
|
2007-06-19 23:47:24 +00:00
|
|
|
/* $Id: sym_test.c,v 1.28 2007/06/19 23:46:59 tbox Exp $ */
|
2000-06-22 22:00:42 +00:00
|
|
|
|
1998-12-19 00:13:59 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2000-11-10 05:34:16 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
1999-10-06 20:07:25 +00:00
|
|
|
#include <isc/commandline.h>
|
2000-05-08 14:38:29 +00:00
|
|
|
#include <isc/mem.h>
|
2015-05-23 14:21:51 +02:00
|
|
|
#include <isc/print.h>
|
1998-12-18 19:07:29 +00:00
|
|
|
#include <isc/symtab.h>
|
2000-04-28 02:12:16 +00:00
|
|
|
#include <isc/util.h>
|
1998-12-18 19:07:29 +00:00
|
|
|
|
|
|
|
isc_mem_t *mctx;
|
|
|
|
isc_symtab_t *st;
|
|
|
|
|
1998-12-18 21:16:45 +00:00
|
|
|
static void
|
2000-05-08 14:38:29 +00:00
|
|
|
undefine_action(char *key, unsigned int type, isc_symvalue_t value, void *arg)
|
1999-06-08 13:15:25 +00:00
|
|
|
{
|
2000-05-08 14:38:29 +00:00
|
|
|
UNUSED(arg);
|
1999-06-08 13:15:25 +00:00
|
|
|
|
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;
|
1999-01-04 22:30:28 +00:00
|
|
|
isc_boolean_t case_sensitive = ISC_FALSE;
|
1998-12-18 19:07:29 +00:00
|
|
|
|
1999-10-06 20:07:25 +00:00
|
|
|
while ((c = isc_commandline_parse(argc, argv, "tarc")) != -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;
|
1999-01-04 22:30:28 +00:00
|
|
|
case 'c':
|
|
|
|
case_sensitive = ISC_TRUE;
|
|
|
|
break;
|
1998-12-18 19:07:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-01-06 20:26:18 +00:00
|
|
|
RUNTIME_CHECK(isc_mem_create(0, 0, &mctx) == ISC_R_SUCCESS);
|
1999-06-08 13:15:25 +00:00
|
|
|
RUNTIME_CHECK(isc_symtab_create(mctx, 691, undefine_action, NULL,
|
1999-01-06 20:26:18 +00:00
|
|
|
case_sensitive, &st) == ISC_R_SUCCESS);
|
1999-01-04 22:30:28 +00:00
|
|
|
|
2001-11-27 01:56:32 +00:00
|
|
|
while (fgets(s, sizeof(s), stdin) != NULL) {
|
1998-12-18 19:07:29 +00:00
|
|
|
len = strlen(s);
|
2005-03-16 22:22:31 +00:00
|
|
|
if (len > 0U && s[len - 1] == '\n') {
|
1999-04-28 00:30:23 +00:00
|
|
|
s[len - 1] = '\0';
|
|
|
|
len--;
|
|
|
|
}
|
1998-12-18 19:07:29 +00:00
|
|
|
|
|
|
|
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)
|
2000-08-01 01:33:37 +00:00
|
|
|
undefine_action(key, 1,
|
1999-06-08 13:15:25 +00:00
|
|
|
value, NULL);
|
1998-12-19 00:22:00 +00:00
|
|
|
}
|
1998-12-18 19:07:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
isc_symtab_destroy(&st);
|
|
|
|
isc_mem_stats(mctx, stdout);
|
|
|
|
isc_mem_destroy(&mctx);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|