xref: /titanic_41/usr/src/lib/lvm/libmeta/common/meta_med_err.c (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1 /*
2  * CDDL HEADER START
3  *
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.
8  *
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.
13  *
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]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright 1992-2003 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #pragma ident	"%Z%%M%	%I%	%E% SMI"
28 
29 /*
30  * Just in case we're not in a build environment, make sure that
31  * TEXT_DOMAIN gets set to something.
32  */
33 #if !defined(TEXT_DOMAIN)
34 #define	TEXT_DOMAIN "SYS_TEST"
35 #endif
36 
37 #include <meta.h>
38 #include <metamed.h>
39 
40 char *
med_errnum_to_str(int errnum)41 med_errnum_to_str(int errnum)
42 {
43 	switch (errnum) {
44 	    case MDE_MED_NOERROR:
45 		return (dgettext(TEXT_DOMAIN, "No Error"));
46 	    case MDE_MED_HOSTNOMED:
47 		return (dgettext(TEXT_DOMAIN,
48 		    "mediator host has no mediator data for host"));
49 	    case MDE_MED_DBNOTINIT:
50 		return (dgettext(TEXT_DOMAIN,
51 		    "mediator database is not initialized"));
52 	    case MDE_MED_DBSZBAD:
53 		return (dgettext(TEXT_DOMAIN,
54 		    "mediator database size is not valid"));
55 	    case MDE_MED_DBKEYADDFAIL:
56 		return (dgettext(TEXT_DOMAIN,
57 		    "unable to add key to mediator database"));
58 	    case MDE_MED_DBKEYDELFAIL:
59 		return (dgettext(TEXT_DOMAIN,
60 		    "unable to delete key from mediator database"));
61 	    case MDE_MED_DBHDRSZBAD:
62 		return (dgettext(TEXT_DOMAIN,
63 		    "mediator database header record size is not valid"));
64 	    case MDE_MED_DBHDRMAGBAD:
65 		return (dgettext(TEXT_DOMAIN,
66 		    "mediator database header magic is not valid"));
67 	    case MDE_MED_DBHDRREVBAD:
68 		return (dgettext(TEXT_DOMAIN,
69 		    "mediator database header revision is not valid"));
70 	    case MDE_MED_DBHDRCKSBAD:
71 		return (dgettext(TEXT_DOMAIN,
72 		    "mediator database header checksum is not valid"));
73 	    case MDE_MED_DBRECSZBAD:
74 		return (dgettext(TEXT_DOMAIN,
75 		    "mediator database record record size is not valid"));
76 	    case MDE_MED_DBRECMAGBAD:
77 		return (dgettext(TEXT_DOMAIN,
78 		    "mediator database record magic is not valid"));
79 	    case MDE_MED_DBRECREVBAD:
80 		return (dgettext(TEXT_DOMAIN,
81 		    "mediator database record revision is not valid"));
82 	    case MDE_MED_DBRECCKSBAD:
83 		return (dgettext(TEXT_DOMAIN,
84 		    "mediator database record checksum is not valid"));
85 	    case MDE_MED_DBRECOFFBAD:
86 		return (dgettext(TEXT_DOMAIN,
87 		    "mediator database record offset in not valid"));
88 	    case MDE_MED_DBRECNOENT:
89 		return (dgettext(TEXT_DOMAIN,
90 		    "no matching mediator record found"));
91 	    case MDE_MED_DBARGSMISMATCH:
92 		return (dgettext(TEXT_DOMAIN, "set number in arguments "
93 		    "different from set number in data"));
94 	    default:
95 		return (NULL);
96 	}
97 }
98