Changeset 16530 in vbox for trunk/include/VBox/com/assert.h
- Timestamp:
- Feb 5, 2009 4:08:49 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 42461
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/assert.h
r13856 r16530 137 137 if (!SUCCEEDED (rc)) { throw rc; } else do {} while (0) 138 138 139 /*140 * A section of helpful macros for error output141 */142 143 /**144 * Prints a line describing the given COM result code.145 * Used by command line tools or for debugging.146 */147 #define PRINT_RC_MESSAGE(rc) \148 do { \149 RTPrintf ("[!] Primary RC = %Rhra\n", rc); \150 Log (("[!] Primary RC = %Rhra\n", rc)); \151 } while (0)152 153 /**154 * Prints the extended error information.155 * Used by command line tools or for debugging.156 *157 * @param info com::ErrorInfo instance158 */159 #define PRINT_ERROR_INFO(info) \160 do { \161 RTPrintf ("[!] Full error info present: %RTbool, basic error info present: %RTbool\n", \162 info.isFullAvailable(), info.isBasicAvailable()); \163 Log (("[!] Full error info present: %RTbool, basic error info present: %RTbool\n", \164 info.isFullAvailable(), info.isBasicAvailable())); \165 if (info.isFullAvailable() || info.isBasicAvailable()) { \166 RTPrintf ("[!] Result Code = %Rhra\n", info.getResultCode()); \167 RTPrintf ("[!] Text = %ls\n", info.getText().raw()); \168 RTPrintf ("[!] Component = %ls, Interface: %ls, {%RTuuid}\n", \169 info.getComponent().raw(), info.getInterfaceName().raw(), \170 info.getInterfaceID().raw()); \171 RTPrintf ("[!] Callee = %ls, {%RTuuid}\n", \172 info.getCalleeName().raw(), info.getCalleeIID().raw()); \173 Log (("[!] Result Code = %Rhra\n", info.getResultCode())); \174 Log (("[!] Text = %ls\n", info.getText().raw())); \175 Log (("[!] Component = %ls, Interface: %ls, {%RTuuid}\n", \176 info.getComponent().raw(), info.getInterfaceName().raw(), \177 info.getInterfaceID().raw())); \178 Log (("[!] Callee = %ls, {%RTuuid}\n", \179 info.getCalleeName().raw(), info.getCalleeIID().raw())); \180 } \181 } while (0)182 183 /**184 * Calls the given interface method and then checks if the return value185 * (COM result code) indicates a failure. If so, prints the failed186 * function/line/file and the description of the result code.187 *188 * Used by command line tools or for debugging and assumes the |HRESULT rc|189 * variable is accessible for assigning in the current scope.190 */191 #define CHECK_RC(method) \192 do { \193 rc = method; \194 if (FAILED (rc)) { \195 RTPrintf ("[!] FAILED calling " #method " at line %d!\n", __LINE__); \196 Log (("[!] FAILED calling " #method " at line %d!\n", __LINE__)); \197 PRINT_RC_MESSAGE(rc); \198 } \199 } while (0)200 201 /**202 * Does the same as CHECK_RC(), but executes the |return rc| statement on203 * failure.204 */205 #define CHECK_RC_RET(method) \206 do { CHECK_RC (method); if (FAILED (rc)) return rc; } while (0)207 208 /**209 * Does the same as CHECK_RC(), but executes the |break| statement on210 * failure.211 */212 #define CHECK_RC_BREAK(method) \213 if (1) { CHECK_RC (method); if (FAILED (rc)) break; } else do {} while (0)214 215 /**216 * Calls the given method of the given interface and then checks if the return217 * value (COM result code) indicates a failure. If so, prints the failed218 * function/line/file, the description of the result code and attempts to219 * query the extended error information on the current thread (using220 * com::ErrorInfo) if the interface reports that it supports error information.221 *222 * Used by command line tools or for debugging and assumes the |HRESULT rc|223 * variable is accessible for assigning in the current scope.224 */225 #define CHECK_ERROR(iface, method) \226 do \227 { \228 CHECK_RC(iface->method); \229 if (FAILED(rc)) { \230 com::ErrorInfo info (iface); \231 PRINT_ERROR_INFO (info); \232 } \233 } while (0)234 235 /**236 * Does the same as CHECK_ERROR(), but executes the |return ret| statement on237 * failure.238 */239 #define CHECK_ERROR_RET(iface, method, ret) \240 do { CHECK_ERROR (iface, method); if (FAILED (rc)) return (ret); } while (0)241 242 /**243 * Does the same as CHECK_ERROR(), but executes the |break| statement on244 * failure.245 */246 #if defined(__GNUC__)247 #define CHECK_ERROR_BREAK(iface, method) \248 ({ CHECK_ERROR (iface, method); if (FAILED (rc)) break; })249 #else250 #define CHECK_ERROR_BREAK(iface, method) \251 if (1) { CHECK_ERROR (iface, method); if (FAILED (rc)) break; } else do {} while (0)252 #endif253 254 #define CHECK_ERROR_NOCALL() \255 do { \256 com::ErrorInfo info; \257 PRINT_ERROR_INFO (info); \258 } while (0)259 260 /**261 * Does the same as CHECK_ERROR(), but doesn't need the interface pointer262 * because doesn't do a check whether the interface supports error info or not.263 */264 #define CHECK_ERROR_NI(method) \265 do { \266 CHECK_RC (method); \267 if (FAILED (rc)) { \268 com::ErrorInfo info; \269 PRINT_ERROR_INFO (info); \270 } \271 } while (0)272 273 /**274 * Does the same as CHECK_ERROR_NI(), but executes the |return rc| statement275 * on failure.276 */277 #define CHECK_ERROR_NI_RET(method) \278 do { CHECK_ERROR_NI (method); if (FAILED (rc)) return rc; } while (0)279 280 /**281 * Does the same as CHECK_ERROR_NI(), but executes the |break| statement282 * on failure.283 */284 #define CHECK_ERROR_NI_BREAK(method) \285 if (1) { CHECK_ERROR_NI (method); if (FAILED (rc)) break; } else do {} while (0)286 287 288 /**289 * Asserts the given expression is true. When the expression is false, prints290 * a line containing the failed function/line/file; otherwise does nothing.291 */292 #define ASSERT(expr) \293 do { \294 if (!(expr)) \295 { \296 RTPrintf ("[!] ASSERTION FAILED at line %d: %s\n", __LINE__, #expr); \297 Log (("[!] ASSERTION FAILED at line %d: %s\n", __LINE__, #expr)); \298 } \299 } while (0)300 301 /**302 * Does the same as ASSERT(), but executes the |return ret| statement if the303 * expression to assert is false.304 */305 #define ASSERT_RET(expr, ret) \306 do { ASSERT (expr); if (!(expr)) return (ret); } while (0)307 308 /**309 * Does the same as ASSERT(), but executes the |break| statement if the310 * expression to assert is false.311 */312 #define ASSERT_BREAK(expr) \313 if (1) { ASSERT (expr); if (!(expr)) break; } else do {} while (0)314 315 139 316 140 #endif
Note:
See TracChangeset
for help on using the changeset viewer.