1 | /* $Id: errmsg.cpp 76553 2019-01-01 01:45:53Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Status code messages.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2019 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*********************************************************************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *********************************************************************************************************************************/
|
---|
31 | #include <iprt/err.h>
|
---|
32 | #include "internal/iprt.h"
|
---|
33 |
|
---|
34 | #include <iprt/asm.h>
|
---|
35 | #include <iprt/string.h>
|
---|
36 | #include <iprt/err.h>
|
---|
37 | #include <VBox/err.h>
|
---|
38 |
|
---|
39 |
|
---|
40 | /*********************************************************************************************************************************
|
---|
41 | * Global Variables *
|
---|
42 | *********************************************************************************************************************************/
|
---|
43 | /** Array of messages.
|
---|
44 | * The data is generated by a sed script.
|
---|
45 | */
|
---|
46 | static const RTSTATUSMSG g_aStatusMsgs[] =
|
---|
47 | {
|
---|
48 | #if !defined(IPRT_NO_ERROR_DATA) && !defined(DOXYGEN_RUNNING)
|
---|
49 | # include "errmsgdata.h"
|
---|
50 | #else
|
---|
51 | { "Success.", "Success.", "VINF_SUCCESS", 0 },
|
---|
52 | #endif
|
---|
53 | { NULL, NULL, NULL, 0 }
|
---|
54 | };
|
---|
55 |
|
---|
56 |
|
---|
57 | /** Temporary buffers to format unknown messages in.
|
---|
58 | * @{
|
---|
59 | */
|
---|
60 | static char g_aszUnknownStr[4][64];
|
---|
61 | static RTSTATUSMSG g_aUnknownMsgs[4] =
|
---|
62 | {
|
---|
63 | { &g_aszUnknownStr[0][0], &g_aszUnknownStr[0][0], &g_aszUnknownStr[0][0], 0 },
|
---|
64 | { &g_aszUnknownStr[1][0], &g_aszUnknownStr[1][0], &g_aszUnknownStr[1][0], 0 },
|
---|
65 | { &g_aszUnknownStr[2][0], &g_aszUnknownStr[2][0], &g_aszUnknownStr[2][0], 0 },
|
---|
66 | { &g_aszUnknownStr[3][0], &g_aszUnknownStr[3][0], &g_aszUnknownStr[3][0], 0 }
|
---|
67 | };
|
---|
68 | /** Last used index in g_aUnknownMsgs. */
|
---|
69 | static volatile uint32_t g_iUnknownMsgs;
|
---|
70 | /** @} */
|
---|
71 |
|
---|
72 |
|
---|
73 | /**
|
---|
74 | * Get the message corresponding to a given status code.
|
---|
75 | *
|
---|
76 | * @returns Pointer to read-only message description.
|
---|
77 | * @param rc The status code.
|
---|
78 | */
|
---|
79 | RTDECL(PCRTSTATUSMSG) RTErrGet(int rc)
|
---|
80 | {
|
---|
81 | unsigned iFound = ~0U;
|
---|
82 | unsigned i;
|
---|
83 | for (i = 0; i < RT_ELEMENTS(g_aStatusMsgs) - 1; i++)
|
---|
84 | {
|
---|
85 | if (g_aStatusMsgs[i].iCode == rc)
|
---|
86 | {
|
---|
87 | /*
|
---|
88 | * Found a match.
|
---|
89 | * Since this isn't a unique key, we must check that it's not
|
---|
90 | * one of those start/end #defines before we return.
|
---|
91 | */
|
---|
92 | #define STR_ENDS_WITH(a_psz, a_cch, a_sz) \
|
---|
93 | ( (a_cch) >= sizeof(a_sz) && !strncmp((a_psz) + (a_cch) - sizeof(a_sz) + 1, RT_STR_TUPLE(a_sz)) )
|
---|
94 | size_t const cchDefine = strlen(g_aStatusMsgs[i].pszDefine);
|
---|
95 | if ( !STR_ENDS_WITH(g_aStatusMsgs[i].pszDefine, cchDefine, "_FIRST")
|
---|
96 | && !STR_ENDS_WITH(g_aStatusMsgs[i].pszDefine, cchDefine, "_LAST")
|
---|
97 | && !STR_ENDS_WITH(g_aStatusMsgs[i].pszDefine, cchDefine, "_LOWEST")
|
---|
98 | && !STR_ENDS_WITH(g_aStatusMsgs[i].pszDefine, cchDefine, "_HIGHEST")
|
---|
99 | )
|
---|
100 | return &g_aStatusMsgs[i];
|
---|
101 | iFound = i;
|
---|
102 | }
|
---|
103 | }
|
---|
104 | if (iFound != ~0U)
|
---|
105 | return &g_aStatusMsgs[iFound];
|
---|
106 |
|
---|
107 | /*
|
---|
108 | * Need to use the temporary stuff.
|
---|
109 | */
|
---|
110 | int iMsg = ASMAtomicXchgU32(&g_iUnknownMsgs, (g_iUnknownMsgs + 1) % RT_ELEMENTS(g_aUnknownMsgs));
|
---|
111 | RTStrPrintf(&g_aszUnknownStr[iMsg][0], sizeof(g_aszUnknownStr[iMsg]), "Unknown Status %d (%#x)", rc, rc);
|
---|
112 | return &g_aUnknownMsgs[iMsg];
|
---|
113 | }
|
---|
114 | RT_EXPORT_SYMBOL(RTErrGet);
|
---|
115 |
|
---|