VirtualBox

source: vbox/trunk/src/VBox/Runtime/assert.cpp@ 4787

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

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.1 KB
Line 
1/* $Id: assert.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime - Assertion Workers.
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 as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19/*******************************************************************************
20* Header Files *
21*******************************************************************************/
22#include <iprt/assert.h>
23#include <iprt/log.h>
24#include <iprt/string.h>
25#include <iprt/stdarg.h>
26#ifdef IN_RING3
27# include <stdio.h>
28#endif
29
30
31#ifdef IN_GUEST_R0
32#include <VBox/log.h>
33
34
35/**
36 * The 1st part of an assert message.
37 *
38 * @param pszExpr Expression. Can be NULL.
39 * @param uLine Location line number.
40 * @param pszFile Location file name.
41 * @param pszFunction Location function name.
42 * @remark This API exists in HC Ring-3 and GC.
43 */
44RTDECL(void) AssertMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction)
45{
46 RTLogBackdoorPrintf("\n!!Assertion Failed!!\n"
47 "Expression: %s\n"
48 "Location : %s(%d) %s\n",
49 pszExpr, pszFile, uLine, pszFunction);
50}
51
52
53/**
54 * The 2nd (optional) part of an assert message.
55 *
56 * @param pszFormat Printf like format string.
57 * @param ... Arguments to that string.
58 * @remark This API exists in HC Ring-3 and GC.
59 */
60RTDECL(void) AssertMsg2(const char *pszFormat, ...)
61{ /* forwarder. */
62 va_list args;
63 va_start(args, pszFormat);
64 RTLogBackdoorPrintfV(pszFormat, args);
65 va_end(args);
66}
67
68
69#elif defined(IN_RING0)
70
71/* OS specific. */
72
73#else /* !IN_RING0 */
74
75
76/** The last assert message, 1st part. */
77RTDATADECL(char) g_szRTAssertMsg1[1024];
78/** The last assert message, 2nd part. */
79RTDATADECL(char) g_szRTAssertMsg2[2048];
80
81/**
82 * The 1st part of an assert message.
83 *
84 * @param pszExpr Expression. Can be NULL.
85 * @param uLine Location line number.
86 * @param pszFile Location file name.
87 * @param pszFunction Location function name.
88 * @remark This API exists in HC Ring-3 and GC.
89 */
90RTDECL(void) AssertMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction)
91{
92#if !defined(IN_RING3) && !defined(LOG_NO_COM)
93 RTLogComPrintf("\n!!Assertion Failed!!\n"
94 "Expression: %s\n"
95 "Location : %s(%d) %s\n",
96 pszExpr, pszFile, uLine, pszFunction);
97#endif
98
99 PRTLOGGER pLog = RTLogRelDefaultInstance();
100 if (pLog)
101 {
102 RTLogRelPrintf("\n!!Assertion Failed!!\n"
103 "Expression: %s\n"
104 "Location : %s(%d) %s\n",
105 pszExpr, pszFile, uLine, pszFunction);
106 RTLogFlush(pLog);
107 }
108
109 pLog = RTLogDefaultInstance();
110 if (pLog)
111 {
112 RTLogPrintf("\n!!Assertion Failed!!\n"
113 "Expression: %s\n"
114 "Location : %s(%d) %s\n",
115 pszExpr, pszFile, uLine, pszFunction);
116 RTLogFlush(pLog);
117 }
118
119#ifdef IN_RING3
120 /* print to stderr, helps user and gdb debugging. */
121 fprintf(stderr,
122 "\n!!Assertion Failed!!\n"
123 "Expression: %s\n"
124 "Location : %s(%d) %s\n",
125 pszExpr, pszFile, uLine, pszFunction);
126 fflush(stderr);
127#endif
128
129 RTStrPrintf(g_szRTAssertMsg1, sizeof(g_szRTAssertMsg1),
130 "\n!!Assertion Failed!!\n"
131 "Expression: %s\n"
132 "Location : %s(%d) %s\n",
133 pszExpr, pszFile, uLine, pszFunction);
134}
135
136
137/**
138 * The 2nd (optional) part of an assert message.
139 *
140 * @param pszFormat Printf like format string.
141 * @param ... Arguments to that string.
142 * @remark This API exists in HC Ring-3 and GC.
143 */
144RTDECL(void) AssertMsg2(const char *pszFormat, ...)
145{
146 va_list args;
147
148#if !defined(IN_RING3) && !defined(LOG_NO_COM)
149 va_start(args, pszFormat);
150 RTLogComPrintfV(pszFormat, args);
151 va_end(args);
152#endif
153
154 PRTLOGGER pLog = RTLogRelDefaultInstance();
155 if (pLog)
156 {
157 va_start(args, pszFormat);
158 RTLogRelPrintfV(pszFormat, args);
159 va_end(args);
160 RTLogFlush(pLog);
161 }
162
163 pLog = RTLogDefaultInstance();
164 if (pLog)
165 {
166 va_start(args, pszFormat);
167 RTLogPrintfV(pszFormat, args);
168 va_end(args);
169 RTLogFlush(pLog);
170 }
171
172#ifdef IN_RING3
173 /* print to stderr, helps user and gdb debugging. */
174 char szMsg[1024];
175 va_start(args, pszFormat);
176 RTStrPrintfV(szMsg, sizeof(szMsg), pszFormat, args);
177 va_end(args);
178 fprintf(stderr, "%s", szMsg);
179 fflush(stderr);
180#endif
181
182 va_start(args, pszFormat);
183 RTStrPrintfV(g_szRTAssertMsg2, sizeof(g_szRTAssertMsg2), pszFormat, args);
184 va_end(args);
185}
186
187#endif /* !IN_RING0 */
188
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