VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/err/errmsg.cpp@ 5999

Last change on this file since 5999 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.5 KB
Line 
1/* $Id: errmsg.cpp 5999 2007-12-07 15:05:06Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime - Status code messages.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
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* Header Files *
29*******************************************************************************/
30#include <iprt/err.h>
31#include <iprt/asm.h>
32#include <iprt/string.h>
33#include <iprt/err.h>
34#include <VBox/err.h>
35
36
37/*******************************************************************************
38* Global Variables *
39*******************************************************************************/
40/** Array of messages.
41 * The data is generated by a sed script.
42 */
43static const RTSTATUSMSG g_aStatusMsgs[] =
44{
45#include "errmsgdata.h"
46 { NULL, NULL, NULL, 0 }
47};
48
49
50/** Temporary buffers to format unknown messages in.
51 * @{
52 */
53static char g_aszUnknownStr[4][64];
54static RTSTATUSMSG g_aUnknownMsgs[4] =
55{
56 { &g_aszUnknownStr[0][0], &g_aszUnknownStr[0][0], &g_aszUnknownStr[0][0], 0 },
57 { &g_aszUnknownStr[1][0], &g_aszUnknownStr[1][0], &g_aszUnknownStr[1][0], 0 },
58 { &g_aszUnknownStr[2][0], &g_aszUnknownStr[2][0], &g_aszUnknownStr[2][0], 0 },
59 { &g_aszUnknownStr[3][0], &g_aszUnknownStr[3][0], &g_aszUnknownStr[3][0], 0 }
60};
61/** Last used index in g_aUnknownMsgs. */
62static volatile uint32_t g_iUnknownMsgs;
63/** @} */
64
65
66/**
67 * Get the message corresponding to a given status code.
68 *
69 * @returns Pointer to read-only message description.
70 * @param rc The status code.
71 */
72RTDECL(PCRTSTATUSMSG) RTErrGet(int rc)
73{
74 unsigned iFound = ~0;
75 unsigned i;
76 for (i = 0; i < ELEMENTS(g_aStatusMsgs); i++)
77 {
78 if (g_aStatusMsgs[i].iCode == rc)
79 {
80 /*
81 * Found a match.
82 * Since this isn't a unique key, we must check that it's not
83 * one of those start/end #defines before we return.
84 */
85 if ( !strstr(g_aStatusMsgs[i].pszDefine, "FIRST")
86 && !strstr(g_aStatusMsgs[i].pszDefine, "LAST"))
87 return &g_aStatusMsgs[i];
88 iFound = i;
89 }
90 }
91 if (iFound != ~0U)
92 return &g_aStatusMsgs[iFound];
93
94 /*
95 * Need to use the temporary stuff.
96 */
97 int iMsg = ASMAtomicXchgU32(&g_iUnknownMsgs, (g_iUnknownMsgs + 1) % ELEMENTS(g_aUnknownMsgs));
98 RTStrPrintf(&g_aszUnknownStr[iMsg][0], sizeof(g_aszUnknownStr[iMsg]), "Unknown Status 0x%X\n", rc);
99 return &g_aUnknownMsgs[iMsg];
100}
101
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette