VirtualBox

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

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

com/string.h,Main: Removed Utf8Str::asOutParam() as it mixed allocators - COM/XPCOM allocates the returned param, while RTMemFree is used to free it -> bang.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.7 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
162 char *pszMsg; /* No Utf8Str.asOutParam, different allocator! */
163 rc = aInfo->GetMessage(&pszMsg);
164 AssertComRC(rc);
165 if (NS_SUCCEEDED(rc))
166 {
167 mText = Bstr(pszMsg);
168 nsMemory::Free(pszMsg);
169 }
170 else
171 mText.setNull();
172
173 return S_OK;
174}
175
176// nsIException methods
177////////////////////////////////////////////////////////////////////////////////
178
179/* readonly attribute string message; */
180NS_IMETHODIMP VirtualBoxErrorInfo::GetMessage (char **aMessage)
181{
182 CheckComArgOutPointerValid(aMessage);
183
184 Utf8Str (mText).cloneTo(aMessage);
185 return S_OK;
186}
187
188/* readonly attribute nsresult result; */
189NS_IMETHODIMP VirtualBoxErrorInfo::GetResult (nsresult *aResult)
190{
191 if (!aResult)
192 return NS_ERROR_INVALID_POINTER;
193
194 PRInt32 lrc;
195 nsresult rc = COMGETTER(ResultCode) (&lrc);
196 if (SUCCEEDED(rc))
197 *aResult = lrc;
198 return rc;
199}
200
201/* readonly attribute string name; */
202NS_IMETHODIMP VirtualBoxErrorInfo::GetName (char ** /* aName */)
203{
204 return NS_ERROR_NOT_IMPLEMENTED;
205}
206
207/* readonly attribute string filename; */
208NS_IMETHODIMP VirtualBoxErrorInfo::GetFilename (char ** /* aFilename */)
209{
210 return NS_ERROR_NOT_IMPLEMENTED;
211}
212
213/* readonly attribute PRUint32 lineNumber; */
214NS_IMETHODIMP VirtualBoxErrorInfo::GetLineNumber (PRUint32 * /* aLineNumber */)
215{
216 return NS_ERROR_NOT_IMPLEMENTED;
217}
218
219/* readonly attribute PRUint32 columnNumber; */
220NS_IMETHODIMP VirtualBoxErrorInfo::GetColumnNumber (PRUint32 * /*aColumnNumber */)
221{
222 return NS_ERROR_NOT_IMPLEMENTED;
223}
224
225/* readonly attribute nsIStackFrame location; */
226NS_IMETHODIMP VirtualBoxErrorInfo::GetLocation (nsIStackFrame ** /* aLocation */)
227{
228 return NS_ERROR_NOT_IMPLEMENTED;
229}
230
231/* readonly attribute nsIException inner; */
232NS_IMETHODIMP VirtualBoxErrorInfo::GetInner (nsIException **aInner)
233{
234 ComPtr<IVirtualBoxErrorInfo> info;
235 nsresult rv = COMGETTER(Next) (info.asOutParam());
236 if (FAILED(rv)) return rv;
237 return info.queryInterfaceTo(aInner);
238}
239
240/* readonly attribute nsISupports data; */
241NS_IMETHODIMP VirtualBoxErrorInfo::GetData (nsISupports ** /* aData */)
242{
243 return NS_ERROR_NOT_IMPLEMENTED;
244}
245
246/* string toString (); */
247NS_IMETHODIMP VirtualBoxErrorInfo::ToString (char ** /* retval */)
248{
249 return NS_ERROR_NOT_IMPLEMENTED;
250}
251
252NS_IMPL_THREADSAFE_ISUPPORTS2 (VirtualBoxErrorInfo,
253 nsIException, IVirtualBoxErrorInfo)
254
255#endif // defined(VBOX_WITH_XPCOM)
256/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use