ship 32bit libuutil.so compilation symlink
[unleashed.git] / usr / src / lib / libuutil / common / uu_dprintf.c
blobac6509395dae69022f59adc1969569a228684ac8
1 /*
2 * CDDL HEADER START
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
7 * with the License.
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]
20 * CDDL HEADER END
23 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #include "libuutil_common.h"
29 #include <errno.h>
30 #include <libintl.h>
31 #include <stdarg.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <strings.h>
36 #define FACILITY_FMT "%s (%s): "
38 #if !defined(TEXT_DOMAIN)
39 #define TEXT_DOMAIN "SYS_TEST"
40 #endif
42 static const char *
43 strseverity(uu_dprintf_severity_t severity)
45 switch (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"));
54 case UU_DPRINTF_INFO:
55 return (dgettext(TEXT_DOMAIN, "info"));
56 case UU_DPRINTF_DEBUG:
57 return (dgettext(TEXT_DOMAIN, "debug"));
58 default:
59 return (dgettext(TEXT_DOMAIN, "unspecified"));
63 uu_dprintf_t *
64 uu_dprintf_create(const char *name, uu_dprintf_severity_t severity,
65 uint_t flags)
67 uu_dprintf_t *D;
69 if (uu_check_name(name, UU_NAME_DOMAIN) == -1) {
70 uu_set_error(UU_ERROR_INVALID_ARGUMENT);
71 return (NULL);
74 if ((D = uu_zalloc(sizeof (uu_dprintf_t))) == NULL)
75 return (NULL);
77 if (name != NULL) {
78 D->uud_name = strdup(name);
79 if (D->uud_name == NULL) {
80 uu_free(D);
81 return (NULL);
83 } else {
84 D->uud_name = NULL;
87 D->uud_severity = severity;
88 D->uud_flags = flags;
90 return (D);
93 /*PRINTFLIKE3*/
94 void
95 uu_dprintf(uu_dprintf_t *D, uu_dprintf_severity_t severity,
96 const char *format, ...)
98 va_list alist;
100 /* XXX Assert that severity is not UU_DPRINTF_SILENT. */
102 if (severity > D->uud_severity)
103 return;
105 (void) fprintf(stderr, FACILITY_FMT, D->uud_name,
106 strseverity(severity));
108 va_start(alist, format);
109 (void) vfprintf(stderr, format, alist);
110 va_end(alist);
113 void
114 uu_dprintf_destroy(uu_dprintf_t *D)
116 free(D->uud_name);
118 uu_free(D);
121 const char *
122 uu_dprintf_getname(uu_dprintf_t *D)
124 return (D->uud_name);