VirtualBox

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

Last change on this file since 48297 was 46823, checked in by vboxsync, 11 years ago

Main: fix breakage in previous client/server separation cleanup

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.9 KB
Line 
1/* $Id: ExtPackManagerImpl.h 46823 2013-06-27 09:37:07Z vboxsync $ */
2/** @file
3 * VirtualBox Main - interface for Extension Packs, VBoxSVC & VBoxC.
4 */
5
6/*
7 * Copyright (C) 2010-2012 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#if !defined(VBOX_COM_INPROC)
26/**
27 * An extension pack file.
28 */
29class ATL_NO_VTABLE ExtPackFile :
30 public VirtualBoxBase,
31 VBOX_SCRIPTABLE_IMPL(IExtPackFile)
32{
33public:
34 /** @name COM and internal init/term/mapping cruft.
35 * @{ */
36 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(ExtPackFile, IExtPackFile)
37 DECLARE_NOT_AGGREGATABLE(ExtPackFile)
38 DECLARE_PROTECT_FINAL_CONSTRUCT()
39 BEGIN_COM_MAP(ExtPackFile)
40 VBOX_DEFAULT_INTERFACE_ENTRIES(IExtPackFile)
41 COM_INTERFACE_ENTRY(IExtPackBase)
42 END_COM_MAP()
43 DECLARE_EMPTY_CTOR_DTOR(ExtPackFile)
44
45 HRESULT FinalConstruct();
46 void FinalRelease();
47 HRESULT initWithFile(const char *a_pszFile, const char *a_pszDigest, class ExtPackManager *a_pExtPackMgr, VirtualBox *a_pVirtualBox);
48 void uninit();
49 RTMEMEF_NEW_AND_DELETE_OPERATORS();
50 /** @} */
51
52 /** @name IExtPackBase interfaces
53 * @{ */
54 STDMETHOD(COMGETTER(Name))(BSTR *a_pbstrName);
55 STDMETHOD(COMGETTER(Description))(BSTR *a_pbstrDescription);
56 STDMETHOD(COMGETTER(Version))(BSTR *a_pbstrVersion);
57 STDMETHOD(COMGETTER(Revision))(ULONG *a_puRevision);
58 STDMETHOD(COMGETTER(Edition))(BSTR *a_pbstrEdition);
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#endif
89
90
91/**
92 * An installed extension pack.
93 */
94class ATL_NO_VTABLE ExtPack :
95 public VirtualBoxBase,
96 VBOX_SCRIPTABLE_IMPL(IExtPack)
97{
98public:
99 /** @name COM and internal init/term/mapping cruft.
100 * @{ */
101 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(ExtPack, IExtPack)
102 DECLARE_NOT_AGGREGATABLE(ExtPack)
103 DECLARE_PROTECT_FINAL_CONSTRUCT()
104 BEGIN_COM_MAP(ExtPack)
105 VBOX_DEFAULT_INTERFACE_ENTRIES(IExtPack)
106 COM_INTERFACE_ENTRY(IExtPackBase)
107 END_COM_MAP()
108 DECLARE_EMPTY_CTOR_DTOR(ExtPack)
109
110 HRESULT FinalConstruct();
111 void FinalRelease();
112 HRESULT initWithDir(VBOXEXTPACKCTX a_enmContext, const char *a_pszName, const char *a_pszDir);
113 void uninit();
114 RTMEMEF_NEW_AND_DELETE_OPERATORS();
115 /** @} */
116
117 /** @name IExtPackBase interfaces
118 * @{ */
119 STDMETHOD(COMGETTER(Name))(BSTR *a_pbstrName);
120 STDMETHOD(COMGETTER(Description))(BSTR *a_pbstrDescription);
121 STDMETHOD(COMGETTER(Version))(BSTR *a_pbstrVersion);
122 STDMETHOD(COMGETTER(Revision))(ULONG *a_puRevision);
123 STDMETHOD(COMGETTER(Edition))(BSTR *a_pbstrEdition);
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 VBOX_DEFAULT_INTERFACE_ENTRIES(IExtPackManager)
196 END_COM_MAP()
197 DECLARE_EMPTY_CTOR_DTOR(ExtPackManager)
198
199 HRESULT FinalConstruct();
200 void FinalRelease();
201 HRESULT initExtPackManager(VirtualBox *a_pVirtualBox, VBOXEXTPACKCTX a_enmContext);
202 void uninit();
203 RTMEMEF_NEW_AND_DELETE_OPERATORS();
204 /** @} */
205
206 /** @name IExtPack interfaces
207 * @{ */
208 STDMETHOD(COMGETTER(InstalledExtPacks))(ComSafeArrayOut(IExtPack *, a_paExtPacks));
209 STDMETHOD(Find)(IN_BSTR a_bstrName, IExtPack **a_pExtPack);
210 STDMETHOD(OpenExtPackFile)(IN_BSTR a_bstrTarball, IExtPackFile **a_ppExtPackFile);
211 STDMETHOD(Uninstall)(IN_BSTR a_bstrName, BOOL a_fForcedRemoval, IN_BSTR a_bstrDisplayInfo, IProgress **a_ppProgress);
212 STDMETHOD(Cleanup)(void);
213 STDMETHOD(QueryAllPlugInsForFrontend)(IN_BSTR a_bstrFrontend, ComSafeArrayOut(BSTR, a_pabstrPlugInModules));
214 STDMETHOD(IsExtPackUsable(IN_BSTR a_bstrExtPack, BOOL *aUsable));
215 /** @} */
216
217 /** @name Internal interfaces used by other Main classes.
218 * @{ */
219#if !defined(VBOX_COM_INPROC)
220 static DECLCALLBACK(int) doInstallThreadProc(RTTHREAD hThread, void *pvJob);
221 HRESULT doInstall(ExtPackFile *a_pExtPackFile, bool a_fReplace, Utf8Str const *a_pstrDisplayInfo);
222 static DECLCALLBACK(int) doUninstallThreadProc(RTTHREAD hThread, void *pvJob);
223 HRESULT doUninstall(const Utf8Str *a_pstrName, bool a_fForcedRemoval, const Utf8Str *a_pstrDisplayInfo);
224#endif
225 void callAllVirtualBoxReadyHooks(void);
226 void callAllConsoleReadyHooks(IConsole *a_pConsole);
227 void callAllVmCreatedHooks(IMachine *a_pMachine);
228 int callAllVmConfigureVmmHooks(IConsole *a_pConsole, PVM a_pVM);
229 int callAllVmPowerOnHooks(IConsole *a_pConsole, PVM a_pVM);
230 void callAllVmPowerOffHooks(IConsole *a_pConsole, PVM a_pVM);
231 HRESULT checkVrdeExtPack(Utf8Str const *a_pstrExtPack);
232 int getVrdeLibraryPathForExtPack(Utf8Str const *a_pstrExtPack, Utf8Str *a_pstrVrdeLibrary);
233 HRESULT getDefaultVrdeExtPack(Utf8Str *a_pstrExtPack);
234 bool isExtPackUsable(const char *a_pszExtPack);
235 void dumpAllToReleaseLog(void);
236 /** @} */
237
238private:
239 HRESULT runSetUidToRootHelper(Utf8Str const *a_pstrDisplayInfo, const char *a_pszCommand, ...);
240 ExtPack *findExtPack(const char *a_pszName);
241 void removeExtPack(const char *a_pszName);
242 HRESULT refreshExtPack(const char *a_pszName, bool a_fUnsuableIsError, ExtPack **a_ppExtPack);
243
244private:
245 struct Data;
246 /** Pointer to the private instance. */
247 Data *m;
248};
249
250#endif
251/* 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