1 | /* $Id: SystemPropertiesImpl.h 96670 2022-09-09 12:40:38Z vboxsync $ */
|
---|
2 |
|
---|
3 | /** @file
|
---|
4 | *
|
---|
5 | * VirtualBox COM class implementation
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Copyright (C) 2006-2022 Oracle and/or its affiliates.
|
---|
10 | *
|
---|
11 | * This file is part of VirtualBox base platform packages, as
|
---|
12 | * available from https://www.virtualbox.org.
|
---|
13 | *
|
---|
14 | * This program is free software; you can redistribute it and/or
|
---|
15 | * modify it under the terms of the GNU General Public License
|
---|
16 | * as published by the Free Software Foundation, in version 3 of the
|
---|
17 | * License.
|
---|
18 | *
|
---|
19 | * This program is distributed in the hope that it will be useful, but
|
---|
20 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
22 | * General Public License for more details.
|
---|
23 | *
|
---|
24 | * You should have received a copy of the GNU General Public License
|
---|
25 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
26 | *
|
---|
27 | * SPDX-License-Identifier: GPL-3.0-only
|
---|
28 | */
|
---|
29 |
|
---|
30 | #ifndef MAIN_INCLUDED_SystemPropertiesImpl_h
|
---|
31 | #define MAIN_INCLUDED_SystemPropertiesImpl_h
|
---|
32 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
33 | # pragma once
|
---|
34 | #endif
|
---|
35 |
|
---|
36 | #include "MediumFormatImpl.h"
|
---|
37 | #include "SystemPropertiesWrap.h"
|
---|
38 |
|
---|
39 | class CPUProfile;
|
---|
40 |
|
---|
41 | namespace settings
|
---|
42 | {
|
---|
43 | struct SystemProperties;
|
---|
44 | }
|
---|
45 |
|
---|
46 | class ATL_NO_VTABLE SystemProperties :
|
---|
47 | public SystemPropertiesWrap
|
---|
48 | {
|
---|
49 | public:
|
---|
50 | typedef std::list<ComObjPtr<MediumFormat> > MediumFormatList;
|
---|
51 | typedef std::list<ComObjPtr<CPUProfile> > CPUProfileList_T;
|
---|
52 |
|
---|
53 | DECLARE_COMMON_CLASS_METHODS(SystemProperties)
|
---|
54 |
|
---|
55 | HRESULT FinalConstruct();
|
---|
56 | void FinalRelease();
|
---|
57 |
|
---|
58 | // public initializer/uninitializer for internal purposes only
|
---|
59 | HRESULT init(VirtualBox *aParent);
|
---|
60 | void uninit();
|
---|
61 |
|
---|
62 | // public methods for internal purposes only
|
---|
63 | // (ensure there is a caller and a read lock before calling them!)
|
---|
64 | HRESULT i_loadSettings(const settings::SystemProperties &data);
|
---|
65 | HRESULT i_saveSettings(settings::SystemProperties &data);
|
---|
66 |
|
---|
67 | ComObjPtr<MediumFormat> i_mediumFormat(const Utf8Str &aFormat);
|
---|
68 | ComObjPtr<MediumFormat> i_mediumFormatFromExtension(const Utf8Str &aExt);
|
---|
69 |
|
---|
70 | int i_loadVDPlugin(const char *pszPluginLibrary);
|
---|
71 | int i_unloadVDPlugin(const char *pszPluginLibrary);
|
---|
72 |
|
---|
73 | HRESULT i_getDefaultAdditionsISO(com::Utf8Str &aDefaultAdditionsISO);
|
---|
74 |
|
---|
75 | private:
|
---|
76 |
|
---|
77 | // wrapped ISystemProperties properties
|
---|
78 | HRESULT getMinGuestRAM(ULONG *aMinGuestRAM) RT_OVERRIDE;
|
---|
79 | HRESULT getMaxGuestRAM(ULONG *aMaxGuestRAM) RT_OVERRIDE;
|
---|
80 | HRESULT getMinGuestVRAM(ULONG *aMinGuestVRAM) RT_OVERRIDE;
|
---|
81 | HRESULT getMaxGuestVRAM(ULONG *aMaxGuestVRAM) RT_OVERRIDE;
|
---|
82 | HRESULT getMinGuestCPUCount(ULONG *aMinGuestCPUCount) RT_OVERRIDE;
|
---|
83 | HRESULT getMaxGuestCPUCount(ULONG *aMaxGuestCPUCount) RT_OVERRIDE;
|
---|
84 | HRESULT getMaxGuestMonitors(ULONG *aMaxGuestMonitors) RT_OVERRIDE;
|
---|
85 | HRESULT getInfoVDSize(LONG64 *aInfoVDSize) RT_OVERRIDE;
|
---|
86 | HRESULT getSerialPortCount(ULONG *aSerialPortCount) RT_OVERRIDE;
|
---|
87 | HRESULT getParallelPortCount(ULONG *aParallelPortCount) RT_OVERRIDE;
|
---|
88 | HRESULT getMaxBootPosition(ULONG *aMaxBootPosition) RT_OVERRIDE;
|
---|
89 | HRESULT getRawModeSupported(BOOL *aRawModeSupported) RT_OVERRIDE;
|
---|
90 | HRESULT getExclusiveHwVirt(BOOL *aExclusiveHwVirt) RT_OVERRIDE;
|
---|
91 | HRESULT setExclusiveHwVirt(BOOL aExclusiveHwVirt) RT_OVERRIDE;
|
---|
92 | HRESULT getDefaultMachineFolder(com::Utf8Str &aDefaultMachineFolder) RT_OVERRIDE;
|
---|
93 | HRESULT setDefaultMachineFolder(const com::Utf8Str &aDefaultMachineFolder) RT_OVERRIDE;
|
---|
94 | HRESULT getLoggingLevel(com::Utf8Str &aLoggingLevel) RT_OVERRIDE;
|
---|
95 | HRESULT setLoggingLevel(const com::Utf8Str &aLoggingLevel) RT_OVERRIDE;
|
---|
96 | HRESULT getMediumFormats(std::vector<ComPtr<IMediumFormat> > &aMediumFormats) RT_OVERRIDE;
|
---|
97 | HRESULT getDefaultHardDiskFormat(com::Utf8Str &aDefaultHardDiskFormat) RT_OVERRIDE;
|
---|
98 | HRESULT setDefaultHardDiskFormat(const com::Utf8Str &aDefaultHardDiskFormat) RT_OVERRIDE;
|
---|
99 | HRESULT getFreeDiskSpaceWarning(LONG64 *aFreeDiskSpaceWarning) RT_OVERRIDE;
|
---|
100 | HRESULT setFreeDiskSpaceWarning(LONG64 aFreeDiskSpaceWarning) RT_OVERRIDE;
|
---|
101 | HRESULT getFreeDiskSpacePercentWarning(ULONG *aFreeDiskSpacePercentWarning) RT_OVERRIDE;
|
---|
102 | HRESULT setFreeDiskSpacePercentWarning(ULONG aFreeDiskSpacePercentWarning) RT_OVERRIDE;
|
---|
103 | HRESULT getFreeDiskSpaceError(LONG64 *aFreeDiskSpaceError) RT_OVERRIDE;
|
---|
104 | HRESULT setFreeDiskSpaceError(LONG64 aFreeDiskSpaceError) RT_OVERRIDE;
|
---|
105 | HRESULT getFreeDiskSpacePercentError(ULONG *aFreeDiskSpacePercentError) RT_OVERRIDE;
|
---|
106 | HRESULT setFreeDiskSpacePercentError(ULONG aFreeDiskSpacePercentError) RT_OVERRIDE;
|
---|
107 | HRESULT getVRDEAuthLibrary(com::Utf8Str &aVRDEAuthLibrary) RT_OVERRIDE;
|
---|
108 | HRESULT setVRDEAuthLibrary(const com::Utf8Str &aVRDEAuthLibrary) RT_OVERRIDE;
|
---|
109 | HRESULT getWebServiceAuthLibrary(com::Utf8Str &aWebServiceAuthLibrary) RT_OVERRIDE;
|
---|
110 | HRESULT setWebServiceAuthLibrary(const com::Utf8Str &aWebServiceAuthLibrary) RT_OVERRIDE;
|
---|
111 | HRESULT getDefaultVRDEExtPack(com::Utf8Str &aDefaultVRDEExtPack) RT_OVERRIDE;
|
---|
112 | HRESULT setDefaultVRDEExtPack(const com::Utf8Str &aDefaultVRDEExtPack) RT_OVERRIDE;
|
---|
113 | HRESULT getDefaultCryptoExtPack(com::Utf8Str &aDefaultCryptoExtPack) RT_OVERRIDE;
|
---|
114 | HRESULT setDefaultCryptoExtPack(const com::Utf8Str &aDefaultCryptoExtPack) RT_OVERRIDE;
|
---|
115 | HRESULT getLogHistoryCount(ULONG *aLogHistoryCount) RT_OVERRIDE;
|
---|
116 | HRESULT setLogHistoryCount(ULONG aLogHistoryCount) RT_OVERRIDE;
|
---|
117 | HRESULT getDefaultAudioDriver(AudioDriverType_T *aDefaultAudioDriver) RT_OVERRIDE;
|
---|
118 | HRESULT getAutostartDatabasePath(com::Utf8Str &aAutostartDatabasePath) RT_OVERRIDE;
|
---|
119 | HRESULT setAutostartDatabasePath(const com::Utf8Str &aAutostartDatabasePath) RT_OVERRIDE;
|
---|
120 | HRESULT getDefaultAdditionsISO(com::Utf8Str &aDefaultAdditionsISO) RT_OVERRIDE;
|
---|
121 | HRESULT setDefaultAdditionsISO(const com::Utf8Str &aDefaultAdditionsISO) RT_OVERRIDE;
|
---|
122 | HRESULT getDefaultFrontend(com::Utf8Str &aDefaultFrontend) RT_OVERRIDE;
|
---|
123 | HRESULT setDefaultFrontend(const com::Utf8Str &aDefaultFrontend) RT_OVERRIDE;
|
---|
124 | HRESULT getScreenShotFormats(std::vector<BitmapFormat_T> &aScreenShotFormats) RT_OVERRIDE;
|
---|
125 | HRESULT getProxyMode(ProxyMode_T *pProxyMode) RT_OVERRIDE;
|
---|
126 | HRESULT setProxyMode(ProxyMode_T aProxyMode) RT_OVERRIDE;
|
---|
127 | HRESULT getProxyURL(com::Utf8Str &aProxyURL) RT_OVERRIDE;
|
---|
128 | HRESULT setProxyURL(const com::Utf8Str &aProxyURL) RT_OVERRIDE;
|
---|
129 | HRESULT getSupportedParavirtProviders(std::vector<ParavirtProvider_T> &aSupportedParavirtProviders) RT_OVERRIDE;
|
---|
130 | HRESULT getSupportedClipboardModes(std::vector<ClipboardMode_T> &aSupportedClipboardModes) RT_OVERRIDE;
|
---|
131 | HRESULT getSupportedDnDModes(std::vector<DnDMode_T> &aSupportedDnDModes) RT_OVERRIDE;
|
---|
132 | HRESULT getSupportedFirmwareTypes(std::vector<FirmwareType_T> &aSupportedFirmwareTypes) RT_OVERRIDE;
|
---|
133 | HRESULT getSupportedPointingHIDTypes(std::vector<PointingHIDType_T> &aSupportedPointingHIDTypes) RT_OVERRIDE;
|
---|
134 | HRESULT getSupportedKeyboardHIDTypes(std::vector<KeyboardHIDType_T> &aSupportedKeyboardHIDTypes) RT_OVERRIDE;
|
---|
135 | HRESULT getSupportedVFSTypes(std::vector<VFSType_T> &aSupportedVFSTypes) RT_OVERRIDE;
|
---|
136 | HRESULT getSupportedImportOptions(std::vector<ImportOptions_T> &aSupportedImportOptions) RT_OVERRIDE;
|
---|
137 | HRESULT getSupportedExportOptions(std::vector<ExportOptions_T> &aSupportedExportOptions) RT_OVERRIDE;
|
---|
138 | HRESULT getSupportedRecordingFeatures(std::vector<RecordingFeature_T> &aSupportedRecordingFeatures) RT_OVERRIDE;
|
---|
139 | HRESULT getSupportedRecordingAudioCodecs(std::vector<RecordingAudioCodec_T> &aSupportedRecordingAudioCodecs) RT_OVERRIDE;
|
---|
140 | HRESULT getSupportedRecordingVideoCodecs(std::vector<RecordingVideoCodec_T> &aSupportedRecordingVideoCodecs) RT_OVERRIDE;
|
---|
141 | HRESULT getSupportedRecordingVSModes(std::vector<RecordingVideoScalingMode_T> &aSupportedRecordingVideoScalingModes) RT_OVERRIDE;
|
---|
142 | HRESULT getSupportedRecordingARCModes(std::vector<RecordingRateControlMode_T> &aSupportedRecordingAudioRateControlModes) RT_OVERRIDE;
|
---|
143 | HRESULT getSupportedRecordingVRCModes(std::vector<RecordingRateControlMode_T> &aSupportedRecordingVideoRateControlModes) RT_OVERRIDE;
|
---|
144 | HRESULT getSupportedGraphicsControllerTypes(std::vector<GraphicsControllerType_T> &aSupportedGraphicsControllerTypes) RT_OVERRIDE;
|
---|
145 | HRESULT getSupportedCloneOptions(std::vector<CloneOptions_T> &aSupportedCloneOptions) RT_OVERRIDE;
|
---|
146 | HRESULT getSupportedAutostopTypes(std::vector<AutostopType_T> &aSupportedAutostopTypes) RT_OVERRIDE;
|
---|
147 | HRESULT getSupportedVMProcPriorities(std::vector<VMProcPriority_T> &aSupportedVMProcPriorities) RT_OVERRIDE;
|
---|
148 | HRESULT getSupportedNetworkAttachmentTypes(std::vector<NetworkAttachmentType_T> &aSupportedNetworkAttachmentTypes) RT_OVERRIDE;
|
---|
149 | HRESULT getSupportedNetworkAdapterTypes(std::vector<NetworkAdapterType_T> &aSupportedNetworkAdapterTypes) RT_OVERRIDE;
|
---|
150 | HRESULT getSupportedPortModes(std::vector<PortMode_T> &aSupportedPortModes) RT_OVERRIDE;
|
---|
151 | HRESULT getSupportedUartTypes(std::vector<UartType_T> &aSupportedUartTypes) RT_OVERRIDE;
|
---|
152 | HRESULT getSupportedUSBControllerTypes(std::vector<USBControllerType_T> &aSupportedUSBControllerTypes) RT_OVERRIDE;
|
---|
153 | HRESULT getSupportedAudioDriverTypes(std::vector<AudioDriverType_T> &aSupportedAudioDriverTypes) RT_OVERRIDE;
|
---|
154 | HRESULT getSupportedAudioControllerTypes(std::vector<AudioControllerType_T> &aSupportedAudioControllerTypes) RT_OVERRIDE;
|
---|
155 | HRESULT getSupportedStorageBuses(std::vector<StorageBus_T> &aSupportedStorageBuses) RT_OVERRIDE;
|
---|
156 | HRESULT getSupportedStorageControllerTypes(std::vector<StorageControllerType_T> &aSupportedStorageControllerTypes) RT_OVERRIDE;
|
---|
157 | HRESULT getSupportedChipsetTypes(std::vector<ChipsetType_T> &aSupportedChipsetTypes) RT_OVERRIDE;
|
---|
158 | HRESULT getSupportedIommuTypes(std::vector<IommuType_T> &aSupportedIommuTypes) RT_OVERRIDE;
|
---|
159 | HRESULT getSupportedTpmTypes(std::vector<TpmType_T> &aSupportedTpmTypes) RT_OVERRIDE;
|
---|
160 | HRESULT getLanguageId(com::Utf8Str &aLanguageId) RT_OVERRIDE;
|
---|
161 | HRESULT setLanguageId(const com::Utf8Str &aLanguageId) RT_OVERRIDE;
|
---|
162 |
|
---|
163 | // wrapped ISystemProperties methods
|
---|
164 | HRESULT getMaxNetworkAdapters(ChipsetType_T aChipset,
|
---|
165 | ULONG *aMaxNetworkAdapters) RT_OVERRIDE;
|
---|
166 | HRESULT getMaxNetworkAdaptersOfType(ChipsetType_T aChipset,
|
---|
167 | NetworkAttachmentType_T aType,
|
---|
168 | ULONG *aMaxNetworkAdapters) RT_OVERRIDE;
|
---|
169 | HRESULT getMaxDevicesPerPortForStorageBus(StorageBus_T aBus,
|
---|
170 | ULONG *aMaxDevicesPerPort) RT_OVERRIDE;
|
---|
171 | HRESULT getMinPortCountForStorageBus(StorageBus_T aBus,
|
---|
172 | ULONG *aMinPortCount) RT_OVERRIDE;
|
---|
173 | HRESULT getMaxPortCountForStorageBus(StorageBus_T aBus,
|
---|
174 | ULONG *aMaxPortCount) RT_OVERRIDE;
|
---|
175 | HRESULT getMaxInstancesOfStorageBus(ChipsetType_T aChipset,
|
---|
176 | StorageBus_T aBus,
|
---|
177 | ULONG *aMaxInstances) RT_OVERRIDE;
|
---|
178 | HRESULT getDeviceTypesForStorageBus(StorageBus_T aBus,
|
---|
179 | std::vector<DeviceType_T> &aDeviceTypes) RT_OVERRIDE;
|
---|
180 | HRESULT getStorageBusForStorageControllerType(StorageControllerType_T aStorageControllerType,
|
---|
181 | StorageBus_T *aStorageBus) RT_OVERRIDE;
|
---|
182 | HRESULT getStorageControllerTypesForStorageBus(StorageBus_T aStorageBus,
|
---|
183 | std::vector<StorageControllerType_T> &aStorageControllerTypes) RT_OVERRIDE;
|
---|
184 | HRESULT getDefaultIoCacheSettingForStorageController(StorageControllerType_T aControllerType,
|
---|
185 | BOOL *aEnabled) RT_OVERRIDE;
|
---|
186 | HRESULT getStorageControllerHotplugCapable(StorageControllerType_T aControllerType,
|
---|
187 | BOOL *aHotplugCapable) RT_OVERRIDE;
|
---|
188 | HRESULT getMaxInstancesOfUSBControllerType(ChipsetType_T aChipset,
|
---|
189 | USBControllerType_T aType,
|
---|
190 | ULONG *aMaxInstances) RT_OVERRIDE;
|
---|
191 | HRESULT getCPUProfiles(CPUArchitecture_T aArchitecture, const com::Utf8Str &aNamePattern,
|
---|
192 | std::vector<ComPtr<ICPUProfile> > &aProfiles) RT_OVERRIDE;
|
---|
193 |
|
---|
194 | HRESULT i_getUserHomeDirectory(Utf8Str &strPath);
|
---|
195 | HRESULT i_setDefaultMachineFolder(const Utf8Str &strPath);
|
---|
196 | HRESULT i_setLoggingLevel(const com::Utf8Str &aLoggingLevel);
|
---|
197 | HRESULT i_setDefaultHardDiskFormat(const com::Utf8Str &aFormat);
|
---|
198 | HRESULT i_setVRDEAuthLibrary(const com::Utf8Str &aPath);
|
---|
199 |
|
---|
200 | HRESULT i_setWebServiceAuthLibrary(const com::Utf8Str &aPath);
|
---|
201 | HRESULT i_setDefaultVRDEExtPack(const com::Utf8Str &aExtPack);
|
---|
202 | HRESULT i_setDefaultCryptoExtPack(const com::Utf8Str &aExtPack);
|
---|
203 | HRESULT i_setAutostartDatabasePath(const com::Utf8Str &aPath);
|
---|
204 | HRESULT i_setDefaultAdditionsISO(const com::Utf8Str &aPath);
|
---|
205 | HRESULT i_setDefaultFrontend(const com::Utf8Str &aDefaultFrontend);
|
---|
206 |
|
---|
207 | VirtualBox * const mParent;
|
---|
208 |
|
---|
209 | settings::SystemProperties *m;
|
---|
210 |
|
---|
211 | MediumFormatList m_llMediumFormats;
|
---|
212 |
|
---|
213 | bool m_fLoadedX86CPUProfiles; /**< Set if we've loaded the x86 and AMD64 CPU profiles. */
|
---|
214 | CPUProfileList_T m_llCPUProfiles; /**< List of loaded CPU profiles. */
|
---|
215 |
|
---|
216 | friend class VirtualBox;
|
---|
217 | };
|
---|
218 |
|
---|
219 | #endif /* !MAIN_INCLUDED_SystemPropertiesImpl_h */
|
---|
220 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|