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