VirtualBox

source: vbox/trunk/src/VBox/Main/include/VirtualBoxErrorInfoImpl.h@ 55631

Last change on this file since 55631 was 55401, checked in by vboxsync, 9 years ago

added a couple of missing Id headers

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.8 KB
Line 
1/* $Id: VirtualBoxErrorInfoImpl.h 55401 2015-04-23 10:03:17Z vboxsync $ */
2/** @file
3 * VirtualBoxErrorInfo COM class definition.
4 */
5
6/*
7 * Copyright (C) 2006-2015 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#ifndef ____H_VIRTUALBOXERRORINFOIMPL
19#define ____H_VIRTUALBOXERRORINFOIMPL
20
21#include "VirtualBoxBase.h"
22
23using namespace com;
24
25class ATL_NO_VTABLE VirtualBoxErrorInfo
26 : public CComObjectRootEx<CComMultiThreadModel>
27 , VBOX_SCRIPTABLE_IMPL(IVirtualBoxErrorInfo)
28#ifndef VBOX_WITH_XPCOM /* IErrorInfo doesn't inherit from IDispatch, ugly 3am hack: */
29 , public IDispatch
30#endif
31{
32public:
33
34 DECLARE_NOT_AGGREGATABLE(VirtualBoxErrorInfo)
35
36 DECLARE_PROTECT_FINAL_CONSTRUCT()
37
38 BEGIN_COM_MAP(VirtualBoxErrorInfo)
39 COM_INTERFACE_ENTRY(IErrorInfo)
40 COM_INTERFACE_ENTRY(IVirtualBoxErrorInfo)
41 COM_INTERFACE_ENTRY(IDispatch)
42 COM_INTERFACE_ENTRY_AGGREGATE(IID_IMarshal, m_pUnkMarshaler)
43 END_COM_MAP()
44
45 HRESULT FinalConstruct()
46 {
47#ifndef VBOX_WITH_XPCOM
48 return CoCreateFreeThreadedMarshaler((IUnknown *)(void *)this, &m_pUnkMarshaler);
49#else
50 return S_OK;
51#endif
52 }
53
54 void FinalRelease()
55 {
56#ifndef VBOX_WITH_XPCOM
57 if (m_pUnkMarshaler)
58 {
59 m_pUnkMarshaler->Release();
60 m_pUnkMarshaler = NULL;
61 }
62#endif
63 }
64
65#ifndef VBOX_WITH_XPCOM
66
67 HRESULT init(IErrorInfo *aInfo);
68
69 STDMETHOD(GetGUID)(GUID *guid);
70 STDMETHOD(GetSource)(BSTR *source);
71 STDMETHOD(GetDescription)(BSTR *description);
72 STDMETHOD(GetHelpFile)(BSTR *pBstrHelpFile);
73 STDMETHOD(GetHelpContext)(DWORD *pdwHelpContext);
74
75 // IDispatch forwarding - 3am hack.
76 typedef IDispatchImpl<IVirtualBoxErrorInfo, &IID_IVirtualBoxErrorInfo, &LIBID_VirtualBox, kTypeLibraryMajorVersion, kTypeLibraryMinorVersion> idi;
77
78 STDMETHOD(GetTypeInfoCount)(UINT *pcInfo)
79 {
80 return idi::GetTypeInfoCount(pcInfo);
81 }
82
83 STDMETHOD(GetTypeInfo)(UINT iInfo, LCID Lcid, ITypeInfo **ppTypeInfo)
84 {
85 return idi::GetTypeInfo(iInfo, Lcid, ppTypeInfo);
86 }
87
88 STDMETHOD(GetIDsOfNames)(REFIID rIID, LPOLESTR *papwszNames, UINT cNames, LCID Lcid, DISPID *paDispIDs)
89 {
90 return idi::GetIDsOfNames(rIID, papwszNames, cNames, Lcid, paDispIDs);
91 }
92
93 STDMETHOD(Invoke)(DISPID idDispMember, REFIID rIID, LCID Lcid, WORD fw, DISPPARAMS *pDispParams,
94 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *piErrArg)
95 {
96 return idi::Invoke(idDispMember, rIID, Lcid, fw, pDispParams, pVarResult, pExcepInfo, piErrArg);
97 }
98
99#else // defined(VBOX_WITH_XPCOM)
100
101 HRESULT init(nsIException *aInfo);
102
103 NS_DECL_NSIEXCEPTION
104
105#endif
106
107 VirtualBoxErrorInfo()
108 : m_resultCode(S_OK),
109 m_resultDetail(0)
110 {}
111
112 // public initializer/uninitializer for internal purposes only
113 HRESULT init(HRESULT aResultCode,
114 const GUID &aIID,
115 const char *pcszComponent,
116 const Utf8Str &strText,
117 IVirtualBoxErrorInfo *aNext = NULL);
118
119 HRESULT initEx(HRESULT aResultCode,
120 LONG aResultDetail,
121 const GUID &aIID,
122 const char *pcszComponent,
123 const Utf8Str &strText,
124 IVirtualBoxErrorInfo *aNext = NULL);
125
126 HRESULT init(const com::ErrorInfo &ei,
127 IVirtualBoxErrorInfo *aNext = NULL);
128
129 // IVirtualBoxErrorInfo properties
130 STDMETHOD(COMGETTER(ResultCode))(LONG *aResultCode);
131 STDMETHOD(COMGETTER(ResultDetail))(LONG *aResultDetail);
132 STDMETHOD(COMGETTER(InterfaceID))(BSTR *aIID);
133 STDMETHOD(COMGETTER(Component))(BSTR *aComponent);
134 STDMETHOD(COMGETTER(Text))(BSTR *aText);
135 STDMETHOD(COMGETTER(Next))(IVirtualBoxErrorInfo **aNext);
136
137private:
138 // FIXME: declare these here until VBoxSupportsTranslation base
139 // is available in this class.
140 static const char *tr(const char *a) { return a; }
141 static HRESULT setError(HRESULT rc,
142 const char * /* a */,
143 const char * /* b */,
144 void * /* c */) { return rc; }
145
146 HRESULT m_resultCode;
147 LONG m_resultDetail;
148 Utf8Str m_strText;
149 Guid m_IID;
150 Utf8Str m_strComponent;
151 ComPtr<IVirtualBoxErrorInfo> mNext;
152
153#ifndef VBOX_WITH_XPCOM
154 IUnknown *m_pUnkMarshaler;
155#endif
156};
157
158#endif // !____H_VIRTUALBOXERRORINFOIMPL
159
160/* vi: set tabstop=4 shiftwidth=4 expandtab: */
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