4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
25 * logadm/lut.c -- simple lookup table module
27 * this file contains a very simple lookup table (lut) implementation.
28 * the tables only support insert & lookup, no delete, and can
29 * only be walked in lexical order. if the key already exists
30 * for something being inserted, the previous entry is simply
31 * replaced. the left-hand-side (lhs), which is the key, is
32 * copied into malloc'd memory. the right-hand-side (rhs), which
33 * is the datum, is not copied (in fact, the lut routines don't
34 * know the size or type of the datum, just the void * pointer to it).
36 * yea, this module could be much fancier and do much more, but
37 * the idea was to keep it really simple and just provide what
38 * was needed by logadm for options processing.
46 /* forward declarations of functions private to this module */
47 static void dooper(const char *lhs
, void *rhs
, void *arg
);
49 /* info created by lut_add() and lut_dup(), private to this module */
52 struct lut
*lut_right
;
53 char *lut_lhs
; /* search key */
54 void *lut_rhs
; /* the datum */
58 * lut_add -- add an entry to the table
61 * struct lut *root = NULL;
62 * root = lut_add(root, "key", value);
64 * the key string gets strdup'd by lut_add(), but the memory holding
65 * the *value should not be freed until the lut is freed by lut_free().
68 lut_add(struct lut
*root
, const char *lhs
, void *rhs
)
73 /* not in tree, create new node */
74 root
= MALLOC(sizeof (*root
));
75 root
->lut_lhs
= STRDUP(lhs
);
77 root
->lut_left
= root
->lut_right
= NULL
;
78 } else if (lhs
!= NULL
&& (diff
= strcmp(root
->lut_lhs
, lhs
)) == 0) {
79 /* already in tree, replace node */
82 root
->lut_left
= lut_add(root
->lut_left
, lhs
, rhs
);
84 root
->lut_right
= lut_add(root
->lut_right
, lhs
, rhs
);
88 /* helper function for lut_dup() */
90 dooper(const char *lhs
, void *rhs
, void *arg
)
92 struct lut
**rootp
= (struct lut
**)arg
;
94 *rootp
= lut_add(*rootp
, lhs
, rhs
);
98 * lut_dup -- duplicate a lookup table
100 * caller is responsible for keeping track of how many tables are keeping
101 * pointers to the void * datum values.
104 lut_dup(struct lut
*root
)
106 struct lut
*ret
= NULL
;
108 lut_walk(root
, dooper
, &ret
);
114 * lut_lookup -- find an entry
117 lut_lookup(struct lut
*root
, const char *lhs
)
121 if (root
== NULL
|| lhs
== NULL
)
123 else if ((diff
= strcmp(root
->lut_lhs
, lhs
)) == 0)
124 return (root
->lut_rhs
);
126 return (lut_lookup(root
->lut_left
, lhs
));
128 return (lut_lookup(root
->lut_right
, lhs
));
132 * lut_walk -- walk the table in lexical order
135 lut_walk(struct lut
*root
,
136 void (*callback
)(const char *lhs
, void *rhs
, void *arg
), void *arg
)
139 lut_walk(root
->lut_left
, callback
, arg
);
140 (*callback
)(root
->lut_lhs
, root
->lut_rhs
, arg
);
141 lut_walk(root
->lut_right
, callback
, arg
);
146 * lut_free -- free a lut
148 * if callback is provided, it is called for each value in the table.
149 * it the values are things that the caller malloc'd, then you can do:
150 * lut_free(root, free);
153 lut_free(struct lut
*root
, void (*callback
)(void *rhs
))
156 lut_free(root
->lut_left
, callback
);
157 lut_free(root
->lut_right
, callback
);
160 (*callback
)(root
->lut_rhs
);
169 printer(const char *lhs
, void *rhs
, void *arg
)
171 printf("<%s> <%s> (<%s>)\n", lhs
, (char *)rhs
,
172 (char *)lut_lookup(arg
, lhs
));
176 * test main for lut module, usage: a.out [lhs[=rhs]...]
179 main(int argc
, char *argv
[])
181 struct lut
*r
= NULL
;
182 struct lut
*dupr
= NULL
;
186 setbuf(stdout
, NULL
);
188 for (argv
++; *argv
; argv
++)
189 if ((equals
= strchr(*argv
, '=')) != NULL
) {
191 r
= lut_add(r
, *argv
, equals
);
193 r
= lut_add(r
, *argv
, "NULL");
195 printf("lut contains:\n");
196 lut_walk(r
, printer
, r
);
202 printf("dup lut contains:\n");
203 lut_walk(dupr
, printer
, dupr
);
205 lut_free(dupr
, NULL
);
212 #endif /* TESTMODULE */