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);
85 extern void uu_warn(const char *, ...);
86 extern void uu_vwarn(const char *, va_list);
88 extern void uu_die(const char *, ...) __NORETURN
;
89 extern void uu_vdie(const char *, va_list) __NORETURN
;
91 extern void uu_xdie(int, const char *, ...) __NORETURN
;
92 extern void uu_vxdie(int, const char *, va_list) __NORETURN
;
95 * Exit status functions (not to be used directly)
97 extern int *uu_exit_ok(void);
98 extern int *uu_exit_fatal(void);
99 extern int *uu_exit_usage(void);
102 * Debug print facility functions.
104 typedef struct uu_dprintf uu_dprintf_t
;
113 } uu_dprintf_severity_t
;
115 extern uu_dprintf_t
*uu_dprintf_create(const char *, uu_dprintf_severity_t
,
118 extern void uu_dprintf(uu_dprintf_t
*, uu_dprintf_severity_t
,
120 extern void uu_dprintf_destroy(uu_dprintf_t
*);
121 extern const char *uu_dprintf_getname(uu_dprintf_t
*);
124 * Identifier test flags and function.
126 #define UU_NAME_DOMAIN 0x1 /* allow SUNW, or com.sun, prefix */
127 #define UU_NAME_PATH 0x2 /* allow '/'-delimited paths */
129 int uu_check_name(const char *, uint_t
);
132 * File creation functions.
134 extern int uu_open_tmp(const char *dir
, uint_t uflags
);
137 * Convenience functions.
139 #define UU_NELEM(a) (sizeof (a) / sizeof ((a)[0]))
142 extern char *uu_msprintf(const char *format
, ...);
143 extern void *uu_zalloc(size_t);
144 extern char *uu_strdup(const char *);
145 extern void uu_free(void *);
147 extern boolean_t
uu_strcaseeq(const char *a
, const char *b
);
148 extern boolean_t
uu_streq(const char *a
, const char *b
);
149 extern char *uu_strndup(const char *s
, size_t n
);
150 extern boolean_t
uu_strbw(const char *a
, const char *b
);
151 extern void *uu_memdup(const void *buf
, size_t sz
);
152 extern void uu_dump(FILE *out
, const char *prefix
, const void *buf
, size_t len
);
155 * Comparison function type definition.
156 * Developers should be careful in their use of the _private argument. If you
157 * break interface guarantees, you get undefined behavior.
159 typedef int uu_compare_fn_t(const void *__left
, const void *__right
,
163 * Walk variant flags.
164 * A data structure need not provide support for all variants and
165 * combinations. Refer to the appropriate documentation.
167 #define UU_WALK_ROBUST 0x00000001 /* walk can survive removes */
168 #define UU_WALK_REVERSE 0x00000002 /* reverse walk order */
170 #define UU_WALK_PREORDER 0x00000010 /* walk tree in pre-order */
171 #define UU_WALK_POSTORDER 0x00000020 /* walk tree in post-order */
174 * Walk callback function return codes.
176 #define UU_WALK_ERROR -1
177 #define UU_WALK_NEXT 0
178 #define UU_WALK_DONE 1
181 * Walk callback function type definition.
183 typedef int uu_walk_fn_t(void *_elem
, void *_private
);
186 * lists: opaque structures
188 typedef struct uu_list_pool uu_list_pool_t
;
189 typedef struct uu_list uu_list_t
;
191 typedef struct uu_list_node
{
192 uintptr_t uln_opaque
[2];
195 typedef struct uu_list_walk uu_list_walk_t
;
197 typedef uintptr_t uu_list_index_t
;
203 * typedef struct foo {
205 * uu_list_node_t foo_node;
210 * foo_compare(void *l_arg, void *r_arg, void *private)
215 * if (... l greater than r ...)
217 * if (... l less than r ...)
223 * // at initialization time
224 * foo_pool = uu_list_pool_create("foo_pool",
225 * sizeof (foo_t), offsetof(foo_t, foo_node), foo_compare,
226 * debugging? 0 : UU_AVL_POOL_DEBUG);
229 uu_list_pool_t
*uu_list_pool_create(const char *, size_t, size_t,
230 uu_compare_fn_t
*, uint32_t);
231 #define UU_LIST_POOL_DEBUG 0x00000001
233 void uu_list_pool_destroy(uu_list_pool_t
*);
239 * a = malloc(sizeof (*a));
240 * uu_list_node_init(a, &a->foo_list, pool);
242 * uu_list_node_fini(a, &a->foo_list, pool);
245 void uu_list_node_init(void *, uu_list_node_t
*, uu_list_pool_t
*);
246 void uu_list_node_fini(void *, uu_list_node_t
*, uu_list_pool_t
*);
248 uu_list_t
*uu_list_create(uu_list_pool_t
*, void *_parent
, uint32_t);
249 #define UU_LIST_DEBUG 0x00000001
250 #define UU_LIST_SORTED 0x00000002 /* list is sorted */
252 void uu_list_destroy(uu_list_t
*); /* list must be empty */
254 size_t uu_list_numnodes(uu_list_t
*);
256 void *uu_list_first(uu_list_t
*);
257 void *uu_list_last(uu_list_t
*);
259 void *uu_list_next(uu_list_t
*, void *);
260 void *uu_list_prev(uu_list_t
*, void *);
262 int uu_list_walk(uu_list_t
*, uu_walk_fn_t
*, void *, uint32_t);
264 uu_list_walk_t
*uu_list_walk_start(uu_list_t
*, uint32_t);
265 void *uu_list_walk_next(uu_list_walk_t
*);
266 void uu_list_walk_end(uu_list_walk_t
*);
268 void *uu_list_find(uu_list_t
*, void *, void *, uu_list_index_t
*);
269 void uu_list_insert(uu_list_t
*, void *, uu_list_index_t
);
271 void *uu_list_nearest_next(uu_list_t
*, uu_list_index_t
);
272 void *uu_list_nearest_prev(uu_list_t
*, uu_list_index_t
);
274 void *uu_list_teardown(uu_list_t
*, void **);
276 void uu_list_remove(uu_list_t
*, void *);
279 * lists: interfaces for non-sorted lists only
281 int uu_list_insert_before(uu_list_t
*, void *_target
, void *_elem
);
282 int uu_list_insert_after(uu_list_t
*, void *_target
, void *_elem
);
285 * avl trees: opaque structures
287 typedef struct uu_avl_pool uu_avl_pool_t
;
288 typedef struct uu_avl uu_avl_t
;
290 typedef struct uu_avl_node
{
292 uintptr_t uan_opaque
[3];
294 uintptr_t uan_opaque
[4];
298 typedef struct uu_avl_walk uu_avl_walk_t
;
300 typedef uintptr_t uu_avl_index_t
;
303 * avl trees: interface
306 * typedef struct foo {
308 * uu_avl_node_t foo_node;
313 * foo_compare(void *l_arg, void *r_arg, void *private)
318 * if (... l greater than r ...)
320 * if (... l less than r ...)
326 * // at initialization time
327 * foo_pool = uu_avl_pool_create("foo_pool",
328 * sizeof (foo_t), offsetof(foo_t, foo_node), foo_compare,
329 * debugging? 0 : UU_AVL_POOL_DEBUG);
332 uu_avl_pool_t
*uu_avl_pool_create(const char *, size_t, size_t,
333 uu_compare_fn_t
*, uint32_t);
334 #define UU_AVL_POOL_DEBUG 0x00000001
336 void uu_avl_pool_destroy(uu_avl_pool_t
*);
342 * a = malloc(sizeof (*a));
343 * uu_avl_node_init(a, &a->foo_avl, pool);
345 * uu_avl_node_fini(a, &a->foo_avl, pool);
348 void uu_avl_node_init(void *, uu_avl_node_t
*, uu_avl_pool_t
*);
349 void uu_avl_node_fini(void *, uu_avl_node_t
*, uu_avl_pool_t
*);
351 uu_avl_t
*uu_avl_create(uu_avl_pool_t
*, void *_parent
, uint32_t);
352 #define UU_AVL_DEBUG 0x00000001
354 void uu_avl_destroy(uu_avl_t
*); /* list must be empty */
356 size_t uu_avl_numnodes(uu_avl_t
*);
358 void *uu_avl_first(uu_avl_t
*);
359 void *uu_avl_last(uu_avl_t
*);
361 void *uu_avl_next(uu_avl_t
*, void *);
362 void *uu_avl_prev(uu_avl_t
*, void *);
364 int uu_avl_walk(uu_avl_t
*, uu_walk_fn_t
*, void *, uint32_t);
366 uu_avl_walk_t
*uu_avl_walk_start(uu_avl_t
*, uint32_t);
367 void *uu_avl_walk_next(uu_avl_walk_t
*);
368 void uu_avl_walk_end(uu_avl_walk_t
*);
370 void *uu_avl_find(uu_avl_t
*, void *, void *, uu_avl_index_t
*);
371 void uu_avl_insert(uu_avl_t
*, void *, uu_avl_index_t
);
373 void *uu_avl_nearest_next(uu_avl_t
*, uu_avl_index_t
);
374 void *uu_avl_nearest_prev(uu_avl_t
*, uu_avl_index_t
);
376 void *uu_avl_teardown(uu_avl_t
*, void **);
378 void uu_avl_remove(uu_avl_t
*, void *);
384 #endif /* _LIBUUTIL_H */