freebsd-dev/tools/ctf/cvt/alist.c
John Birrell 275928fc14 Vendor import of the full userland contrib part of DTrace support from
OpenSolaris. This commit resets files to match the versions in the
OpenSolaris tree as of 2008/04/10.

The changes in this import from the previous import are the ones that
will subsequently re-applied to take files off the vendor branch. This
is unfortunately necessary because the Solaris developers won't allow
FreeBSD support #ifdefs in their source code because that creates
'dead code' (stuff that they never compile).
2008-04-26 00:54:52 +00:00

206 lines
4.4 KiB
C

/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2001-2003 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
/*
* Create, manage, and destroy association lists. alists are arrays with
* arbitrary index types, and are also commonly known as associative arrays.
*/
#include <stdio.h>
#include <stdlib.h>
#include "alist.h"
#include "memory.h"
#include "hash.h"
#define ALIST_HASH_SIZE 997
struct alist {
hash_t *al_elements;
void (*al_namefree)(void *);
void (*al_valfree)(void *);
};
typedef struct alist_el {
void *ale_name;
void *ale_value;
} alist_el_t;
static int
alist_hash(int nbuckets, alist_el_t *el)
{
uintptr_t num = (uintptr_t)el->ale_name;
return (num % nbuckets);
}
static int
alist_cmp(alist_el_t *el1, alist_el_t *el2)
{
return ((uintptr_t)el1->ale_name != (uintptr_t)el2->ale_name);
}
alist_t *
alist_xnew(int nbuckets, void (*namefree)(void *),
void (*valfree)(void *), int (*hashfn)(int, void *),
int (*cmpfn)(void *, void *))
{
alist_t *alist;
alist = xcalloc(sizeof (alist_t));
alist->al_elements = hash_new(nbuckets, hashfn, cmpfn);
alist->al_namefree = namefree;
alist->al_valfree = valfree;
return (alist);
}
alist_t *
alist_new(void (*namefree)(void *), void (*valfree)(void *))
{
return (alist_xnew(ALIST_HASH_SIZE, namefree, valfree,
(int (*)())alist_hash, (int (*)())alist_cmp));
}
static void
alist_free_cb(alist_el_t *el, alist_t *alist)
{
if (alist->al_namefree)
alist->al_namefree(el->ale_name);
if (alist->al_valfree)
alist->al_valfree(el->ale_name);
free(el);
}
void
alist_free(alist_t *alist)
{
hash_free(alist->al_elements, (void (*)())alist_free_cb, alist);
free(alist);
}
void
alist_add(alist_t *alist, void *name, void *value)
{
alist_el_t *el;
el = xmalloc(sizeof (alist_el_t));
el->ale_name = name;
el->ale_value = value;
hash_add(alist->al_elements, el);
}
int
alist_find(alist_t *alist, void *name, void **value)
{
alist_el_t template, *ret;
template.ale_name = name;
if (!hash_find(alist->al_elements, &template, (void **)&ret))
return (0);
if (value)
*value = ret->ale_value;
return (1);
}
typedef struct alist_iter_data {
int (*aid_func)(void *, void *, void *);
void *aid_priv;
} alist_iter_data_t;
static int
alist_iter_cb(alist_el_t *el, alist_iter_data_t *aid)
{
return (aid->aid_func(el->ale_name, el->ale_value, aid->aid_priv));
}
int
alist_iter(alist_t *alist, int (*func)(void *, void *, void *), void *private)
{
alist_iter_data_t aid;
aid.aid_func = func;
aid.aid_priv = private;
return (hash_iter(alist->al_elements, (int (*)())alist_iter_cb, &aid));
}
/*
* Debugging support. Used to print the contents of an alist.
*/
void
alist_stats(alist_t *alist, int verbose)
{
printf("Alist statistics\n");
hash_stats(alist->al_elements, verbose);
}
static int alist_def_print_cb_key_int = 1;
static int alist_def_print_cb_value_int = 1;
static int
alist_def_print_cb(void *key, void *value)
{
printf("Key: ");
if (alist_def_print_cb_key_int == 1)
printf("%5d ", (int)key);
else
printf("%s\n", (char *)key);
printf("Value: ");
if (alist_def_print_cb_value_int == 1)
printf("%5d\n", (int)value);
else
printf("%s\n", (char *)key);
return (1);
}
static int
alist_dump_cb(void *node, void *private)
{
int (*printer)(void *, void *) = (int (*)())private;
alist_el_t *el = node;
printer(el->ale_name, el->ale_value);
return (1);
}
int
alist_dump(alist_t *alist, int (*printer)(void *, void *))
{
if (!printer)
printer = alist_def_print_cb;
return (hash_iter(alist->al_elements, alist_dump_cb, (void *)printer));
}