VirtualBox

source: vbox/trunk/src/VBox/Main/include/ExtPackManagerImpl.h@ 35479

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

IExtPackFile,IExtPackManager: Added progress and display info to the Install and Uninstall methods. No progress object will be returned in 4.0.0 as that is too risky.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.6 KB
Line 
1/* $Id: ExtPackManagerImpl.h 35273 2010-12-21 12:52:38Z vboxsync $ */
2/** @file
3 * VirtualBox Main - interface for Extension Packs, VBoxSVC & VBoxC.
4 */
5
6/*
7 * Copyright (C) 2010 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_EXTPACKMANAGERIMPL
19#define ____H_EXTPACKMANAGERIMPL
20
21#include "VirtualBoxBase.h"
22#include <VBox/ExtPack/ExtPack.h>
23#include <iprt/fs.h>
24
25/**
26 * An extension pack file.
27 */
28class ATL_NO_VTABLE ExtPackFile :
29 public VirtualBoxBase,
30 VBOX_SCRIPTABLE_IMPL(IExtPackFile)
31{
32public:
33 /** @name COM and internal init/term/mapping cruft.
34 * @{ */
35 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(ExtPackFile, IExtPackFile)
36 DECLARE_NOT_AGGREGATABLE(ExtPackFile)
37 DECLARE_PROTECT_FINAL_CONSTRUCT()
38 BEGIN_COM_MAP(ExtPackFile)
39 COM_INTERFACE_ENTRY(ISupportErrorInfo)
40 COM_INTERFACE_ENTRY(IExtPackFile)
41 COM_INTERFACE_ENTRY(IExtPackBase)
42 COM_INTERFACE_ENTRY(IDispatch)
43 END_COM_MAP()
44 DECLARE_EMPTY_CTOR_DTOR(ExtPackFile)
45
46 HRESULT FinalConstruct();
47 void FinalRelease();
48 HRESULT initWithFile(const char *a_pszFile, class ExtPackManager *a_pExtPackMgr);
49 void uninit();
50 RTMEMEF_NEW_AND_DELETE_OPERATORS();
51 /** @} */
52
53 /** @name IExtPackBase interfaces
54 * @{ */
55 STDMETHOD(COMGETTER(Name))(BSTR *a_pbstrName);
56 STDMETHOD(COMGETTER(Description))(BSTR *a_pbstrDescription);
57 STDMETHOD(COMGETTER(Version))(BSTR *a_pbstrVersion);
58 STDMETHOD(COMGETTER(Revision))(ULONG *a_puRevision);
59 STDMETHOD(COMGETTER(VRDEModule))(BSTR *a_pbstrVrdeModule);
60 STDMETHOD(COMGETTER(PlugIns))(ComSafeArrayOut(IExtPackPlugIn *, a_paPlugIns));
61 STDMETHOD(COMGETTER(Usable))(BOOL *a_pfUsable);
62 STDMETHOD(COMGETTER(WhyUnusable))(BSTR *a_pbstrWhy);
63 STDMETHOD(COMGETTER(ShowLicense))(BOOL *a_pfShowIt);
64 STDMETHOD(COMGETTER(License))(BSTR *a_pbstrHtmlLicense);
65 STDMETHOD(QueryLicense)(IN_BSTR a_bstrPreferredLocale, IN_BSTR a_bstrPreferredLanguage,
66 IN_BSTR a_bstrFormat, BSTR *a_pbstrLicense);
67 /** @} */
68
69 /** @name IExtPackFile interfaces
70 * @{ */
71 STDMETHOD(COMGETTER(FilePath))(BSTR *a_pbstrPath);
72 STDMETHOD(Install)(BOOL a_fReplace, IN_BSTR a_bstrDisplayInfo, IProgress **a_ppProgress);
73 /** @} */
74
75private:
76 /** @name Misc init helpers
77 * @{ */
78 HRESULT initFailed(const char *a_pszWhyFmt, ...);
79 /** @} */
80
81private:
82 struct Data;
83 /** Pointer to the private instance. */
84 Data *m;
85
86 friend class ExtPackManager;
87};
88
89
90/**
91 * An installed extension pack.
92 */
93class ATL_NO_VTABLE ExtPack :
94 public VirtualBoxBase,
95 VBOX_SCRIPTABLE_IMPL(IExtPack)
96{
97public:
98 /** @name COM and internal init/term/mapping cruft.
99 * @{ */
100 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(ExtPack, IExtPack)
101 DECLARE_NOT_AGGREGATABLE(ExtPack)
102 DECLARE_PROTECT_FINAL_CONSTRUCT()
103 BEGIN_COM_MAP(ExtPack)
104 COM_INTERFACE_ENTRY(ISupportErrorInfo)
105 COM_INTERFACE_ENTRY(IExtPack)
106 COM_INTERFACE_ENTRY(IExtPackBase)
107 COM_INTERFACE_ENTRY(IDispatch)
108 END_COM_MAP()
109 DECLARE_EMPTY_CTOR_DTOR(ExtPack)
110
111 HRESULT FinalConstruct();
112 void FinalRelease();
113 HRESULT initWithDir(VBOXEXTPACKCTX a_enmContext, const char *a_pszName, const char *a_pszDir);
114 void uninit();
115 RTMEMEF_NEW_AND_DELETE_OPERATORS();
116 /** @} */
117
118 /** @name IExtPackBase interfaces
119 * @{ */
120 STDMETHOD(COMGETTER(Name))(BSTR *a_pbstrName);
121 STDMETHOD(COMGETTER(Description))(BSTR *a_pbstrDescription);
122 STDMETHOD(COMGETTER(Version))(BSTR *a_pbstrVersion);
123 STDMETHOD(COMGETTER(Revision))(ULONG *a_puRevision);
124 STDMETHOD(COMGETTER(VRDEModule))(BSTR *a_pbstrVrdeModule);
125 STDMETHOD(COMGETTER(PlugIns))(ComSafeArrayOut(IExtPackPlugIn *, a_paPlugIns));
126 STDMETHOD(COMGETTER(Usable))(BOOL *a_pfUsable);
127 STDMETHOD(COMGETTER(WhyUnusable))(BSTR *a_pbstrWhy);
128 STDMETHOD(COMGETTER(ShowLicense))(BOOL *a_pfShowIt);
129 STDMETHOD(COMGETTER(License))(BSTR *a_pbstrHtmlLicense);
130 STDMETHOD(QueryLicense)(IN_BSTR a_bstrPreferredLocale, IN_BSTR a_bstrPreferredLanguage,
131 IN_BSTR a_bstrFormat, BSTR *a_pbstrLicense);
132 /** @} */
133
134 /** @name IExtPack interfaces
135 * @{ */
136 STDMETHOD(QueryObject)(IN_BSTR a_bstrObjectId, IUnknown **a_ppUnknown);
137 /** @} */
138
139 /** @name Internal interfaces used by ExtPackManager.
140 * @{ */
141 bool callInstalledHook(IVirtualBox *a_pVirtualBox, AutoWriteLock *a_pLock, PRTERRINFO pErrInfo);
142 HRESULT callUninstallHookAndClose(IVirtualBox *a_pVirtualBox, bool a_fForcedRemoval);
143 bool callVirtualBoxReadyHook(IVirtualBox *a_pVirtualBox, AutoWriteLock *a_pLock);
144 bool callConsoleReadyHook(IConsole *a_pConsole, AutoWriteLock *a_pLock);
145 bool callVmCreatedHook(IVirtualBox *a_pVirtualBox, IMachine *a_pMachine, AutoWriteLock *a_pLock);
146 bool callVmConfigureVmmHook(IConsole *a_pConsole, PVM a_pVM, AutoWriteLock *a_pLock, int *a_pvrc);
147 bool callVmPowerOnHook(IConsole *a_pConsole, PVM a_pVM, AutoWriteLock *a_pLock, int *a_pvrc);
148 bool callVmPowerOffHook(IConsole *a_pConsole, PVM a_pVM, AutoWriteLock *a_pLock);
149 HRESULT checkVrde(void);
150 HRESULT getVrdpLibraryName(Utf8Str *a_pstrVrdeLibrary);
151 bool wantsToBeDefaultVrde(void) const;
152 HRESULT refresh(bool *pfCanDelete);
153 /** @} */
154
155protected:
156 /** @name Internal helper methods.
157 * @{ */
158 void probeAndLoad(void);
159 bool findModule(const char *a_pszName, const char *a_pszExt, VBOXEXTPACKMODKIND a_enmKind,
160 Utf8Str *a_ppStrFound, bool *a_pfNative, PRTFSOBJINFO a_pObjInfo) const;
161 static bool objinfoIsEqual(PCRTFSOBJINFO pObjInfo1, PCRTFSOBJINFO pObjInfo2);
162 /** @} */
163
164 /** @name Extension Pack Helpers
165 * @{ */
166 static DECLCALLBACK(int) hlpFindModule(PCVBOXEXTPACKHLP pHlp, const char *pszName, const char *pszExt,
167 VBOXEXTPACKMODKIND enmKind, char *pszFound, size_t cbFound, bool *pfNative);
168 static DECLCALLBACK(int) hlpGetFilePath(PCVBOXEXTPACKHLP pHlp, const char *pszFilename, char *pszPath, size_t cbPath);
169 static DECLCALLBACK(VBOXEXTPACKCTX) hlpGetContext(PCVBOXEXTPACKHLP pHlp);
170 static DECLCALLBACK(int) hlpReservedN(PCVBOXEXTPACKHLP pHlp);
171 /** @} */
172
173private:
174 struct Data;
175 /** Pointer to the private instance. */
176 Data *m;
177
178 friend class ExtPackManager;
179};
180
181
182/**
183 * Extension pack manager.
184 */
185class ATL_NO_VTABLE ExtPackManager :
186 public VirtualBoxBase,
187 VBOX_SCRIPTABLE_IMPL(IExtPackManager)
188{
189 /** @name COM and internal init/term/mapping cruft.
190 * @{ */
191 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(ExtPackManager, IExtPackManager)
192 DECLARE_NOT_AGGREGATABLE(ExtPackManager)
193 DECLARE_PROTECT_FINAL_CONSTRUCT()
194 BEGIN_COM_MAP(ExtPackManager)
195 COM_INTERFACE_ENTRY(ISupportErrorInfo)
196 COM_INTERFACE_ENTRY(IExtPackManager)
197 COM_INTERFACE_ENTRY(IDispatch)
198 END_COM_MAP()
199 DECLARE_EMPTY_CTOR_DTOR(ExtPackManager)
200
201 HRESULT FinalConstruct();
202 void FinalRelease();
203 HRESULT initExtPackManager(VirtualBox *a_pVirtualBox, VBOXEXTPACKCTX a_enmContext);
204 void uninit();
205 RTMEMEF_NEW_AND_DELETE_OPERATORS();
206 /** @} */
207
208 /** @name IExtPack interfaces
209 * @{ */
210 STDMETHOD(COMGETTER(InstalledExtPacks))(ComSafeArrayOut(IExtPack *, a_paExtPacks));
211 STDMETHOD(Find)(IN_BSTR a_bstrName, IExtPack **a_pExtPack);
212 STDMETHOD(OpenExtPackFile)(IN_BSTR a_bstrTarball, IExtPackFile **a_ppExtPackFile);
213 STDMETHOD(Uninstall)(IN_BSTR a_bstrName, BOOL a_fForcedRemoval, IN_BSTR a_bstrDisplayInfo, IProgress **a_ppProgress);
214 STDMETHOD(Cleanup)(void);
215 STDMETHOD(QueryAllPlugInsForFrontend)(IN_BSTR a_bstrFrontend, ComSafeArrayOut(BSTR, a_pabstrPlugInModules));
216 STDMETHOD(IsExtPackUsable(IN_BSTR a_bstrExtPack, BOOL *aUsable));
217 /** @} */
218
219 /** @name Internal interfaces used by other Main classes.
220 * @{ */
221 HRESULT doInstall(ExtPackFile *a_pExtPackFile, bool a_fReplace, Utf8Str const *a_pstrDisplayInfo,
222 IProgress **a_ppProgress);
223 void callAllVirtualBoxReadyHooks(void);
224 void callAllConsoleReadyHooks(IConsole *a_pConsole);
225 void callAllVmCreatedHooks(IMachine *a_pMachine);
226 int callAllVmConfigureVmmHooks(IConsole *a_pConsole, PVM a_pVM);
227 int callAllVmPowerOnHooks(IConsole *a_pConsole, PVM a_pVM);
228 void callAllVmPowerOffHooks(IConsole *a_pConsole, PVM a_pVM);
229 HRESULT checkVrdeExtPack(Utf8Str const *a_pstrExtPack);
230 int getVrdeLibraryPathForExtPack(Utf8Str const *a_pstrExtPack, Utf8Str *a_pstrVrdeLibrary);
231 HRESULT getDefaultVrdeExtPack(Utf8Str *a_pstrExtPack);
232 bool isExtPackUsable(const char *a_pszExtPack);
233 /** @} */
234
235private:
236 HRESULT runSetUidToRootHelper(Utf8Str const *a_pstrDisplayInfo, const char *a_pszCommand, ...);
237 ExtPack *findExtPack(const char *a_pszName);
238 void removeExtPack(const char *a_pszName);
239 HRESULT refreshExtPack(const char *a_pszName, bool a_fUnsuableIsError, ExtPack **a_ppExtPack);
240
241private:
242 struct Data;
243 /** Pointer to the private instance. */
244 Data *m;
245};
246
247#endif
248/* 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