VirtualBox

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

Last change on this file since 25414 was 25149, checked in by vboxsync, 14 years ago

Main: cleanup: remove all CheckComRC* macros (no functional change)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.5 KB
Line 
1/** @file
2 *
3 * VirtualBoxErrorInfo COM classe implementation
4 */
5
6/*
7 * Copyright (C) 2006-2009 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22#include "VirtualBoxErrorInfoImpl.h"
23#include "Logging.h"
24
25// public initializer/uninitializer for internal purposes only
26////////////////////////////////////////////////////////////////////////////////
27
28HRESULT VirtualBoxErrorInfo::init (HRESULT aResultCode, const GUID &aIID,
29 CBSTR aComponent, CBSTR aText,
30 IVirtualBoxErrorInfo *aNext)
31{
32 mResultCode = aResultCode;
33 mIID = aIID;
34 mComponent = aComponent;
35 mText = aText;
36 mNext = aNext;
37
38 return S_OK;
39}
40
41// IVirtualBoxErrorInfo properties
42////////////////////////////////////////////////////////////////////////////////
43
44STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(ResultCode) (LONG *aResultCode)
45{
46 CheckComArgOutPointerValid(aResultCode);
47
48 *aResultCode = mResultCode;
49 return S_OK;
50}
51
52STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(InterfaceID) (BSTR *aIID)
53{
54 CheckComArgOutPointerValid(aIID);
55
56 mIID.toUtf16().cloneTo(aIID);
57 return S_OK;
58}
59
60STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(Component) (BSTR *aComponent)
61{
62 CheckComArgOutPointerValid(aComponent);
63
64 mComponent.cloneTo(aComponent);
65 return S_OK;
66}
67
68STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(Text) (BSTR *aText)
69{
70 CheckComArgOutPointerValid(aText);
71
72 mText.cloneTo(aText);
73 return S_OK;
74}
75
76STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(Next) (IVirtualBoxErrorInfo **aNext)
77{
78 CheckComArgOutPointerValid(aNext);
79
80 /* this will set aNext to NULL if mNext is null */
81 return mNext.queryInterfaceTo(aNext);
82}
83
84#if !defined (VBOX_WITH_XPCOM)
85
86/**
87 * Initializes itself by fetching error information from the given error info
88 * object.
89 */
90HRESULT VirtualBoxErrorInfo::init (IErrorInfo *aInfo)
91{
92 AssertReturn(aInfo, E_FAIL);
93
94 HRESULT rc = S_OK;
95
96 /* We don't return a failure if talking to IErrorInfo fails below to
97 * protect ourselves from bad IErrorInfo implementations (the
98 * corresponding fields will simply remain null in this case). */
99
100 mResultCode = S_OK;
101 rc = aInfo->GetGUID (mIID.asOutParam());
102 AssertComRC (rc);
103 rc = aInfo->GetSource (mComponent.asOutParam());
104 AssertComRC (rc);
105 rc = aInfo->GetDescription (mText.asOutParam());
106 AssertComRC (rc);
107
108 return S_OK;
109}
110
111// IErrorInfo methods
112////////////////////////////////////////////////////////////////////////////////
113
114STDMETHODIMP VirtualBoxErrorInfo::GetDescription (BSTR *description)
115{
116 return COMGETTER(Text) (description);
117}
118
119STDMETHODIMP VirtualBoxErrorInfo::GetGUID (GUID *guid)
120{
121 Bstr iid;
122 HRESULT rc = COMGETTER(InterfaceID) (iid.asOutParam());
123 if (SUCCEEDED(rc))
124 *guid = Guid(iid);
125 return rc;
126}
127
128STDMETHODIMP VirtualBoxErrorInfo::GetHelpContext (DWORD *pdwHelpContext)
129{
130 return E_NOTIMPL;
131}
132
133STDMETHODIMP VirtualBoxErrorInfo::GetHelpFile (BSTR *pbstrHelpFile)
134{
135 return E_NOTIMPL;
136}
137
138STDMETHODIMP VirtualBoxErrorInfo::GetSource (BSTR *source)
139{
140 return COMGETTER(Component) (source);
141}
142
143#else // !defined (VBOX_WITH_XPCOM)
144
145/**
146 * Initializes itself by fetching error information from the given error info
147 * object.
148 */
149HRESULT VirtualBoxErrorInfo::init (nsIException *aInfo)
150{
151 AssertReturn(aInfo, E_FAIL);
152
153 HRESULT rc = S_OK;
154
155 /* We don't return a failure if talking to nsIException fails below to
156 * protect ourselves from bad nsIException implementations (the
157 * corresponding fields will simply remain null in this case). */
158
159 rc = aInfo->GetResult (&mResultCode);
160 AssertComRC (rc);
161 Utf8Str message;
162 rc = aInfo->GetMessage(message.asOutParam());
163 message.jolt();
164 AssertComRC (rc);
165 mText = message;
166
167 return S_OK;
168}
169
170// nsIException methods
171////////////////////////////////////////////////////////////////////////////////
172
173/* readonly attribute string message; */
174NS_IMETHODIMP VirtualBoxErrorInfo::GetMessage (char **aMessage)
175{
176 CheckComArgOutPointerValid(aMessage);
177
178 Utf8Str (mText).cloneTo(aMessage);
179 return S_OK;
180}
181
182/* readonly attribute nsresult result; */
183NS_IMETHODIMP VirtualBoxErrorInfo::GetResult (nsresult *aResult)
184{
185 if (!aResult)
186 return NS_ERROR_INVALID_POINTER;
187
188 PRInt32 lrc;
189 nsresult rc = COMGETTER(ResultCode) (&lrc);
190 if (SUCCEEDED(rc))
191 *aResult = lrc;
192 return rc;
193}
194
195/* readonly attribute string name; */
196NS_IMETHODIMP VirtualBoxErrorInfo::GetName (char ** /* aName */)
197{
198 return NS_ERROR_NOT_IMPLEMENTED;
199}
200
201/* readonly attribute string filename; */
202NS_IMETHODIMP VirtualBoxErrorInfo::GetFilename (char ** /* aFilename */)
203{
204 return NS_ERROR_NOT_IMPLEMENTED;
205}
206
207/* readonly attribute PRUint32 lineNumber; */
208NS_IMETHODIMP VirtualBoxErrorInfo::GetLineNumber (PRUint32 * /* aLineNumber */)
209{
210 return NS_ERROR_NOT_IMPLEMENTED;
211}
212
213/* readonly attribute PRUint32 columnNumber; */
214NS_IMETHODIMP VirtualBoxErrorInfo::GetColumnNumber (PRUint32 * /*aColumnNumber */)
215{
216 return NS_ERROR_NOT_IMPLEMENTED;
217}
218
219/* readonly attribute nsIStackFrame location; */
220NS_IMETHODIMP VirtualBoxErrorInfo::GetLocation (nsIStackFrame ** /* aLocation */)
221{
222 return NS_ERROR_NOT_IMPLEMENTED;
223}
224
225/* readonly attribute nsIException inner; */
226NS_IMETHODIMP VirtualBoxErrorInfo::GetInner (nsIException **aInner)
227{
228 ComPtr<IVirtualBoxErrorInfo> info;
229 nsresult rv = COMGETTER(Next) (info.asOutParam());
230 if (FAILED(rv)) return rv;
231 return info.queryInterfaceTo(aInner);
232}
233
234/* readonly attribute nsISupports data; */
235NS_IMETHODIMP VirtualBoxErrorInfo::GetData (nsISupports ** /* aData */)
236{
237 return NS_ERROR_NOT_IMPLEMENTED;
238}
239
240/* string toString (); */
241NS_IMETHODIMP VirtualBoxErrorInfo::ToString (char ** /* retval */)
242{
243 return NS_ERROR_NOT_IMPLEMENTED;
244}
245
246NS_IMPL_THREADSAFE_ISUPPORTS2 (VirtualBoxErrorInfo,
247 nsIException, IVirtualBoxErrorInfo)
248
249#endif // !defined (VBOX_WITH_XPCOM)
250/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use