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.
41 #pragma ident "%Z%%M% %I% %E% SMI"
48 /* forward declarations of functions private to this module */
49 static void dooper(const char *lhs
, void *rhs
, void *arg
);
51 /* info created by lut_add() and lut_dup(), private to this module */
54 struct lut
*lut_right
;
55 char *lut_lhs
; /* search key */
56 void *lut_rhs
; /* the datum */
60 * lut_add -- add an entry to the table
63 * struct lut *root = NULL;
64 * root = lut_add(root, "key", value);
66 * the key string gets strdup'd by lut_add(), but the memory holding
67 * the *value should not be freed until the lut is freed by lut_free().
70 lut_add(struct lut
*root
, const char *lhs
, void *rhs
)
75 /* not in tree, create new node */
76 root
= MALLOC(sizeof (*root
));
77 root
->lut_lhs
= STRDUP(lhs
);
79 root
->lut_left
= root
->lut_right
= NULL
;
80 } else if (lhs
!= NULL
&& (diff
= strcmp(root
->lut_lhs
, lhs
)) == 0) {
81 /* already in tree, replace node */
84 root
->lut_left
= lut_add(root
->lut_left
, lhs
, rhs
);
86 root
->lut_right
= lut_add(root
->lut_right
, lhs
, rhs
);
90 /* helper function for lut_dup() */
92 dooper(const char *lhs
, void *rhs
, void *arg
)
94 struct lut
**rootp
= (struct lut
**)arg
;
96 *rootp
= lut_add(*rootp
, lhs
, rhs
);
100 * lut_dup -- duplicate a lookup table
102 * caller is responsible for keeping track of how many tables are keeping
103 * pointers to the void * datum values.
106 lut_dup(struct lut
*root
)
108 struct lut
*ret
= NULL
;
110 lut_walk(root
, dooper
, &ret
);
116 * lut_lookup -- find an entry
119 lut_lookup(struct lut
*root
, const char *lhs
)
123 if (root
== NULL
|| lhs
== NULL
)
125 else if ((diff
= strcmp(root
->lut_lhs
, lhs
)) == 0)
126 return (root
->lut_rhs
);
128 return (lut_lookup(root
->lut_left
, lhs
));
130 return (lut_lookup(root
->lut_right
, lhs
));
134 * lut_walk -- walk the table in lexical order
137 lut_walk(struct lut
*root
,
138 void (*callback
)(const char *lhs
, void *rhs
, void *arg
), void *arg
)
141 lut_walk(root
->lut_left
, callback
, arg
);
142 (*callback
)(root
->lut_lhs
, root
->lut_rhs
, arg
);
143 lut_walk(root
->lut_right
, callback
, arg
);
148 * lut_free -- free a lut
150 * if callback is provided, it is called for each value in the table.
151 * it the values are things that the caller malloc'd, then you can do:
152 * lut_free(root, free);
155 lut_free(struct lut
*root
, void (*callback
)(void *rhs
))
158 lut_free(root
->lut_left
, callback
);
159 lut_free(root
->lut_right
, callback
);
162 (*callback
)(root
->lut_rhs
);
171 printer(const char *lhs
, void *rhs
, void *arg
)
173 struct lut
*root
= (struct lut
*)arg
;
175 printf("<%s> <%s> (<%s>)\n", lhs
, (char *)rhs
,
176 (char *)lut_lookup(arg
, lhs
));
180 * test main for lut module, usage: a.out [lhs[=rhs]...]
183 main(int argc
, char *argv
[])
185 struct lut
*r
= NULL
;
186 struct lut
*dupr
= NULL
;
190 setbuf(stdout
, NULL
);
192 for (argv
++; *argv
; argv
++)
193 if ((equals
= strchr(*argv
, '=')) != NULL
) {
195 r
= lut_add(r
, *argv
, equals
);
197 r
= lut_add(r
, *argv
, "NULL");
199 printf("lut contains:\n");
200 lut_walk(r
, printer
, r
);
206 printf("dup lut contains:\n");
207 lut_walk(dupr
, printer
, dupr
);
209 lut_free(dupr
, NULL
);
216 #endif /* TESTMODULE */