1 | /* $Id: CloudProviderManagerImpl.h 96407 2022-08-22 17:43:14Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox COM class implementation
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2018-2022 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | */
|
---|
27 |
|
---|
28 | #ifndef MAIN_INCLUDED_CloudProviderManagerImpl_h
|
---|
29 | #define MAIN_INCLUDED_CloudProviderManagerImpl_h
|
---|
30 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
31 | # pragma once
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | #include "CloudProviderManagerWrap.h"
|
---|
35 |
|
---|
36 | class ATL_NO_VTABLE CloudProviderManager
|
---|
37 | : public CloudProviderManagerWrap
|
---|
38 | {
|
---|
39 | public:
|
---|
40 | CloudProviderManager();
|
---|
41 | virtual ~CloudProviderManager();
|
---|
42 |
|
---|
43 | HRESULT FinalConstruct();
|
---|
44 | void FinalRelease();
|
---|
45 |
|
---|
46 | HRESULT init(VirtualBox *aVirtualBox);
|
---|
47 | void uninit();
|
---|
48 |
|
---|
49 | #ifdef VBOX_WITH_EXTPACK
|
---|
50 | // Safe helpers, take care of caller and lock themselves.
|
---|
51 | bool i_canRemoveExtPack(IExtPack *aExtPack);
|
---|
52 | void i_addExtPack(IExtPack *aExtPack);
|
---|
53 | #endif
|
---|
54 |
|
---|
55 | private:
|
---|
56 | // wrapped ICloudProviderManager attributes and methods
|
---|
57 | HRESULT getProviders(std::vector<ComPtr<ICloudProvider> > &aProviders);
|
---|
58 | HRESULT getProviderById(const com::Guid &aProviderId,
|
---|
59 | ComPtr<ICloudProvider> &aProvider);
|
---|
60 | HRESULT getProviderByShortName(const com::Utf8Str &aProviderName,
|
---|
61 | ComPtr<ICloudProvider> &aProvider);
|
---|
62 | HRESULT getProviderByName(const com::Utf8Str &aProviderName,
|
---|
63 | ComPtr<ICloudProvider> &aProvider);
|
---|
64 |
|
---|
65 | private:
|
---|
66 | #ifdef VBOX_WITH_EXTPACK
|
---|
67 | typedef std::map<com::Utf8Str, ComPtr<ICloudProviderManager> > ExtPackNameCloudProviderManagerMap;
|
---|
68 | ExtPackNameCloudProviderManagerMap m_mapCloudProviderManagers;
|
---|
69 |
|
---|
70 | typedef std::vector<com::Utf8Str> ExtPackNameVec;
|
---|
71 | ExtPackNameVec m_astrExtPackNames;
|
---|
72 | #endif
|
---|
73 |
|
---|
74 | typedef std::vector<ComPtr<ICloudProvider> > CloudProviderVec;
|
---|
75 | CloudProviderVec m_apCloudProviders;
|
---|
76 |
|
---|
77 | VirtualBox * const m_pVirtualBox;
|
---|
78 | };
|
---|
79 |
|
---|
80 | #endif /* !MAIN_INCLUDED_CloudProviderManagerImpl_h */
|
---|
81 |
|
---|
82 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|