1 | /* $Id: Global.h 63431 2016-08-14 00:40:45Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox COM API - Global Declarations and Definitions.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2008-2016 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_GLOBAL
|
---|
19 | #define ____H_GLOBAL
|
---|
20 |
|
---|
21 | /* interface definitions */
|
---|
22 | #include "VBox/com/VirtualBox.h"
|
---|
23 |
|
---|
24 | #include <VBox/ostypes.h>
|
---|
25 |
|
---|
26 | #include <iprt/types.h>
|
---|
27 |
|
---|
28 | #define VBOXOSHINT_NONE 0
|
---|
29 | #define VBOXOSHINT_64BIT RT_BIT(0)
|
---|
30 | #define VBOXOSHINT_HWVIRTEX RT_BIT(1)
|
---|
31 | #define VBOXOSHINT_IOAPIC RT_BIT(2)
|
---|
32 | #define VBOXOSHINT_EFI RT_BIT(3)
|
---|
33 | #define VBOXOSHINT_PAE RT_BIT(4)
|
---|
34 | #define VBOXOSHINT_USBHID RT_BIT(5)
|
---|
35 | #define VBOXOSHINT_HPET RT_BIT(6)
|
---|
36 | #define VBOXOSHINT_USBTABLET RT_BIT(7)
|
---|
37 | #define VBOXOSHINT_RTCUTC RT_BIT(8)
|
---|
38 | #define VBOXOSHINT_ACCEL2D RT_BIT(9)
|
---|
39 | #define VBOXOSHINT_ACCEL3D RT_BIT(10)
|
---|
40 | #define VBOXOSHINT_FLOPPY RT_BIT(11)
|
---|
41 | #define VBOXOSHINT_NOUSB RT_BIT(12)
|
---|
42 | #define VBOXOSHINT_TFRESET RT_BIT(13)
|
---|
43 | #define VBOXOSHINT_USB3 RT_BIT(14)
|
---|
44 | #define VBOXOSHINT_X2APIC RT_BIT(15)
|
---|
45 |
|
---|
46 | /** The VBoxVRDP kludge extension pack name.
|
---|
47 | *
|
---|
48 | * This is not a valid extension pack name (dashes are not allowed), and
|
---|
49 | * hence will not conflict with real extension packs.
|
---|
50 | */
|
---|
51 | #define VBOXVRDP_KLUDGE_EXTPACK_NAME "Built-in-VBoxVRDP"
|
---|
52 |
|
---|
53 | /**
|
---|
54 | * Contains global static definitions that can be referenced by all COM classes
|
---|
55 | * regardless of the apartment.
|
---|
56 | */
|
---|
57 | class Global
|
---|
58 | {
|
---|
59 | public:
|
---|
60 |
|
---|
61 | /** Represents OS Type <-> string mappings. */
|
---|
62 | struct OSType
|
---|
63 | {
|
---|
64 | const char *familyId; /* utf-8 */
|
---|
65 | const char *familyDescription; /* utf-8 */
|
---|
66 | const char *id; /* utf-8, VM config file value */
|
---|
67 | const char *description; /* utf-8 */
|
---|
68 | const VBOXOSTYPE osType;
|
---|
69 | const uint32_t osHint;
|
---|
70 | const uint32_t recommendedRAM;
|
---|
71 | const uint32_t recommendedVRAM;
|
---|
72 | const uint64_t recommendedHDD;
|
---|
73 | const NetworkAdapterType_T networkAdapterType;
|
---|
74 | const uint32_t numSerialEnabled;
|
---|
75 | const StorageControllerType_T dvdStorageControllerType;
|
---|
76 | const StorageBus_T dvdStorageBusType;
|
---|
77 | const StorageControllerType_T hdStorageControllerType;
|
---|
78 | const StorageBus_T hdStorageBusType;
|
---|
79 | const ChipsetType_T chipsetType;
|
---|
80 | const AudioControllerType_T audioControllerType;
|
---|
81 | const AudioCodecType_T audioCodecType;
|
---|
82 | };
|
---|
83 |
|
---|
84 | static const OSType sOSTypes[];
|
---|
85 | static size_t cOSTypes;
|
---|
86 |
|
---|
87 | /**
|
---|
88 | * Maps VBOXOSTYPE to the OS type which is used in VM configs.
|
---|
89 | */
|
---|
90 | static const char *OSTypeId(VBOXOSTYPE aOSType);
|
---|
91 |
|
---|
92 | /**
|
---|
93 | * Get the network adapter limit for each chipset type.
|
---|
94 | */
|
---|
95 | static uint32_t getMaxNetworkAdapters(ChipsetType_T aChipsetType);
|
---|
96 |
|
---|
97 | /**
|
---|
98 | * Returns @c true if the given machine state is an online state. This is a
|
---|
99 | * recommended way to detect if the VM is online (being executed in a
|
---|
100 | * dedicated process) or not. Note that some online states are also
|
---|
101 | * transitional states (see #IsTransitional()).
|
---|
102 | */
|
---|
103 | static bool IsOnline(MachineState_T aState)
|
---|
104 | {
|
---|
105 | return aState >= MachineState_FirstOnline &&
|
---|
106 | aState <= MachineState_LastOnline;
|
---|
107 | }
|
---|
108 |
|
---|
109 | /**
|
---|
110 | * Returns @c true if the given machine state is a transient state. This is
|
---|
111 | * a recommended way to detect if the VM is performing some potentially
|
---|
112 | * lengthy operation (such as starting, stopping, saving, deleting
|
---|
113 | * snapshot, etc.). Note some (but not all) transitional states are also
|
---|
114 | * online states (see #IsOnline()).
|
---|
115 | */
|
---|
116 | static bool IsTransient(MachineState_T aState)
|
---|
117 | {
|
---|
118 | return aState >= MachineState_FirstTransient &&
|
---|
119 | aState <= MachineState_LastTransient;
|
---|
120 | }
|
---|
121 |
|
---|
122 | /**
|
---|
123 | * Shortcut to <tt>IsOnline(aState) || IsTransient(aState)</tt>. When it returns
|
---|
124 | * @false, the VM is turned off (no VM process) and not busy with
|
---|
125 | * another exclusive operation.
|
---|
126 | */
|
---|
127 | static bool IsOnlineOrTransient(MachineState_T aState)
|
---|
128 | {
|
---|
129 | return IsOnline(aState) || IsTransient(aState);
|
---|
130 | }
|
---|
131 |
|
---|
132 | /**
|
---|
133 | * Stringify a machine state.
|
---|
134 | *
|
---|
135 | * @returns Pointer to a read only string.
|
---|
136 | * @param aState Valid machine state.
|
---|
137 | */
|
---|
138 | static const char *stringifyMachineState(MachineState_T aState);
|
---|
139 |
|
---|
140 | /**
|
---|
141 | * Stringify a session state.
|
---|
142 | *
|
---|
143 | * @returns Pointer to a read only string.
|
---|
144 | * @param aState Valid session state.
|
---|
145 | */
|
---|
146 | static const char *stringifySessionState(SessionState_T aState);
|
---|
147 |
|
---|
148 | /**
|
---|
149 | * Stringify a device type.
|
---|
150 | *
|
---|
151 | * @returns Pointer to a read only string.
|
---|
152 | * @param aType The device type.
|
---|
153 | */
|
---|
154 | static const char *stringifyDeviceType(DeviceType_T aType);
|
---|
155 |
|
---|
156 | /**
|
---|
157 | * Stringify a reason.
|
---|
158 | *
|
---|
159 | * @returns Pointer to a read only string.
|
---|
160 | * @param aReason The reason code.
|
---|
161 | */
|
---|
162 | static const char *stringifyReason(Reason_T aReason);
|
---|
163 |
|
---|
164 | /**
|
---|
165 | * Try convert a COM status code to a VirtualBox status code (VBox/err.h).
|
---|
166 | *
|
---|
167 | * @returns VBox status code.
|
---|
168 | * @param aComStatus COM status code.
|
---|
169 | */
|
---|
170 | static int vboxStatusCodeFromCOM(HRESULT aComStatus);
|
---|
171 |
|
---|
172 | /**
|
---|
173 | * Try convert a VirtualBox status code (VBox/err.h) to a COM status code.
|
---|
174 | *
|
---|
175 | * This is mainly intended for dealing with vboxStatusCodeFromCOM() return
|
---|
176 | * values. If used on anything else, it won't be able to cope with most of the
|
---|
177 | * input!
|
---|
178 | *
|
---|
179 | * @returns COM status code.
|
---|
180 | * @param aVBoxStatus VBox status code.
|
---|
181 | */
|
---|
182 | static HRESULT vboxStatusCodeToCOM(int aVBoxStatus);
|
---|
183 | };
|
---|
184 |
|
---|
185 | #endif /* !____H_GLOBAL */
|
---|
186 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|