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 (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
28 #include <sys/types.h>
37 * Standard flags codes.
42 * Standard error codes.
44 #define UU_ERROR_NONE 0 /* no error */
45 #define UU_ERROR_INVALID_ARGUMENT 1 /* invalid argument */
46 #define UU_ERROR_UNKNOWN_FLAG 2 /* passed flag invalid */
47 #define UU_ERROR_NO_MEMORY 3 /* out of memory */
48 #define UU_ERROR_CALLBACK_FAILED 4 /* callback-initiated error */
49 #define UU_ERROR_NOT_SUPPORTED 5 /* operation not supported */
50 #define UU_ERROR_EMPTY 6 /* no value provided */
51 #define UU_ERROR_UNDERFLOW 7 /* value is too small */
52 #define UU_ERROR_OVERFLOW 8 /* value is too value */
53 #define UU_ERROR_INVALID_CHAR 9 /* value contains unexpected char */
54 #define UU_ERROR_INVALID_DIGIT 10 /* value contains digit not in base */
56 #define UU_ERROR_SYSTEM 99 /* underlying system error */
57 #define UU_ERROR_UNKNOWN 100 /* error status not known */
60 * Standard program exit codes.
62 #define UU_EXIT_OK (*(uu_exit_ok()))
63 #define UU_EXIT_FATAL (*(uu_exit_fatal()))
64 #define UU_EXIT_USAGE (*(uu_exit_usage()))
67 * Exit status profiles.
69 #define UU_PROFILE_DEFAULT 0
70 #define UU_PROFILE_LAUNCHER 1
73 * Error reporting functions.
75 uint32_t uu_error(void);
76 const char *uu_strerror(uint32_t);
79 * Program notification functions.
81 extern void uu_alt_exit(int);
82 extern const char *uu_setpname(char *);
83 extern const char *uu_getpname(void);
84 extern void uu_warn(const char *, ...)
85 __attribute__((format(printf
, 1, 2)));
86 extern void uu_vwarn(const char *, va_list)
87 __attribute__((format(printf
, 1, 0)));
88 extern _Noreturn
void uu_die(const char *, ...)
89 __attribute__((format(printf
, 1, 2)));
90 extern _Noreturn
void uu_vdie(const char *, va_list)
91 __attribute__((format(printf
, 1, 0)));
92 extern _Noreturn
void uu_xdie(int, const char *, ...)
93 __attribute__((format(printf
, 2, 3)));
94 extern _Noreturn
void uu_vxdie(int, const char *, va_list)
95 __attribute__((format(printf
, 2, 0)));
98 * Exit status functions (not to be used directly)
100 extern int *uu_exit_ok(void);
101 extern int *uu_exit_fatal(void);
102 extern int *uu_exit_usage(void);
105 * Identifier test flags and function.
107 #define UU_NAME_DOMAIN 0x1 /* allow SUNW, or com.sun, prefix */
108 #define UU_NAME_PATH 0x2 /* allow '/'-delimited paths */
110 int uu_check_name(const char *, uint_t
);
113 * Convenience functions.
115 #define UU_NELEM(a) (sizeof (a) / sizeof ((a)[0]))
117 extern char *uu_msprintf(const char *format
, ...)
118 __attribute__((format(printf
, 1, 2)));
119 extern void *uu_zalloc(size_t);
120 extern char *uu_strdup(const char *);
121 extern void uu_free(void *);
123 extern boolean_t
uu_strcaseeq(const char *a
, const char *b
);
124 extern boolean_t
uu_streq(const char *a
, const char *b
);
125 extern char *uu_strndup(const char *s
, size_t n
);
126 extern boolean_t
uu_strbw(const char *a
, const char *b
);
127 extern void *uu_memdup(const void *buf
, size_t sz
);
130 * Comparison function type definition.
131 * Developers should be careful in their use of the _private argument. If you
132 * break interface guarantees, you get undefined behavior.
134 typedef int uu_compare_fn_t(const void *__left
, const void *__right
,
138 * Walk variant flags.
139 * A data structure need not provide support for all variants and
140 * combinations. Refer to the appropriate documentation.
142 #define UU_WALK_ROBUST 0x00000001 /* walk can survive removes */
143 #define UU_WALK_REVERSE 0x00000002 /* reverse walk order */
145 #define UU_WALK_PREORDER 0x00000010 /* walk tree in pre-order */
146 #define UU_WALK_POSTORDER 0x00000020 /* walk tree in post-order */
149 * Walk callback function return codes.
151 #define UU_WALK_ERROR -1
152 #define UU_WALK_NEXT 0
153 #define UU_WALK_DONE 1
156 * Walk callback function type definition.
158 typedef int uu_walk_fn_t(void *_elem
, void *_private
);
161 * lists: opaque structures
163 typedef struct uu_list_pool uu_list_pool_t
;
164 typedef struct uu_list uu_list_t
;
166 typedef struct uu_list_node
{
167 uintptr_t uln_opaque
[2];
170 typedef struct uu_list_walk uu_list_walk_t
;
172 typedef uintptr_t uu_list_index_t
;
178 * typedef struct foo {
180 * uu_list_node_t foo_node;
185 * foo_compare(void *l_arg, void *r_arg, void *private)
190 * if (... l greater than r ...)
192 * if (... l less than r ...)
198 * // at initialization time
199 * foo_pool = uu_list_pool_create("foo_pool",
200 * sizeof (foo_t), offsetof(foo_t, foo_node), foo_compare,
201 * debugging? 0 : UU_AVL_POOL_DEBUG);
204 uu_list_pool_t
*uu_list_pool_create(const char *, size_t, size_t,
205 uu_compare_fn_t
*, uint32_t);
206 #define UU_LIST_POOL_DEBUG 0x00000001
208 void uu_list_pool_destroy(uu_list_pool_t
*);
214 * a = malloc(sizeof (*a));
215 * uu_list_node_init(a, &a->foo_list, pool);
217 * uu_list_node_fini(a, &a->foo_list, pool);
220 void uu_list_node_init(void *, uu_list_node_t
*, uu_list_pool_t
*);
221 void uu_list_node_fini(void *, uu_list_node_t
*, uu_list_pool_t
*);
223 uu_list_t
*uu_list_create(uu_list_pool_t
*, void *_parent
, uint32_t);
224 #define UU_LIST_DEBUG 0x00000001
225 #define UU_LIST_SORTED 0x00000002 /* list is sorted */
227 void uu_list_destroy(uu_list_t
*); /* list must be empty */
229 size_t uu_list_numnodes(uu_list_t
*);
231 void *uu_list_first(uu_list_t
*);
232 void *uu_list_last(uu_list_t
*);
234 void *uu_list_next(uu_list_t
*, void *);
235 void *uu_list_prev(uu_list_t
*, void *);
237 int uu_list_walk(uu_list_t
*, uu_walk_fn_t
*, void *, uint32_t);
239 uu_list_walk_t
*uu_list_walk_start(uu_list_t
*, uint32_t);
240 void *uu_list_walk_next(uu_list_walk_t
*);
241 void uu_list_walk_end(uu_list_walk_t
*);
243 void *uu_list_find(uu_list_t
*, void *, void *, uu_list_index_t
*);
244 void uu_list_insert(uu_list_t
*, void *, uu_list_index_t
);
246 void *uu_list_nearest_next(uu_list_t
*, uu_list_index_t
);
247 void *uu_list_nearest_prev(uu_list_t
*, uu_list_index_t
);
249 void *uu_list_teardown(uu_list_t
*, void **);
251 void uu_list_remove(uu_list_t
*, void *);
254 * lists: interfaces for non-sorted lists only
256 int uu_list_insert_before(uu_list_t
*, void *_target
, void *_elem
);
257 int uu_list_insert_after(uu_list_t
*, void *_target
, void *_elem
);
260 * avl trees: opaque structures
262 typedef struct uu_avl_pool uu_avl_pool_t
;
263 typedef struct uu_avl uu_avl_t
;
265 typedef struct uu_avl_node
{
267 uintptr_t uan_opaque
[3];
269 uintptr_t uan_opaque
[4];
273 typedef struct uu_avl_walk uu_avl_walk_t
;
275 typedef uintptr_t uu_avl_index_t
;
278 * avl trees: interface
281 * typedef struct foo {
283 * uu_avl_node_t foo_node;
288 * foo_compare(void *l_arg, void *r_arg, void *private)
293 * if (... l greater than r ...)
295 * if (... l less than r ...)
301 * // at initialization time
302 * foo_pool = uu_avl_pool_create("foo_pool",
303 * sizeof (foo_t), offsetof(foo_t, foo_node), foo_compare,
304 * debugging? 0 : UU_AVL_POOL_DEBUG);
307 uu_avl_pool_t
*uu_avl_pool_create(const char *, size_t, size_t,
308 uu_compare_fn_t
*, uint32_t);
309 #define UU_AVL_POOL_DEBUG 0x00000001
311 void uu_avl_pool_destroy(uu_avl_pool_t
*);
317 * a = malloc(sizeof (*a));
318 * uu_avl_node_init(a, &a->foo_avl, pool);
320 * uu_avl_node_fini(a, &a->foo_avl, pool);
323 void uu_avl_node_init(void *, uu_avl_node_t
*, uu_avl_pool_t
*);
324 void uu_avl_node_fini(void *, uu_avl_node_t
*, uu_avl_pool_t
*);
326 uu_avl_t
*uu_avl_create(uu_avl_pool_t
*, void *_parent
, uint32_t);
327 #define UU_AVL_DEBUG 0x00000001
329 void uu_avl_destroy(uu_avl_t
*); /* list must be empty */
331 size_t uu_avl_numnodes(uu_avl_t
*);
333 void *uu_avl_first(uu_avl_t
*);
334 void *uu_avl_last(uu_avl_t
*);
336 void *uu_avl_next(uu_avl_t
*, void *);
337 void *uu_avl_prev(uu_avl_t
*, void *);
339 int uu_avl_walk(uu_avl_t
*, uu_walk_fn_t
*, void *, uint32_t);
341 uu_avl_walk_t
*uu_avl_walk_start(uu_avl_t
*, uint32_t);
342 void *uu_avl_walk_next(uu_avl_walk_t
*);
343 void uu_avl_walk_end(uu_avl_walk_t
*);
345 void *uu_avl_find(uu_avl_t
*, void *, void *, uu_avl_index_t
*);
346 void uu_avl_insert(uu_avl_t
*, void *, uu_avl_index_t
);
348 void *uu_avl_nearest_next(uu_avl_t
*, uu_avl_index_t
);
349 void *uu_avl_nearest_prev(uu_avl_t
*, uu_avl_index_t
);
351 void *uu_avl_teardown(uu_avl_t
*, void **);
353 void uu_avl_remove(uu_avl_t
*, void *);
359 #endif /* _LIBUUTIL_H */