VirtualBox

source: vbox/trunk/src/VBox/Main/include/PlatformImpl.h

Last change on this file was 101460, checked in by vboxsync, 7 months ago

Main: Moved Platform::s_platformArchitectureToStr() to Global::stringifyPlatformArchitecture(), so that the client part of VBoxSVC also can make use of this. bugref:10384

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.2 KB
Line 
1/* $Id: PlatformImpl.h 101460 2023-10-17 08:32:09Z vboxsync $ */
2/** @file
3 * VirtualBox COM class implementation - Platform settings.
4 */
5
6/*
7 * Copyright (C) 2023 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_PlatformImpl_h
29#define MAIN_INCLUDED_PlatformImpl_h
30#ifndef RT_WITHOUT_PRAGMA_ONCE
31# pragma once
32#endif
33
34#include "PlatformWrap.h"
35#include "PlatformBase.h"
36
37class GuestOSType;
38class PlatformARM;
39class PlatformX86;
40
41namespace settings
42{
43 struct Platform;
44}
45
46class ATL_NO_VTABLE Platform :
47 public PlatformWrap
48{
49public:
50
51 DECLARE_COMMON_CLASS_METHODS(Platform)
52
53 HRESULT FinalConstruct();
54 void FinalRelease();
55
56 // public initializer/uninitializer for internal purposes only
57 HRESULT init(Machine *aParent);
58 HRESULT init(Machine *parent, Platform *that);
59 HRESULT initCopy(Machine *parent, Platform *that);
60 void uninit();
61
62 // public internal methods
63 HRESULT i_loadSettings(const settings::Platform &data);
64 HRESULT i_saveSettings(settings::Platform &data);
65
66 void i_rollback();
67 void i_commit();
68 void i_copyFrom(Platform *aThat);
69
70 HRESULT i_initArchitecture(PlatformArchitecture_T aArchitecture, Platform *that = NULL, bool fCopy = false);
71 HRESULT i_applyDefaults(GuestOSType *aOsType);
72
73public:
74
75 // wrapped IPlatform properties
76 HRESULT getArchitecture(PlatformArchitecture_T *aArchitecture);
77 HRESULT setArchitecture(PlatformArchitecture_T aArchitecture);
78 HRESULT getProperties(ComPtr<IPlatformProperties> &aProperties);
79 HRESULT getX86(ComPtr<IPlatformX86> &aX86);
80 HRESULT getARM(ComPtr<IPlatformARM> &aARM);
81 HRESULT getChipsetType(ChipsetType_T *aChipsetType);
82 HRESULT setChipsetType(ChipsetType_T aChipsetType);
83 HRESULT getIommuType(IommuType_T *aIommuType);
84 HRESULT setIommuType(IommuType_T aIommuType);
85 HRESULT getRTCUseUTC(BOOL *aRTCUseUTC);
86 HRESULT setRTCUseUTC(BOOL aRTCUseUTC);
87
88private:
89
90 // private functions only used internally
91 void uninitArchitecture();
92
93private:
94
95 // wrapped IPlatform methods
96
97 Machine * const mParent;
98
99 struct Data;
100 Data *m;
101
102 // The following fields need special backup/rollback/commit handling,
103 // so they cannot be a part of Data above.
104
105 /** Contains x86-specific platform data.
106 * Only created if platform architecture is x86. */
107 const ComObjPtr<PlatformX86> mX86;
108#ifdef VBOX_WITH_VIRT_ARMV8
109 /** Contains ARM-specific platform data.
110 * Only created if platform architecture is ARM. */
111 const ComObjPtr<PlatformARM> mARM;
112#endif
113};
114
115#endif /* !MAIN_INCLUDED_PlatformImpl_h */
116
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use