VirtualBox

source: vbox/trunk/src/VBox/Main/glue/errorprint.cpp@ 25414

Last change on this file since 25414 was 25334, checked in by vboxsync, 15 years ago

Main/glue: print the error code if no other error info is available

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 KB
Line 
1/* $Id: errorprint.cpp 25334 2009-12-11 15:50:23Z vboxsync $ */
2
3/** @file
4 * MS COM / XPCOM Abstraction Layer:
5 * Error info print helpers. This implements the shared code from the macros from errorprint.h.
6 */
7
8/*
9 * Copyright (C) 2009 Sun Microsystems, Inc.
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 *
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
20 * Clara, CA 95054 USA or visit http://www.sun.com if you need
21 * additional information or have any questions.
22 */
23
24
25#include <VBox/com/ErrorInfo.h>
26#include <VBox/com/errorprint.h>
27#include <VBox/log.h>
28
29#include <iprt/stream.h>
30#include <iprt/path.h>
31
32namespace com
33{
34
35
36void GluePrintErrorInfo(com::ErrorInfo &info)
37{
38 Utf8Str str = Utf8StrFmt("ERROR: %ls\n"
39 "Details: code %Rhrc (0x%RX32), component %ls, interface %ls, callee %ls\n"
40 ,
41 info.getText().raw(),
42 info.getResultCode(),
43 info.getResultCode(),
44 info.getComponent().raw(),
45 info.getInterfaceName().raw(),
46 info.getCalleeName().raw());
47 // print and log
48 RTPrintf("%s", str.c_str());
49 Log(("%s", str.c_str()));
50}
51
52void GluePrintErrorContext(const char *pcszContext, const char *pcszSourceFile, uint32_t ulLine)
53{
54 // pcszSourceFile comes from __FILE__ macro, which always contains the full path,
55 // which we don't want to see printed:
56 Utf8Str strFilename(RTPathFilename(pcszSourceFile));
57 Utf8Str str = Utf8StrFmt("Context: \"%s\" at line %d of file %s\n",
58 pcszContext,
59 ulLine,
60 strFilename.c_str());
61 // print and log
62 RTPrintf("%s", str.c_str());
63 Log(("%s", str.c_str()));
64}
65
66void GluePrintRCMessage(HRESULT rc)
67{
68 Utf8Str str = Utf8StrFmt("ERROR: code %Rhra (extended info not available)\n", rc);
69 // print and log
70 RTPrintf("%s", str.c_str());
71 Log(("%s", str.c_str()));
72}
73
74void GlueHandleComError(ComPtr<IUnknown> iface,
75 const char *pcszContext,
76 HRESULT rc,
77 const char *pcszSourceFile,
78 uint32_t ulLine)
79{
80 // if we have full error info, print something nice, and start with the actual error message
81 com::ErrorInfo info(iface);
82 if (info.isFullAvailable() || info.isBasicAvailable())
83 GluePrintErrorInfo(info);
84 else
85 GluePrintRCMessage(rc);
86 GluePrintErrorContext(pcszContext, pcszSourceFile, ulLine);
87}
88
89
90} /* namespace com */
91
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use