1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
|
/** @file
* MS COM / XPCOM Abstraction Layer:
* Assertion macros for COM/XPCOM
*/
/*
* Copyright (C) 2006-2007 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#ifndef ___VBox_com_assert_h
#define ___VBox_com_assert_h
#include <iprt/assert.h>
/**
* Asserts that the COM result code is succeeded in strict builds.
* In non-strict builds the result code will be NOREF'ed to kill compiler warnings.
*
* @param rc COM result code
*/
#define AssertComRC(rc) \
do { AssertMsg (SUCCEEDED (rc), ("COM RC = %Rhrc (0x%08X)\n", rc, rc)); NOREF (rc); } while (0)
/**
* A special version of AssertComRC that returns the given expression
* if the result code is failed.
*
* @param rc COM result code
* @param ret the expression to return
*/
#define AssertComRCReturn(rc, ret) \
AssertMsgReturn (SUCCEEDED (rc), ("COM RC = %Rhrc (0x%08X)\n", rc, rc), ret)
/**
* A special version of AssertComRC that returns the given result code
* if it is failed.
*
* @param rc COM result code
* @param ret the expression to return
*/
#define AssertComRCReturnRC(rc) \
AssertMsgReturn (SUCCEEDED (rc), ("COM RC = %Rhrc (0x%08X)\n", rc, rc), rc)
/**
* A special version of AssertComRC that returns if the result code is failed.
*
* @param rc COM result code
* @param ret the expression to return
*/
#define AssertComRCReturnVoid(rc) \
AssertMsgReturnVoid (SUCCEEDED (rc), ("COM RC = %Rhrc (0x%08X)\n", rc, rc))
/**
* A special version of AssertComRC that evaluates the given expression and
* breaks if the result code is failed.
*
* @param rc COM result code
* @param eval the expression to evaluate
*/
#define AssertComRCBreak(rc, eval) \
if (!SUCCEEDED (rc)) { AssertComRC (rc); eval; break; } else do {} while (0)
/**
* A special version of AssertComRC that evaluates the given expression and
* throws it if the result code is failed.
*
* @param rc COM result code
* @param eval the expression to throw
*/
#define AssertComRCThrow(rc, eval) \
if (!SUCCEEDED (rc)) { AssertComRC (rc); throw (eval); } else do {} while (0)
/**
* A special version of AssertComRC that just breaks if the result code is
* failed.
*
* @param rc COM result code
*/
#define AssertComRCBreakRC(rc) \
if (!SUCCEEDED (rc)) { AssertComRC (rc); break; } else do {} while (0)
/**
* A special version of AssertComRC that just throws @a rc if the result code is
* failed.
*
* @param rc COM result code
*/
#define AssertComRCThrowRC(rc) \
if (!SUCCEEDED (rc)) { AssertComRC (rc); throw rc; } else do {} while (0)
/**
* Checks whether the given COM result code is successful.
* If not, executes the return statement with this result code.
*
* @param rc COM result code
*/
#define CheckComRCReturnRC(rc) \
if (!SUCCEEDED (rc)) { return (rc); } else do {} while (0)
/**
* Checks whether the given COM result code is successful.
* If not, executes the break statement.
*
* @param rc COM result code
*/
#define CheckComRCBreakRC(rc) \
if (!SUCCEEDED (rc)) { break; } else do {} while (0)
/**
* Checks whether the given COM result code is successful.
* If not, throws the given COM result.
*
* @param rc COM result code
*/
#define CheckComRCThrowRC(rc) \
if (!SUCCEEDED (rc)) { throw rc; } else do {} while (0)
/*
* A section of helpful macros for error output
*/
/**
* Prints a line describing the given COM result code.
* Used by command line tools or for debugging.
*/
#define PRINT_RC_MESSAGE(rc) \
do { \
RTPrintf ("[!] Primary RC = %Rhra\n", rc); \
Log (("[!] Primary RC = %Rhra\n", rc)); \
} while (0)
/**
* Prints the extended error information.
* Used by command line tools or for debugging.
*
* @param info com::ErrorInfo instance
*/
#define PRINT_ERROR_INFO(info) \
do { \
RTPrintf ("[!] Full error info present: %RTbool, basic error info present: %RTbool\n", \
info.isFullAvailable(), info.isBasicAvailable()); \
Log (("[!] Full error info present: %RTbool, basic error info present: %RTbool\n", \
info.isFullAvailable(), info.isBasicAvailable())); \
if (info.isFullAvailable() || info.isBasicAvailable()) { \
RTPrintf ("[!] Result Code = %Rhra\n", info.getResultCode()); \
RTPrintf ("[!] Text = %ls\n", info.getText().raw()); \
RTPrintf ("[!] Component = %ls, Interface: %ls, {%RTuuid}\n", \
info.getComponent().raw(), info.getInterfaceName().raw(), \
info.getInterfaceID().raw()); \
RTPrintf ("[!] Callee = %ls, {%RTuuid}\n", \
info.getCalleeName().raw(), info.getCalleeIID().raw()); \
Log (("[!] Result Code = %Rhra\n", info.getResultCode())); \
Log (("[!] Text = %ls\n", info.getText().raw())); \
Log (("[!] Component = %ls, Interface: %ls, {%RTuuid}\n", \
info.getComponent().raw(), info.getInterfaceName().raw(), \
info.getInterfaceID().raw())); \
Log (("[!] Callee = %ls, {%RTuuid}\n", \
info.getCalleeName().raw(), info.getCalleeIID().raw())); \
} \
} while (0)
/**
* Calls the given interface method and then checks if the return value
* (COM result code) indicates a failure. If so, prints the failed
* function/line/file and the description of the result code.
*
* Used by command line tools or for debugging and assumes the |HRESULT rc|
* variable is accessible for assigning in the current scope.
*/
#define CHECK_RC(method) \
do { \
rc = method; \
if (FAILED (rc)) { \
RTPrintf ("[!] FAILED calling " #method " at line %d!\n", __LINE__); \
Log (("[!] FAILED calling " #method " at line %d!\n", __LINE__)); \
PRINT_RC_MESSAGE(rc); \
} \
} while (0)
/**
* Does the same as CHECK_RC(), but executes the |return rc| statement on
* failure.
*/
#define CHECK_RC_RET(method) \
do { CHECK_RC (method); if (FAILED (rc)) return rc; } while (0)
/**
* Does the same as CHECK_RC(), but executes the |break| statement on
* failure.
*/
#define CHECK_RC_BREAK(method) \
if (1) { CHECK_RC (method); if (FAILED (rc)) break; } else do {} while (0)
/**
* Calls the given method of the given interface and then checks if the return
* value (COM result code) indicates a failure. If so, prints the failed
* function/line/file, the description of the result code and attempts to
* query the extended error information on the current thread (using
* com::ErrorInfo) if the interface reports that it supports error information.
*
* Used by command line tools or for debugging and assumes the |HRESULT rc|
* variable is accessible for assigning in the current scope.
*/
#define CHECK_ERROR(iface, method) \
do \
{ \
CHECK_RC(iface->method); \
if (FAILED(rc)) { \
com::ErrorInfo info (iface); \
PRINT_ERROR_INFO (info); \
} \
} while (0)
/**
* Does the same as CHECK_ERROR(), but executes the |return ret| statement on
* failure.
*/
#define CHECK_ERROR_RET(iface, method, ret) \
do { CHECK_ERROR (iface, method); if (FAILED (rc)) return (ret); } while (0)
/**
* Does the same as CHECK_ERROR(), but executes the |break| statement on
* failure.
*/
#define CHECK_ERROR_BREAK(iface, method) \
if (1) { CHECK_ERROR (iface, method); if (FAILED (rc)) break; } else do {} while (0)
#define CHECK_ERROR_NOCALL() \
do { \
com::ErrorInfo info; \
PRINT_ERROR_INFO (info); \
} while (0)
/**
* Does the same as CHECK_ERROR(), but doesn't need the interface pointer
* because doesn't do a check whether the interface supports error info or not.
*/
#define CHECK_ERROR_NI(method) \
do { \
CHECK_RC (method); \
if (FAILED (rc)) { \
com::ErrorInfo info; \
PRINT_ERROR_INFO (info); \
} \
} while (0)
/**
* Does the same as CHECK_ERROR_NI(), but executes the |return rc| statement
* on failure.
*/
#define CHECK_ERROR_NI_RET(method) \
do { CHECK_ERROR_NI (method); if (FAILED (rc)) return rc; } while (0)
/**
* Does the same as CHECK_ERROR_NI(), but executes the |break| statement
* on failure.
*/
#define CHECK_ERROR_NI_BREAK(method) \
if (1) { CHECK_ERROR_NI (method); if (FAILED (rc)) break; } else do {} while (0)
/**
* Asserts the given expression is true. When the expression is false, prints
* a line containing the failied function/line/file; otherwise does nothing.
*/
#define ASSERT(expr) \
do { \
if (!(expr)) \
{ \
RTPrintf ("[!] ASSERTION FAILED at line %d: %s\n", __LINE__, #expr); \
Log (("[!] ASSERTION FAILED at line %d: %s\n", __LINE__, #expr)); \
} \
} while (0)
/**
* Does the same as ASSERT(), but executes the |return ret| statement if the
* expression to assert is false.
*/
#define ASSERT_RET(expr, ret) \
do { ASSERT (expr); if (!(expr)) return (ret); } while (0)
/**
* Does the same as ASSERT(), but executes the |break| statement if the
* expression to assert is false.
*/
#define ASSERT_BREAK(expr) \
if (1) { ASSERT (expr); if (!(expr)) break; } else do {} while (0)
#endif
|