Global.h revision 45b0f96c0edfcb5dbbc783d68ff28a505e84087b
/* $Id$ */
/** @file
*
* VirtualBox COM global declarations
*/
/*
* Copyright (C) 2008-2010 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#ifndef ____H_GLOBAL
#define ____H_GLOBAL
/* generated header */
#include "SchemaDefs.h"
/* interface definitions */
#include "VBox/com/VirtualBox.h"
#define VBOXOSHINT_NONE 0
#define VBOXOSHINT_64BIT RT_BIT(0)
/**
* Contains global static definitions that can be referenced by all COM classes
* regardless of the apartment.
*/
{
/** Represents OS Type <-> string mappings. */
struct OSType
{
const char *familyId; /* utf-8 */
const char *familyDescription; /* utf-8 */
const char *id; /* utf-8 */
const char *description; /* utf-8 */
const VBOXOSTYPE osType;
const uint32_t recommendedRAM;
const uint32_t recommendedVRAM;
const uint64_t recommendedHDD;
const uint32_t numSerialEnabled;
const StorageBus_T dvdStorageBusType;
const StorageBus_T hdStorageBusType;
const ChipsetType_T chipsetType;
};
/**
* Returns @c true if the given machine state is an online state. This is a
* recommended way to detect if the VM is online (being executed in a
* dedicated process) or not. Note that some online states are also
* transitional states (see #IsTransitional()).
*
* @remarks Saving may actually be an offline state according to the
* documentation (offline snapshot).
*/
{
#if 0
return aState >= MachineState_FirstOnline &&
#else
switch (aState)
{
case MachineState_Running:
case MachineState_Paused:
case MachineState_Teleporting:
case MachineState_Stuck:
case MachineState_Starting:
case MachineState_Stopping:
case MachineState_Saving:
case MachineState_Restoring:
return true;
default:
return false;
}
#endif
}
/**
* Returns @c true if the given machine state is a transient state. This is
* a recommended way to detect if the VM is performing some potentially
* lengthy operation (such as starting, stopping, saving, deleting
* snapshot, etc.). Note some (but not all) transitional states are also
* online states (see #IsOnline()).
*/
{
#if 0
return aState >= MachineState_FirstTransient &&
#else
switch (aState)
{
case MachineState_Teleporting:
case MachineState_Starting:
case MachineState_Stopping:
case MachineState_Saving:
case MachineState_Restoring:
case MachineState_SettingUp:
return true;
default:
return false;
}
#endif
}
/**
* Shortcut to <tt>IsOnline(aState) || IsTransient(aState)</tt>. When it returns
* @false, the VM is turned off (no VM process) and not busy with
* another exclusive operation.
*/
{
}
/**
* Stringify a machine state.
*
* @returns Pointer to a read only string.
* @param aState Valid machine state.
*/
/**
* Stringify a session state.
*
* @returns Pointer to a read only string.
* @param aState Valid session state.
*/
/**
* Stringify a device type.
*
* @returns Pointer to a read only string.
* @param aType The device type.
*/
/**
*
* @returns VBox status code.
* @param aComStatus COM status code.
*/
/**
*
* This is mainly inteded for dealing with vboxStatusCodeFromCOM() return
* values. If used on anything else, it won't be able to cope with most of the
* input!
*
* @returns COM status code.
* @param aVBoxStatus VBox status code.
*/
};
#endif /* !____H_GLOBAL */
/* vi: set tabstop=4 shiftwidth=4 expandtab: */