VirtualBox

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

Last change on this file since 70772 was 69500, checked in by vboxsync, 7 years ago

*: scm --update-copyright-year

  • 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 69500 2017-10-28 15:14:05Z vboxsync $ */
2/** @file
3 * VirtualBoxErrorInfo COM class definition.
4 */
5
6/*
7 * Copyright (C) 2006-2017 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 ATL::CComObjectRootEx<ATL::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 *pBstrSource);
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 virtual ~VirtualBoxErrorInfo() {}
112
113 // public initializer/uninitializer for internal purposes only
114 HRESULT init(HRESULT aResultCode,
115 const GUID &aIID,
116 const char *pcszComponent,
117 const Utf8Str &strText,
118 IVirtualBoxErrorInfo *aNext = NULL);
119
120 HRESULT initEx(HRESULT aResultCode,
121 LONG aResultDetail,
122 const GUID &aIID,
123 const char *pcszComponent,
124 const Utf8Str &strText,
125 IVirtualBoxErrorInfo *aNext = NULL);
126
127 HRESULT init(const com::ErrorInfo &ei,
128 IVirtualBoxErrorInfo *aNext = NULL);
129
130 // IVirtualBoxErrorInfo properties
131 STDMETHOD(COMGETTER(ResultCode))(LONG *aResultCode);
132 STDMETHOD(COMGETTER(ResultDetail))(LONG *aResultDetail);
133 STDMETHOD(COMGETTER(InterfaceID))(BSTR *aIID);
134 STDMETHOD(COMGETTER(Component))(BSTR *aComponent);
135 STDMETHOD(COMGETTER(Text))(BSTR *aText);
136 STDMETHOD(COMGETTER(Next))(IVirtualBoxErrorInfo **aNext);
137
138private:
139 // FIXME: declare these here until VBoxSupportsTranslation base
140 // is available in this class.
141 static const char *tr(const char *a) { return a; }
142 static HRESULT setError(HRESULT rc,
143 const char * /* a */,
144 const char * /* b */,
145 void * /* c */) { return rc; }
146
147 HRESULT m_resultCode;
148 LONG m_resultDetail;
149 Utf8Str m_strText;
150 Guid m_IID;
151 Utf8Str m_strComponent;
152 ComPtr<IVirtualBoxErrorInfo> mNext;
153
154#ifndef VBOX_WITH_XPCOM
155 IUnknown *m_pUnkMarshaler;
156#endif
157};
158
159#endif // !____H_VIRTUALBOXERRORINFOIMPL
160
161/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use