VirtualBox

source: vbox/trunk/src/VBox/Main/src-all/VirtualBoxErrorInfoImpl.cpp@ 92154

Last change on this file since 92154 was 85237, checked in by vboxsync, 4 years ago

Main/VirtualBoxErrorInfoImpl: More signedness warnings. bugref:9790

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.3 KB
Line 
1/* $Id: VirtualBoxErrorInfoImpl.cpp 85237 2020-07-11 16:37:08Z vboxsync $ */
2/** @file
3 * VirtualBoxErrorInfo COM class implementation
4 */
5
6/*
7 * Copyright (C) 2006-2020 Oracle Corporation
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
18#define LOG_GROUP LOG_GROUP_MAIN
19#include "VirtualBoxErrorInfoImpl.h"
20
21#include <VBox/com/ErrorInfo.h>
22
23// public initializer/uninitializer for internal purposes only
24////////////////////////////////////////////////////////////////////////////////
25
26HRESULT VirtualBoxErrorInfo::init(HRESULT aResultCode,
27 const GUID &aIID,
28 const char *pcszComponent,
29 const Utf8Str &strText,
30 IVirtualBoxErrorInfo *aNext)
31{
32 m_resultCode = aResultCode;
33 m_resultDetail = 0; /* Not being used. */
34 m_IID = aIID;
35 m_strComponent = pcszComponent;
36 m_strText = strText;
37 mNext = aNext;
38
39 return S_OK;
40}
41
42HRESULT VirtualBoxErrorInfo::initEx(HRESULT aResultCode,
43 LONG aResultDetail,
44 const GUID &aIID,
45 const char *pcszComponent,
46 const Utf8Str &strText,
47 IVirtualBoxErrorInfo *aNext)
48{
49 HRESULT hr = init(aResultCode, aIID, pcszComponent, strText, aNext);
50 m_resultDetail = aResultDetail;
51
52 return hr;
53}
54
55HRESULT VirtualBoxErrorInfo::init(const com::ErrorInfo &info,
56 IVirtualBoxErrorInfo *aNext)
57{
58 m_resultCode = info.getResultCode();
59 m_resultDetail = info.getResultDetail();
60 m_IID = info.getInterfaceID();
61 m_strComponent = info.getComponent();
62 m_strText = info.getText();
63
64 /* Recursively create VirtualBoxErrorInfo instances for the next objects. */
65 const com::ErrorInfo *pInfo = info.getNext();
66 if (pInfo)
67 {
68 ComObjPtr<VirtualBoxErrorInfo> nextEI;
69 HRESULT rc = nextEI.createObject();
70 if (FAILED(rc)) return rc;
71 rc = nextEI->init(*pInfo, aNext);
72 if (FAILED(rc)) return rc;
73 mNext = nextEI;
74 }
75 else
76 mNext = aNext;
77
78 return S_OK;
79}
80
81// IVirtualBoxErrorInfo properties
82////////////////////////////////////////////////////////////////////////////////
83
84STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(ResultCode)(LONG *aResultCode)
85{
86 CheckComArgOutPointerValid(aResultCode);
87
88 *aResultCode = (LONG)m_resultCode;
89 return S_OK;
90}
91
92STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(ResultDetail)(LONG *aResultDetail)
93{
94 CheckComArgOutPointerValid(aResultDetail);
95
96 *aResultDetail = m_resultDetail;
97 return S_OK;
98}
99
100STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(InterfaceID)(BSTR *aIID)
101{
102 CheckComArgOutPointerValid(aIID);
103
104 m_IID.toUtf16().cloneTo(aIID);
105 return S_OK;
106}
107
108STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(Component)(BSTR *aComponent)
109{
110 CheckComArgOutPointerValid(aComponent);
111
112 m_strComponent.cloneTo(aComponent);
113 return S_OK;
114}
115
116STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(Text)(BSTR *aText)
117{
118 CheckComArgOutPointerValid(aText);
119
120 m_strText.cloneTo(aText);
121 return S_OK;
122}
123
124STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(Next)(IVirtualBoxErrorInfo **aNext)
125{
126 CheckComArgOutPointerValid(aNext);
127
128 /* this will set aNext to NULL if mNext is null */
129 return mNext.queryInterfaceTo(aNext);
130}
131
132#if !defined(VBOX_WITH_XPCOM)
133
134/**
135 * Initializes itself by fetching error information from the given error info
136 * object.
137 */
138HRESULT VirtualBoxErrorInfo::init(IErrorInfo *aInfo)
139{
140 AssertReturn(aInfo, E_FAIL);
141
142 HRESULT rc = S_OK;
143
144 /* We don't return a failure if talking to IErrorInfo fails below to
145 * protect ourselves from bad IErrorInfo implementations (the
146 * corresponding fields will simply remain null in this case). */
147
148 m_resultCode = S_OK;
149 m_resultDetail = 0;
150 rc = aInfo->GetGUID(m_IID.asOutParam());
151 AssertComRC(rc);
152 Bstr bstrComponent;
153 rc = aInfo->GetSource(bstrComponent.asOutParam());
154 AssertComRC(rc);
155 m_strComponent = bstrComponent;
156 Bstr bstrText;
157 rc = aInfo->GetDescription(bstrText.asOutParam());
158 AssertComRC(rc);
159 m_strText = bstrText;
160
161 return S_OK;
162}
163
164// IErrorInfo methods
165////////////////////////////////////////////////////////////////////////////////
166
167STDMETHODIMP VirtualBoxErrorInfo::GetDescription(BSTR *description)
168{
169 return COMGETTER(Text)(description);
170}
171
172STDMETHODIMP VirtualBoxErrorInfo::GetGUID(GUID *guid)
173{
174 Bstr iid;
175 HRESULT rc = COMGETTER(InterfaceID)(iid.asOutParam());
176 if (SUCCEEDED(rc))
177 *guid = Guid(iid).ref();
178 return rc;
179}
180
181STDMETHODIMP VirtualBoxErrorInfo::GetHelpContext(DWORD *pdwHelpContext)
182{
183 RT_NOREF(pdwHelpContext);
184 return E_NOTIMPL;
185}
186
187STDMETHODIMP VirtualBoxErrorInfo::GetHelpFile(BSTR *pBstrHelpFile)
188{
189 RT_NOREF(pBstrHelpFile);
190 return E_NOTIMPL;
191}
192
193STDMETHODIMP VirtualBoxErrorInfo::GetSource(BSTR *pBstrSource)
194{
195 return COMGETTER(Component)(pBstrSource);
196}
197
198#else // defined(VBOX_WITH_XPCOM)
199
200/**
201 * Initializes itself by fetching error information from the given error info
202 * object.
203 */
204HRESULT VirtualBoxErrorInfo::init(nsIException *aInfo)
205{
206 AssertReturn(aInfo, E_FAIL);
207
208 HRESULT rc = S_OK;
209
210 /* We don't return a failure if talking to nsIException fails below to
211 * protect ourselves from bad nsIException implementations (the
212 * corresponding fields will simply remain null in this case). */
213
214 rc = aInfo->GetResult(&m_resultCode);
215 AssertComRC(rc);
216 m_resultDetail = 0; /* Not being used. */
217
218 char *pszMsg; /* No Utf8Str.asOutParam, different allocator! */
219 rc = aInfo->GetMessage(&pszMsg);
220 AssertComRC(rc);
221 if (NS_SUCCEEDED(rc))
222 {
223 m_strText = pszMsg;
224 nsMemory::Free(pszMsg);
225 }
226 else
227 m_strText.setNull();
228
229 return S_OK;
230}
231
232// nsIException methods
233////////////////////////////////////////////////////////////////////////////////
234
235/* readonly attribute string message; */
236NS_IMETHODIMP VirtualBoxErrorInfo::GetMessage(char **aMessage)
237{
238 CheckComArgOutPointerValid(aMessage);
239
240 m_strText.cloneTo(aMessage);
241 return S_OK;
242}
243
244/* readonly attribute nsresult result; */
245NS_IMETHODIMP VirtualBoxErrorInfo::GetResult(nsresult *aResult)
246{
247 if (!aResult)
248 return NS_ERROR_INVALID_POINTER;
249
250 PRInt32 lrc;
251 nsresult rc = COMGETTER(ResultCode)(&lrc);
252 if (SUCCEEDED(rc))
253 *aResult = (nsresult)lrc;
254 return rc;
255}
256
257/* readonly attribute string name; */
258NS_IMETHODIMP VirtualBoxErrorInfo::GetName(char ** /* aName */)
259{
260 return NS_ERROR_NOT_IMPLEMENTED;
261}
262
263/* readonly attribute string filename; */
264NS_IMETHODIMP VirtualBoxErrorInfo::GetFilename(char ** /* aFilename */)
265{
266 return NS_ERROR_NOT_IMPLEMENTED;
267}
268
269/* readonly attribute PRUint32 lineNumber; */
270NS_IMETHODIMP VirtualBoxErrorInfo::GetLineNumber(PRUint32 * /* aLineNumber */)
271{
272 return NS_ERROR_NOT_IMPLEMENTED;
273}
274
275/* readonly attribute PRUint32 columnNumber; */
276NS_IMETHODIMP VirtualBoxErrorInfo::GetColumnNumber(PRUint32 * /*aColumnNumber */)
277{
278 return NS_ERROR_NOT_IMPLEMENTED;
279}
280
281/* readonly attribute nsIStackFrame location; */
282NS_IMETHODIMP VirtualBoxErrorInfo::GetLocation(nsIStackFrame ** /* aLocation */)
283{
284 return NS_ERROR_NOT_IMPLEMENTED;
285}
286
287/* readonly attribute nsIException inner; */
288NS_IMETHODIMP VirtualBoxErrorInfo::GetInner(nsIException **aInner)
289{
290 ComPtr<IVirtualBoxErrorInfo> info;
291 nsresult rv = COMGETTER(Next)(info.asOutParam());
292 if (FAILED(rv)) return rv;
293 return info.queryInterfaceTo(aInner);
294}
295
296/* readonly attribute nsISupports data; */
297NS_IMETHODIMP VirtualBoxErrorInfo::GetData(nsISupports ** /* aData */)
298{
299 return NS_ERROR_NOT_IMPLEMENTED;
300}
301
302/* string toString(); */
303NS_IMETHODIMP VirtualBoxErrorInfo::ToString(char ** /* retval */)
304{
305 return NS_ERROR_NOT_IMPLEMENTED;
306}
307
308NS_IMPL_THREADSAFE_ISUPPORTS2(VirtualBoxErrorInfo,
309 nsIException, IVirtualBoxErrorInfo)
310
311#endif // defined(VBOX_WITH_XPCOM)
312/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use