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 2006 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 #include <inj.h> 30 #include <inj_err.h> 31 #include <assert.h> 32 33 const char * 34 inj_item2str(inj_itemtype_t item) 35 { 36 static const char *const names[] = { "event", "fmri", "auth", "list" }; 37 38 return (item >= 0 && 39 item < sizeof (names) / sizeof (char *) ? names[item] : "???"); 40 } 41 42 inj_memtype_t 43 inj_item2mem(inj_itemtype_t item) 44 { 45 static const inj_memtype_t mems[] = { 46 MEMTYPE_EVENT, MEMTYPE_FMRI, MEMTYPE_AUTH, MEMTYPE_LIST 47 }; 48 49 assert(item >= 0 && item < sizeof (mems) / sizeof (inj_memtype_t)); 50 return (mems[item]); 51 } 52 53 /* 54 * Convert a *subset* of inj_memtype_t's to inj_itemtype_t's. 55 */ 56 inj_itemtype_t 57 inj_mem2item(inj_memtype_t mem) 58 { 59 switch (mem) { 60 case MEMTYPE_EVENT: 61 return (ITEMTYPE_EVENT); 62 case MEMTYPE_FMRI: 63 return (ITEMTYPE_FMRI); 64 case MEMTYPE_AUTH: 65 return (ITEMTYPE_AUTH); 66 case MEMTYPE_LIST: 67 return (ITEMTYPE_LIST); 68 default: 69 return (-1); 70 } 71 } 72 73 const char * 74 inj_mem2str(inj_memtype_t mem) 75 { 76 static const char *names[] = { 77 "UNKNOWN", 78 "int8", "int16", "int32", "int64", 79 "uint8", "uint16", "uint32", "uint64", 80 "bool", "string", "enum", 81 "event", "fmri", "auth" 82 }; 83 84 return (mem >= 0 && 85 mem < sizeof (names) / sizeof (char *) ? names[mem] : "???"); 86 } 87