VirtualBox

source: vbox/trunk/src/VBox/Main/include/SystemPropertiesImpl.h@ 82797

Last change on this file since 82797 was 82268, checked in by vboxsync, 5 years ago

Main/SystemProperties: add a method for querying which storage bus is applicable for a certain storage controller and a method for querying which storage controller types are valid for a certain storage bus

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 11.5 KB
Line 
1/* $Id: SystemPropertiesImpl.h 82268 2019-11-28 16:15:37Z vboxsync $ */
2
3/** @file
4 *
5 * VirtualBox COM class implementation
6 */
7
8/*
9 * Copyright (C) 2006-2019 Oracle Corporation
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 */
19
20#ifndef MAIN_INCLUDED_SystemPropertiesImpl_h
21#define MAIN_INCLUDED_SystemPropertiesImpl_h
22#ifndef RT_WITHOUT_PRAGMA_ONCE
23# pragma once
24#endif
25
26#include "MediumFormatImpl.h"
27#include "SystemPropertiesWrap.h"
28
29
30namespace settings
31{
32 struct SystemProperties;
33}
34
35class ATL_NO_VTABLE SystemProperties :
36 public SystemPropertiesWrap
37{
38public:
39 typedef std::list<ComObjPtr<MediumFormat> > MediumFormatList;
40
41 DECLARE_EMPTY_CTOR_DTOR(SystemProperties)
42
43 HRESULT FinalConstruct();
44 void FinalRelease();
45
46 // public initializer/uninitializer for internal purposes only
47 HRESULT init(VirtualBox *aParent);
48 void uninit();
49
50 // public methods for internal purposes only
51 // (ensure there is a caller and a read lock before calling them!)
52 HRESULT i_loadSettings(const settings::SystemProperties &data);
53 HRESULT i_saveSettings(settings::SystemProperties &data);
54
55 ComObjPtr<MediumFormat> i_mediumFormat(const Utf8Str &aFormat);
56 ComObjPtr<MediumFormat> i_mediumFormatFromExtension(const Utf8Str &aExt);
57
58 int i_loadVDPlugin(const char *pszPluginLibrary);
59 int i_unloadVDPlugin(const char *pszPluginLibrary);
60
61 HRESULT i_getDefaultAdditionsISO(com::Utf8Str &aDefaultAdditionsISO);
62
63private:
64
65 // wrapped ISystemProperties properties
66 HRESULT getMinGuestRAM(ULONG *aMinGuestRAM) RT_OVERRIDE;
67 HRESULT getMaxGuestRAM(ULONG *aMaxGuestRAM) RT_OVERRIDE;
68 HRESULT getMinGuestVRAM(ULONG *aMinGuestVRAM) RT_OVERRIDE;
69 HRESULT getMaxGuestVRAM(ULONG *aMaxGuestVRAM) RT_OVERRIDE;
70 HRESULT getMinGuestCPUCount(ULONG *aMinGuestCPUCount) RT_OVERRIDE;
71 HRESULT getMaxGuestCPUCount(ULONG *aMaxGuestCPUCount) RT_OVERRIDE;
72 HRESULT getMaxGuestMonitors(ULONG *aMaxGuestMonitors) RT_OVERRIDE;
73 HRESULT getInfoVDSize(LONG64 *aInfoVDSize) RT_OVERRIDE;
74 HRESULT getSerialPortCount(ULONG *aSerialPortCount) RT_OVERRIDE;
75 HRESULT getParallelPortCount(ULONG *aParallelPortCount) RT_OVERRIDE;
76 HRESULT getMaxBootPosition(ULONG *aMaxBootPosition) RT_OVERRIDE;
77 HRESULT getRawModeSupported(BOOL *aRawModeSupported) RT_OVERRIDE;
78 HRESULT getExclusiveHwVirt(BOOL *aExclusiveHwVirt) RT_OVERRIDE;
79 HRESULT setExclusiveHwVirt(BOOL aExclusiveHwVirt) RT_OVERRIDE;
80 HRESULT getDefaultMachineFolder(com::Utf8Str &aDefaultMachineFolder) RT_OVERRIDE;
81 HRESULT setDefaultMachineFolder(const com::Utf8Str &aDefaultMachineFolder) RT_OVERRIDE;
82 HRESULT getLoggingLevel(com::Utf8Str &aLoggingLevel) RT_OVERRIDE;
83 HRESULT setLoggingLevel(const com::Utf8Str &aLoggingLevel) RT_OVERRIDE;
84 HRESULT getMediumFormats(std::vector<ComPtr<IMediumFormat> > &aMediumFormats) RT_OVERRIDE;
85 HRESULT getDefaultHardDiskFormat(com::Utf8Str &aDefaultHardDiskFormat) RT_OVERRIDE;
86 HRESULT setDefaultHardDiskFormat(const com::Utf8Str &aDefaultHardDiskFormat) RT_OVERRIDE;
87 HRESULT getFreeDiskSpaceWarning(LONG64 *aFreeDiskSpaceWarning) RT_OVERRIDE;
88 HRESULT setFreeDiskSpaceWarning(LONG64 aFreeDiskSpaceWarning) RT_OVERRIDE;
89 HRESULT getFreeDiskSpacePercentWarning(ULONG *aFreeDiskSpacePercentWarning) RT_OVERRIDE;
90 HRESULT setFreeDiskSpacePercentWarning(ULONG aFreeDiskSpacePercentWarning) RT_OVERRIDE;
91 HRESULT getFreeDiskSpaceError(LONG64 *aFreeDiskSpaceError) RT_OVERRIDE;
92 HRESULT setFreeDiskSpaceError(LONG64 aFreeDiskSpaceError) RT_OVERRIDE;
93 HRESULT getFreeDiskSpacePercentError(ULONG *aFreeDiskSpacePercentError) RT_OVERRIDE;
94 HRESULT setFreeDiskSpacePercentError(ULONG aFreeDiskSpacePercentError) RT_OVERRIDE;
95 HRESULT getVRDEAuthLibrary(com::Utf8Str &aVRDEAuthLibrary) RT_OVERRIDE;
96 HRESULT setVRDEAuthLibrary(const com::Utf8Str &aVRDEAuthLibrary) RT_OVERRIDE;
97 HRESULT getWebServiceAuthLibrary(com::Utf8Str &aWebServiceAuthLibrary) RT_OVERRIDE;
98 HRESULT setWebServiceAuthLibrary(const com::Utf8Str &aWebServiceAuthLibrary) RT_OVERRIDE;
99 HRESULT getDefaultVRDEExtPack(com::Utf8Str &aDefaultVRDEExtPack) RT_OVERRIDE;
100 HRESULT setDefaultVRDEExtPack(const com::Utf8Str &aDefaultVRDEExtPack) RT_OVERRIDE;
101 HRESULT getLogHistoryCount(ULONG *aLogHistoryCount) RT_OVERRIDE;
102 HRESULT setLogHistoryCount(ULONG aLogHistoryCount) RT_OVERRIDE;
103 HRESULT getDefaultAudioDriver(AudioDriverType_T *aDefaultAudioDriver) RT_OVERRIDE;
104 HRESULT getAutostartDatabasePath(com::Utf8Str &aAutostartDatabasePath) RT_OVERRIDE;
105 HRESULT setAutostartDatabasePath(const com::Utf8Str &aAutostartDatabasePath) RT_OVERRIDE;
106 HRESULT getDefaultAdditionsISO(com::Utf8Str &aDefaultAdditionsISO) RT_OVERRIDE;
107 HRESULT setDefaultAdditionsISO(const com::Utf8Str &aDefaultAdditionsISO) RT_OVERRIDE;
108 HRESULT getDefaultFrontend(com::Utf8Str &aDefaultFrontend) RT_OVERRIDE;
109 HRESULT setDefaultFrontend(const com::Utf8Str &aDefaultFrontend) RT_OVERRIDE;
110 HRESULT getScreenShotFormats(std::vector<BitmapFormat_T> &aScreenShotFormats) RT_OVERRIDE;
111 HRESULT getProxyMode(ProxyMode_T *pProxyMode) RT_OVERRIDE;
112 HRESULT setProxyMode(ProxyMode_T aProxyMode) RT_OVERRIDE;
113 HRESULT getProxyURL(com::Utf8Str &aProxyURL) RT_OVERRIDE;
114 HRESULT setProxyURL(const com::Utf8Str &aProxyURL) RT_OVERRIDE;
115 HRESULT getSupportedParavirtProviders(std::vector<ParavirtProvider_T> &aSupportedParavirtProviders) RT_OVERRIDE;
116 HRESULT getSupportedClipboardModes(std::vector<ClipboardMode_T> &aSupportedClipboardModes) RT_OVERRIDE;
117 HRESULT getSupportedDnDModes(std::vector<DnDMode_T> &aSupportedDnDModes) RT_OVERRIDE;
118 HRESULT getSupportedFirmwareTypes(std::vector<FirmwareType_T> &aSupportedFirmwareTypes) RT_OVERRIDE;
119 HRESULT getSupportedPointingHIDTypes(std::vector<PointingHIDType_T> &aSupportedPointingHIDTypes) RT_OVERRIDE;
120 HRESULT getSupportedKeyboardHIDTypes(std::vector<KeyboardHIDType_T> &aSupportedKeyboardHIDTypes) RT_OVERRIDE;
121 HRESULT getSupportedVFSTypes(std::vector<VFSType_T> &aSupportedVFSTypes) RT_OVERRIDE;
122 HRESULT getSupportedImportOptions(std::vector<ImportOptions_T> &aSupportedImportOptions) RT_OVERRIDE;
123 HRESULT getSupportedExportOptions(std::vector<ExportOptions_T> &aSupportedExportOptions) RT_OVERRIDE;
124 HRESULT getSupportedRecordingAudioCodecs(std::vector<RecordingAudioCodec_T> &aSupportedRecordingAudioCodecs) RT_OVERRIDE;
125 HRESULT getSupportedRecordingVideoCodecs(std::vector<RecordingVideoCodec_T> &aSupportedRecordingVideoCodecs) RT_OVERRIDE;
126 HRESULT getSupportedRecordingVSMethods(std::vector<RecordingVideoScalingMethod_T> &aSupportedRecordingVideoScalingMethods) RT_OVERRIDE;
127 HRESULT getSupportedRecordingVRCModes(std::vector<RecordingVideoRateControlMode_T> &aSupportedRecordingVideoRateControlModes) RT_OVERRIDE;
128 HRESULT getSupportedGraphicsControllerTypes(std::vector<GraphicsControllerType_T> &aSupportedGraphicsControllerTypes) RT_OVERRIDE;
129 HRESULT getSupportedCloneOptions(std::vector<CloneOptions_T> &aSupportedCloneOptions) RT_OVERRIDE;
130 HRESULT getSupportedAutostopTypes(std::vector<AutostopType_T> &aSupportedAutostopTypes) RT_OVERRIDE;
131 HRESULT getSupportedVMProcPriorities(std::vector<VMProcPriority_T> &aSupportedVMProcPriorities) RT_OVERRIDE;
132 HRESULT getSupportedNetworkAttachmentTypes(std::vector<NetworkAttachmentType_T> &aSupportedNetworkAttachmentTypes) RT_OVERRIDE;
133 HRESULT getSupportedNetworkAdapterTypes(std::vector<NetworkAdapterType_T> &aSupportedNetworkAdapterTypes) RT_OVERRIDE;
134 HRESULT getSupportedPortModes(std::vector<PortMode_T> &aSupportedPortModes) RT_OVERRIDE;
135 HRESULT getSupportedUartTypes(std::vector<UartType_T> &aSupportedUartTypes) RT_OVERRIDE;
136 HRESULT getSupportedUSBControllerTypes(std::vector<USBControllerType_T> &aSupportedUSBControllerTypes) RT_OVERRIDE;
137 HRESULT getSupportedAudioDriverTypes(std::vector<AudioDriverType_T> &aSupportedAudioDriverTypes) RT_OVERRIDE;
138 HRESULT getSupportedAudioControllerTypes(std::vector<AudioControllerType_T> &aSupportedAudioControllerTypes) RT_OVERRIDE;
139 HRESULT getSupportedStorageBuses(std::vector<StorageBus_T> &aSupportedStorageBuses) RT_OVERRIDE;
140 HRESULT getSupportedStorageControllerTypes(std::vector<StorageControllerType_T> &aSupportedStorageControllerTypes) RT_OVERRIDE;
141 HRESULT getSupportedChipsetTypes(std::vector<ChipsetType_T> &aSupportedChipsetTypes) RT_OVERRIDE;
142
143 // wrapped ISystemProperties methods
144 HRESULT getMaxNetworkAdapters(ChipsetType_T aChipset,
145 ULONG *aMaxNetworkAdapters) RT_OVERRIDE;
146 HRESULT getMaxNetworkAdaptersOfType(ChipsetType_T aChipset,
147 NetworkAttachmentType_T aType,
148 ULONG *aMaxNetworkAdapters) RT_OVERRIDE;
149 HRESULT getMaxDevicesPerPortForStorageBus(StorageBus_T aBus,
150 ULONG *aMaxDevicesPerPort) RT_OVERRIDE;
151 HRESULT getMinPortCountForStorageBus(StorageBus_T aBus,
152 ULONG *aMinPortCount) RT_OVERRIDE;
153 HRESULT getMaxPortCountForStorageBus(StorageBus_T aBus,
154 ULONG *aMaxPortCount) RT_OVERRIDE;
155 HRESULT getMaxInstancesOfStorageBus(ChipsetType_T aChipset,
156 StorageBus_T aBus,
157 ULONG *aMaxInstances) RT_OVERRIDE;
158 HRESULT getDeviceTypesForStorageBus(StorageBus_T aBus,
159 std::vector<DeviceType_T> &aDeviceTypes) RT_OVERRIDE;
160 HRESULT getStorageBusForStorageControllerType(StorageControllerType_T aStorageControllerType,
161 StorageBus_T *aStorageBus) RT_OVERRIDE;
162 HRESULT getStorageControllerTypesForStorageBus(StorageBus_T aStorageBus,
163 std::vector<StorageControllerType_T> &aStorageControllerTypes) RT_OVERRIDE;
164 HRESULT getDefaultIoCacheSettingForStorageController(StorageControllerType_T aControllerType,
165 BOOL *aEnabled) RT_OVERRIDE;
166 HRESULT getStorageControllerHotplugCapable(StorageControllerType_T aControllerType,
167 BOOL *aHotplugCapable) RT_OVERRIDE;
168 HRESULT getMaxInstancesOfUSBControllerType(ChipsetType_T aChipset,
169 USBControllerType_T aType,
170 ULONG *aMaxInstances) RT_OVERRIDE;
171
172 HRESULT i_getUserHomeDirectory(Utf8Str &strPath);
173 HRESULT i_setDefaultMachineFolder(const Utf8Str &strPath);
174 HRESULT i_setLoggingLevel(const com::Utf8Str &aLoggingLevel);
175 HRESULT i_setDefaultHardDiskFormat(const com::Utf8Str &aFormat);
176 HRESULT i_setVRDEAuthLibrary(const com::Utf8Str &aPath);
177
178 HRESULT i_setWebServiceAuthLibrary(const com::Utf8Str &aPath);
179 HRESULT i_setDefaultVRDEExtPack(const com::Utf8Str &aExtPack);
180 HRESULT i_setAutostartDatabasePath(const com::Utf8Str &aPath);
181 HRESULT i_setDefaultAdditionsISO(const com::Utf8Str &aPath);
182 HRESULT i_setDefaultFrontend(const com::Utf8Str &aDefaultFrontend);
183
184 VirtualBox * const mParent;
185
186 settings::SystemProperties *m;
187
188 MediumFormatList m_llMediumFormats;
189
190 friend class VirtualBox;
191};
192
193#endif /* !MAIN_INCLUDED_SystemPropertiesImpl_h */
194/* 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