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
313
314
315
316
317
|
/* $Id: VirtualBoxErrorInfoImpl.cpp $ */
/** @file
* VirtualBoxErrorInfo COM class implementation
*/
/*
* Copyright (C) 2006-2022 Oracle and/or its affiliates.
*
* This file is part of VirtualBox base platform packages, as
* available from https://www.virtualbox.org.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, in version 3 of the
* License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <https://www.gnu.org/licenses>.
*
* SPDX-License-Identifier: GPL-3.0-only
*/
#define LOG_GROUP LOG_GROUP_MAIN
#include "VirtualBoxErrorInfoImpl.h"
#include <VBox/com/ErrorInfo.h>
// public initializer/uninitializer for internal purposes only
////////////////////////////////////////////////////////////////////////////////
HRESULT VirtualBoxErrorInfo::init(HRESULT aResultCode,
const GUID &aIID,
const char *pcszComponent,
const Utf8Str &strText,
IVirtualBoxErrorInfo *aNext)
{
m_resultCode = aResultCode;
m_resultDetail = 0; /* Not being used. */
m_IID = aIID;
m_strComponent = pcszComponent;
m_strText = strText;
mNext = aNext;
return S_OK;
}
HRESULT VirtualBoxErrorInfo::initEx(HRESULT aResultCode,
LONG aResultDetail,
const GUID &aIID,
const char *pcszComponent,
const Utf8Str &strText,
IVirtualBoxErrorInfo *aNext)
{
HRESULT hrc = init(aResultCode, aIID, pcszComponent, strText, aNext);
m_resultDetail = aResultDetail;
return hrc;
}
HRESULT VirtualBoxErrorInfo::init(const com::ErrorInfo &info,
IVirtualBoxErrorInfo *aNext)
{
m_resultCode = info.getResultCode();
m_resultDetail = info.getResultDetail();
m_IID = info.getInterfaceID();
m_strComponent = info.getComponent();
m_strText = info.getText();
/* Recursively create VirtualBoxErrorInfo instances for the next objects. */
const com::ErrorInfo *pInfo = info.getNext();
if (pInfo)
{
ComObjPtr<VirtualBoxErrorInfo> nextEI;
HRESULT hrc = nextEI.createObject();
if (FAILED(hrc)) return hrc;
hrc = nextEI->init(*pInfo, aNext);
if (FAILED(hrc)) return hrc;
mNext = nextEI;
}
else
mNext = aNext;
return S_OK;
}
// IVirtualBoxErrorInfo properties
////////////////////////////////////////////////////////////////////////////////
STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(ResultCode)(LONG *aResultCode)
{
CheckComArgOutPointerValid(aResultCode);
*aResultCode = (LONG)m_resultCode;
return S_OK;
}
STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(ResultDetail)(LONG *aResultDetail)
{
CheckComArgOutPointerValid(aResultDetail);
*aResultDetail = m_resultDetail;
return S_OK;
}
STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(InterfaceID)(BSTR *aIID)
{
CheckComArgOutPointerValid(aIID);
m_IID.toUtf16().cloneTo(aIID);
return S_OK;
}
STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(Component)(BSTR *aComponent)
{
CheckComArgOutPointerValid(aComponent);
m_strComponent.cloneTo(aComponent);
return S_OK;
}
STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(Text)(BSTR *aText)
{
CheckComArgOutPointerValid(aText);
m_strText.cloneTo(aText);
return S_OK;
}
STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(Next)(IVirtualBoxErrorInfo **aNext)
{
CheckComArgOutPointerValid(aNext);
/* this will set aNext to NULL if mNext is null */
return mNext.queryInterfaceTo(aNext);
}
#if !defined(VBOX_WITH_XPCOM)
/**
* Initializes itself by fetching error information from the given error info
* object.
*/
HRESULT VirtualBoxErrorInfo::init(IErrorInfo *aInfo)
{
AssertReturn(aInfo, E_FAIL);
/* We don't return a failure if talking to IErrorInfo fails below to
* protect ourselves from bad IErrorInfo implementations (the
* corresponding fields will simply remain null in this case). */
m_resultCode = S_OK;
m_resultDetail = 0;
HRESULT hrc = aInfo->GetGUID(m_IID.asOutParam());
AssertComRC(hrc);
Bstr bstrComponent;
hrc = aInfo->GetSource(bstrComponent.asOutParam());
AssertComRC(hrc);
m_strComponent = bstrComponent;
Bstr bstrText;
hrc = aInfo->GetDescription(bstrText.asOutParam());
AssertComRC(hrc);
m_strText = bstrText;
return S_OK;
}
// IErrorInfo methods
////////////////////////////////////////////////////////////////////////////////
STDMETHODIMP VirtualBoxErrorInfo::GetDescription(BSTR *description)
{
return COMGETTER(Text)(description);
}
STDMETHODIMP VirtualBoxErrorInfo::GetGUID(GUID *guid)
{
Bstr iid;
HRESULT hrc = COMGETTER(InterfaceID)(iid.asOutParam());
if (SUCCEEDED(hrc))
*guid = Guid(iid).ref();
return hrc;
}
STDMETHODIMP VirtualBoxErrorInfo::GetHelpContext(DWORD *pdwHelpContext)
{
RT_NOREF(pdwHelpContext);
return E_NOTIMPL;
}
STDMETHODIMP VirtualBoxErrorInfo::GetHelpFile(BSTR *pBstrHelpFile)
{
RT_NOREF(pBstrHelpFile);
return E_NOTIMPL;
}
STDMETHODIMP VirtualBoxErrorInfo::GetSource(BSTR *pBstrSource)
{
return COMGETTER(Component)(pBstrSource);
}
#else // defined(VBOX_WITH_XPCOM)
/**
* Initializes itself by fetching error information from the given error info
* object.
*/
HRESULT VirtualBoxErrorInfo::init(nsIException *aInfo)
{
AssertReturn(aInfo, E_FAIL);
/* We don't return a failure if talking to nsIException fails below to
* protect ourselves from bad nsIException implementations (the
* corresponding fields will simply remain null in this case). */
HRESULT hrc = aInfo->GetResult(&m_resultCode);
AssertComRC(hrc);
m_resultDetail = 0; /* Not being used. */
char *pszMsg; /* No Utf8Str.asOutParam, different allocator! */
hrc = aInfo->GetMessage(&pszMsg);
AssertComRC(hrc);
if (NS_SUCCEEDED(hrc))
{
m_strText = pszMsg;
nsMemory::Free(pszMsg);
}
else
m_strText.setNull();
return S_OK;
}
// nsIException methods
////////////////////////////////////////////////////////////////////////////////
/* readonly attribute string message; */
NS_IMETHODIMP VirtualBoxErrorInfo::GetMessage(char **aMessage)
{
CheckComArgOutPointerValid(aMessage);
m_strText.cloneTo(aMessage);
return S_OK;
}
/* readonly attribute nsresult result; */
NS_IMETHODIMP VirtualBoxErrorInfo::GetResult(nsresult *aResult)
{
AssertReturn(aResult, NS_ERROR_INVALID_POINTER);
PRInt32 lrc;
nsresult hrc = COMGETTER(ResultCode)(&lrc);
if (SUCCEEDED(hrc))
*aResult = (nsresult)lrc;
return hrc;
}
/* readonly attribute string name; */
NS_IMETHODIMP VirtualBoxErrorInfo::GetName(char ** /* aName */)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute string filename; */
NS_IMETHODIMP VirtualBoxErrorInfo::GetFilename(char ** /* aFilename */)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute PRUint32 lineNumber; */
NS_IMETHODIMP VirtualBoxErrorInfo::GetLineNumber(PRUint32 * /* aLineNumber */)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute PRUint32 columnNumber; */
NS_IMETHODIMP VirtualBoxErrorInfo::GetColumnNumber(PRUint32 * /*aColumnNumber */)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIStackFrame location; */
NS_IMETHODIMP VirtualBoxErrorInfo::GetLocation(nsIStackFrame ** /* aLocation */)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIException inner; */
NS_IMETHODIMP VirtualBoxErrorInfo::GetInner(nsIException **aInner)
{
ComPtr<IVirtualBoxErrorInfo> info;
nsresult rv = COMGETTER(Next)(info.asOutParam());
if (FAILED(rv)) return rv;
return info.queryInterfaceTo(aInner);
}
/* readonly attribute nsISupports data; */
NS_IMETHODIMP VirtualBoxErrorInfo::GetData(nsISupports ** /* aData */)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* string toString(); */
NS_IMETHODIMP VirtualBoxErrorInfo::ToString(char ** /* retval */)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMPL_THREADSAFE_ISUPPORTS2(VirtualBoxErrorInfo,
nsIException, IVirtualBoxErrorInfo)
#endif // defined(VBOX_WITH_XPCOM)
/* vi: set tabstop=4 shiftwidth=4 expandtab: */
|