VirtualBox

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

Last change on this file since 7607 was 6935, checked in by vboxsync, 17 years ago

Main: Changed 'defined (RT_OS_WINDOWS)' => '!defined (VBOX_WITH_XPCOM)' in relevant places, for clarity (not XPCOM is possible only on Windows so far).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.1 KB
Line 
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
24HRESULT 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
40STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(ResultCode) (HRESULT *aResultCode)
41{
42 if (!aResultCode)
43 return E_POINTER;
44
45 *aResultCode = mResultCode;
46 return S_OK;
47}
48
49STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(InterfaceID) (GUIDPARAMOUT aIID)
50{
51 if (!aIID)
52 return E_POINTER;
53
54 mIID.cloneTo (aIID);
55 return S_OK;
56}
57
58STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(Component) (BSTR *aComponent)
59{
60 if (!aComponent)
61 return E_POINTER;
62
63 mComponent.cloneTo (aComponent);
64 return S_OK;
65}
66
67STDMETHODIMP VirtualBoxErrorInfo::COMGETTER(Text) (BSTR *aText)
68{
69 if (!aText)
70 return E_POINTER;
71
72 mText.cloneTo (aText);
73 return S_OK;
74}
75
76STDMETHODIMP 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 */
91HRESULT 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
115STDMETHODIMP VirtualBoxErrorInfo::GetDescription (BSTR *description)
116{
117 return COMGETTER(Text) (description);
118}
119
120STDMETHODIMP VirtualBoxErrorInfo::GetGUID (GUID *guid)
121{
122 return COMGETTER(InterfaceID) (guid);
123}
124
125STDMETHODIMP VirtualBoxErrorInfo::GetHelpContext (DWORD *pdwHelpContext)
126{
127 return E_NOTIMPL;
128}
129
130STDMETHODIMP VirtualBoxErrorInfo::GetHelpFile (BSTR *pbstrHelpFile)
131{
132 return E_NOTIMPL;
133}
134
135STDMETHODIMP 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 */
146HRESULT 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; */
170NS_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; */
180NS_IMETHODIMP VirtualBoxErrorInfo::GetResult (nsresult *aResult)
181{
182 return COMGETTER(ResultCode) (aResult);
183}
184
185/* readonly attribute string name; */
186NS_IMETHODIMP VirtualBoxErrorInfo::GetName (char **aName)
187{
188 return NS_ERROR_NOT_IMPLEMENTED;
189}
190
191/* readonly attribute string filename; */
192NS_IMETHODIMP VirtualBoxErrorInfo::GetFilename (char **aFilename)
193{
194 return NS_ERROR_NOT_IMPLEMENTED;
195}
196
197/* readonly attribute PRUint32 lineNumber; */
198NS_IMETHODIMP VirtualBoxErrorInfo::GetLineNumber (PRUint32 *aLineNumber)
199{
200 return NS_ERROR_NOT_IMPLEMENTED;
201}
202
203/* readonly attribute PRUint32 columnNumber; */
204NS_IMETHODIMP VirtualBoxErrorInfo::GetColumnNumber (PRUint32 *aColumnNumber)
205{
206 return NS_ERROR_NOT_IMPLEMENTED;
207}
208
209/* readonly attribute nsIStackFrame location; */
210NS_IMETHODIMP VirtualBoxErrorInfo::GetLocation (nsIStackFrame **aLocation)
211{
212 return NS_ERROR_NOT_IMPLEMENTED;
213}
214
215/* readonly attribute nsIException inner; */
216NS_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; */
225NS_IMETHODIMP VirtualBoxErrorInfo::GetData (nsISupports **aData)
226{
227 return NS_ERROR_NOT_IMPLEMENTED;
228}
229
230/* string toString (); */
231NS_IMETHODIMP VirtualBoxErrorInfo::ToString (char **_retval)
232{
233 return NS_ERROR_NOT_IMPLEMENTED;
234}
235
236NS_IMPL_THREADSAFE_ISUPPORTS2 (VirtualBoxErrorInfo,
237 nsIException, IVirtualBoxErrorInfo)
238
239#endif // !defined (VBOX_WITH_XPCOM)
240
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette