VirtualBox

source: vbox/trunk/src/VBox/Main/include/Global.h@ 86506

Last change on this file since 86506 was 82968, checked in by vboxsync, 4 years ago

Copyright year updates by scm.

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

© 2023 Oracle
ContactPrivacy policyTerms of Use