4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #include "libuutil_common.h"
36 #define FACILITY_FMT "%s (%s): "
38 #if !defined(TEXT_DOMAIN)
39 #define TEXT_DOMAIN "SYS_TEST"
43 strseverity(uu_dprintf_severity_t severity
)
46 case UU_DPRINTF_SILENT
:
47 return (dgettext(TEXT_DOMAIN
, "silent"));
48 case UU_DPRINTF_FATAL
:
49 return (dgettext(TEXT_DOMAIN
, "FATAL"));
50 case UU_DPRINTF_WARNING
:
51 return (dgettext(TEXT_DOMAIN
, "WARNING"));
52 case UU_DPRINTF_NOTICE
:
53 return (dgettext(TEXT_DOMAIN
, "note"));
55 return (dgettext(TEXT_DOMAIN
, "info"));
56 case UU_DPRINTF_DEBUG
:
57 return (dgettext(TEXT_DOMAIN
, "debug"));
59 return (dgettext(TEXT_DOMAIN
, "unspecified"));
64 uu_dprintf_create(const char *name
, uu_dprintf_severity_t severity
,
69 if (uu_check_name(name
, UU_NAME_DOMAIN
) == -1) {
70 uu_set_error(UU_ERROR_INVALID_ARGUMENT
);
74 if ((D
= uu_zalloc(sizeof (uu_dprintf_t
))) == NULL
)
78 D
->uud_name
= strdup(name
);
79 if (D
->uud_name
== NULL
) {
87 D
->uud_severity
= severity
;
95 uu_dprintf(uu_dprintf_t
*D
, uu_dprintf_severity_t severity
,
96 const char *format
, ...)
100 /* XXX Assert that severity is not UU_DPRINTF_SILENT. */
102 if (severity
> D
->uud_severity
)
105 (void) fprintf(stderr
, FACILITY_FMT
, D
->uud_name
,
106 strseverity(severity
));
108 va_start(alist
, format
);
109 (void) vfprintf(stderr
, format
, alist
);
114 uu_dprintf_destroy(uu_dprintf_t
*D
)
122 uu_dprintf_getname(uu_dprintf_t
*D
)
124 return (D
->uud_name
);