Welcome to the VirtualBox Main API documentation. This documentation describes the so-called VirtualBox Main API which comprises all public COM interfaces and components provided by the VirtualBox server and by the VirtualBox client library. VirtualBox employs a client-server design, meaning that whenever any part of VirtualBox is running -- be it the Qt GUI, the VBoxManage command-line interface or any virtual machine --, a dedicated server process named VBoxSVC runs in the background. This allows multiple processes working with VirtualBox to cooperate without conflicts. These processes communicate to each other using inter-process communication facilities provided by the COM implementation of the host computer. On Windows platforms, the VirtualBox Main API uses Microsoft COM, a native COM implementation. On all other platforms, Mozilla XPCOM, an open-source COM implementation, is used. All the parts that a typical VirtualBox user interacts with (the Qt GUI, the VBoxManage command-line interface and the VBoxVRDP server) are technically front-ends to the Main API and only use the interfaces that are documented in this Main API documentation. This ensures that, with any given release version of VirtualBox, all capabilities of the product that could be useful to an external client program are always exposed by way of this API. The VirtualBox Main API (also called the VirtualBox COM library) contains two public component classes: %VirtualBox.VirtualBox and %VirtualBox.Session, which implement IVirtualBox and ISession interfaces respectively. These two classes are of supreme importance and will be needed in order for any front-end program to do anything useful. It is recommended to read the documentation of the mentioned interfaces first. The %VirtualBox.VirtualBox class is a singleton. This means that there can be only one object of this class on the local machine at any given time. This object is a parent of many other objects in the VirtualBox COM library and lives in the VBoxSVC process. In fact, when you create an instance of the VirtualBox.VirtualBox, the COM subsystem checks if the VBoxSVC process is already running, starts it if not, and returns you a reference to theVirtualBox object created in this process. When the last reference to this object is released, the VBoxSVC process ends (with a 5 second delay to protect from too frequent restarts). The %VirtualBox.Session class is a regular component. You can create as many Session objects as you need but all of them will live in a process which issues the object instantiation call. Session objects represent virtual machine sessions which are used to configure virtual machines and control their execution. /* currently, nsISupportsImpl.h lacks the below-like macros */ #define NS_IMPL_THREADSAFE_QUERY_INTERFACE1_CI NS_IMPL_QUERY_INTERFACE1_CI #define NS_IMPL_THREADSAFE_QUERY_INTERFACE2_CI NS_IMPL_QUERY_INTERFACE2_CI #ifndef NS_IMPL_THREADSAFE_ISUPPORTS1_CI # define NS_IMPL_THREADSAFE_ISUPPORTS1_CI(_class, _interface) \ NS_IMPL_THREADSAFE_ADDREF(_class) \ NS_IMPL_THREADSAFE_RELEASE(_class) \ NS_IMPL_THREADSAFE_QUERY_INTERFACE1_CI(_class, _interface) \ NS_IMPL_CI_INTERFACE_GETTER1(_class, _interface) #endif #ifndef NS_IMPL_THREADSAFE_ISUPPORTS2_CI # define NS_IMPL_THREADSAFE_ISUPPORTS2_CI(_class, _i1, _i2) \ NS_IMPL_THREADSAFE_ADDREF(_class) \ NS_IMPL_THREADSAFE_RELEASE(_class) \ NS_IMPL_THREADSAFE_QUERY_INTERFACE2_CI(_class, _i1, _i2) \ NS_IMPL_CI_INTERFACE_GETTER2(_class, _i1, _i2) #endif #ifndef NS_IMPL_QUERY_INTERFACE1_AMBIGUOUS_CI # define NS_IMPL_QUERY_INTERFACE1_AMBIGUOUS_CI(_class, _i1, _ic1) \ NS_INTERFACE_MAP_BEGIN(_class) \ NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(_i1, _ic1) \ NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, _ic1) \ NS_IMPL_QUERY_CLASSINFO(_class) \ NS_INTERFACE_MAP_END #endif #ifndef NS_IMPL_QUERY_INTERFACE2_AMBIGUOUS_CI # define NS_IMPL_QUERY_INTERFACE2_AMBIGUOUS_CI(_class, _i1, _ic1, \ _i2, _ic2) \ NS_INTERFACE_MAP_BEGIN(_class) \ NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(_i1, _ic1) \ NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(_i2, _ic2) \ NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, _ic1) \ NS_IMPL_QUERY_CLASSINFO(_class) \ NS_INTERFACE_MAP_END #endif #define NS_IMPL_THREADSAFE_QUERY_INTERFACE1_AMBIGUOUS_CI NS_IMPL_QUERY_INTERFACE1_AMBIGUOUS_CI #define NS_IMPL_THREADSAFE_QUERY_INTERFACE2_AMBIGUOUS_CI NS_IMPL_QUERY_INTERFACE2_AMBIGUOUS_CI #ifndef NS_IMPL_THREADSAFE_ISUPPORTS1_AMBIGUOUS_CI # define NS_IMPL_THREADSAFE_ISUPPORTS1_AMBIGUOUS_CI(_class, _i1, _ic1) \ NS_IMPL_THREADSAFE_ADDREF(_class) \ NS_IMPL_THREADSAFE_RELEASE(_class) \ NS_IMPL_THREADSAFE_QUERY_INTERFACE1_AMBIGUOUS_CI(_class, _i1, _ic1) \ NS_IMPL_CI_INTERFACE_GETTER1(_class, _i1) #endif #ifndef NS_IMPL_THREADSAFE_ISUPPORTS2_AMBIGUOUS_CI # define NS_IMPL_THREADSAFE_ISUPPORTS2_AMBIGUOUS_CI(_class, _i1, _ic1, \ _i2, _ic2) \ NS_IMPL_THREADSAFE_ADDREF(_class) \ NS_IMPL_THREADSAFE_RELEASE(_class) \ NS_IMPL_THREADSAFE_QUERY_INTERFACE2_AMBIGUOUS_CI(_class, _i1, _ic1, \ _i2, _ic2) \ NS_IMPL_CI_INTERFACE_GETTER2(_class, _i1, _i2) #endif This section describes all VirtualBox-specific COM result codes that may be returned by methods of VirtualBox COM interfaces in addition to standard COM result codes. Note that along with the result code, every VirtualBox method returns extended error information through the IVirtualBoxErrorInfo interface on failure. This interface is a preferred way to present the error to the end user because it contains a human readable description of the error. Raw result codes, both standard and described in this section, are intended to be used by programs to analyze the reason of a failure and select an appropriate course of action without involving the end user (for example, retry the operation later or make a different call). The standard COM result codes that may originate from our methods include:
E_INVALIDARG Returned when the value of the method's argument is not within the range of valid values. This should not be confused with situations when the value is within the range but simply doesn't suit the current object state and there is a possibility that it will be accepted later (in such cases VirtualBox-specific codes are returned, for example, ).
E_POINTER Returned if a memory pointer for the output argument is invalid (for example, NULL). Note that when pointers representing input arguments (such as strings) are invalid, E_INVALIDARG is returned.
E_ACCESSDENIED Returned when the called object is not ready. Since the lifetime of a public COM object cannot be fully controlled by the implementation, VirtualBox maintains the readiness state for all objects it creates and returns this code in response to any method call on the object that was deactivated by VirtualBox and is not functioning any more.
E_OUTOFMEMORY Returned when a memory allocation operation fails.
Object corresponding to the supplied arguments does not exist. Current virtual machine state prevents the operation. Virtual machine error occurred attempting the operation. File not accessible or erroneous file contents. Runtime subsystem error. Pluggable Device Manager error. Current object state prohibits operation. Host operating system related error. Requested operation is not supported. Invalid XML found. Current session state prohibits operation. Object being in use prohibits operation. Boolean variable having a third state, default. Virtual machine execution state. This enumeration represents possible values of the attribute. Below is the basic virtual machine state diagram. It shows how the state changes during virtual machine execution. The text in square braces shows a method of the IConsole interface that performs the given state transition.
            +---------[powerDown()] <- Stuck <--[failure]-+
            V                                             |
    +-> PoweredOff --+-->[powerUp()]--> Starting --+      | +-----[resume()]-----+
    |                |                             |      | V                    |
    |   Aborted -----+                             +--> Running --[pause()]--> Paused
    |                                              |      ^ |                   ^ |
    |   Saved -----------[powerUp()]--> Restoring -+      | |                   | |
    |     ^                                               | |                   | |
    |     |     +-----------------------------------------+-|-------------------+ +
    |     |     |                                           |                     |
    |     |     +-- Saving <--------[takeSnapshot()]<-------+---------------------+
    |     |                                                 |                     |
    |     +-------- Saving <--------[saveState()]<----------+---------------------+
    |                                                       |                     |
    +-------------- Stopping -------[powerDown()]<----------+---------------------+
      
Note that states to the right from PoweredOff, Aborted and Saved in the above diagram are called online VM states. These states represent the virtual machine which is being executed in a dedicated process (usually with a GUI window attached to it where you can see the activity of the virtual machine and interact with it). There are two special pseudo-states, FirstOnline and LastOnline, that can be used in relational expressions to detect if the given machine state is online or not:
        if (machine.GetState() >= MachineState_FirstOnline &&
            machine.GetState() <= MachineState_LastOnline)
        {
            ...the machine is being executed...
        }
      
When the virtual machine is in one of the online VM states (that is, being executed), only a few machine settings can be modified. Methods working with such settings contain an explicit note about that. An attempt to change any oter setting or perform a modifying operation during this time will result in the error. All online states except Running, Paused and Stuck are transitional: they represent temporary conditions of the virtual machine that will last as long as the operation that initiated such a condition. The Stuck state is a special case. It means that execution of the machine has reached the "Guru Meditation" condition. This condition indicates an internal VMM (virtual machine manager) failure which may happen as a result of either an unhandled low-level virtual hardware exception or one of the recompiler exceptions (such as the too-many-traps condition). Note also that any online VM state may transit to the Aborted state. This happens if the process that is executing the virtual machine terminates unexpectedly (for example, crashes). Other than that, the Aborted state is equivalent to PoweredOff. There are also a few additional state diagrams that do not deal with virtual machine execution and therefore are shown separately. The states shown on these diagrams are called offline VM states (this includes PoweredOff, Aborted and Saved too). The first diagram shows what happens when a lengthy setup operation is being executed (such as ).
    +-----------------------------------(same sate as before the call)------+
    |                                                                       |
    +-> PoweredOff --+                                                      |
    |                |                                                      |
    |-> Aborted -----+-->[lengthy VM configuration call] --> SettingUp -----+
    |                |
    +-> Saved -------+
      
The next two diagrams demonstrate the process of taking a snapshot of a powered off virtual machine and performing one of the "discard..." operations, respectively.
    +-----------------------------------(same sate as before the call)------+
    |                                                                       |
    +-> PoweredOff --+                                                      |
    |                +-->[takeSnapshot()] -------------------> Saving ------+
    +-> Aborted -----+

    +-> PoweredOff --+
    |                |
    |   Aborted -----+-->[discardSnapshot()    ]-------------> Discarding --+
    |                |   [discardCurrentState()]                            |
    +-> Saved -------+   [discardCurrentSnapshotAndState()]                 |
    |                                                                       |
    +---(Saved if restored from an online snapshot, PoweredOff otherwise)---+
      
Note that the Saving state is present in both the offline state group and online state group. Currently, the only way to determine what group is assumed in a particular case is to remember the previous machine state: if it was Running or Paused, then Saving is an online state, otherwise it is an offline state. This inconsistency may be removed in one of the future versions of VirtualBox by adding a new state. For whoever decides to touch this enum: In order to keep the comparisons involving FirstOnline and LastOnline pseudo-states valid, the numeric values of these states must be correspondingly updated if needed: for any online VM state, the condition FirstOnline <= state <= LastOnline must be true. The same relates to transient states for which the condition FirstOnline <= state <= LastOnline must be true.
Null value (nver used by the API). The machine is not running. The machine is not currently running, but the execution state of the machine has been saved to an external file when it was running. The process running the machine has terminated abnormally. The machine is currently being executed. For whoever decides to touch this enum: In order to keep the comparisons in the old source code valid, this state must immediately precede the Paused state. Execution of the machine has been paused. For whoever decides to touch this enum: In order to keep the comparisons in the old source code valid, this state must immediately follow the Running state. Execution of the machine has reached the "Guru Meditation" condition. Machine is being started after powering it on from a zero execution state. Machine is being normally stopped powering it off, or after the guest OS has initiated a shutdown sequence. Machine is saving its execution state to a file or an online snapshot of the machine is being taken. Execution state of the machine is being restored from a file after powering it on from the saved execution state. Snapshot of the machine is being discarded. Lengthy setup operation is in progress. Pseudo-state: first online state (for use in relational expressions). Pseudo-state: last online state (for use in relational expressions). Pseudo-state: first transient state (for use in relational expressions). Pseudo-state: last transient state (for use in relational expressions).
Session state. This enumeration represents possible values of and attributes. See individual enumerator descriptions for the meaning for every value. Null value (never used by the API). The machine has no open sessions (); the session is closed () The machine has an open direct session (); the session is open () A new (direct) session is being opened for the machine as a result of call (); the session is currently being opened as a result of call () The direct session is being closed (); the session is being closed () Session type. This enumeration represents possible values of the attribute. Null value (never used by the API). Direct session (opened by ) Remote session (opened by ) Existing session (opened by ) Device type. Null value, may also mean "no device" (not allowed for ). Floppy device. CD/DVD-ROM device. Hard disk device. Network device. USB device. Shared folder device. Device activity for . Interface bus type for storage devices. Null value (never used by the API). Host-Guest clipboard interchange mode. Scope of the operation. A generic enumeration used in various methods to define the action or argument scope. Statistics type for . Idle CPU load (0-100%) for last interval. Kernel CPU load (0-100%) for last interval. User CPU load (0-100%) for last interval. Total number of threads in the system. Total number of processes in the system. Total number of handles in the system. Memory load (0-100%). Total physical memory in megabytes. Free physical memory in megabytes. Ballooned physical memory in megabytes. Total amount of memory in the committed state in megabytes. Total amount of memory used by the guest OS's kernel in megabytes. Total amount of paged memory used by the guest OS's kernel in megabytes. Total amount of non-paged memory used by the guest OS's kernel in megabytes. Total amount of memory used by the guest OS's system cache in megabytes. Pagefile size in megabytes. Statistics sample number BIOS boot menu mode. IDE controller type. Null value (never used by the API). Null value (never used by the API). CPU features. The IVirtualBoxErrorInfo interface represents extended error information. Extended error information can be set by VirtualBox components after unsuccessful or partially successful method invocation. This information can be retrieved by the calling party as an IVirtualBoxErrorInfo object and then shown to the client in addition to the plain 32-bit result code. In MS COM, this interface extends the IErrorInfo interface, in XPCOM, it extends the nsIException interface. In both cases, it provides a set of common attributes to retrieve error information. Sometimes invocation of some component's method may involve methods of other components that may also fail (independently of this method's failure), or a series of non-fatal errors may precede a fatal error that causes method failure. In cases like that, it may be desirable to preserve information about all errors happened during method invocation and deliver it to the caller. The attribute is intended specifically for this purpose and allows to represent a chain of errors through a single IVirtualBoxErrorInfo object set after method invocation. Note that errors are stored to a chain in the reverse order, i.e. the initial error object you query right after method invocation is the last error set by the callee, the object it points to in the @a next attribute is the previous error and so on, up to the first error (which is the last in the chain). Result code of the error. Usually, it will be the same as the result code returned by the method that provided this error information, but not always. For example, on Win32, CoCreateInstance() will most likely return E_NOINTERFACE upon unsuccessful component instantiation attempt, but not the value the component factory returned. In MS COM, there is no equivalent. In XPCOM, it is the same as nsIException::result. UUID of the interface that defined the error. In MS COM, it is the same as IErrorInfo::GetGUID. In XPCOM, there is no equivalent. Name of the component that generated the error. In MS COM, it is the same as IErrorInfo::GetSource. In XPCOM, there is no equivalent. Text description of the error. In MS COM, it is the same as IErrorInfo::GetDescription. In XPCOM, it is the same as nsIException::message. Next error object if there is any, or @c null otherwise. In MS COM, there is no equivalent. In XPCOM, it is the same as nsIException::inner. The execution state of the given machine has changed. IMachine::state ID of the machine this event relates to. New execution state. Any of the settings of the given machine has changed. ID of the machine this event relates to. Notification when someone tries to change extra data for either the given machine or (if null) global extra data. This gives the chance to veto against changes. ID of the machine this event relates to (null ID for global extra data change requests). Extra data key for the attempted write. Extra data value for the given key. Optional error message describing the reason of the veto (ignored if this notification returns @c true). Flag to indicate whether the callee agrees (@c true) or vetoes against the change (@c false). Notification when machine specific or global extra data has changed. ID of the machine this event relates to. Null for global extra data changes. Extra data key that has changed. Extra data value for the given key. The given media was registered or unregistered within this VirtualBox installation. The @a mediaType parameter describes what type of media the specified @a mediaId refers to. Possible values are:
  • : the media is a hard disk that, if registered, can be obtained using the call.
  • : the media is a CD/DVD image that, if registered, can be obtained using the call.
  • : the media is a Floppy image that, if registered, can be obtained using the call.
Note that if this is a deregistration notification, there is no way to access the object representing the unregistered media. It is supposed that the application will do required cleanup based on the @a mediaId value.
ID of the media this event relates to. Type of the media this event relates to. If true, the media was registered, otherwise it was unregistered.
The given machine was registered or unregistered within this VirtualBox installation. ID of the machine this event relates to. If true, the machine was registered, otherwise it was unregistered. The state of the session for the given machine was changed. IMachine::sessionState ID of the machine this event relates to. New session state. A new snapshot of the machine has been taken. ISnapshot ID of the machine this event relates to. ID of the new snapshot. Snapshot of the given machine has been discarded. This notification is delivered after the snapshot object has been uninitialized on the server (so that any attempt to call its methods will return an error). ISnapshot ID of the machine this event relates to. ID of the discarded snapshot. null means the current machine state has been discarded (restored from the current snapshot). Snapshot properties (name and/or description) have been changed. ISnapshot ID of the machine this event relates to. ID of the changed snapshot. Notification when a guest property has changed. ID of the machine this event relates to. The name of the property that has changed. The new property value. The new property flags.
The IVirtualBox interface represents the main interface exposed by the product that provides virtual machine management. An instance of IVirtualBox is required for the product to do anything useful. Even though the interface does not expose this, internally, IVirtualBox is implemented as a singleton and actually lives in the process of the VirtualBox server (VBoxSVC.exe). This makes sure that IVirtualBox can track the state of all virtual machines on a particular host, regardless of which frontend started them. To enumerate all the virtual machines on the host, use the attribute. A string representing the version number of the product. The format is 3 integer numbers divided by dots (e.g. 1.0.1). The last number represents the build number and will frequently change. The internal build revision number of the product. A string representing the package type of this product. The format is OS_ARCH_DIST where OS is either WINDOWS, LINUX, SOLARIS, DARWIN. ARCH is either 32BITS or 64BITS. DIST is either GENERIC, UBUNTU_606, UBUNTU_710, or something like this. Full path to the directory where the global settings file, VirtualBox.xml, is stored. In this version of VirtualBox, the value of this property is always <user_dir>/.VirtualBox (where <user_dir> is the path to the user directory, as determined by the host OS), and cannot be changed. This path is also used as the base to resolve relative paths in places where relative paths are allowed (unless otherwise expressly indicated). Full name of the global settings file. The value of this property corresponds to the value of plus /VirtualBox.xml. Current version of the format of the global VirtualBox settings file (VirtualBox.xml). The version string has the following format:
          x.y-platform
        
where x and y are the major and the minor format versions, and platform is the platform identifier. The current version usually matches the value of the attribute unless the settings file was created by an older version of VirtualBox and there was a change of the settings file format since then. Note that VirtualBox automatically converts settings files from older versions to the most recent version when reading them (usually at VirtualBox startup) but it doesn't save the changes back until you call a method that implicitly saves settings (such as ) or call explicitly. Therefore, if the value of this attribute differs from the value of , then it means that the settings file was converted but the result of the conversion is not yet saved to disk. The above feature may be used by interactive front-ends to inform users about the settings file format change and offer them to explicitly save all converted settings files (the global and VM-specific ones), optionally create backup copies of the old settings files before saving, etc. settingsFormatVersion, saveSettingsWithBackup()
Most recent version of the settings file format. The version string has the following format:
          x.y-platform
        
where x and y are the major and the minor format versions, and platform is the platform identifier. VirtualBox uses this version of the format when saving settings files (either as a result of method calls that require to save settings or as a result of an explicit call to ). settingsFileVersion
Associated host object. Associated system information object. Array of machine objects registered within this VirtualBox instance. Array of hard disk objects known to this VirtualBox installation. This array contains only base (root) hard disks. All differencing hard disks of the given base hard disk can be enumerated using . Array of CD/DVD image objects registered with this VirtualBox instance. Array of floppy image objects registered with this VirtualBox instance. Collection of global shared folders. Global shared folders are available to all virtual machines. New shared folders are added to the collection using . Existing shared folders can be removed using . In the current version of the product, global shared folders are not implemented and therefore this collection is always empty. Associated performance collector object. Creates a new virtual machine. The new machine is created unregistered, with the initial configuration set according to the specified guest OS type. A typical sequence of actions to create a new virtual machine is as follows:
  1. Call this method to have a new machine created. The returned machine object will be "mutable" allowing to change any machine property.
  2. Configure the machine using the appropriate attributes and methods.
  3. Call to write the settings to the machine's XML settings file. The configuration of the newly created machine will not be saved to disk until this method is called.
  4. Call to add the machine to the list of machines known to VirtualBox.
You should specify valid name for the newly created machine when calling this method. See the attribute description for more details about the machine name. The specified guest OS type identifier must match an ID of one of known guest OS types listed in the array. Every machine has a settings file that is used to store the machine configuration. This file is stored in a directory called the machine settings subfolder. Both the settings subfolder and file will have a name that corresponds to the name of the virtual machine. You can specify where to create the machine setting subfolder using the @a baseFolder argument. The base folder can be absolute (full path) or relative to the VirtualBox home directory. If @a baseFolder is a null or empty string (which is recommended), the default machine settings folder will be used as a base folder for the created machine. Otherwise the given base folder will be used. In either case, the full path to the resulting settings file has the following structure:
          <base_folder>/<machine_name>/<machine_name>.xml
        
Note that if the resulting settings file already exists, this method will fail with . Optionally, you may specify an UUID of to assign to the created machine. However, this is not recommended and you should normally pass an empty (null) UUID to this method so that a new UUID will be automatically generated for every created machine. There is no way to change the name of the settings file or subfolder of the created machine directly. @a osTypeId is invalid. Resulting settings file name is invalid or the settings file already exists or could not be created due to an I/O error. @a name is empty or null.
Machine name. Guest OS Type ID. Base machine folder (optional). Machine UUID (optional). Created machine object.
Creates a new virtual machine in "legacy" mode, using the specified settings file to store machine settings. As opposed to machines created by , the settings file of the machine created in "legacy" mode is not automatically renamed when the machine name is changed -- it will always remain the same as specified in this method call. The specified settings file name can be absolute (full path) or relative to the VirtualBox home directory. If the file name doesn't contain an extension, the default extension (.xml) will be appended. Note that the configuration of the newly created machine is not saved to disk (and therefore no settings file is created) until is called. If the specified settings file already exists, this method will fail with .. See for more information. @deprecated This method may be removed later. Use instead. There is no way to change the name of the settings file of the machine created in "legacy" mode. @a osTypeId is invalid. @a settingsFile is invalid or the settings file already exists or could not be created due to an I/O error. @a name or @a settingsFile is empty or null. Machine name. Machine OS Type ID. Name of the machine settings file. Machine UUID (optional). Created machine object. Opens a virtual machine from the existing settings file. The opened machine remains unregistered until you call . The specified settings file name can be absolute (full path) or relative to the VirtualBox home directory. This file must exist and must be a valid machine settings file whose contents will be used to construct the machine object. @deprecated Will be removed soon. Settings file name invalid, not found or sharing violation. Name of the machine settings file. Opened machine object. will return false for the created machine, until any of machine settings are changed. Registers the machine previously created using or opened using within this VirtualBox installation. After successful method invocation, the signal is sent to all registered callbacks. This method implicitly calls to save all current machine settings before registering it. No matching virtual machine found. Virtual machine was not created within this VirtualBox instance. Attempts to find a virtual machine given its UUID. To look up a machine by name, use instead. Could not find registered machine matching @a id. Attempts to find a virtual machine given its name. To look up a machine by UUID, use instead. Could not find registered machine matching @a name. Unregisters the machine previously registered using . After successful method invocation, the signal is sent to all registered callbacks. The specified machine must not be in the Saved state, have an open (or a spawning) direct session associated with it, have snapshots or have hard disks attached. This method implicitly calls to save all current machine settings before unregistering it. If the given machine is inaccessible (see ), it will be unregistered and fully uninitialized right afterwards. As a result, the returned machine object will be unusable and an attempt to call any method will return the "Object not ready" error. Could not find registered machine matching @a id. Machine is in Saved state. Machine has snapshot or open session or hard disk attached. UUID of the machine to unregister. Unregistered machine object. Attempts to open the given appliance, which must be in Open Virtual Machine Format (OVF). As prescribed by the OVF standard, VirtualBox supports OVF in two formats:
  1. If the OVF is distributed as a set of files, then @a file must be a fully qualified path name to an existing OVF descriptor file with an .ovf file extension. If this descriptor file references other files, as OVF appliances distributed as a set of files most likely do, those files must be in the same directory as the descriptor file.
  2. If the OVF is distributed as a single file, it must be in TAR format and have the .ova file extension. This TAR file must then contain at least the OVF descriptor files and optionally other files.
In both cases, VirtualBox will open the OVF descriptor file, parse its contents and create a new instance of IAppliance representing the OVF file. This method succeeds if the OVF is syntactically valid and, by itself, without errors. The returned IAppliance object can then be used to retrieve information about the appliance and import it into VirtualBox. The mere fact that this method returns successfully does not mean that VirtualBox supports all features requested by the appliance; see the documentation for for details.
Name of appliance file to open (either with an .ovf or .ova extension, depending on whether the appliance is distributed as a set of files or as a single file, respectively). New appliance.
Creates a new base hard disk object that will use the given storage format and location for hard disk data. Note that the actual storage unit is not created by this method. In order to do it, and before you are able to attach the created hard disk to virtual machines, you must call one of the following methods to allocate a format-specific storage unit at the specified location:
Some hard disk attributes, such as , may remain uninitialized until the hard disk storage unit is successfully created by one of the above methods. After the storage unit is successfully created, the hard disk gets remembered by this VirtualBox installation and will be accessible through and methods. Remembered root (base) hard disks are also returned as part of the array. See IHardDisk2 for more details. The list of all storage formats supported by this VirtualBox installation can be obtained using . If the @a format attribute is empty or null then the default storage format specified by will be used for creating a storage unit of the hard disk. Note that the format of the location string is storage format specific. See , IHardDisk2 and for more details. @a format identifier is invalid. See . @a location is a not valid file name (for file-based formats only). @a format is a null or empty string.
Identifier of the storage format to use for the new hard disk. Location of the storage unit for the new hard disk. Created hard disk object.
Opens a hard disk from an existing location. After the hard disk is successfully opened by this method, it gets remembered by (known to) this VirtualBox installation and will be accessible through and methods. Remembered root (base) hard disks are also returned as part of the array and can be attached to virtual machines. See IHardDisk2 for more details. If a differencing hard disk is to be opened by this method, the operation will succeed only if its parent hard disk and all ancestors, if any, are already known to this VirtualBox installation (for example, were opened by this method before). This method tries to guess the storage format of the specified hard disk by reading hard disk data at the specified location. Note that the format of the location string is storage format specific. See , IHardDisk2 and for more details. Invalid hard disk storage file location. Could not get hard disk storage format. Invalid hard disk storage format. Location of the storage unit that contains hard disk data in one of the supported storage formats. Opened hard disk object. Returns a hard disk with the given UUID. The hard disk with the given UUID must be known to this VirtualBox installation, i.e. it must be previously created by or opened by , or attached to some known virtual machine. No hard disk object matching @a id found. UUID of the hard disk to look for. Found hard disk object. Returns a hard disk that uses the given location to store hard disk data. The given hard disk must be known to this VirtualBox installation, i.e. it must be previously created by or opened by , or attached to some known virtual machine. The search is done by comparing the value of the @a location argument to the attribute of each known hard disk. For locations represented by file names in the host's file system, the requested location can be a path relative to the VirtualBox home folder. If only a file name without any path is given, the default hard disk folder will be prepended to the file name before searching. Note that on case sensitive file systems, a case sensitive comparison is performed, otherwise the case of symbols in the file path is ignored. No hard disk object matching @a location found. Location string to search for. Found hard disk object. Opens a CD/DVD image contained in the specified file of the supported format and assigns it the given UUID. After the image is successfully opened by this method, it gets remembered by (known to) this VirtualBox installation and will be accessible through and methods. Remembered images are also returned as part of the array and can be mounted to virtual machines. See IMedium for more details. See to get more details about the format of the location string. Currently only ISO 9960 CD/DVD images are supported by VirtualBox. CD/DVD image already exists in the media registry. Full path to the file that contains a valid CD/DVD image. UUID to assign to the given image within this VirtualBox installation. If an empty (null) UUID is specified, the system will randomly generate a new UUID. Opened CD/DVD image object. Returns a CD/DVD image with the given UUID. The image with the given UUID must be known to this VirtualBox installation, i.e. it must be previously opened by , or mounted to some known virtual machine. No matching DVD image found in the media registry. UUID of the image to look for. Found CD/DVD image object. Returns a CD/DVD image with the given image location. The image with the given UUID must be known to this VirtualBox installation, i.e. it must be previously opened by , or mounted to some known virtual machine. The search is done by comparing the value of the @a location argument to the attribute of each known CD/DVD image. The requested location can be a path relative to the VirtualBox home folder. If only a file name without any path is given, the default hard disk folder will be prepended to the file name before searching. Note that on case sensitive file systems, a case sensitive comparison is performed, otherwise the case in the file path is ignored. Invalid image file location. No matching DVD image found in the media registry. CD/DVD image file path to look for. Found CD/DVD image object. Opens a floppy image contained in the specified file of the supported format and assigns it the given UUID. After the image is successfully opened by this method, it gets remembered by (known to) this VirtualBox installation and will be accessible through and methods. Remembered images are also returned as part of the array and can be mounted to virtual machines. See IMedium for more details. See to get more details about the format of the location string. Floppy image specified by @a location not accessible. Floppy image already exists in the media registry. Currently, only raw floppy images are supported by VirtualBox. Full path to the file that contains a valid floppy image. UUID to assign to the given image file within this VirtualBox installation. If an empty (null) UUID is specified, the system will randomly generate a new UUID. Opened floppy image object. Returns a floppy image with the given UUID. The image with the given UUID must be known to this VirtualBox installation, i.e. it must be previously opened by , or mounted to some known virtual machine. No matching floppy image found in the media registry. UUID of the image to look for. Found floppy image object. Returns a floppy image with the given image location. The image with the given UUID must be known to this VirtualBox installation, i.e. it must be previously opened by , or mounted to some known virtual machine. The search is done by comparing the value of the @a location argument to the attribute of each known floppy image. The requested location can be a path relative to the VirtualBox home folder. If only a file name without any path is given, the default hard disk folder will be prepended to the file name before searching. Note that on case sensitive file systems, a case sensitive comparison is performed, otherwise the case of symbols in the file path is ignored. Invalid image file location. No matching floppy image found in the media registry. Floppy image file path to look for. Found floppy image object. Returns an object describing the specified guest OS type. The requested guest OS type is specified using a string which is a mnemonic identifier of the guest operating system, such as "win31" or "ubuntu". The guest OS type ID of a particular virtual machine can be read or set using the attribute. The collection contains all available guest OS type objects. Each object has an attribute which contains an identifier of the guest OS this object describes. @a id is not a valid Guest OS type. Guest OS type ID string. Guest OS type object. Creates a new global shared folder by associating the given logical name with the given host path, adds it to the collection of shared folders and starts sharing it. Refer to the description of to read more about logical names. In the current implementation, this operation is not implemented. Unique logical name of the shared folder. Full path to the shared folder in the host file system. Whether the share is writable or readonly Removes the global shared folder with the given name previously created by from the collection of shared folders and stops sharing it. In the current implementation, this operation is not implemented. Logical name of the shared folder to remove. Returns the global extra data key name following the supplied key. An error is returned if the supplied @a key does not exist. @c NULL is returned in @a nextKey if the supplied key is the last key. When supplying @c NULL for the @a key, the first key item is returned in @a nextKey (if there is any). @a nextValue is an optional parameter and if supplied, the next key's value is returned in it. Extra data @a key not found. Name of the data key to follow. Name of the next data key. Value of the next data key. Returns associated global extra data. If the requested data @a key does not exist, this function will succeed and return @c NULL in the @a value argument. Settings file not accessible. Could not parse the settings file. Name of the data key to get. Value of the requested data key. Sets associated global extra data. If you pass @c NULL as a key @a value, the given @a key will be deleted. Before performing the actual data change, this method will ask all registered callbacks using the notification for a permission. If one of the callbacks refuses the new value, the change will not be performed. On success, the notification is called to inform all registered callbacks about a successful data change. Settings file not accessible. Could not parse the settings file. Modification request refused. Name of the data key to set. Value to assign to the key. Opens a new direct session with the given virtual machine. A direct session acts as a local lock on the given VM. There can be only one direct session open at a time for every virtual machine, protecting the VM from being manipulated by conflicting actions from different processes. Only after a direct session has been opened, one can change all VM settings and execute the VM in the process space of the session object. Sessions therefore can be compared to mutex semaphores that lock a given VM for modification and execution. See ISession for details. Unless you are writing a new VM frontend, you will not want to execute a VM in the current process. To spawn a new process that executes a VM, use instead. Upon successful return, the session object can be used to get access to the machine and to the VM console. In VirtualBox terminology, the machine becomes "mutable" after a session has been opened. Note that the "mutable" machine object, on which you may invoke IMachine methods to change its settings, will be a different object from the immutable IMachine objects returned by various IVirtualBox methods. To obtain a mutable IMachine object (upon which you can invoke settings methods), use the attribute. One must always call to release the lock on the machine, or the machine's state will eventually be set to "Aborted". In other words, to change settings on a machine, the following sequence is typically performed:
  1. Call this method (openSession) to have a machine locked for the current session.
  2. Obtain a mutable IMachine object from .
  3. Change the settings of the machine.
  4. Call .
  5. Close the session by calling .
Virtual machine not registered. Process not started by OpenRemoteSession. No matching virtual machine found. Session already open or being opened. Failed to assign machine to session.
Session object that will represent the opened session after successful method invocation. This object must not represent the already open session. This session will be automatically closed if the VirtualBox server is terminated for some reason. ID of the virtual machine to open a session with.
Spawns a new process that executes a virtual machine (called a "remote session"). Opening a remote session causes the VirtualBox server to start a new process that opens a direct session with the given VM. As a result, the VM is locked by that direct session in the new process, preventing conflicting changes from other processes. Since sessions act as locks that prevent conflicting changes, one cannot open a remote session for a VM that already has another open session (direct or remote), or is currently in the process of opening one (see ). While the remote session still provides some level of control over the VM execution to the caller (using the interface), not all VM settings are available for modification within the remote session context. This operation can take some time (a new VM is started in a new process, for which memory and other resources need to be set up). Because of this, an is returned to allow the caller to wait for this asynchronous operation to be completed. Until then, the remote session object remains in the closed state, and accessing the machine or its console through it is invalid. It is recommended to use or similar calls to wait for completion. As with all objects, it is recommended to call on the local session object once openRemoteSession() has been called. However, the session's state (see ) will not return to "Closed" until the remote session has also closed (i.e. until the VM is no longer running). In that case, however, the state of the session will automatically change back to "Closed". Currently supported session types (values of the @a type argument) are:
  • gui: VirtualBox Qt GUI session
  • vrdp: VirtualBox VRDP Server session
The @a environment argument is a string containing definitions of environment variables in the following format: @code NAME[=VALUE]\n NAME[=VALUE]\n ... @endcode where \\n is the new line character. These environment variables will be appended to the environment of the VirtualBox server process. If an environment variable exists both in the server process and in this list, the value from this list takes precedence over the server's variable. If the value of the environment variable is omitted, this variable will be removed from the resulting environment. If the environment string is @c null, the server environment is inherited by the started process as is. openExistingSession Virtual machine not registered. Invalid session type @a type. No machine matching @a machineId found. Session already open or being opened. Launching process for machine failed. Failed to assign machine to session.
Session object that will represent the opened remote session after successful method invocation (this object must not represent an already open session). ID of the virtual machine to open a session with. Type of the remote session (case sensitive). Environment to pass to the opened session (may be @c null). Progress object to track the operation completion.
Opens a new remote session with the virtual machine for which a direct session is already open. The remote session provides some level of control over the VM execution (using the IConsole interface) to the caller; however, within the remote session context, not all VM settings are available for modification. As opposed to , the number of remote sessions opened this way is not limited by the API It is an error to open a remote session with the machine that doesn't have an open direct session. Virtual machine not registered. No machine matching @a machineId found. Session already open or being opened. Direct session state not Open. Failed to get console object from direct session or assign machine to session. openRemoteSession Session object that will represent the open remote session after successful method invocation. This object must not represent an already open session. This session will be automatically closed when the peer (direct) session dies or gets closed. ID of the virtual machine to open a session with. Registers a new global VirtualBox callback. The methods of the given callback object will be called by VirtualBox when an appropriate event occurs. Registering a @c NULL @a callback is pretty pointless, ain't it? Callback object to register. Unregisters the previously registered global VirtualBox callback. Specified @a callback not registered. Callback object to unregister. Blocks the caller until any of the properties represented by the @a what argument changes the value or until the given timeout interval expires. The @a what argument is a comma separated list of property masks that describe properties the caller is interested in. The property mask is a string in the following format:
        [[group.]subgroup.]name
        
where @c name is the property name and @c group, @c subgroup are zero or more property group specifiers. Each element (group or name) in the property mask may be either a Latin string or an asterisk symbol (@c "*") which is used to match any string for the given element. A property mask that doesn't contain asterisk symbols represents a single fully qualified property name. Groups in the fully qualified property name go from more generic (the left-most part) to more specific (the right-most part). The first element is usually a name of the object the property belongs to. The second element may be either a property name, or a child object name, or an index if the preceding element names an object which is one of many objects of the same type. This way, property names form a hierarchy of properties. Here are some examples of property names:
VirtualBox.version property
Machine.<UUID>.name property of the machine with the given UUID
Most property names directly correspond to the properties of objects (components) provided by the VirtualBox library and may be used to track changes to these properties. However, there may be pseudo-property names that don't correspond to any existing object's property directly, as well as there may be object properties that don't have a corresponding property name that is understood by this method, and therefore changes to such properties cannot be tracked. See individual object's property descriptions to get a fully qualified property name that can be used with this method (if any). There is a special property mask @c "*" (i.e. a string consisting of a single asterisk symbol) that can be used to match all properties. Below are more examples of property masks:
VirtualBox.* Track all properties of the VirtualBox object
Machine.*.name Track changes to the property of all registered virtual machines
This function is not implemented in the current version of the product.
Comma separated list of property masks. Wait timeout in milliseconds. Specify -1 for an indefinite wait. Comma separated list of properties that have been changed and caused this method to return to the caller. Reserved, not currently used.
Saves the global settings to the global settings file (). This method is only useful for explicitly saving the global settings file after it has been auto-converted from the old format to the most recent format (see for details). Normally, the global settings file is implicitly saved when a global setting is changed. Settings file not accessible. Could not parse the settings file. Creates a backup copy of the global settings file () in case of auto-conversion, and then calls . Note that the backup copy is created only if the settings file auto-conversion took place (see for details). Otherwise, this call is fully equivalent to and no backup copying is done. The backup copy is created in the same directory where the original settings file is located. It is given the following file name:
          original.xml.x.y-platform.bak
        
where original.xml is the original settings file name (excluding path), and x.y-platform is the version of the old format of the settings file (before auto-conversion). If the given backup file already exists, this method will try to add the .N suffix to the backup file name (where N counts from 0 to 9) and copy it again until it succeeds. If all suffixes are occupied, or if any other copy error occurs, this method will return a failure. If the copy operation succeeds, the @a bakFileName return argument will receive a full path to the created backup file (for informational purposes). Note that this will happen even if the subsequent call performed by this method after the copy operation, fails. The VirtualBox API never calls this method. It is intended purely for the purposes of creating backup copies of the settings files by front-ends before saving the results of the automatically performed settings conversion to disk. settingsFileVersion Settings file not accessible. Could not parse the settings file. Could not copy the settings file.
Full path to the created backup copy.
OVF operating system values according to CIM V2.20 (as of Nov 2008); http://www.dmtf.org/standards/cim/cim_schema_v220 OVF resource type. Represents an appliance in OVF format. An instance of this is returned by . Importing an OVF appliance into VirtualBox is a three-step process:
  1. Call with the full path of the OVF file. So long as the appliance file is syntactically valid, this will succeed and return an instance of IAppliance that contains the parsed data from the OVF file.
  2. The caller should then invoke , which analyzes the OVF data and sets up the contents of the IAppliance attributes accordingly. These can be inspected by a VirtualBox front-end such as the GUI, and the suggestions can be displayed to the user. For example, the virtual system will contain the virtual hardware prescribed by the OVF (network and hardware adapters, virtual disk images, memory size and so on), and the GUI can then give the user the option to confirm and/or change these suggestions.
  3. Finally, the caller should invoke , which will create virtual machines in VirtualBox as instances of that match the information in the virtual system descriptions.
Path to the main file of the OVF appliance, which is either the .ovf or the .ova file passed to . Array of virtual disk definitions. One such description exists for each disk definition in the OVF; each string array item represents one such piece of disk information, with the information fields separated by tab (\t) characters. The caller should be prepared for additional fields being appended to this string in future versions of VirtualBox and therefore check for the number of tabs in the strings returned. In the current version, the following eight fields are returned per string in the array:
  1. Disk ID (unique string identifier given to disk)
  2. Capacity (unsigned integer indicating the maximum capacity of the disk)
  3. Populated size (optional unsigned integer indicating the current size of the disk; can be approximate; -1 if unspecified)
  4. Format (string identifying the disk format, typically "http://www.vmware.com/specifications/vmdk.html#sparse")
  5. Reference (where to find the disk image, typically a file name; if empty, then the disk should be created on import)
  6. Image size (optional unsigned integer indicating the size of the image, which need not necessarily be the same as the values specified above, since the image may be compressed or sparse; -1 if not specified)
  7. Chunk size (optional unsigned integer if the image is split into chunks; presently unsupported and always -1)
  8. Compression (optional string equalling "gzip" if the image is gzip-compressed)
Array of virtual system descriptions. One such description is created for each virtual system found in the OVF. The array is empty until after has been called. Interprets the OVF data that was read when the appliance was constructed. After calling this method, one can inspect the array attribute, which will then contain one for each virtual machine found in the appliance. Calling this method is the second step of importing an appliance into VirtualBox; see for an overview. Imports the appliance into VirtualBox by creating instances of and other interfaces that match the information contained in the appliance as closely as possible, as represented by the import instructions in the array. Calling this method is the final step of importing an appliance into VirtualBox; see for an overview. Since importing the appliance may imply copying disk images, which can take a long time, this method operates asynchronously and returns an IProgress object to allow the caller to monitor the progress.
Used with to describe the type of a configuration value. This interface is used in the array. After has been called, that array contains information about how the virtual systems described in the OVF should best be imported into VirtualBox virtual machines. See for the steps required to import an OVF into VirtualBox. Returns information about the virtual system as arrays of instruction items. In each array, the items with the same indices correspond and jointly represent an import instruction for VirtualBox. The list below identifies the value sets that are possible depending on the enum value in the array item in aTypes[]. In each case, the array item with the same index in aOrigValue[] will contain the original value as contained in the OVF file (just for informational purposes), and the corresponding item in aConfigValues[] will contain a suggested value to be used for VirtualBox. Depending on the description type, the aExtraConfigValues[] array item may also be used.
  • "OS": the guest operating system type. There must be exactly one such array item on import. The corresponding item in aConfigValues[] contains the suggested guest operating system for VirtualBox. This will be one of the values listed in . The corresponding item in aOrigValues[] will contain a numerical value that described the operating system in the OVF (see ).
  • "Name": the name to give to the new virtual machine. There can be at most one such array item; if none is present on import, then an automatic name will be created from the operating system type. The correponding item im aOrigValues[] will contain the suggested virtual machine name from the OVF file, and aConfigValues[] will contain a suggestion for a unique VirtualBox name that does not exist yet.
  • "CPU": the number of CPUs. There can be at most one such item, which will presently be ignored.
  • "Memory": the amount of guest RAM, in bytes. There can be at most one such array item; if none is present on import, then VirtualBox will set a meaningful default based on the operating system type.
  • "HarddiskControllerSCSI": a SCSI hard disk controller. There can be at most one such item. The items in aOrigValues[] and aConfigValues[] will either be "LsiLogic" or "BusLogic". The matching item in the aRefs[] array will contain an integer that other items of the "Harddisk" type can use to specify which hard disk controller a virtual disk should be connected to.
  • "HarddiskControllerIDE": an IDE hard disk controller. There can be at most one such item. This has no value in aOrigValues[] or aAutoValues[]. The matching item in the aRefs[] array will be used as with SCSI controllers (see above).
  • "Harddisk": a virtual hard disk, most probably as a reference to an image file. There can be an arbitrary number of these items, one for each virtual disk image that accompanies the OVF. The array item in aOrigValues[] will contain the file specification from the OVF file, whereas the item in aConfigValues[] will contain a qualified path specification where the hard disk image should be copied to; this target image will then be registered with VirtualBox. The matching item in the aRefs[] array must contain a integer specifying the hard disk controller to connect the image to. This number must be the same as the integer used by one of the hard disk controller items (SCSI, SATA or IDE; see above).
  • "NetworkAdapter": a network adapter. (todo document)
  • "SoundCard": a sound card. There can be at most one such item. If and only if such an item is present, sound support will be enabled for the new virtual machine. Note that the virtual machine in VirtualBox will always be presented with the standard VirtualBox soundcard, which may be different from the virtual soundcard expected by the appliance.
Disables part of the configuration, as represented by the array items returned by . For example, to disable USB support for a given virtual system, pass in the array item index of the USB controller; its type will then be changed by this method from "USBController" to "Ignore". This works only for items of the types HardDiskControllerIDE, HardDiskControllerSATA, HardDiskControllerSCSI, HardDiskImage, CDROM, Floppy, NetworkAdapter, USBController and SoundCard.
Updates the VM state. This operation will also update the settings file with the correct information about the saved state file and delete this file from disk when appropriate. Asks the server to run USB devices filters of the associated machine against the given USB device and tell if there is a match. Intended to be used only for remote USB devices. Local ones don't require to call this method (this is done implicitly by the Host and USBProxyService). Requests a capture of the given host USB device. When the request is completed, the VM process will get a notification. Notification that a VM is going to detach (done = false) or has already detached (done = true) the given USB device. When the done = true request is completed, the VM process will get a notification. In the done = true case, the server must run its own filters and filters of all VMs but this one on the detached device as if it were just attached to the host computer. Requests a capture all matching USB devices attached to the host. When the request is completed, the VM process will get a notification per every captured device. Notification that a VM that is being powered down. The done parameter indicates whether which stage of the power down we're at. When done = false the VM is announcing its intentions, while when done = true the VM is reporting what it has done. In the done = true case, the server must run its own filters and filters of all VMs but this one on all detach devices as if they were just attached to the host computer. Triggered by the given session object when the session is about to close normally. Session that is being closed Used to wait until the corresponding machine is actually dissociated from the given session on the server. Returned only when this session is a direct one. Called by the VM process to inform the server it wants to save the current state and stop the VM execution. Progress object created by the VM process to wait until the state is saved. File path the VM process must save the execution state to. Called by the VM process to inform the server that saving the state previously requested by #beginSavingState is either successfully finished or there was a failure. Settings file not accessible. Could not parse the settings file. true to indicate success and false otherwise. Gets called by IConsole::adoptSavedState. Invalid saved state file path. Path to the saved state file to adopt. Called by the VM process to inform the server it wants to take a snapshot. Settings file not accessible. Could not parse the settings file. The console object that initiated this call. Snapshot name. Snapshot description. Progress object created by the VM process to wait until the state is saved (only for online snapshots). File path the VM process must save the execution state to. Progress object created by the server process to wait until the snapshot is taken (VDI diff creation, etc.). Called by the VM process to inform the server that the snapshot previously requested by #beginTakingSnapshot is either successfully taken or there was a failure. true to indicate success and false otherwise Gets called by IConsole::discardSnapshot. Snapshot has more than one child snapshot. The console object that initiated this call. UUID of the snapshot to discard. New machine state after this operation is started. Progress object to track the operation completion. Gets called by IConsole::discardCurrentState. Virtual machine does not have any snapshot. The console object that initiated this call. New machine state after this operation is started. Progress object to track the operation completion. Gets called by IConsole::discardCurrentSnapshotAndState. Virtual machine does not have any snapshot. The console object that initiated this call. New machine state after this operation is started. Progress object to track the operation completion. Get the list of the guest properties matching a set of patterns along with their values, time stamps and flags and give responsibility for managing properties to the console. The names of the properties returned. The values of the properties returned. The array entries match the corresponding entries in the @a name array. The time stamps of the properties returned. The array entries match the corresponding entries in the @a name array. The flags of the properties returned. The array entries match the corresponding entries in the @a name array. Set the list of the guest properties matching a set of patterns along with their values, time stamps and flags and return responsibility for managing properties to IMachine. The names of the properties. The values of the properties. The array entries match the corresponding entries in the @a name array. The time stamps of the properties. The array entries match the corresponding entries in the @a name array. The flags of the properties. The array entries match the corresponding entries in the @a name array. Update a single guest property in IMachine. The name of the property to be updated. The value of the property. The timestamp of the property. The flags of the property. The IBIOSSettings interface represents BIOS settings of the virtual machine. This is used only in the attribute. Fade in flag for BIOS logo animation. Fade out flag for BIOS logo animation. BIOS logo display time in milliseconds (0 = default). Local file system path for external BIOS image. Mode of the BIOS boot device menu. ACPI support flag. IO APIC support flag. If set, VirtualBox will provide an IO APIC and support IRQs above 15. Offset in milliseconds from the host system time. This allows for guests running with a different system date/time than the host. It is equivalent to setting the system date/time in the BIOS except it is not an absolute value but a relative one. Guest Additions time synchronization honors this offset. PXE debug logging flag. If set, VirtualBox will write extensive PXE trace information to the release log. Type of the virtual IDE controller. Depending on this value, VirtualBox will provide different virtual IDE hardware devices to the guest. The IMachine interface represents a virtual machine, or guest, created in VirtualBox. This interface is used in two contexts. First of all, a collection of objects implementing this interface is stored in the attribute which lists all the virtual machines that are currently registered with this VirtualBox installation. Also, once a session has been opened for the given virtual machine (e.g. the virtual machine is running), the machine object associated with the open session can be queried from the session object; see for details. The main role of this interface is to expose the settings of the virtual machine and provide methods to change various aspects of the virtual machine's configuration. For machine objects stored in the collection, all attributes are read-only unless explicitly stated otherwise in individual attribute and method descriptions. In order to change a machine setting, a session for this machine must be opened using one of , or methods. After the session has been successfully opened, a mutable machine object needs to be queried from the session object and then the desired settings changes can be applied to the returned object using IMachine attributes and methods. See the ISession interface description for more information about sessions. Note that the IMachine interface does not provide methods to control virtual machine execution (such as start the machine, or power it down) -- these methods are grouped in a separate IConsole interface. Refer to the IConsole interface description to get more information about this topic. ISession, IConsole Associated parent object. Whether this virtual machine is currently accessible or not. The machine is considered to be inaccessible when:
  • It is a registered virtual machine, and
  • Its settings file is inaccessible (for example, it is located on a network share that is not accessible during VirtualBox startup, or becomes inaccessible later, or if the settings file can be read but is invalid).
Otherwise, the value of this property is always true. Every time this property is read, the accessibility state of this machine is re-evaluated. If the returned value is |false|, the property may be used to get the detailed error information describing the reason of inaccessibility. When the machine is inaccessible, only the following properties can be used on it:
An attempt to access any other property or method will return an error. The only possible action you can perform on an inaccessible machine is to unregister it using the call (or, to check for the accessibility state once more by querying this property). In the current implementation, once this property returns true, the machine will never become inaccessible later, even if its settings file cannot be successfully read/written any more (at least, until the VirtualBox server is restarted). This limitation may be removed in future releases.
Error information describing the reason of machine inaccessibility. Reading this property is only valid after the last call to returned false (i.e. the machine is currently unaccessible). Otherwise, a null IVirtualBoxErrorInfo object will be returned. Name of the virtual machine. Besides being used for human-readable identification purposes everywhere in VirtualBox, the virtual machine name is also used as a name of the machine's settings file and as a name of the subdirectory this settings file resides in. Thus, every time you change the value of this property, the settings file will be renamed once you call to confirm the change. The containing subdirectory will be also renamed, but only if it has exactly the same name as the settings file itself prior to changing this property (for backward compatibility with previous API releases). The above implies the following limitations:
  • The machine name cannot be empty.
  • The machine name can contain only characters that are valid file name characters according to the rules of the file system used to store VirtualBox configuration.
  • You cannot have two or more machines with the same name if they use the same subdirectory for storing the machine settings files.
  • You cannot change the name of the machine if it is running, or if any file in the directory containing the settings file is being used by another running machine or by any other process in the host operating system at a time when is called.
If any of the above limitations are hit, will return an appropriate error message explaining the exact reason and the changes you made to this machine will not be saved. For "legacy" machines created using the call, the above naming limitations do not apply because the machine name does not affect the settings file name. The settings file name remains the same as it was specified during machine creation and never changes.
Description of the virtual machine. The description attribute can contain any text and is typically used to describe the hardware and software configuration of the virtual machine in detail (i.e. network settings, versions of the installed software and so on). UUID of the virtual machine. User-defined identifier of the Guest OS type. You may use to obtain an IGuestOSType object representing details about the given Guest OS type. This value may differ from the value returned by if Guest Additions are installed to the guest OS. Hardware version identifier. Internal use only for now. Number of virtual CPUs in the VM. In the current version of the product, this is always 1. System memory size in megabytes. Initial memory balloon size in megabytes. Initial interval to update guest statistics in seconds. Video memory size in megabytes. This setting determines whether VirtualBox allows guests to make use of the 3D graphics support available on the host. Currently limited to OpenGL only. Number of virtual monitors. Only effective on Windows XP and later guests with Guest Additions installed. Object containing all BIOS settings. This setting determines whether VirtualBox will try to make use of the host CPU's hardware virtualization extensions such as Intel VT-x and AMD-V. Note that in case such extensions are not available, they will not be used. This setting determines whether VirtualBox will try to make use of the nested paging extension of Intel VT-x and AMD-V. Note that in case such extensions are not available, they will not be used. This setting determines whether VirtualBox will try to make use of the VPID extension of Intel VT-x. Note that in case such extensions are not available, they will not be used. This setting determines whether VirtualBox will expose the Physical Address Extension (PAE) feature of the host CPU to the guest. Note that in case PAE is not available, it will not be reported. Full path to the directory used to store snapshot data (differencing hard disks and saved state files) of this machine. The initial value of this property is < path_to_settings_file>/< machine_uuid >. Currently, it is an error to try to change this property on a machine that has snapshots (because this would require to move possibly large files to a different location). A separate method will be available for this purpose later. Setting this property to null will restore the initial value. When setting this property, the specified path can be absolute (full path) or relative to the directory where the machine settings file is located. When reading this property, a full path is always returned. The specified path may not exist, it will be created when necessary. VRDP server object. Array of hard disks attached to this machine. Associated DVD drive object. Associated floppy drive object. Associated USB controller object. This method may set a @ref com_warnings "warning result code". If USB functionality is not available in the given edition of VirtualBox, this method will set the result code to @c E_NOTIMPL. Associated audio adapter, always present. Associated SATA controller object. Full name of the file containing machine settings data. Current version of the format of the settings file of this machine (). The version string has the following format:
          x.y-platform
        
where x and y are the major and the minor format versions, and platform is the platform identifier. The current version usually matches the value of the attribute unless the settings file was created by an older version of VirtualBox and there was a change of the settings file format since then. Note that VirtualBox automatically converts settings files from older versions to the most recent version when reading them (usually at VirtualBox startup) but it doesn't save the changes back until you call a method that implicitly saves settings (such as ) or call explicitly. Therefore, if the value of this attribute differs from the value of , then it means that the settings file was converted but the result of the conversion is not yet saved to disk. The above feature may be used by interactive front-ends to inform users about the settings file format change and offer them to explicitly save all converted settings files (the global and VM-specific ones), optionally create backup copies of the old settings files before saving, etc. IVirtualBox::settingsFormatVersion, saveSettingsWithBackup()
Whether the settings of this machine have been modified (but neither yet saved nor discarded). Reading this property is only valid on instances returned by and on new machines created by or opened by but not yet registered, or on unregistered machines after calling . For all other cases, the settings can never be modified. For newly created unregistered machines, the value of this property is always TRUE until is called (no matter if any machine settings have been changed after the creation or not). For opened machines the value is set to FALSE (and then follows to normal rules). Current session state for this machine. Type of the session. If is SessionSpawning or SessionOpen, this attribute contains the same value as passed to the method in the @a type parameter. If the session was opened directly using , or if is SessionClosed, the value of this attribute is @c null. Identifier of the session process. This attribute contains the platform-dependent identifier of the process that has opened a direct session for this machine using the call. The returned value is only valid if is SessionOpen or SessionClosing (i.e. a session is currently open or being closed) by the time this property is read. Current execution state of this machine. Time stamp of the last execution state change, in milliseconds since 1970-01-01 UTC. Full path to the file that stores the execution state of the machine when it is in the state. When the machine is not in the Saved state, this attribute null. Full path to the folder that stores a set of rotated log files recorded during machine execution. The most recent log file is named VBox.log, the previous log file is named VBox.log.1 and so on (up to VBox.log.3 in the current version). Current snapshot of this machine. A null object is returned if the machine doesn't have snapshots. Number of snapshots taken on this machine. Zero means the machine doesn't have any snapshots. Returns true if the current state of the machine is not identical to the state stored in the current snapshot. The current state is identical to the current snapshot right after one of the following calls are made:
  • or
  • (issued on a powered off or saved machine, for which returns false)
The current state remains identical until one of the following happens:
  • settings of the machine are changed
  • the saved state is discarded
  • the current snapshot is discarded
  • an attempt to execute the machine is made
For machines that don't have snapshots, this property is always false.
Collection of shared folders for this machine (permanent shared folders). These folders are shared automatically at machine startup and available only to the guest OS installed within this machine. New shared folders are added to the collection using . Existing shared folders can be removed using . Synchronization mode between the host OS clipboard and the guest OS clipboard. A comma-separated list of simple glob patterns. Changes to guest properties whose name matches one of the patterns will generate an signal. Puts the given device to the specified position in the boot order. To indicate that no device is associated with the given position, should be used. @todo setHardDiskBootOrder(), setNetworkBootOrder() Boot @a position out of range. Booting from USB @a device currently not supported. Position in the boot order (1 to the total number of devices the machine can boot from, as returned by ). The type of the device used to boot at the given position. Returns the device type that occupies the specified position in the boot order. @todo [remove?] If the machine can have more than one device of the returned type (such as hard disks), then a separate method should be used to retrieve the individual device that occupies the given position. If here are no devices at the given position, then is returned. @todo getHardDiskBootOrder(), getNetworkBootOrder() Boot @a position out of range. Position in the boot order (1 to the total number of devices the machine can boot from, as returned by ). Device at the given position. Attaches a virtual hard disk identified by the given UUID @a id to a device slot of the specified bus. For the IDE bus, the @a channel parameter can be either @c 0 or @c 1, to specify the primary or secondary IDE controller, respectively. The SATA bus supports 30 channels, so this parameter can be a number ranging from @c 0 to @c 29. For the primary controller of the IDE bus, the @a device number can be either @c 0 or @c 1, to specify the master or the slave device, respectively. For the secondary IDE controller, the device number is always @c 1 because the master device is reserved for the CD-ROM drive. For the SATA bus, the @a device parameter is currently unused and must be @c 0. The specified device slot must not have another disk attached to it, or this method will fail. See for more detailed information about attaching hard disks. You cannot attach a hard disk to a running machine. Also, you cannot attach a hard disk to a newly created machine until this machine's settings are saved to disk using . If the hard disk is being attached indirectly, a new differencing hard disk will implicitly be created for it and attached instead. If the changes made to the machine settings (including this indirect attachment) are later cancelled using , this implicitly created differencing hard disk will implicitly be deleted. SATA device, SATA channel, IDE channel or IDE slot out of range. Attempt to attach hard disk to an unregistered virtual machine. Invalid machine state. Hard disk already attached to this or another virtual machine. UUID of the hard disk to attach. Type of the storage bus to use (IDE or SATA). Channel to attach the hard disk to. Device slot in the given channel to attach the hard disk to. Returns the virtual hard disk attached to a device slot of the specified bus. Note that if the hard disk was indirectly attached by to the given device slot then this method will return not the same object as passed to the call. See for more detailed information about attaching hard disks. No hard disk attached to given slot/bus. Type of the storage bus to query (IDE or SATA). Channel to query. Device slot in the given channel to query. Attached hard disk object. Detaches the virtual hard disk attached to a device slot of the specified bus. Detaching the hard disk from the virtual machine is deferred. This means that the hard disk remains associated with the machine when this method returns and gets actually de-associated only after a successful call. See for more detailed information about attaching hard disks. You cannot detach the hard disk from a running machine. Detaching differencing hard disks implicitly created by for the indirect attachment using this method will not implicitly delete them. The operation should be explicitly performed by the caller after the hard disk is successfully detached and the settings are saved with , if it is the desired action. Attempt to detach hard disk from a running virtual machine. No hard disk attached to given slot/bus. Hard disk format does not support storage deletion. Bus to detach the hard disk from. Channel number to detach the hard disk from. Device slot number to detach the hard disk from. Returns the network adapter associated with the given slot. Slots are numbered sequentially, starting with zero. The total number of adapters per machine is defined by the property, so the maximum slot number is one less than that property's value. Invalid @a slot number. Returns the serial port associated with the given slot. Slots are numbered sequentially, starting with zero. The total number of serial ports per machine is defined by the property, so the maximum slot number is one less than that property's value. Invalid @a slot number. Returns the parallel port associated with the given slot. Slots are numbered sequentially, starting with zero. The total number of parallel ports per machine is defined by the property, so the maximum slot number is one less than that property's value. Invalid @a slot number. Returns the machine-specific extra data key name following the supplied key. An error is returned if the supplied @a key does not exist. @c NULL is returned in @a nextKey if the supplied key is the last key. When supplying @c NULL for the @a key, the first key item is returned in @a nextKey (if there is any). @a nextValue is an optional parameter and if supplied, the next key's value is returned in it. Extra data @a key not found. Name of the data key to follow. Name of the next data key. Value of the next data key. Returns associated machine-specific extra data. If the requested data @a key does not exist, this function will succeed and return @c NULL in the @a value argument. Settings file not accessible. Could not parse the settings file. Name of the data key to get. Value of the requested data key. Sets associated machine-specific extra data. If you pass @c NULL as a key @a value, the given @a key will be deleted. Before performing the actual data change, this method will ask all registered callbacks using the notification for a permission. If one of the callbacks refuses the new value, the change will not be performed. On success, the notification is called to inform all registered callbacks about a successful data change. This method can be called outside the machine session and therefore it's a caller's responsibility to handle possible race conditions when several clients change the same key at the same time. Settings file not accessible. Could not parse the settings file. Name of the data key to set. Value to assign to the key. Saves any changes to machine settings made since the session has been opened or a new machine has been created, or since the last call to or . For registered machines, new settings become visible to all other VirtualBox clients after successful invocation of this method. The method sends notification event after the configuration has been successfully saved (only for registered machines). Calling this method is only valid on instances returned by and on new machines created by but not yet registered, or on unregistered machines after calling . Settings file not accessible. Could not parse the settings file. Modification request refused. Creates a backup copy of the machine settings file () in case of auto-conversion, and then calls . Note that the backup copy is created only if the settings file auto-conversion took place (see for details). Otherwise, this call is fully equivalent to and no backup copying is done. The backup copy is created in the same directory where the original settings file is located. It is given the following file name:
          original.xml.x.y-platform.bak
        
where original.xml is the original settings file name (excluding path), and x.y-platform is the version of the old format of the settings file (before auto-conversion). If the given backup file already exists, this method will try to add the .N suffix to the backup file name (where N counts from 0 to 9) and copy it again until it succeeds. If all suffixes are occupied, or if any other copy error occurs, this method will return a failure. If the copy operation succeeds, the @a bakFileName return argument will receive a full path to the created backup file (for informational purposes). Note that this will happen even if the subsequent call performed by this method after the copy operation, fails. The VirtualBox API never calls this method. It is intended purely for the purposes of creating backup copies of the settings files by front-ends before saving the results of the automatically performed settings conversion to disk. settingsFileVersion Settings file not accessible. Could not parse the settings file. Virtual machine is not mutable. Modification request refused.
Full path to the created backup copy.
Discards any changes to the machine settings made since the session has been opened or since the last call to or . Calling this method is only valid on instances returned by and on new machines created by or opened by but not yet registered, or on unregistered machines after calling . Virtual machine is not mutable. Deletes the settings file of this machine from disk. The machine must not be registered in order for this operation to succeed. will return TRUE after this method successfully returns. Calling this method is only valid on instances returned by and on new machines created by or opened by but not yet registered, or on unregistered machines after calling . The deleted machine settings file can be restored (saved again) by calling . Cannot delete settings of a registered machine or machine not mutable. Could not delete the settings file. Returns a snapshot of this machine with the given UUID. A null UUID can be used to obtain the first snapshot taken on this machine. This is useful if you want to traverse the whole tree of snapshots starting from the root. Virtual machine has no snapshots or snapshot not found. UUID of the snapshot to get Snapshot object with the given UUID. Returns a snapshot of this machine with the given name. Virtual machine has no snapshots or snapshot not found. Name of the snapshot to find Snapshot object with the given name. Sets the current snapshot of this machine. In the current implementation, this operation is not implemented. UUID of the snapshot to set as the current snapshot. Creates a new permanent shared folder by associating the given logical name with the given host path, adds it to the collection of shared folders and starts sharing it. Refer to the description of to read more about logical names. Shared folder already exists. Shared folder @a hostPath not accessible. Unique logical name of the shared folder. Full path to the shared folder in the host file system. Whether the share is writable or readonly Removes the permanent shared folder with the given name previously created by from the collection of shared folders and stops sharing it. Virtual machine is not mutable. Shared folder @a name does not exist. Logical name of the shared folder to remove. Returns @c true if the VM console process can activate the console window and bring it to foreground on the desktop of the host PC. This method will fail if a session for this machine is not currently open. Machine session is not open. @c true if the console window can be shown and @c false otherwise. Activates the console window and brings it to foreground on the desktop of the host PC. Many modern window managers on many platforms implement some sort of focus stealing prevention logic, so that it may be impossible to activate a window without the help of the currently active application. In this case, this method will return a non-zero identifier that represents the top-level window of the VM console process. The caller, if it represents a currently active process, is responsible to use this identifier (in a platform-dependent manner) to perform actual window activation. This method will fail if a session for this machine is not currently open. Machine session is not open. Platform-dependent identifier of the top-level VM console window, or zero if this method has performed all actions necessary to implement the show window semantics for the given platform and/or VirtualBox front-end. Reads an entry from the machine's guest property store. Machine session is not open. The name of the property to read. The value of the property. If the property does not exist then this will be empty. The time at which the property was last modified, as seen by the server process. Additional property parameters, passed as a comma-separated list of "name=value" type entries. Reads a value from the machine's guest property store. Machine session is not open. The name of the property to read. The value of the property. If the property does not exist then this will be empty. Reads a property timestamp from the machine's guest property store. Machine session is not open. The name of the property to read. The timestamp. If the property does not exist then this will be empty. Sets, changes or deletes an entry in the machine's guest property store. Property cannot be changed. Invalid @a flags. Virtual machine is not mutable or session not open. Cannot set transient property when machine not running. The name of the property to set, change or delete. The new value of the property to set, change or delete. If the property does not yet exist and value is non-empty, it will be created. If the value is empty, the key will be deleted if it exists. Additional property parameters, passed as a comma-separated list of "name=value" type entries. Sets, changes or deletes a value in the machine's guest property store. The flags field will be left unchanged or created empty for a new property. Property cannot be changed. Virtual machine is not mutable or session not open. Cannot set transient property when machine not running. The name of the property to set, change or delete. The new value of the property to set, change or delete. If the property does not yet exist and value is non-empty, it will be created. If value is empty, the property will be deleted if it exists. Return a list of the guest properties matching a set of patterns along with their values, time stamps and flags. The patterns to match the properties against, separated by '|' characters. If this is empty or NULL, all properties will match. The names of the properties returned. The values of the properties returned. The array entries match the corresponding entries in the @a name array. The time stamps of the properties returned. The array entries match the corresponding entries in the @a name array. The flags of the properties returned. The array entries match the corresponding entries in the @a name array.
Notification when the guest mouse pointer shape has changed. The new shape data is given. Flag whether the pointer is visible. Flag whether the pointer has an alpha channel. The pointer hot spot x coordinate. The pointer hot spot y coordinate. Width of the pointer shape in pixels. Height of the pointer shape in pixels. Address of the shape buffer. The @a shape buffer contains a 1-bpp (bits per pixel) AND mask followed by a 32-bpp XOR (color) mask. For pointers without alpha channel the XOR mask pixels are 32 bit values: (lsb)BGR0(msb). For pointers with alpha channel the XOR mask consists of (lsb)BGRA(msb) 32 bit values. An AND mask is used for pointers with alpha channel, so if the callback does not support alpha, the pointer could be displayed as a normal color pointer. The AND mask is a 1-bpp bitmap with byte aligned scanlines. The size of the AND mask therefore is cbAnd = (width + 7) / 8 * height. The padding bits at the end of each scanline are undefined. The XOR mask follows the AND mask on the next 4-byte aligned offset: uint8_t *pXor = pAnd + (cbAnd + 3) & ~3. Bytes in the gap between the AND and the XOR mask are undefined. The XOR mask scanlines have no gap between them and the size of the XOR mask is: cXor = width * 4 * height. If @a shape is 0, only the pointer visibility is changed. Notification when the mouse capabilities reported by the guest have changed. The new capabilities are passed. Notification when the guest OS executes the KBD_CMD_SET_LEDS command to alter the state of the keyboard LEDs. Notification when the execution state of the machine has changed. The new state will be given. Notification when a Guest Additions property changes. Interested callees should query IGuest attributes to find out what has changed. Notification when a property of the virtual DVD drive changes. Interested callees should use IDVDDrive methods to find out what has changed. Notification when a property of the virtual floppy drive changes. Interested callees should use IFloppyDrive methods to find out what has changed. Notification when a property of one of the virtual network adapters changes. Interested callees should use INetworkAdapter methods and attributes to find out what has changed. Network adapter that is subject to change. Notification when a property of one of the virtual serial ports changes. Interested callees should use ISerialPort methods and attributes to find out what has changed. Serial port that is subject to change. Notification when a property of one of the virtual parallel ports changes. Interested callees should use ISerialPort methods and attributes to find out what has changed. Parallel port that is subject to change. Notification when a property of the VRDP server changes. Interested callees should use IVRDPServer methods and attributes to find out what has changed. Notification when a property of the virtual USB controller changes. Interested callees should use IUSBController methods and attributes to find out what has changed. Notification when a USB device is attached to or detached from the virtual USB controller. This notification is sent as a result of the indirect request to attach the device because it matches one of the machine USB filters, or as a result of the direct request issued by or . This notification is sent in case of both a succeeded and a failed request completion. When the request succeeds, the @a error parameter is @c null, and the given device has been already added to (when @a attached is @c true) or removed from (when @a attached is @c false) the collection represented by . On failure, the collection doesn't change and the @a error parameter represents the error message describing the failure. Device that is subject to state change. true if the device was attached and false otherwise. null on success or an error message object on failure. Notification when a shared folder is added or removed. The @a scope argument defines one of three scopes: global shared folders (Global), permanent shared folders of the machine (Machine) or transient shared folders of the machine (Session). Interested callees should use query the corresponding collections to find out what has changed. Scope of the notification. Notification when an error happens during the virtual machine execution. There are three kinds of runtime errors:
  • fatal
  • non-fatal with retry
  • non-fatal warnings
Fatal errors are indicated by the @a fatal parameter set to true. In case of fatal errors, the virtual machine execution is always paused before calling this notification, and the notification handler is supposed either to immediately save the virtual machine state using or power it off using . Resuming the execution can lead to unpredictable results. Non-fatal errors and warnings are indicated by the @a fatal parameter set to false. If the virtual machine is in the Paused state by the time the error notification is received, it means that the user can try to resume the machine execution after attempting to solve the problem that caused the error. In this case, the notification handler is supposed to show an appropriate message to the user (depending on the value of the @a id parameter) that offers several actions such as Retry, Save or Power Off. If the user wants to retry, the notification handler should continue the machine execution using the call. If the machine execution is not Paused during this notification, then it means this notification is a warning (for example, about a fatal condition that can happen very soon); no immediate action is required from the user, the machine continues its normal execution. Note that in either case the notification handler must not perform any action directly on a thread where this notification is called. Everything it is allowed to do is to post a message to another thread that will then talk to the user and take the corresponding action. Currently, the following error identifiers are known:
  • "HostMemoryLow"
  • "HostAudioNotResponding"
  • "VDIStorageFull"
This notification is not designed to be implemented by more than one callback at a time. If you have multiple IConsoleCallback instances registered on the given IConsole object, make sure you simply do nothing but return @c S_OK from all but one of them that does actual user notification and performs necessary actions.
Whether the error is fatal or not Error identifier Optional error message
Notification when a call to is made by a front-end to check if a subsequent call to can succeed. The callee should give an answer appropriate to the current machine state in the @a canShow argument. This answer must remain valid at least until the next machine state change. This notification is not designed to be implemented by more than one callback at a time. If you have multiple IConsoleCallback instances registered on the given IConsole object, make sure you simply do nothing but return @c true and @c S_OK from all but one of them that actually manages console window activation. @c true if the console window can be shown and @c false otherwise. Notification when a call to requests the console window to be activated and brought to foreground on the desktop of the host PC. This notification should cause the VM console process to perform the requested action as described above. If it is impossible to do it at a time of this notification, this method should return a failure. Note that many modern window managers on many platforms implement some sort of focus stealing prevention logic, so that it may be impossible to activate a window without the help of the currently active application (which is supposedly an initiator of this notification). In this case, this method must return a non-zero identifier that represents the top-level window of the VM console process. The caller, if it represents a currently active process, is responsible to use this identifier (in a platform-dependent manner) to perform actual window activation. This method must set @a winId to zero if it has performed all actions necessary to complete the request and the console window is now active and in foreground, to indicate that no further action is required on the caller's side. This notification is not designed to be implemented by more than one callback at a time. If you have multiple IConsoleCallback instances registered on the given IConsole object, make sure you simply do nothing but return @c S_OK from all but one of them that actually manages console window activation. Platform-dependent identifier of the top-level VM console window, or zero if this method has performed all actions necessary to implement the show window semantics for the given platform and/or this VirtualBox front-end.
Contains information about the remote display (VRDP) capabilities and status. This is used in the attribute. Whether the remote display connection is active. How many times a client connected. When the last connection was established, in milliseconds since 1970-01-01 UTC. When the last connection was terminated or the current time, if connection is still active, in milliseconds since 1970-01-01 UTC. How many bytes were sent in last or current, if still active, connection. How many bytes were sent in all connections. How many bytes were received in last or current, if still active, connection. How many bytes were received in all connections. Login user name supplied by the client. Login domain name supplied by the client. The client name supplied by the client. The IP address of the client. The client software version number. Public key exchange method used when connection was established. Values: 0 - RDP4 public key exchange scheme. 1 - X509 certificates were sent to client. The IConsole interface represents an interface to control virtual machine execution. The console object that implements the IConsole interface is obtained from a session object after the session for the given machine has been opened using one of , or methods. Methods of the IConsole interface allow the caller to query the current virtual machine execution state, pause the machine or power it down, save the machine state or take a snapshot, attach and detach removable media and so on. ISession Machine object this console is sessioned with. This is a convenience property, it has the same value as of the corresponding session object. Current execution state of the machine. This property always returns the same value as the corresponding property of the IMachine object this console is sessioned with. For the process that owns (executes) the VM, this is the preferable way of querying the VM state, because no IPC calls are made. Guest object. Virtual keyboard object. If the machine is not running, any attempt to use the returned object will result in an error. Virtual mouse object. If the machine is not running, any attempt to use the returned object will result in an error. Virtual display object. If the machine is not running, any attempt to use the returned object will result in an error. Debugging interface. Collection of USB devices currently attached to the virtual USB controller. The collection is empty if the machine is not running. List of USB devices currently attached to the remote VRDP client. Once a new device is physically attached to the remote host computer, it appears in this list and remains there until detached. Collection of shared folders for the current session. These folders are called transient shared folders because they are available to the guest OS running inside the associated virtual machine only for the duration of the session (as opposed to which represent permanent shared folders). When the session is closed (e.g. the machine is powered down), these folders are automatically discarded. New shared folders are added to the collection using . Existing shared folders can be removed using . Interface that provides information on Remote Display (VRDP) connection. Starts the virtual machine execution using the current machine state (that is, its current execution state, current settings and current hard disks). If the machine is powered off or aborted, the execution will start from the beginning (as if the real hardware were just powered on). If the machine is in the state, it will continue its execution the point where the state has been saved. Unless you are trying to write a new VirtualBox front-end that performs direct machine execution (like the VirtualBox or VBoxSDL front-ends), don't call in a direct session opened by and use this session only to change virtual machine settings. If you simply want to start virtual machine execution using one of the existing front-ends (for example the VirtualBox GUI or headless server), simply use ; these front-ends will power up the machine automatically for you. #saveState Virtual machine already running. Host interface does not exist or name not set. Invalid saved state file. Progress object to track the operation completion. Identical to powerUp except that the VM will enter the state, instead of . #powerUp Virtual machine already running. Host interface does not exist or name not set. Invalid saved state file. Progress object to track the operation completion. Stops the virtual machine execution. After this operation completes, the machine will go to the PoweredOff state. @deprecated This method will be removed in VirtualBox 2.1 where the powerDownAsync() method will take its name. Do not use this method in the code. Virtual machine must be Running, Paused or Stuck to be powered down. Unable to power off or destroy virtual machine. Initiates the power down procedure to stop the virtual machine execution. The completion of the power down procedure is tracked using the returned IProgress object. After the operation is complete, the machine will go to the PoweredOff state. @warning This method will be renamed to "powerDown" in VirtualBox 2.1 where the original powerDown() method will be removed. You will need to rename "powerDownAsync" to "powerDown" in your sources to make them build with version 2.1. Virtual machine must be Running, Paused or Stuck to be powered down. Progress object to track the operation completion. Resets the virtual machine. Virtual machine not in Running state. Virtual machine error in reset operation. Pauses the virtual machine execution. Virtual machine not in Running state. Virtual machine error in suspend operation. Resumes the virtual machine execution. Virtual machine not in Paused state. Virtual machine error in resume operation. Sends the ACPI power button event to the guest. Virtual machine not in Running state. Controlled power off failed. Sends the ACPI sleep button event to the guest. Virtual machine not in Running state. Sending sleep button event failed. Checks if the last power button event was handled by guest. Checking if the event was handled by the guest OS failed. Checks if the guest entered the ACPI mode G0 (working) or G1 (sleeping). If this method returns false, the guest will most likely not respond to external ACPI events. Virtual machine not in Running state. Saves the current execution state of a running virtual machine and stops its execution. After this operation completes, the machine will go to the Saved state. Next time it is powered up, this state will be restored and the machine will continue its execution from the place where it was saved. This operation differs from taking a snapshot to the effect that it doesn't create new differencing hard disks. Also, once the machine is powered up from the state saved using this method, the saved state is deleted, so it will be impossible to return to this state later. On success, this method implicitly calls to save all current machine settings (including runtime changes to the DVD drive, etc.). Together with the impossibility to change any VM settings when it is in the Saved state, this guarantees adequate hardware configuration of the machine when it is restored from the saved state file. The machine must be in the Running or Paused state, otherwise the operation will fail. Virtual machine state neither Running nor Paused. Failed to create directory for saved state file. Progress object to track the operation completion. Associates the given saved state file to the virtual machine. On success, the machine will go to the Saved state. Next time it is powered up, it will be restored from the adopted saved state and continue execution from the place where the saved state file was created. The specified saved state file path may be absolute or relative to the folder the VM normally saves the state to (usually, ). It's a caller's responsibility to make sure the given saved state file is compatible with the settings of this virtual machine that represent its virtual hardware (memory size, hard disk configuration etc.). If there is a mismatch, the behavior of the virtual machine is undefined. Virtual machine state neither PoweredOff nor Aborted. Path to the saved state file to adopt. Discards (deletes) the saved state of the virtual machine previously created by . Next time the machine is powered up, a clean boot will occur. This operation is equivalent to resetting or powering off the machine without doing a proper shutdown in the guest OS. Virtual machine not in state Saved. Gets the current activity type of a given device or device group. Invalid device type. Attaches a host USB device with the given UUID to the USB controller of the virtual machine. The device needs to be in one of the following states: , or , otherwise an error is immediately returned. When the device state is Busy, an error may also be returned if the host computer refuses to release it for some reason. IUSBController::deviceFilters, USBDeviceState Virtual machine state neither Running nor Paused. Virtual machine does not have a USB controller. UUID of the host USB device to attach. Detaches an USB device with the given UUID from the USB controller of the virtual machine. After this method succeeds, the VirtualBox server re-initiates all USB filters as if the device were just physically attached to the host, but filters of this machine are ignored to avoid a possible automatic re-attachment. IUSBController::deviceFilters, USBDeviceState Virtual machine does not have a USB controller. USB device not attached to this virtual machine. UUID of the USB device to detach. Detached USB device. Creates a transient new shared folder by associating the given logical name with the given host path, adds it to the collection of shared folders and starts sharing it. Refer to the description of to read more about logical names. Virtual machine in Saved state or currently changing state. Shared folder already exists or not accessible. Unique logical name of the shared folder. Full path to the shared folder in the host file system. Whether the share is writable or readonly Removes a transient shared folder with the given name previously created by from the collection of shared folders and stops sharing it. Virtual machine in Saved state or currently changing state. Shared folder does not exists. Logical name of the shared folder to remove. Saves the current execution state and all settings of the machine and creates differencing images for all normal (non-independent) hard disks. This method can be called for a PoweredOff, Saved, Running or Paused virtual machine. When the machine is PoweredOff, an offline snapshot is created, in all other cases -- an online snapshot. The taken snapshot is always based on the current snapshot of the associated virtual machine and becomes a new current snapshot. This method implicitly calls to save all current machine settings before taking an offline snapshot. ISnapshot, Virtual machine currently changing state. Short name for the snapshot. Optional description of the snapshot. Progress object to track the operation completion. Starts discarding the specified snapshot. The execution state and settings of the associated machine stored in the snapshot will be deleted. The contents of all differencing hard disks of this snapshot will be merged with the contents of their dependent child hard disks to keep the, disks valid (in other words, all changes represented by hard disks being discarded will be propagated to their child hard disks). After that, this snapshot's differencing hard disks will be deleted. The parent of this snapshot will become a new parent for all its child snapshots. If the discarded snapshot is the current one, its parent snapshot will become a new current snapshot. The current machine state is not directly affected in this case, except that currently attached differencing hard disks based on hard disks of the discarded snapshot will be also merged as described above. If the discarded snapshot is the first one (the root snapshot) and it has exactly one child snapshot, this child snapshot will become the first snapshot after discarding. If there are no children at all (i.e. the first snapshot is the only snapshot of the machine), both the current and the first snapshot of the machine will be set to null. In all other cases, the first snapshot cannot be discarded. You cannot discard the snapshot if it stores normal (non-differencing) hard disks that have differencing hard disks based on them. Snapshots of such kind can be discarded only when every normal hard disk has either no children at all or exactly one child. In the former case, the normal hard disk simply becomes unused (i.e. not attached to any VM). In the latter case, it receives all the changes stored in the child hard disk, and then it replaces the child hard disk in the configuration of the corresponding snapshot or machine. Also, you cannot discard the snapshot if it stores hard disks (of any type) having differencing child hard disks that belong to other machines. Such snapshots can be only discarded after you discard all snapshots of other machines containing "foreign" child disks, or detach these "foreign" child disks from machines they are attached to. One particular example of the snapshot storing normal hard disks is the first snapshot of a virtual machine that had normal hard disks attached when taking the snapshot. Be careful when discarding such snapshots because this implicitly commits changes (made since the snapshot being discarded has been taken) to normal hard disks (as described above), which may be not what you want. The virtual machine is put to the Discarding state until the discard operation is completed. The machine must not be running, otherwise the operation will fail. Child hard disks of all normal hard disks of the discarded snapshot must be accessible (see ) for this operation to succeed. In particular, this means that all virtual machines, whose hard disks are directly or indirectly based on the hard disks of discarded snapshot, must be powered off. Merging hard disk contents can be very time and disk space consuming, if these disks are big in size and have many children. However, if the snapshot being discarded is the last (head) snapshot on the branch, the operation will be rather quick. Note that discarding the current snapshot will implicitly call to make all current machine settings permanent. Virtual machine is running. UUID of the snapshot to discard. Progress object to track the operation completion. This operation is similar to but affects the current machine state. This means that the state stored in the current snapshot will become a new current state, and all current settings of the machine and changes stored in differencing hard disks will be lost. After this operation is successfully completed, new empty differencing hard disks are created for all normal hard disks of the machine. If the current snapshot of the machine is an online snapshot, the machine will go to the saved state, so that the next time it is powered on, the execution state will be restored from the current snapshot. The machine must not be running, otherwise the operation will fail. If the machine state is Saved prior to this operation, the saved state file will be implicitly discarded (as if were called). Virtual machine is running. Progress object to track the operation completion. This method is equivalent to doing discardSnapshot (currentSnapshot.id(), progress) followed by . As a result, the machine will be fully restored from the snapshot preceding the current snapshot, while both the current snapshot and the current machine state will be discarded. If the current snapshot is the first snapshot of the machine (i.e. it has the only snapshot), the current machine state will be discarded before discarding the snapshot. In other words, the machine will be restored from its last snapshot, before discarding it. This differs from performing a single call (note that no will be possible after it) to the effect that the latter will preserve the current state instead of discarding it. Unless explicitly mentioned otherwise, all remarks and limitations of the above two methods also apply to this method. The machine must not be running, otherwise the operation will fail. If the machine state is Saved prior to this operation, the saved state file will be implicitly discarded (as if were called). This method is more efficient than calling both of the above methods separately: it requires less IPC calls and provides a single progress object. Virtual machine is running. Progress object to track the operation completion. Registers a new console callback on this instance. The methods of the callback interface will be called by this instance when the appropriate event occurs. Unregisters the console callback previously registered using . Given @a callback handler is not registered. The IHostDVDDrive interface represents the physical CD/DVD drive hardware on the host. Used indirectly in . Returns the platform-specific device identifier. On DOS-like platforms, it is a drive name (e.g. R:). On Unix-like platforms, it is a device name (e.g. /dev/hdc). Returns a human readable description for the drive. This description usually contains the product and vendor name. A @c null string is returned if the description is not available. Returns the unique device identifier for the drive. This attribute is reserved for future use instead of . Currently it is not used and may return @c null on some platforms. Searches this collection for a host drive with the given name. The method returns an error if the given name does not correspond to any host drive in the collection. Name of the host drive to search for Found host drive object The IHostFloppyDrive interface represents the physical floppy drive hardware on the host. Used indirectly in . Returns the platform-specific device identifier. On DOS-like platforms, it is a drive name (e.g. A:). On Unix-like platforms, it is a device name (e.g. /dev/fd0). Returns a human readable description for the drive. This description usually contains the product and vendor name. A @c null string is returned if the description is not available. Returns the unique device identifier for the drive. This attribute is reserved for future use instead of . Currently it is not used and may return @c null on some platforms. Searches this collection for a host drive with the given name. The method returns an error if the given name does not correspond to any host drive in the collection. Name of the host drive to search for Found host drive object Type of encapsulation. Ethernet encapsulation includes both wired and wireless Ethernet connections. IHostNetworkInterface The type of interface cannot be determined. Ethernet frame encapsulation. Point-to-point protocol encapsulation. Serial line IP encapsulation. Current status of the interface. IHostNetworkInterface The state of interface cannot be determined. The interface is fully operational. The interface is not functioning. Reprents one of host's network interfaces. IP V6 address and network mask are strings of 32 hexdecimal digits grouped by four. Groups are separated by colons. For example, fe80:0000:0000:0000:021e:c2ff:fed2:b030. Returns the host network interface name. Returns the interface UUID. Returns the IP V4 address of the interface. Returns the network mask of the interface. Returns the IP V6 address of the interface. Returns the IP V6 network mask of the interface. Returns the hardware address. For Ethernet it is MAC address. Type of protocol encapsulation used. Status of the interface. The IHost interface represents the physical machine that this VirtualBox installation runs on. An object implementing this interface is returned by the attribute. This interface contains read-only information about the host's physical hardware (such as what processors and disks are available, what the host operating system is, and so on) and also allows for manipulating some of the host's hardware, such as global USB device filters and host interface networking. List of DVD drives available on the host. List of floppy drives available on the host. List of USB devices currently attached to the host. Once a new device is physically attached to the host computer, it appears in this list and remains there until detached. This method may set a @ref com_warnings "warning result code". If USB functionality is not available in the given edition of VirtualBox, this method will set the result code to @c E_NOTIMPL. List of USB device filters in action. When a new device is physically attached to the host computer, filters from this list are applied to it (in order they are stored in the list). The first matched filter will determine the action performed on the device. Unless the device is ignored by these filters, filters of all currently running virtual machines () are applied to it. This method may set a @ref com_warnings "warning result code". If USB functionality is not available in the given edition of VirtualBox, this method will set the result code to @c E_NOTIMPL. IHostUSBDeviceFilter, USBDeviceState List of host network interfaces currently defined on the host. Number of (logical) CPUs installed in the host system. Number of (logical) CPUs online in the host system. Query the (approximate) maximum speed of a specified host CPU in Megahertz. Identifier of the CPU. Speed value. 0 is returned if value is not known or @a cpuId is invalid. Query whether a CPU feature is supported or not. CPU Feature identifier. Feature is supported or not. Query the model string of a specified host CPU. This function is not implemented in the current version of the product. Identifier of the CPU. Model string. A NULL string is returned if value is not known or @a cpuId is invalid. Amount of system memory in megabytes installed in the host system. Available system memory in the host system. Name of the host system's operating system. Host operating system's version string. Returns the current host time in milliseconds since 1970-01-01 UTC. Creates a new adapter for Host Interface Networking. Host network interface @a name already exists. Adapter name. Created host interface object. Progress object to track the operation completion. Removes the given host network interface. No host network interface matching @a id found. Adapter GUID. Removed host interface object. Progress object to track the operation completion. Creates a new USB device filter. All attributes except the filter name are set to null (any match), active is false (the filter is not active). The created filter can be added to the list of filters using . #USBDeviceFilters Filter name. See for more info. Created filter object. Inserts the given USB device to the specified position in the list of filters. Positions are numbered starting from 0. If the specified position is equal to or greater than the number of elements in the list, the filter is added at the end of the collection. Duplicates are not allowed, so an attempt to insert a filter that is already in the list, will return an error. This method may set a @ref com_warnings "warning result code". If USB functionality is not available in the given edition of VirtualBox, this method will set the result code to @c E_NOTIMPL. #USBDeviceFilters USB device filter is not created within this VirtualBox instance. USB device filter already in list. Position to insert the filter to. USB device filter to insert. Removes a USB device filter from the specified position in the list of filters. Positions are numbered starting from 0. Specifying a position equal to or greater than the number of elements in the list will produce an error. This method may set a @ref com_warnings "warning result code". If USB functionality is not available in the given edition of VirtualBox, this method will set the result code to @c E_NOTIMPL. #USBDeviceFilters USB device filter list empty or invalid @a position. Position to remove the filter from. Removed USB device filter. Searches through all host network interfaces for an interface with the given name. The method returns an error if the given name does not correspond to any host network interface. Name of the host network interface to search for. Found host network interface object. Searches through all host network interfaces for an interface with the given GUID. The method returns an error if the given GUID does not correspond to any host network interface. GUID of the host network interface to search for. Found host network interface object. The ISystemProperties interface represents global properties of the given VirtualBox installation. These properties define limits and default values for various attributes and parameters. Most of the properties are read-only, but some can be changed by a user. Minimum guest system memory in Megabytes. Maximum guest system memory in Megabytes. Minimum guest video memory in Megabytes. Maximum guest video memory in Megabytes. Maximum size of a virtual disk image in Megabytes. Number of network adapters associated with every instance. Number of serial ports associated with every instance. Number of parallel ports associated with every instance. Maximum device position in the boot order. This value corresponds to the total number of devices a machine can boot from, to make it possible to include all possible devices to the boot list. Full path to the default directory used to create new or open existing machines when a settings file name contains no path. The initial value of this property is < VirtualBox_home>/Machines. Setting this property to null will restore the initial value. When settings this property, the specified path can be absolute (full path) or relative to the VirtualBox home directory. When reading this property, a full path is always returned. The specified path may not exist, it will be created when necessary. , Full path to the default directory used to create new or open existing virtual disks. This path is used when the storage unit of a hard disk is a regular file in the host's file system and only a file name that contains no path is given. The initial value of this property is < VirtualBox_home >/HardDisks. Setting this property to null will restore the initial value. When settings this property, the specified path can be relative to the VirtualBox home directory or absolute. When reading this property, a full path is always returned. The specified path may not exist, it will be created when necessary. IHardDisk2, , , List of all hard disk storage formats supported by this VirtualBox installation. Keep in mind that the hard disk format identifier () used in other API calls like to refer to a particular hard disk format is a case-insensitive string. This means that, for example, all of the following strings:
          "VDI"
          "vdi"
          "VdI"
refer to the same hard disk format. Note that the virtual hard disk framework is backend-based, therefore the list of supported formats depends on what backends are currently installed. ,
Identifier of the default hard disk format used by VirtualBox. The hard disk format set by this attribute is used by VirtualBox when the hard disk format was not specified explicitly. One example is with the null format argument. A more complex example is implicit creation of differencing hard disks when taking a snapshot of a virtual machine: this operation will try to use a format of the parent hard disk first and if this format does not support differencing hard disks the default format specified by this argument will be used. The list of supported hard disk formats may be obtained by the call. Note that the default hard disk format must have a capability to create differencing hard disks; otherwise opeartions that create hard disks implicitly may fail unexpectedly. The initial value of this property is VDI in the current version of the VirtualBox product, but may change in the future. Setting this property to null will restore the initial value. , , Library that provides authentication for VRDP clients. The library is used if a virtual machine's authentication type is set to "external" in the VM RemoteDisplay configuration. The system library extension (".DLL" or ".so") must be omitted. A full path can be specified; if not, then the library must reside on the system's default library path. The default value of this property is VRDPAuth. There is a library of that name in one of the default VirtualBox library directories. For details about VirtualBox authentication libraries and how to implement them, please refer to the VirtualBox manual. Setting this property to null will restore the initial value. Library that provides authentication for webservice clients. The library is used if a virtual machine's authentication type is set to "external" in the VM RemoteDisplay configuration and will be called from within the implementation. As opposed to , there is no per-VM setting for this, as the webservice is a global resource (if it is running). Only for this setting (for the webservice), setting this value to a literal "null" string disables authentication, meaning that will always succeed, no matter what user name and password are supplied. The initial value of this property is VRDPAuth, meaning that the webservice will use the same authentication library that is used by default for VBoxVRDP (again, see ). The format and calling convention of authentication libraries is the same for the webservice as it is for VBoxVRDP. This specifies the default value for hardware virtualization extensions. If enabled, virtual machines will make use of hardware virtualization extensions such as Intel VT-x and AMD-V by default. This value can be overridden by each VM using their property. This value specifies how many old release log files are kept.
Guest OS family identifier string. Human readable description of the guest OS family. Guest OS identifier string. Human readable description of the guest OS. Returns @c true if the given OS is 64-bit Returns @c true if IO APIC recommended for this OS type. Returns @c true if VT-x or AMD-V recommended for this OS type. Recommended RAM size in Megabytes. Recommended video RAM size in Megabytes. Recommended hard disk size in Megabytes. Returns recommended network adapter for this OS type. The IGuest interface represents information about the operating system running inside the virtual machine. Used in . IGuest provides information about the guest operating system, whether Guest Additions are installed and other OS-specific virtual machine properties. Identifier of the Guest OS type as reported by the Guest Additions. You may use to obtain an IGuestOSType object representing details about the given Guest OS type. If Guest Additions are not installed, this value will be the same as . Flag whether the Guest Additions are installed and active in which case their version will be returned by the property. Version of the Guest Additions (3 decimal numbers separated by dots) or empty when the Additions are not installed. The Additions may also report a version but yet not be active as the version might be refused by VirtualBox (incompatible) or other failures occurred. Flag whether seamless guest display rendering (seamless desktop integration) is supported. Flag whether the guest is in graphics mode. If it is not, then seamless rendering will not work, resize hints are not immediately acted on and guest display resizes are probably not initiated by the guest additions. Guest system memory balloon size in megabytes. Interval to update guest statistics in seconds. Store login credentials that can be queried by guest operating systems with Additions installed. The credentials are transient to the session and the guest may also choose to erase them. Note that the caller cannot determine whether the guest operating system has queried or made use of the credentials. VMM device is not available. User name string, can be empty Password string, can be empty Domain name (guest logon scheme specific), can be empty Flag whether the guest should alternatively allow the user to interactively specify different credentials. This flag might not be supported by all versions of the Additions. Query specified guest statistics as reported by the VirtualBox Additions. Virtual CPU id; not relevant for all statistic types Statistic type. Statistics value The IProgress interface represents a task progress object that allows to wait for the completion of some asynchronous task. The task consists of one or more operations that run sequentially, one after one. There is an individual percent of completion of the current operation and the percent of completion of the task as a whole. Similarly, you can wait for the completion of a particular operation or for the completion of the whole task. Every operation is identified by a number (starting from 0) and has a separate description. ID of the task. Description of the task. Initiator of the task. Whether the task can be interrupted. Current task progress value in percent. This value depends on how many operations are already complete. Whether the task has been completed. Whether the task has been canceled. Result code of the progress task. Valid only if is true. Extended information about the unsuccessful result of the progress operation. May be NULL when no extended information is available. Valid only if is true and indicates a failure. Number of operations this task is divided into. Every task consists of at least one operation. Number of the operation being currently executed. Description of the operation being currently executed. Current operation progress value in percent. Waits until the task is done (including all operations) with a given timeout. Failed to wait for task completion. Timeout value in milliseconds. Specify -1 for an indefinite wait. Waits until the given operation is done with a given timeout. Failed to wait for operation completion. Number of the operation to wait for. Must be less than . Timeout value in milliseconds. Specify -1 for an indefinite wait. Cancels the task. If is false, then this method will fail. Operation cannot be canceled. The ISnapshot interface represents a snapshot of the virtual machine. The snapshot stores all the information about a virtual machine necessary to bring it to exactly the same state as it was at the time of taking the snapshot. The snapshot includes:
  • all settings of the virtual machine (i.e. its hardware configuration: RAM size, attached hard disks, etc.)
  • the execution state of the virtual machine (memory contents, CPU state, etc.).
Snapshots can be offline (taken when the VM is powered off) or online (taken when the VM is running). The execution state of the offline snapshot is called a zero execution state (it doesn't actually contain any information about memory contents or the CPU state, assuming that all hardware is just powered off).

Snapshot branches

Snapshots can be chained. Chained snapshots form a branch where every next snapshot is based on the previous one. This chaining is mostly related to hard disk branching (see description). This means that every time a new snapshot is created, a new differencing hard disk is implicitly created for all normal hard disks attached to the given virtual machine. This allows to fully restore hard disk contents when the machine is later reverted to a particular snapshot. In the current implementation, multiple snapshot branches within one virtual machine are not allowed. Every machine has a single branch, and operation adds a new snapshot to the top of that branch. Existing snapshots can be discarded using .

Current snapshot

Every virtual machine has a current snapshot, identified by . This snapshot is used as a base for the current machine state (see below), to the effect that all normal hard disks of the machine and its execution state are based on this snapshot. In the current implementation, the current snapshot is always the last taken snapshot (i.e. the head snapshot on the branch) and it cannot be changed. The current snapshot is null if the machine doesn't have snapshots at all; in this case the current machine state is just current settings of this machine plus its current execution state.

Current machine state

The current machine state is what represented by IMachine instances got directly from IVirtualBox using getMachine(), findMachine(), etc. (as opposed to instances returned by ). This state is always used when the machine is powered on. The current machine state also includes the current execution state. If the machine is being currently executed ( is and above), its execution state is just what's happening now. If it is powered off ( or ), it has a zero execution state. If the machine is saved (), its execution state is what saved in the execution state file (). If the machine is in the saved state, then, next time it is powered on, its execution state will be fully restored from the saved state file and the execution will continue from the point where the state was saved. Similarly to snapshots, the current machine state can be discarded using .

Taking and discarding snapshots

The table below briefly explains the meaning of every snapshot operation:
OperationMeaningRemarks
Save the current state of the virtual machine, including all settings, contents of normal hard disks and the current modifications to immutable hard disks (for online snapshots) The current state is not changed (the machine will continue execution if it is being executed when the snapshot is taken)
Forget the state of the virtual machine stored in the snapshot: dismiss all saved settings and delete the saved execution state (for online snapshots) Other snapshots (including child snapshots, if any) and the current state are not directly affected
Restore the current state of the virtual machine from the state stored in the current snapshot, including all settings and hard disk contents The current state of the machine existed prior to this operation is lost
Completely revert the virtual machine to the state it was in before the current snapshot has been taken The current state, as well as the current snapshot, are lost
UUID of the snapshot. Short name of the snapshot. Optional description of the snapshot. Time stamp of the snapshot, in milliseconds since 1970-01-01 UTC. true if this snapshot is an online snapshot and false otherwise. When this attribute is true, the attribute of the object associated with this snapshot will point to the saved state file. Otherwise, it will be null. Virtual machine this snapshot is taken on. This object stores all settings the machine had when taking this snapshot. The returned machine object is immutable, i.e. no any settings can be changed. Parent snapshot (a snapshot this one is based on). It's not an error to read this attribute on a snapshot that doesn't have a parent -- a null object will be returned to indicate this. Child snapshots (all snapshots having this one as a parent). In the current implementation, there can be only one child snapshot, or no children at all, meaning this is the last (head) snapshot.
Virtual media state. IMedia Associated media storage does not exist (either was not created yet or was deleted). Associated storage exists and accessible. Media is locked for reading, no data modification is possible. Media is locked for writing, no concurrent data reading or modification is possible. Associated media storage is not accessible. Associated media storage is being created. Associated media storage is being deleted. The IMedium interface is a common interface for all objects representing virtual media such as hard disks, DVD images. Each medium is associated with a storage unit (such as a file on the host computer or a network resource) that holds actual data. The location of the storage unit is represented by the #location attribute. The value of this attribute is media type dependent. The exact media type may be determined by querying the appropriate interface such as:
  • IHardDisk2 (virtual hard disks)
  • IDVDImage2 (standard CD/DVD ISO image files)
  • IFloppyImage2 (raw floppy image files)
Existing media are opened using the following methods, depending on the media type:
New hard disk media are created using the method. CD/DVD and floppy images are created outside VirtualBox, usually by storing a copy of the real medium of the corresponding type in a regular file.

Known Media

When an existing medium gets opened for the first time, it gets automatically remembered by the given VirtualBox installation or, in other words, becomes a known medium. Known media are stored in the media registry transparently maintained by VirtualBox and stored in settings files so that this registry is preserved when VirtualBox is not running. Newly created virtual hard disks get remembered only when the associated storage unit is actually created (see IHardDisk2 for more details). All known media can be enumerated using , and attributes. Individual media can be quickly found by UUID using and similar methods or by location using and similar methods. Only known media can be attached to virtual machines. Removing known media from the media registry is performed when the given medium is closed using the method or when its associated storage unit is deleted (only for hard disks).

Accessibility Checks

The given medium (with the created storage unit) is considered to be accessible when its storage unit can be successfully read from. Accessible media are indicated by the value of the attribute. When the storage unit cannot be read (for example, because it is located on a disconnected network resource, or was accidentally deleted outside VirtualBox), the medium is considered to be inaccessible which is indicated by the state. The details about the reason of being inaccessible can be obtained using the attribute. A new accessibility check is performed each time the attribute is read. Please note that this check may take long time (several seconds or even minutes, depending on the storage unit location and format), and will block the calling thread until finished. For this reason, it is recommended to never read this attribute on the main UI thread to avoid making the UI unresponsive. Note that when VirtualBox starts up (e.g. the VirtualBox object gets created for the first time), all known media are in the state but the value of the attribute is null because no actual accessibility check is made on startup. This is done to make the VirtualBox object ready for serving requests as fast as possible and let the end-user application decide if it needs to check media accessibility right away or not.
UUID of the medium. For a newly created medium, this value is a randomly generated UUID. For media in one of MediaState_NotCreated, MediaState_Creating or MediaState_Deleting states, the value of this property is undefined and will most likely be an empty UUID. Optional description of the medium. For newly created media, the value of this attribute value is null. Media types that don't support this attribute will return E_NOTIMPL in attempt to get or set this attribute's value. For some storage types, reading this attribute may return an outdated (last known) value when is or because the value of this attribute is stored within the storage unit itself. Also note that changing the attribute value is not possible in such case, as well as when the medium is the state. Current media state. Inspect values for details. Reading this attribute may take long time because a new accessibility check of the storage unit is performed every time the attribute is read. This check may cause a significant delay if the storage unit of the given medium is, for example, a file located on a network share which is not currently accessible due to connectivity problems -- the call will not return until a timeout interval defined by the host OS for this operation expires. If the last known state of the medium is and the accessibility check fails then the state would be set to and may be used to get more details about the failure. If the state of the medium is or then it remains the same, and a non-null value of will indicate a failed accessibility check in this case. Note that not all media states are applicable to certain media types. For example, states , , , are meaningless for IDVDImage2 and IFloppyImage2 media. Location of the storage unit holding media data. The format of the location string is media type specific. For media types that use regular files in a host's file system, the location string is just a full file name. Some media types may support changing the storage unit location by simply changing the value of this property. If this operation is not supported, the implementation will return E_NOTIMPL in attempt to set this attribute's value. When setting a value of the location attribute which is a regular file in the host's file system, the given file name may be either relative to the VirtualBox home folder or absolute. Note that if the given location specification does not contain the file extension part then a proper default extension will be automatically appended by the implementation depending on the media type. Name of the storage unit holding media data. The returned string is a short version of the attribute that is suitable for representing the medium in situations where the full location specification is too long (such as lists and comboboxes in GUI frontends). This string is also used by frontends to sort the media list alphabetically when needed. For example, for locations that are regular files in the host's file system, the value of this attribute is just a file name (+ extension), without the path specification. Note that as opposed to the attribute, the name attribute will not necessary be unique for a list of media of the given type and format. Physical size of the storage unit used to hold media data (in bytes). For media whose is , the value of this property is the last known size. For media, the returned value is zero. Text message that represents the result of the last accessibility check. Accessibility checks are performed each time the attribute is read. A @c null string is returned if the last accessibility check was successful. A non-null string indicates a failure and should normally describe a reason of the failure (for example, a file read error). Array of UUIDs of all machines this medium is attached to. A null array is returned if this medium is not attached to any machine or to any machine's snapshot. The returned array will include a machine even if this medium is not attached to that machine in the current state but attached to it in one of the machine's snapshots. See for details. Returns an array of UUIDs of all snapshots of the given machine where this medium is attached to it. If the medium is attached to the machine in the current state, then the first element in the array will always be the ID of the queried machine (i.e. the value equal to the @c machineId argument), followed by snapshot IDs (if any). If the medium is not attached to the machine in the current state, then the array will contain only snapshot IDs. The returned array may be null if this medium is not attached to the given machine at all, neither in the current state nor in one of snapshots. UUID of the machine to query. Array of snapshot UUIDs of the given machine using this medium. Locks this medium for reading. The read lock is shared: many clients can simultaneously lock the same media for reading unless it is already locked for writing (see ) in which case an error is returned. When the medium is locked for reading, it cannot be modified from within VirtualBox. This means that any method that changes the properties of this medium or contents of the storage unit will return an error (unless explicitly stated otherwise) and that an attempt to start a virtual machine that wants to modify the medium will also fail. When the virtual machine is started up, it locks for reading all media it uses in read-only mode. If some media cannot be locked for reading, the startup procedure will fail. The medium locked for reading must be unlocked using the method. Calls to can be nested and must be followed by the same number of paired calls. This method sets the media state to on success. The state prior to this call must be , or . As you can see, inaccessible media can be locked too. This is not an error; this method performs a logical lock that prevents modifications of this media through the VirtualBox API, not a physical lock of the underlying storage unit. This method returns the current state of the medium before the operation. Invalid media state (e.g. not created, locked, inaccessible, creating, deleting). State of the medium after the operation. Cancels the read lock previously set by . Either on success or on failure, this method returns the current state of the medium after the operation. See for more details. Medium not locked for reading. State of the medium after the operation. Locks this medium for writing. The write lock, as opposed to , is exclusive: there may be only one client that holds a write lock and there may be no read locks while the write lock is held. When the medium is locked for writing, it cannot be modified from within VirtualBox and it is not guaranteed that the values of its properties are up-to-date. Any method that changes the properties of this medium or contents of the storage unit will return an error ((unless explicitly stated otherwise) and an attempt to start a virtual machine that wants to modify or to read the medium will also fail. When the virtual machine is started up, it locks for writing all media it uses to write data to. If some media cannot be locked for writing, the startup procedure will fail. The medium locked for writing must be unlocked using the method. Calls to can not be nested and must be followed by a paired call. This method sets the media state to on success. The state prior to this call must be or . As you can see, inaccessible media can be locked too. This is not an error; this method performs a logical lock that prevents modifications of this media through the VirtualBox API, not a physical lock of the underlying storage unit. Either on success or on failure, this method returns the current state of the medium before the operation. Invalid media state (e.g. not created, locked, inaccessible, creating, deleting). State of the medium after the operation. Cancels the write lock previously set by . Either on success or on failure, this method returns the current state of the medium after the operation. See for more details. Medium not locked for writing. State of the medium after the operation. Closes this medium. The hard disk must not be attached to any known virtual machine and must not have any known child hard disks, otherwise the operation will fail. When the hard disk is successfully closed, it gets removed from the list of remembered hard disks, but its storage unit is not deleted. In particular, this means that this hard disk can be later opened again using the call. Note that after this method successfully returns, the given hard disk object becomes uninitialized. This means that any attempt to call any of its methods or attributes will fail with the "Object not ready" (E_ACCESSDENIED) error. Invalid media state (other than not created, created or inaccessible). Medium attached to virtual machine. Settings file not accessible. Could not parse the settings file.
Virtual hard disk type. IHardDisk Normal hard disk (attached directly or indirectly, preserved when taking snapshots). Immutable hard disk (attached indirectly, changes are wiped out after powering off the virtual machine). Write through hard disk (attached directly, ignored when taking snapshots). The IHardDisk2Attachment interface represents a hard disk attachment of a virtual machine. Every hard disk attachment specifies a slot of the virtual hard disk controller and a virtual hard disk attached to this slot. The array of hard disk attachments is returned by . With the COM API, this is an interface like all the others. With the webservice, this is mapped to a structure, so querying the attribute will not return an object, but a complete structure. Hard disk object associated with this attachment. Interface bus of this attachment. Channel number of this attachment. Device slot number of this attachment. The IHardDisk2 interface represents a virtual hard disk drive used by a virtual machine. Virtual hard disk objects virtualize the hard disk hardware and look like regular hard disks for the guest OS running inside the virtual machine.

Hard Disk Types

There are three types of hard disks: Normal, Immutable and Writethrough. The type of the hard disk defines how the hard disk is attached to a virtual machine and what happens when a snapshot of the virtual machine with the attached hard disk is taken. The type of the hard disk is defined by the attribute. All hard disks can be also divided in two big groups: base hard disks and differencing hard disks. A base hard disk contains all sectors of the hard disk data in its storage unit and therefore can be used independently. On the contrary, a differencing hard disk contains only some part of the hard disk data (a subset of sectors) and needs another hard disk to get access to the missing sectors of data. This another hard disk is called a parent hard disk and defines a hard disk to which this differencing hard disk is known to be linked to. The parent hard disk may be itself a differencing hard disk. This way, differencing hard disks form a linked hard disk chain. This chain always ends with the base hard disk which is sometimes referred to as the root hard disk of this chain. Note that several differencing hard disks may be linked to the same parent hard disk. This way, all known hard disks form a hard disk tree which is based on their parent-child relationship. Differencing hard disks can be distinguished from base hard disks by querying the attribute: base hard disks do not have parents they would depend on, so the value of this attribute is always null for them. Using this attribute, it is possible to walk up the hard disk tree (from the child hard disk to its parent). It is also possible to walk down the tree using the attribute. Note that the type of all differencing hard disks is Normal; all other values are meaningless for them. Base hard disks may be of any type.

Creating Hard Disks

New base hard disks are created using . Existing hard disks are opened using . Differencing hard disks are usually implicitly created by VirtualBox when needed but may also be created explicitly using . After the hard disk is successfully created (including the storage unit) or opened, it becomes a known hard disk (remembered in the internal media registry). Known hard disks can be attached to a virtual machine, accessed through and methods or enumerated using the array (only for base hard disks). The following methods, besides , automatically remove the hard disk from the media registry:
If the storage unit of the hard disk is a regular file in the host's file system then the rules stated in the description of the attribute apply when setting its value. In addition, a plain file name without any path may be given, in which case the default hard disk folder will be prepended to it.

Automatic composition of the file name part

Another extension to the attribute is that there is a possibility to cause VirtualBox to compose a unique value for the file name part of the location using the UUID of the hard disk. This applies only to hard disks in state, e.g. before the storage unit is created, and works as follows. You set the value of the attribute to a location specification which only contains the path specification but not the file name part and ends with either a forward slash or a backslash character. In response, VirtualBox will generate a new UUID for the hard disk and compose the file name using the following pattern:
        <path>/{<uuid>}.<ext>
      
where <path> is the supplied path specification, <uuid> is the newly generated UUID and <ext> is the default extension for the storage format of this hard disk. After that, you may call any of the methods that create a new hard disk storage unit and they will use the generated UUID and file name.

Attaching Hard Disks

Hard disks are attached to virtual machines using the method and detached using the method. Depending on their , hard disks are attached either directly or indirectly. When a hard disk is being attached directly, it is associated with the virtual machine and used for hard disk operations when the machine is running. When a hard disk is being attached indirectly, a new differencing hard disk linked to it is implicitly created and this differencing hard disk is associated with the machine and used for hard disk operations. This also means that if performs a direct attachment then the same hard disk will be returned in response to the subsequent call; however if an indirect attachment is performed then will return the implicitly created differencing hard disk, not the original one passed to . The following table shows the dependency of the attachment type on the hard disk type:
Hard Disk Type Direct or Indirect?
Normal (Base) Normal base hard disks that do not have children (i.e. differencing hard disks linked to them) and that are not already attached to virtual machines in snapshots are attached directly. Otherwise, they are attached indirectly because having dependent children or being part of the snapshot makes it impossible to modify hard disk contents without breaking the integrity of the dependent party. The attribute allows to quickly determine the kind of the attachment for the given hard disk. Note that if a normal base hard disk is to be indirectly attached to a virtual machine with snapshots then a special procedure called smart attachment is performed (see below).
Normal (Differencing) Differencing hard disks are like normal base hard disks: attached directly if they do not have children and are not attached to virtual machines in snapshots, and indirectly otherwise. Note that the smart attachment procedure is never performed for differencing hard disks.
Immutable Immutable hard disks are always attached indirectly because they are designed to be non-writable. If an immutable hard disk is attached to a virtual machine with snapshots then a special procedure called smart attachment is performed (see below).
Writethrough Writethrough hard disks are always attached directly, also as designed. This also means that writethrough hard disks cannot have other hard disks linked to them at all.
Note that the same hard disk, regardless of its type, may be attached to more than one virtual machine at a time. In this case, the machine that is started first gains exclusive access to the hard disk and attempts to start other machines having this hard disk attached will fail until the first machine is powered down. Detaching hard disks is performed in a deferred fashion. This means that the given hard disk remains associated with the given machine after a successful call until is called to save all changes to machine settings to disk. This deferring is necessary to guarantee that the hard disk configuration may be restored at any time by a call to before the settings are saved (committed). Note that if is called after indirectly attaching some hard disks to the machine but before a call to is made, it will implicitly delete all differencing hard disks implicitly created by for these indirect attachments. Such implicitly created hard disks will also be immediately deleted when detached explicitly using the call if it is made before . This implicit deletion is safe because newly created differencing hard disks do not contain any user data. However, keep in mind that detaching differencing hard disks that were implicitly created by before the last call will not implicitly delete them as they may already contain some data (for example, as a result of virtual machine execution). If these hard disks are no more necessary, the caller can always delete them explicitly using after they are actually de-associated from this machine by the call.

Smart Attachment

When normal base or immutable hard disks are indirectly attached to a virtual machine then some additional steps are performed to make sure the virtual machine will have the most recent "view" of the hard disk being attached. These steps include walking through the machine's snapshots starting from the current one and going through ancestors up to the first snapshot. Hard disks attached to the virtual machine in all of the encountered snapshots are checked whether they are descendants of the given normal base or immutable hard disk. The first found child (which is the differencing hard disk) will be used instead of the normal base or immutable hard disk as a parent for creating a new differencing hard disk that will be actually attached to the machine. And only if no descendants are found or if the virtual machine does not have any snapshots then the normal base or immutable hard disk will be used itself as a parent for this differencing hard disk. It is easier to explain what smart attachment does using the following example:
BEFORE attaching B.vdi:       AFTER attaching B.vdi:

Snapshot 1 (B.vdi)            Snapshot 1 (B.vdi)
 Snapshot 2 (D1->B.vdi)        Snapshot 2 (D1->B.vdi)
  Snapshot 3 (D2->D1.vdi)       Snapshot 3 (D2->D1.vdi)
   Snapshot 4 (none)             Snapshot 4 (none)
    CurState   (none)             CurState   (D3->D2.vdi)

                              NOT
                                 ...
                                  CurState   (D3->B.vdi)
      
The first column is the virtual machine configuration before the base hard disk B.vdi is attached, the second column shows the machine after this hard disk is attached. Constructs like D1->B.vdi and similar mean that the hard disk that is actually attached to the machine is a differencing hard disk, D1.vdi, which is linked to (based on) another hard disk, B.vdi. As we can see from the example, the hard disk B.vdi was detached from the machine before taking Snapshot 4. Later, after Snapshot 4 was taken, the user decides to attach B.vdi again. B.vdi has dependent child hard disks (D1.vdi, D2.vdi), therefore it cannot be attached directly and needs an indirect attachment (i.e. implicit creation of a new differencing hard disk). Due to the smart attachment procedure, the new differencing hard disk (D3.vdi) will be based on D2.vdi, not on B.vdi itself, since D2.vdi is the most recent view of B.vdi existing for this snapshot branch of the given virtual machine. Note that if there is more than one descendant hard disk of the given base hard disk found in a snapshot, and there is an exact device, channel and bus match, then this exact match will be used. Otherwise, the youngest descendant will be picked up. There is one more important aspect of the smart attachment procedure which is not related to snapshots at all. Before walking through the snapshots as described above, the backup copy of the current list of hard disk attachment is searched for descendants. This backup copy is created when the hard disk configuration is changed for the first time after the last call and used by to undo the recent hard disk changes. When such a descendant is found in this backup copy, it will be simply re-attached back, without creating a new differencing hard disk for it. This optimization is necessary to make it possible to re-attach the base or immutable hard disk to a different bus, channel or device slot without losing the contents of the differencing hard disk actually attached to the machine in place of it.
Storage format of this hard disk. The value of this attribute is a string that specifies a backend used to store hard disk data. The storage format is defined when you create a new hard disk or automatically detected when you open an existing hard disk medium, and cannot be changed later. The list of all storage formats supported by this VirtualBox installation can be obtained using . Type (role) of this hard disk. The following constraints apply when changing the value of this attribute:
  • If a hard disk is attached to a virtual machine (either in the current state or in one of the snapshots), its type cannot be changed.
  • As long as the hard disk has children, its type cannot be set to .
  • The type of all differencing hard disks is and cannot be changed.
The type of a newly created or opened hard disk is set to .
Parent of this hard disk (a hard disk this hard disk is directly based on). Only differencing hard disks have parents. For base (non-differencing) hard disks, null is returned. Children of this hard disk (all differencing hard disks directly based on this hard disk). A null array is returned if this hard disk does not have any children. Root hard disk of this hard disk. If this is a differencing hard disk, its root hard disk is the base hard disk the given hard disk branch starts from. For all other types of hard disks, this property returns the hard disk object itself (i.e. the same object this property is read on). Returns true if this hard disk is read-only and false otherwise. A hard disk is considered to be read-only when its contents cannot be modified without breaking the integrity of other parties that depend on this hard disk such as its child hard disks or snapshots of virtual machines where this hard disk is attached to these machines. If there are no children and no such snapshots then there is no dependency and the hard disk is not read-only. The value of this attribute can be used to determine the kind of the attachment that will take place when attaching this hard disk to a virtual machine. If the value is false then the hard disk will be attached directly. If the value is true then the hard disk will be attached indirectly by creating a new differencing child hard disk for that. See the interface description for more information. Note that all Immutable hard disks are always read-only while all Writethrough hard disks are always not. The read-only condition represented by this attribute is related to the hard disk type and usage, not to the current media state and not to the read-only state of the storage unit. Logical size of this hard disk (in megabytes), as reported to the guest OS running inside the virtual machine this disk is attached to. The logical size is defined when the hard disk is created and cannot be changed later. Reading this property on a differencing hard disk will return the size of its hard disk. For hard disks whose state is is , the value of this property is the last known logical size. For hard disks, the returned value is zero. Returns the value of the custom hard disk property with the given name. The list of all properties supported by the given hard disk format can be obtained with . Note that if this method returns a null @a value, the requested property is supported but currently not assigned any value. Requested property does not exist (not supported by the format). @a name is NULL or empty. Name of the property to get. Current property value. Sets the value of the custom hard disk property with the given name. The list of all properties supported by the given hard disk format can be obtained with . Note that setting the property value to null is equivalent to deleting the existing value. A default value (if it is defined for this property) will be used by the format backend in this case. Requested property does not exist (not supported by the format). @a name is NULL or empty. Name of the property to set. Property value to set. Returns values for a group of properties in one call. The names of the properties to get are specified using the @a names argument which is a list of comma-separated property names or null if all properties are to be returned. Note that currently the value of this argument is ignored and the method always returns all existing properties. The list of all properties supported by the given hard disk format can be obtained with . The method returns two arrays, the array of property names corresponding to the @a names argument and the current values of these properties. Both arrays have the same number of elements with each elemend at the given index in the first array corresponds to an element at the same index in the second array. Note that for properties that do not have assigned values, null is returned at the appropriate index in the @a returnValues array. Names of properties to get. Names of returned properties. Values of returned properties. Sets values for a group of properties in one call. The names of the properties to set are passed in the @a names array along with the new values for them in the @a values array. Both arrays have the same number of elements with each elemend at the given index in the first array corresponding to an element at the same index in the second array. If there is at least one property name in @a names that is not valid, the method will fail before changing the values of any other properties from the @a names array. Using this method over is preferred if you need to set several properties at once since it will result into less IPC calls. The list of all properties supported by the given hard disk format can be obtained with . Note that setting the property value to null is equivalent to deleting the existing value. A default value (if it is defined for this property) will be used by the format backend in this case. Names of properties to set. Values of properties to set. Starts creating a dynamically expanding hard disk storage unit in the background. The previous storage unit created for this object, if any, must first be deleted using , otherwise the operation will fail. Before the operation starts, the hard disk is placed in state. If the create operation fails, the media will be placed back in state. After the returned progress object reports that the operation has successfully completed, the media state will be set to , the hard disk will be remembered by this VirtualBox installation and may be attached to virtual machines. Dynamic storage creation operation is not supported. See . Maximum logical size of the hard disk in megabytes. Progress object to track the operation completion. Starts creating a fixed-size hard disk storage unit in the background. The previous storage unit created for this object, if any, must be first deleted using , otherwise the operation will fail. Before the operation starts, the hard disk is placed to state. If the create operation fails, the media will placed back to state. After the returned progress object reports that the operation is successfully complete, the media state will be set to , the hard disk will be remembered by this VirtualBox installation and may be attached to virtual machines. Fixed storage creation operation is not supported. See . Logical size of the hard disk in megabytes. Progress object to track the operation completion. Starts deleting the storage unit of this hard disk. The hard disk must not be attached to any known virtual machine and must not have any known child hard disks, otherwise the operation will fail. It will also fail if there is no storage unit to delete or if deletion is already in progress, or if the hard disk is being in use (locked for read or for write) or inaccessible. Therefore, the only valid state for this operation to succeed is . Before the operation starts, the hard disk is placed to state and gets removed from the list of remembered hard disks (media registry). If the delete operation fails, the media will be remembered again and placed back to state. After the returned progress object reports that the operation is complete, the media state will be set to and you will be able to use one of the storage creation methods to create it again. #close() Hard disk is attached to a virtual machine. Storage deletion is not allowed because neither of storage creation operations are supported. See . If the deletion operation fails, it is not guaranteed that the storage unit still exists. You may check the value to answer this question. Progress object to track the operation completion. Starts creating an empty differencing storage unit based on this hard disk in the format and at the location defined by the @a target argument. The target hard disk must be in state (i.e. must not have an existing storage unit). Upon successful completion, this operation will set the type of the target hard disk to and create a storage unit necessary to represent the differencing hard disk data in the given format (according to the storage format of the target object). After the returned progress object reports that the operation is successfully complete, the target hard disk gets remembered by this VirtualBox installation and may be attached to virtual machines. The hard disk will be set to state for the duration of this operation. Hard disk not in NotCreated state. Target hard disk. Progress object to track the operation completion. Starts merging the contents of this hard disk and all intermediate differencing hard disks in the chain to the given target hard disk. The target hard disk must be either a descendant of this hard disk or its ancestor (otherwise this method will immediately return a failure). It follows that there are two logical directions of the merge operation: from ancestor to descendant (forward merge) and from descendant to ancestor (backward merge). Let us consider the following hard disk chain:
Base <- Diff_1 <- Diff_2
Here, calling this method on the Base hard disk object with Diff_2 as an argument will be a forward merge; calling it on Diff_2 with Base as an argument will be a backward merge. Note that in both cases the contents of the resulting hard disk will be the same, the only difference is the hard disk object that takes the result of the merge operation. In case of the forward merge in the above example, the result will be written to Diff_2; in case of the backward merge, the result will be written to Base. In other words, the result of the operation is always stored in the target hard disk. Upon successful operation completion, the storage units of all hard disks in the chain between this (source) hard disk and the target hard disk, including the source hard disk itself, will be automatically deleted and the relevant hard disk objects (including this hard disk) will become uninitialized. This means that any attempt to call any of their methods or attributes will fail with the "Object not ready" (E_ACCESSDENIED) error. Applied to the above example, the forward merge of Base to Diff_2 will delete and uninitialize both Base and Diff_1 hard disks. Note that Diff_2 in this case will become a base hard disk itself since it will no longer be based on any other hard disk. Considering the above, all of the following conditions must be met in order for the merge operation to succeed:
  • Neither this (source) hard disk nor any intermediate differencing hard disk in the chain between it and the target hard disk is attached to any virtual machine.
  • Neither the source hard disk nor the target hard disk is an hard disk.
  • The part of the hard disk tree from the source hard disk to the target hard disk is a linear chain, i.e. all hard disks in this chain have exactly one child which is the next hard disk in this chain. The only exception from this rule is the target hard disk in the forward merge operation; it is allowed to have any number of child hard disks because the merge operation will hot change its logical contents (as it is seen by the guest OS or by children).
  • None of the involved hard disks are in or state.
This (source) hard disk and all intermediates will be placed to state and the target hard disk will be placed to state and for the duration of this operation.
UUID of the target ancestor or descendant hard disk. Progress object to track the operation completion.
Starts creating a clone of this hard disk in the format and at the location defined by the @a target argument. The target hard disk must be in state (i.e. must not have an existing storage unit). Upon successful completion, the cloned hard disk will contain exactly the same sector data as the hard disk being cloned, except that a new UUID for the clone will be randomly generated. After the returned progress object reports that the operation is successfully complete, the target hard disk gets remembered by this VirtualBox installation and may be attached to virtual machines. If the cloned hard disk is a differencing hard disk, it will inherit parent dependency of the original hard disk. This hard disk will be placed to state for the duration of this operation. Target hard disk. Progress object to track the operation completion. Starts creating a deep (independent) clone of this hard disk in the format and at the location defined by the @a target argument. This operation is similar to except that when applied to a differencing hard disk, it will also copy missing hard disk data from all parent hard disks it is linked to. This will make the created clone an independent base hard disk that contains all hard disk data and does not need any other hard disks to operate. After the returned progress object reports that the operation is successfully complete, the target hard disk gets remembered by this VirtualBox installation and may be attached to virtual machines. For base hard disks, this operation is identical to . This hard disk and all its parent hard disks will be placed to state for the duration of this operation. Target hard disk. Progress object to track the operation completion. Starts compacting of this hard disk. This means that the disk is transformed into a possibly more compact storage representation. This potentially creates temporary images, which can require a substantial amount of additional disk space. After the returned progress object reports that the operation is successfully complete, the media state will be set back to the current state. This hard disk and all its parent hard disks will be placed to state for the duration of this operation. Progress object to track the operation completion.
Hard disk format capability flags. Supports UUIDs as expected by VirtualBox code. Supports creating fixed size images, allocating all space instantly. Supports creating dynamically growing images, allocating space on demand. Supports creating images split in chunks of a bit less than 2 GBytes. Supports being used as a format for differencing hard disks (see ). Supports asynchronous I/O operations for at least some configurations. The format backend operates on files (the attribute of the hard disk specifies a file used to store hard disk data; for a list of supported file extensions see ). The format backend uses the property interface to configure the storage location and properties (the method is used to get access to properties supported by the given hard disk format). The IHardDiskFormat interface represents a virtual hard disk format. Each hard disk format has an associated backend which is used to handle hard disks stored in this format. This interface provides information about the properties of the associated backend. Each hard disk format is identified by a string represented by the attribute. This string is used in calls like to specify the desired format. The list of all supported hard disk formats can be obtained using . IHardDisk2 Identifier of this format. The format identifier is a non-null non-empty ASCII string. Note that this string is case-insensitive. This means that, for example, all of the following strings:
          "VDI"
          "vdi"
          "VdI"
refer to the same hard disk format. This string is used in methods of other interfaces where it is necessary to specify a hard disk format, such as .
Human readable description of this format. Mainly for use in file open dialogs. Array of strings containing the supported file extensions. The first extension in the array is the extension preferred by the backend. It is recommended to use this extension when specifying a location of the storage unit for a new hard disk. Note that some backends do not work on files, so this array may be empty. IHardDiskFormat::capabilities Capabilities of the format as a set of bit flags. For the meaning of individual capability flags see . Returns several arrays describing the properties supported by this format. An element with the given index in each array describes one property. Thus, the number of elements in each returned array is the same and corresponds to the number of supported properties. The returned arrays are filled in only if the flag is set. All arguments must be non-NULL. DataType DataFlags Array of property names. Array of property descriptions. Array of property types. Array of property flags. Array of default property values.
The IFloppyImage2 interface represents a medium containing the image of a floppy disk. The IDVDImage2 interface represents a medium containing the image of a CD or DVD disk in the ISO format. The IDVDDrive interface represents the virtual CD/DVD drive of the virtual machine. An object of this type is returned by . Current drive state. When a host drive is mounted and passthrough is enabled the guest OS will be able to directly send SCSI commands to the host drive. This enables the guest OS to use CD/DVD writers but is potentially dangerous. Mounts a CD/DVD image with the specified UUID. Invalid image file location. Could not find a CD/DVD image matching @a imageID. Invalid media state. Captures the specified host CD/DVD drive. Unmounts the currently mounted image or host drive. Returns the currently mounted CD/DVD image. Returns the currently mounted host CD/DVD drive. The IFloppyDrive interface represents the virtual floppy drive of the virtual machine. An object of this type is returned by . Flag whether the floppy drive is enabled. If it is disabled, the floppy drive will not be reported to the guest OS. Current drive state. Mounts a floppy image with the specified UUID. Invalid image file location. Could not find a floppy image matching @a imageID. Invalid media state. Captures the specified host floppy drive. Unmounts the currently mounted image or host drive. Returns the currently mounted floppy image. Returns the currently mounted host floppy drive. The IKeyboard interface represents the virtual machine's keyboard. Used in . Use this interface to send keystrokes or the Ctrl-Alt-Del sequence to the virtual machine. Sends a scancode to the keyboard. Could not send scan code to virtual keyboard. Sends an array of scancodes to the keyboard. Could not send all scan codes to virtual keyboard. Sends the Ctrl-Alt-Del sequence to the keyboard. This function is nothing special, it is just a convenience function calling with the proper scancodes. Could not send all scan codes to virtual keyboard. Mouse button state. The IMouse interface represents the virtual machine's mouse. Used in . Through this interface, the virtual machine's virtual mouse can be controlled. Whether the guest OS supports absolute mouse pointer positioning or not. VirtualBox Guest Tools need to be installed to the guest OS in order to enable absolute mouse positioning support. You can use the callback to be instantly informed about changes of this attribute during virtual machine execution. Initiates a mouse event using relative pointer movements along x and y axis. Console not powered up. Could not send mouse event to virtual mouse. Amount of pixels the mouse should move to the right. Negative values move the mouse to the left. Amount of pixels the mouse should move downwards. Negative values move the mouse upwards. Amount of mouse wheel moves. Positive values describe clockwise wheel rotations, negative values describe counterclockwise rotations. The current state of mouse buttons. Every bit represents a mouse button as follows:
Bit 0 (0x01)left mouse button
Bit 1 (0x02)right mouse button
Bit 2 (0x04)middle mouse button
A value of 1 means the corresponding button is pressed. otherwise it is released.
Positions the mouse pointer using absolute x and y coordinates. These coordinates are expressed in pixels and start from [1,1] which corresponds to the top left corner of the virtual display. Console not powered up. Could not send mouse event to virtual mouse. This method will have effect only if absolute mouse positioning is supported by the guest OS. X coordinate of the pointer in pixels, starting from 1. Y coordinate of the pointer in pixels, starting from 1. Amount of mouse wheel moves. Positive values describe clockwise wheel rotations, negative values describe counterclockwise rotations. The current state of mouse buttons. Every bit represents a mouse button as follows:
Bit 0 (0x01)left mouse button
Bit 1 (0x02)right mouse button
Bit 2 (0x04)middle mouse button
A value of 1 means the corresponding button is pressed. otherwise it is released.
Frame buffer acceleration operation. Format of the video memory buffer. Constants represented by this enum can be used to test for particular values of . See also . See also www.fourcc.org for more information about FOURCC pixel formats. Unknown buffer format (the user may not assume any particular format of the buffer). Basic RGB format ( determines the bit layout). Address of the start byte of the frame buffer. Frame buffer width, in pixels. Frame buffer height, in pixels. Color depth, in bits per pixel. When is FOURCC_RGB, valid values are: 8, 15, 16, 24 and 32. Scan line size, in bytes. When is FOURCC_RGB, the size of the scan line must be aligned to 32 bits. Frame buffer pixel format. It's either one of the values defined by or a raw FOURCC code. This attribute must never return -- the format of the buffer points to must be always known. Defines whether this frame buffer uses the virtual video card's memory buffer (guest VRAM) directly or not. See for more information. Hint from the frame buffer about how much of the standard screen height it wants to use for itself. This information is exposed to the guest through the VESA BIOS and VMMDev interface so that it can use it for determining its video mode table. It is not guaranteed that the guest respects the value. An alpha-blended overlay which is superposed over the frame buffer. The initial purpose is to allow the display of icons providing information about the VM state, including disk activity, in front ends which do not have other means of doing that. The overlay is designed to controlled exclusively by IDisplay. It has no locking of its own, and any changes made to it are not guaranteed to be visible until the affected portion of IFramebuffer is updated. The overlay can be created lazily the first time it is requested. This attribute can also return NULL to signal that the overlay is not implemented. Platform-dependent identifier of the window where context of this frame buffer is drawn, or zero if there's no such window. Locks the frame buffer. Gets called by the IDisplay object where this frame buffer is bound to. Unlocks the frame buffer. Gets called by the IDisplay object where this frame buffer is bound to. Informs about an update. Gets called by the display object where this buffer is registered. Requests a size and pixel format change. There are two modes of working with the video buffer of the virtual machine. The indirect mode implies that the IFramebuffer implementation allocates a memory buffer for the requested display mode and provides it to the virtual machine. In direct mode, the IFramebuffer implementation uses the memory buffer allocated and owned by the virtual machine. This buffer represents the video memory of the emulated video adapter (so called guest VRAM). The direct mode is usually faster because the implementation gets a raw pointer to the guest VRAM buffer which it can directly use for visualizing the contents of the virtual display, as opposed to the indirect mode where the contents of guest VRAM are copied to the memory buffer provided by the implementation every time a display update occurs. It is important to note that the direct mode is really fast only when the implementation uses the given guest VRAM buffer directly, for example, by blitting it to the window representing the virtual machine's display, which saves at least one copy operation comparing to the indirect mode. However, using the guest VRAM buffer directly is not always possible: the format and the color depth of this buffer may be not supported by the target window, or it may be unknown (opaque) as in case of text or non-linear multi-plane VGA video modes. In this case, the indirect mode (that is always available) should be used as a fallback: when the guest VRAM contents are copied to the implementation-provided memory buffer, color and format conversion is done automatically by the underlying code. The @a pixelFormat parameter defines whether the direct mode is available or not. If @a pixelFormat is then direct access to the guest VRAM buffer is not available -- the @a VRAM, @a bitsPerPixel and @a bytesPerLine parameters must be ignored and the implementation must use the indirect mode (where it provides its own buffer in one of the supported formats). In all other cases, @a pixelFormat together with @a bitsPerPixel and @a bytesPerLine define the format of the video memory buffer pointed to by the @a VRAM parameter and the implementation is free to choose which mode to use. To indicate that this frame buffer uses the direct mode, the implementation of the attribute must return true and must return exactly the same address that is passed in the @a VRAM parameter of this method; otherwise it is assumed that the indirect strategy is chosen. The @a width and @a height parameters represent the size of the requested display mode in both modes. In case of indirect mode, the provided memory buffer should be big enough to store data of the given display mode. In case of direct mode, it is guaranteed that the given @a VRAM buffer contains enough space to represent the display mode of the given size. Note that this frame buffer's and attributes must return exactly the same values as passed to this method after the resize is completed (see below). The @a finished output parameter determines if the implementation has finished resizing the frame buffer or not. If, for some reason, the resize cannot be finished immediately during this call, @a finished must be set to @c false, and the implementation must call after it has returned from this method as soon as possible. If @a finished is @c false, the machine will not call any frame buffer methods until is called. Note that if the direct mode is chosen, the , and attributes of this frame buffer must return exactly the same values as specified in the parameters of this method, after the resize is completed. If the indirect mode is chosen, these attributes must return values describing the format of the implementation's own memory buffer points to. Note also that the value must always correlate with . Note that the attribute must never return regardless of the selected mode. This method is called by the IDisplay object under the provided by this IFramebuffer implementation. If this method returns @c false in @a finished, then this lock is not released until is called. Logical screen number. Must be used in the corresponding call to if this call is made. Pixel format of the memory buffer pointed to by @a VRAM. See also . Pointer to the virtual video card's VRAM (may be @c null). Color depth, bits per pixel. Size of one scan line, in bytes. Width of the guest display, in pixels. Height of the guest display, in pixels. Can the VM start using the new frame buffer immediately after this method returns or it should wait for . Returns whether the given acceleration operation is supported by the IFramebuffer implementation. If not, the display object will not attempt to call the corresponding IFramebuffer entry point. Even if an operation is indicated as supported, the IFramebuffer implementation always has the option to return non supported from the corresponding acceleration method in which case the operation will be performed by the display engine. This allows for reduced IFramebuffer implementation complexity where only common cases are handled. Returns whether the frame buffer implementation is willing to support a given video mode. In case it is not able to render the video mode (or for some reason not willing), it should return false. Usually this method is called when the guest asks the VMM device whether a given video mode is supported so the information returned is directly exposed to the guest. It is important that this method returns very quickly. Fills the specified rectangle on screen with a solid color. Copies specified rectangle on the screen. Returns the visible region of this frame buffer. If the @a rectangles parameter is NULL then the value of the @a count parameter is ignored and the number of elements necessary to describe the current visible region is returned in @a countCopied. If @a rectangles is not NULL but @a count is less than the required number of elements to store region data, the method will report a failure. If @a count is equal or greater than the required number of elements, then the actual number of elements copied to the provided array will be returned in @a countCopied. The address of the provided array must be in the process space of this IFramebuffer object. Method not yet implemented. Pointer to the RTRECT array to receive region data. Number of RTRECT elements in the @a rectangles array. Number of elements copied to the @a rectangles array. Suggests a new visible region to this frame buffer. This region represents the area of the VM display which is a union of regions of all top-level windows of the guest operating system running inside the VM (if the Guest Additions for this system support this functionality). This information may be used by the frontends to implement the seamless desktop integration feature. The address of the provided array must be in the process space of this IFramebuffer object. The IFramebuffer implementation must make a copy of the provided array of rectangles. Method not yet implemented. Pointer to the RTRECT array. Number of RTRECT elements in the @a rectangles array. The IFramebufferOverlay interface represents an alpha blended overlay for displaying status icons above an IFramebuffer. It is always created not visible, so that it must be explicitly shown. It only covers a portion of the IFramebuffer, determined by its width, height and co-ordinates. It is always in packed pixel little-endian 32bit ARGB (in that order) format, and may be written to directly. Do re-read the width though, after setting it, as it may be adjusted (increased) to make it more suitable for the front end. X position of the overlay, relative to the frame buffer. Y position of the overlay, relative to the frame buffer. Whether the overlay is currently visible. The global alpha value for the overlay. This may or may not be supported by a given front end. Changes the overlay's position relative to the IFramebuffer. The IDisplay interface represents the virtual machine's display. The object implementing this interface is contained in each attribute and represents the visual output of the virtual machine. The virtual display supports pluggable output targets represented by the IFramebuffer interface. Examples of the output target are a window on the host computer or an RDP session's display on a remote computer. Current display width. Current display height. Current guest display color depth. Note that this may differ from . Prepares an internally managed frame buffer. Requests access to the internal frame buffer. Attempt to lock a non-internal frame buffer. Releases access to the internal frame buffer. Attempt to unlock a non-internal frame buffer. Registers an external frame buffer. Sets the framebuffer for given screen. Queries the framebuffer for given screen. Asks VirtualBox to request the given video mode from the guest. This is just a hint and it cannot be guaranteed that the requested resolution will be used. Guest Additions are required for the request to be seen by guests. The caller should issue the request and wait for a resolution change and after a timeout retry. Specifying 0 for either @a width, @a height or @a bitsPerPixel parameters means that the corresponding values should be taken from the current video mode (i.e. left unchanged). If the guest OS supports multi-monitor configuration then the @a display parameter specifies the number of the guest display to send the hint to: 0 is the primary display, 1 is the first secondary and so on. If the multi-monitor configuration is not supported, @a display must be 0. The @a display is not associated with any monitor. Enables or disables seamless guest display rendering (seamless desktop integration) mode. Calling this method has no effect if returns false. Takes a screen shot of the requested size and copies it to the 32-bpp buffer allocated by the caller. Feature not implemented. Could not take a screenshot. Draws a 32-bpp image of the specified size from the given buffer to the given point on the VM display. Feature not implemented. Could not draw to screen. Does a full invalidation of the VM display and instructs the VM to update it. Could not invalidate and update screen. Signals that a framebuffer has completed the resize operation. Operation only valid for external frame buffers. Signals that a framebuffer has completed the update operation. Operation only valid for external frame buffers. Network attachment type. Null value, also means "not attached". Network adapter type. Null value (never used by the API). Type of the virtual network adapter. Depending on this value, VirtualBox will provide a different virtual network hardware to the guest. Slot number this adapter is plugged into. Corresponds to the value you pass to to obtain this instance. Flag whether the network adapter is present in the guest system. If disabled, the virtual guest hardware will not contain this network adapter. Can only be changed when the VM is not running. Ethernet MAC address of the adapter, 12 hexadecimal characters. When setting it to NULL, VirtualBox will generate a unique MAC address. Name of the host network interface the VM is attached to. Name of the internal network the VM is attached to. Name of the NAT network the VM is attached to. Flag whether the adapter reports the cable as connected or not. It can be used to report offline situations to a VM. Line speed reported by custom drivers, in units of 1 kbps. Flag whether network traffic from/to the network card should be traced. Can only be toggled when the VM is turned off. Filename where a network trace will be stored. If not set, VBox-pid.pcap will be used. Attach the network adapter to the Network Address Translation (NAT) interface. Attach the network adapter to a host interface. Attach the network adapter to an internal network. Attach the network adapter to the host-only network. Detach the network adapter The PortMode enumeration represents possible communication modes for the virtual serial port device. Virtual device is not attached to any real host device. Virtual device is attached to a host pipe. Virtual device is attached to a host device. The ISerialPort interface represents the virtual serial port device. The virtual serial port device acts like an ordinary serial port inside the virtual machine. This device communicates to the real serial port hardware in one of two modes: host pipe or host device. In host pipe mode, the #path attribute specifies the path to the pipe on the host computer that represents a serial port. The #server attribute determines if this pipe is created by the virtual machine process at machine startup or it must already exist before starting machine execution. In host device mode, the #path attribute specifies the name of the serial port device on the host computer. There is also a third communication mode: the disconnected mode. In this mode, the guest OS running inside the virtual machine will be able to detect the serial port, but all port write operations will be discarded and all port read operations will return no data. IMachine::getSerialPort Slot number this serial port is plugged into. Corresponds to the value you pass to to obtain this instance. Flag whether the serial port is enabled. If disabled, the serial port will not be reported to the guest OS. Base I/O address of the serial port. IRQ number of the serial port. How is this port connected to the host. Changing this attribute may fail if the conditions for are not met. Flag whether this serial port acts as a server (creates a new pipe on the host) or as a client (uses the existing pipe). This attribute is used only when is PortMode_HostPipe. Path to the serial port's pipe on the host when is PortMode_HostPipe, or the host serial device name when is PortMode_HostDevice. In either of the above cases, setting a @c null or an empty string as the attribute's value will result into an error. Otherwise, the value of this property is ignored. The IParallelPort interface represents the virtual parallel port device. The virtual parallel port device acts like an ordinary parallel port inside the virtual machine. This device communicates to the real parallel port hardware using the name of the parallel device on the host computer specified in the #path attribute. Each virtual parallel port device is assigned a base I/O address and an IRQ number that will be reported to the guest operating system and used to operate the given parallel port from within the virtual machine. IMachine::getParallelPort Slot number this parallel port is plugged into. Corresponds to the value you pass to to obtain this instance. Flag whether the parallel port is enabled. If disabled, the parallel port will not be reported to the guest OS. Base I/O address of the parallel port. IRQ number of the parallel port. Host parallel device name. If this parallel port is enabled, setting a @c null or an empty string as this attribute's value will result into an error. Reset VM statistics. The selection pattern. A bit similar to filename globbing. Dumps VM statistics. The selection pattern. A bit similar to filename globbing. Get the VM statistics in a XMLish format. The selection pattern. A bit similar to filename globbing. Whether to include the descriptions. The XML document containing the statistics. Inject an NMI into a running VT-x/AMD-V VM. Switch for enabling singlestepping. Switch for forcing code recompilation for user mode code. Switch for forcing code recompilation for supervisor mode code. Switch for enabling and disabling the PATM component. Switch for enabling and disabling the CSAM component. Switch for enabling and disabling logging. Flag indicating whether the VM is currently making use of CPU hardware virtualization extensions. Flag indicating whether the VM is currently making use of the nested paging CPU hardware virtualization extension. Flag indicating whether the VM is currently making use of the VPID VT-x extension. Flag indicating whether the VM is currently making use of the Physical Address Extension CPU feature. The rate at which the virtual time runs expressed as a percentage. The accepted range is 2% to 20000%. Gets the VM handle. This is only for internal use while we carve the details of this interface. Flag whether the USB controller is present in the guest system. If disabled, the virtual guest hardware will not contain any USB controller. Can only be changed when the VM is powered off. Flag whether the USB EHCI controller is present in the guest system. If disabled, the virtual guest hardware will not contain a USB EHCI controller. Can only be changed when the VM is powered off. USB standard version which the controller implements. This is a BCD which means that the major version is in the high byte and minor version is in the low byte. List of USB device filters associated with the machine. If the machine is currently running, these filters are activated every time a new (supported) USB device is attached to the host computer that was not ignored by global filters (). These filters are also activated when the machine is powered up. They are run against a list of all currently available USB devices (in states , , ) that were not previously ignored by global filters. If at least one filter matches the USB device in question, this device is automatically captured (attached to) the virtual USB controller of this machine. IUSBDeviceFilter, ::IUSBController Creates a new USB device filter. All attributes except the filter name are set to null (any match), active is false (the filter is not active). The created filter can then be added to the list of filters using . The virtual machine is not mutable. #deviceFilters Filter name. See for more info. Created filter object. Inserts the given USB device to the specified position in the list of filters. Positions are numbered starting from 0. If the specified position is equal to or greater than the number of elements in the list, the filter is added to the end of the collection. Duplicates are not allowed, so an attempt to insert a filter that is already in the collection, will return an error. Virtual machine is not mutable. USB device filter not created within this VirtualBox instance. USB device filter already in list. #deviceFilters Position to insert the filter to. USB device filter to insert. Removes a USB device filter from the specified position in the list of filters. Positions are numbered starting from 0. Specifying a position equal to or greater than the number of elements in the list will produce an error. #deviceFilters Virtual machine is not mutable. USB device filter list empty or invalid @a position. Position to remove the filter from. Removed USB device filter. Searches this collection for a USB device with the given UUID. The method returns an error if the given UUID does not correspond to any USB device in the collection. IUSBDevice::id UUID of the USB device to search for. Found USB device object. Searches this collection for a USB device with the given host address. The method returns an error if the given address does not correspond to any USB device in the collection. IUSBDevice::address Address of the USB device (as assigned by the host) to search for. Found USB device object. The IUSBDevice interface represents a virtual USB device attached to the virtual machine. A collection of objects implementing this interface is stored in the attribute which lists all USB devices attached to a running virtual machine's USB controller. Unique USB device ID. This ID is built from #vendorId, #productId, #revision and #serialNumber. Vendor ID. Product ID. Product revision number. This is a packed BCD represented as unsigned short. The high byte is the integer part and the low byte is the decimal. Manufacturer string. Product string. Serial number string. Host specific address of the device. Host USB port number the device is physically connected to. The major USB version of the device - 1 or 2. The major USB version of the host USB port the device is physically connected to - 1 or 2. For devices not connected to anything this will have the same value as the version attribute. Whether the device is physically connected to a remote VRDP client or to a local host machine. The IUSBDeviceFilter interface represents an USB device filter used to perform actions on a group of USB devices. This type of filters is used by running virtual machines to automatically capture selected USB devices once they are physically attached to the host computer. A USB device is matched to the given device filter if and only if all attributes of the device match the corresponding attributes of the filter (that is, attributes are joined together using the logical AND operation). On the other hand, all together, filters in the list of filters carry the semantics of the logical OR operation. So if it is desirable to create a match like "this vendor id OR this product id", one needs to create two filters and specify "any match" (see below) for unused attributes. All filter attributes used for matching are strings. Each string is an expression representing a set of values of the corresponding device attribute, that will match the given filter. Currently, the following filtering expressions are supported:
  • Interval filters. Used to specify valid intervals for integer device attributes (Vendor ID, Product ID and Revision). The format of the string is: int:((m)|([m]-[n]))(,(m)|([m]-[n]))* where m and n are integer numbers, either in octal (starting from 0), hexadecimal (starting from 0x) or decimal (otherwise) form, so that m < n. If m is omitted before a dash (-), the minimum possible integer is assumed; if n is omitted after a dash, the maximum possible integer is assumed.
  • Boolean filters. Used to specify acceptable values for boolean device attributes. The format of the string is: true|false|yes|no|0|1
  • Exact match. Used to specify a single value for the given device attribute. Any string that doesn't start with int: represents the exact match. String device attributes are compared to this string including case of symbols. Integer attributes are first converted to a string (see individual filter attributes) and then compared ignoring case.
  • Any match. Any value of the corresponding device attribute will match the given filter. An empty or null string is used to construct this type of filtering expressions.
On the Windows host platform, interval filters are not currently available. Also all string filter attributes (, , ) are ignored, so they behave as any match no matter what string expression is specified. IUSBController::deviceFilters, IHostUSBDeviceFilter
Visible name for this filter. This name is used to visually distinguish one filter from another, so it can neither be null nor an empty string. Whether this filter active or has been temporarily disabled. Vendor ID filter. The string representation for the exact matching has the form XXXX, where X is the hex digit (including leading zeroes). Product ID filter. The string representation for the exact matching has the form XXXX, where X is the hex digit (including leading zeroes). Product revision number filter. The string representation for the exact matching has the form IIFF, where I is the decimal digit of the integer part of the revision, and F is the decimal digit of its fractional part (including leading and trailing zeros). Note that for interval filters, it's best to use the hexadecimal form, because the revision is stored as a 16 bit packed BCD value; so the expression int:0x0100-0x0199 will match any revision from 1.0 to 1.99. Manufacturer filter. Product filter. Serial number filter. Host USB port filter. Remote state filter. This filter makes sense only for machine USB filters, i.e. it is ignored by IHostUSBDeviceFilter objects. This is an advanced option for hiding one or more USB interfaces from the guest. The value is a bit mask where the bits that are set means the corresponding USB interface should be hidden, masked off if you like. This feature only works on Linux hosts.
USB device state. This enumeration represents all possible states of the USB device physically attached to the host computer regarding its state on the host computer and availability to guest computers (all currently running virtual machines). Once a supported USB device is attached to the host, global USB filters () are activated. They can either ignore the device, or put it to USBDeviceState_Held state, or do nothing. Unless the device is ignored by global filters, filters of all currently running guests () are activated that can put it to USBDeviceState_Captured state. If the device was ignored by global filters, or didn't match any filters at all (including guest ones), it is handled by the host in a normal way. In this case, the device state is determined by the host and can be one of USBDeviceState_Unavailable, USBDeviceState_Busy or USBDeviceState_Available, depending on the current device usage. Besides auto-capturing based on filters, the device can be manually captured by guests () if its state is USBDeviceState_Busy, USBDeviceState_Available or USBDeviceState_Held. Due to differences in USB stack implementations in Linux and Win32, states USBDeviceState_Busy and USBDeviceState_vailable are applicable only to the Linux version of the product. This also means that () can only succeed on Win32 if the device state is USBDeviceState_Held. IHostUSBDevice, IHostUSBDeviceFilter Not supported by the VirtualBox server, not available to guests. Being used by the host computer exclusively, not available to guests. Being used by the host computer, potentially available to guests. Not used by the host computer, available to guests (the host computer can also start using the device at any time). Held by the VirtualBox server (ignored by the host computer), available to guests. Captured by one of the guest computers, not available to anybody else. Searches this collection for a USB device with the given UUID. The method returns an error if the given UUID does not correspond to any USB device in the collection. IHostUSBDevice::id UUID of the USB device to search for. Found USB device object. Searches this collection for a USB device with the given host address. The method returns an error if the given address does not correspond to any USB device in the collection. IHostUSBDevice::address Address of the USB device (as assigned by the host) to search for. Found USB device object. The IHostUSBDevice interface represents a physical USB device attached to the host computer. Besides properties inherited from IUSBDevice, this interface adds the property that holds the current state of the USB device. IHost::USBDevices, IHost::USBDeviceFilters Current state of the device. Actions for host USB device filters. IHostUSBDeviceFilter, USBDeviceState Null value (never used by the API). Ignore the matched USB device. Hold the matched USB device. The IHostUSBDeviceFilter interface represents a global filter for a physical USB device used by the host computer. Used indirectly in . Using filters of this type, the host computer determines the initial state of the USB device after it is physically attached to the host's USB controller. The attribute is ignored by this type of filters, because it makes sense only for machine USB filters. IHost::USBDeviceFilters Action performed by the host when an attached USB device matches this filter. Host audio driver type. Null value, also means "dummy audio driver". Virtual audio controller type. The IAudioAdapter interface represents the virtual audio adapter of the virtual machine. Used in . Flag whether the audio adapter is present in the guest system. If disabled, the virtual guest hardware will not contain any audio adapter. Can only be changed when the VM is not running. The audio hardware we emulate. Audio driver the adapter is connected to. This setting can only be changed when the VM is not running. VRDP authentication type. Null value, also means "no authentication". VRDP server status. VRDP server port number. Setting the value of this property to 0 will reset the port number to the default value which is currently 3389. Reading this property will always return a real port number, even after it has been set to 0 (in which case the default port is returned). VRDP server address. VRDP authentication method. Timeout for guest authentication. Milliseconds. Flag whether multiple simultaneous connections to the VM are permitted. Note that this will be replaced by a more powerful mechanism in the future. Flag whether the existing connection must be dropped and a new connection must be established by the VRDP server, when a new client connects in single connection mode. Searches this collection for a shared folder with the given logical name. The method returns an error if the given name does not correspond to any shared folder in the collection. Logical name of the shared folder to search for Found shared folder object The ISharedFolder interface represents a folder in the host computer's file system accessible from the guest OS running inside a virtual machine using an associated logical name. There are three types of shared folders:
  • Global (), shared folders available to all virtual machines.
  • Permanent (), VM-specific shared folders available to the given virtual machine at startup.
  • Transient (), VM-specific shared folders created in the session context (for example, when the virtual machine is running) and automatically discarded when the session is closed (the VM is powered off).
Logical names of shared folders must be unique within the given scope (global, permanent or transient). However, they do not need to be unique across scopes. In this case, the definition of the shared folder in a more specific scope takes precedence over definitions in all other scopes. The order of precedence is (more specific to more general):
  1. Transient definitions
  2. Permanent definitions
  3. Global definitions
For example, if MyMachine has a shared folder named C_DRIVE (that points to C:\\), then creating a transient shared folder named C_DRIVE (that points to C:\\\\WINDOWS) will change the definition of C_DRIVE in the guest OS so that \\\\VBOXSVR\\C_DRIVE will give access to C:\\WINDOWS instead of C:\\ on the host PC. Removing the transient shared folder C_DRIVE will restore the previous (permanent) definition of C_DRIVE that points to C:\\ if it still exists. Note that permanent and transient shared folders of different machines are in different name spaces, so they don't overlap and don't need to have unique logical names. Global shared folders are not implemented in the current version of the product.
Logical name of the shared folder. Full path to the shared folder in the host file system. Whether the folder defined by the host path is currently accessible or not. For example, the folder can be unaccessible if it is placed on the network share that is not available by the time this property is read. Whether the folder defined by the host path is writable or not. Text message that represents the result of the last accessibility check. Accessibility checks are performed each time the attribute is read. A @c null string is returned if the last accessibility check was successful. A non-null string indicates a failure and should normally describe a reason of the failure (for example, a file read error).
PID of the process that has created this Session object. Returns the console object suitable for remote control. Session state prevents operation. Session type prevents operation. Assigns the machine object associated with this direct-type session or informs the session that it will be a remote one (if @a machine == NULL). Session state prevents operation. Session type prevents operation. Assigns the machine and the (remote) console object associated with this remote-type session. Session state prevents operation. Updates the machine state in the VM process. Must be called only in certain cases (see the method implementation). Session state prevents operation. Session type prevents operation. Uninitializes (closes) this session. Used by VirtualBox to close the corresponding remote session when the direct session dies or gets closed. Session state prevents operation. Triggered when settings of the DVD drive object of the associated virtual machine have changed. Session state prevents operation. Session type prevents operation. Triggered when settings of the floppy drive object of the associated virtual machine have changed. Session state prevents operation. Session type prevents operation. Triggered when settings of a network adapter of the associated virtual machine have changed. Session state prevents operation. Session type prevents operation. Triggered when settings of a serial port of the associated virtual machine have changed. Session state prevents operation. Session type prevents operation. Triggered when settings of a parallel port of the associated virtual machine have changed. Session state prevents operation. Session type prevents operation. Triggered when settings of the VRDP server object of the associated virtual machine have changed. Session state prevents operation. Session type prevents operation. Triggered when settings of the USB controller object of the associated virtual machine have changed. Session state prevents operation. Session type prevents operation. Triggered when a permanent (global or machine) shared folder has been created or removed. We don't pass shared folder parameters in this notification because the order in which parallel notifications are delivered is not defined, therefore it could happen that these parameters were outdated by the time of processing this notification. Session state prevents operation. Session type prevents operation. Triggered when a request to capture a USB device (as a result of matched USB filters or direct call to ) has completed. A @c null @a error object means success, otherwise it describes a failure. Session state prevents operation. Session type prevents operation. Triggered when a request to release the USB device (as a result of machine termination or direct call to ) has completed. A @c null @a error object means success, otherwise it Session state prevents operation. Session type prevents operation. Called by and by in order to notify console callbacks and . Session type prevents operation. Called by and by in order to read and modify guest properties. Machine session is not open. Session type is not direct. Return a list of the guest properties matching a set of patterns along with their values, time stamps and flags. Machine session is not open. Session type is not direct. The patterns to match the properties against as a comma-separated string. If this is empty, all properties currently set will be returned. The key names of the properties returned. The values of the properties returned. The array entries match the corresponding entries in the @a key array. The time stamps of the properties returned. The array entries match the corresponding entries in the @a key array. The flags of the properties returned. The array entries match the corresponding entries in the @a key array. The ISession interface represents a serialization primitive for virtual machines. With VirtualBox, every time one wishes to manipulate a virtual machine (e.g. change its settings or start execution), a session object is required. Such an object must be passed to one of the session methods that open the given session, which then initiates the machine manipulation. A session serves several purposes: it identifies to the inter-process VirtualBox code which process is currently working with the virtual machine, and it ensures that there are no incompatible requests from several processes for the same virtual machine. Session objects can therefore be thought of as mutex semaphores that lock virtual machines to prevent conflicting accesses from several processes. How sessions objects are used depends on whether you use the Main API via COM or via the webservice:
  • When using the COM API directly, an object of the Session class from the VirtualBox type library needs to be created. In regular COM C++ client code, this can be done by calling createLocalObject(), a standard COM API. This object will then act as a local session object in further calls to open a session.
  • In the webservice, the session manager (IWebsessionManager) instead creates one session object automatically when is called. A managed object reference to that session object can be retrieved by calling . This session object reference can then be used to open sessions.
Sessions are mainly used in two variations:
  • To start a virtual machine in a separate process, one would call , which requires a session object as its first parameter. This session then identifies the caller and lets him control the started machine (for example, pause machine execution or power it down) as well as be notified about machine execution state changes.
  • To alter machine settings, or to start machine execution within the current process, one needs to open a direct session for the machine first by calling . While a direct session is open within one process, no any other process may open another direct session for the same machine. This prevents the machine from being changed by other processes while it is running or while the machine is being configured.
One also can attach to an existing direct session already opened by another process (for example, in order to send a control request to the virtual machine such as the pause or the reset request). This is done by calling . Unless you are trying to write a new VirtualBox front-end that performs direct machine execution (like the VirtualBox or VBoxSDL front-ends), don't call in a direct session opened by and use this session only to change virtual machine settings. If you simply want to start virtual machine execution using one of the existing front-ends (for example the VirtualBox GUI or headless server), simply use ; these front-ends will power up the machine automatically for you.
Current state of this session. Type of this session. The value of this attribute is valid only if the session is currently open (i.e. its #state is SessionType_SessionOpen), otherwise an error will be returned. Machine object associated with this session. Console object associated with this session. Closes a session that was previously opened. It is recommended that every time an "open session" method (such as or ) has been called to manipulate a virtual machine, the caller invoke ISession::close() when it's done doing so. Since sessions are serialization primitives much like ordinary mutexes, they are best used the same way: for each "open" call, there should be a matching "close" call, even when errors occur. Otherwise, if a direct session for a machine opened with is not explicitly closed when the application terminates, the state of the machine will be set to on the server. Generally, it is recommended to close all open sessions explicitly before terminating the application (regardless of the reason for the termination). Do not expect the session state ( to return to "Closed" immediately after you invoke ISession::close(), particularly if you have started a remote session to execute the VM in a new process. The session state will automatically return to "Closed" once the VM is no longer executing, which can of course take a very long time. Session is not open.
Flag whether the SATA controller is present in the guest system. If disabled, the virtual guest hardware will not contain any SATA controller. Can only be changed when the VM is powered off. The number of usable ports on the SATA controller. It ranges from 1 to 30. Gets the corresponding port number which is emulated as an IDE device. The @a devicePosition is not in the range 0 to 3. Sets the port number which is emulated as an IDE device. The @a devicePosition is not in the range 0 to 3 or the @a portNumber is not in the range 0 to 29. Managed object reference. Only within the webservice, a managed object reference (which is really an opaque number) allows a webservice client to address an object that lives in the address space of the webservice server. Behind each managed object reference, there is a COM object that lives in the webservice server's address space. The COM object is not freed until the managed object reference is released, either by an explicit call to or by logging off from the webservice (), which releases all objects created during the webservice session. Whenever a method call of the VirtualBox API returns a COM object, the webservice representation of that method will instead return a managed object reference, which can then be used to invoke methods on that object. Returns the name of the interface that this managed object represents, for example, "IMachine", as a string. Releases this managed object reference and frees the resources that were allocated for it in the webservice server process. After calling this method, the identifier of the reference can no longer be used. Websession manager. This provides essential services to webservice clients. Logs a new client onto the webservice and returns a managed object reference to the IVirtualBox instance, which the client can then use as a basis to further queries, since all calls to the VirtualBox API are based on the IVirtualBox interface, in one way or the other. Returns a managed object reference to the internal ISession object that was created for this web service session when the client logged on. ISession Logs off the client who has previously logged on with and destroys all resources associated with the session (most importantly, all managed objects created in the server while the session was active). The IPerformanceMetric interface represents parameters of the given performance metric. Name of the metric. Object this metric belongs to. Textual description of the metric. Time interval between samples, measured in seconds. Number of recent samples retained by the performance collector for this metric. When the collected sample count exceeds this number, older samples are discarded. Unit of measurement. Minimum possible value of this metric. Maximum possible value of this metric. The IPerformanceCollector interface represents a service that collects and stores performance metrics data. Performance metrics are associated with objects like IHost and IMachine. Each object has a distinct set of performance metrics. The set can be obtained with . Metric data are collected at the specified intervals and are retained internally. The interval and the number of samples retained can be set with . Metrics are organized hierarchically, each level separated by slash (/). General scheme for metric name is "Category/Metric[/SubMetric][:aggregation]". For example CPU/Load/User:avg metric name stands for: CPU category, Load metric, User submetric, average aggregate. An aggregate function is computed over all retained data. Valid aggregate functions are:
  • avg -- average
  • min -- minimum
  • max -- maximum
"Category/Metric" together form base metric name. A base metric is the smallest unit for which a sampling interval and the number of retained samples can be set. Only base metrics can be enabled and disabled. All sub-metrics are collected when their base metric is collected. Collected values for any set of sub-metrics can be queried with . When setting up metric parameters, querying metric data, enabling or disabling metrics wildcards can be used in metric names to specify a subset of metrics. For example, to select all CPU-related metrics use CPU/*, all averages can be queried using *:avg and so on. To query metric values without aggregates *: can be used. The valid names for base metrics are:
  • CPU/Load
  • CPU/MHz
  • RAM/Usage
The general sequence for collecting and retrieving the metrics is:
  • Obtain an instance of IPerformanceCollector with
  • Allocate and populate an array with references to objects the metrics will be collected for. Use references to IHost and IMachine objects.
  • Allocate and populate an array with base metric names the data will be collected for.
  • Call . From now on the metric data will be collected and stored.
  • Wait for the data to get collected.
  • Allocate and populate an array with references to objects the metric values will be queried for. You can re-use the object array used for setting base metrics.
  • Allocate and populate an array with metric names the data will be collected for. Note that metric names differ from base metric names.
  • Call . The data that have been collected so far are returned. Note that the values are still retained internally and data collection continues.
For an example of usage refer to the following files in VirtualBox SDK:
  • Java: bindings/webservice/java/jax-ws/samples/metrictest.java
  • Python: bindings/xpcom/python/sample/shellcommon.py
Array of unique names of metrics. This array represents all metrics supported by the performance collector. Individual objects do not necessarily support all of them. can be used to get the list of supported metrics for a particular object. Returns parameters of specified metrics for a set of objects. @c Null metrics array means all metrics. @c Null object array means all existing objects. Metric name filter. Currently, only a comma-separated list of metrics is supported. Set of objects to return metric parameters for. Array of returned metric parameters. Sets parameters of specified base metrics for a set of objects. Returns an array of describing the metrics have been affected. @c Null or empty metric name array means all metrics. @c Null or empty object array means all existing objects. If metric name array contains a single element and object array contains many, the single metric name array element is applied to each object array element to form metric/object pairs. Metric name filter. Comma-separated list of metrics with wildcard support. Set of objects to setup metric parameters for. Time interval in seconds between two consecutive samples of performance data. Number of samples to retain in performance data history. Older samples get discarded. Array of metrics that have been modified by the call to this method. Turns on collecting specified base metrics. Returns an array of describing the metrics have been affected. @c Null or empty metric name array means all metrics. @c Null or empty object array means all existing objects. If metric name array contains a single element and object array contains many, the single metric name array element is applied to each object array element to form metric/object pairs. Metric name filter. Comma-separated list of metrics with wildcard support. Set of objects to enable metrics for. Array of metrics that have been modified by the call to this method. Turns off collecting specified base metrics. Returns an array of describing the metrics have been affected. @c Null or empty metric name array means all metrics. @c Null or empty object array means all existing objects. If metric name array contains a single element and object array contains many, the single metric name array element is applied to each object array element to form metric/object pairs. Metric name filter. Comma-separated list of metrics with wildcard support. Set of objects to disable metrics for. Array of metrics that have been modified by the call to this method. Queries collected metrics data for a set of objects. The data itself and related metric information are returned in seven parallel and one flattened array of arrays. Elements of returnMetricNames, returnObjects, returnUnits, returnScales, returnSequenceNumbers, returnDataIndices and returnDataLengths with the same index describe one set of values corresponding to a single metric. The returnData parameter is a flattened array of arrays. Each start and length of a sub-array is indicated by returnDataIndices and returnDataLengths. The first value for metric metricNames[i] is at returnData[returnIndices[i]]. @c Null or empty metric name array means all metrics. @c Null or empty object array means all existing objects. If metric name array contains a single element and object array contains many, the single metric name array element is applied to each object array element to form metric/object pairs. Data collection continues behind the scenes after call to @c queryMetricsData. The return data can be seen as the snapshot of the current state at the time of @c queryMetricsData call. The internally kept metric values are not cleared by the call. This makes possible querying different subsets of metrics or aggregates with subsequent calls. If periodic querying is needed it is highly suggested to query the values with @c interval*count period to avoid confusion. This way a completely new set of data values will be provided by each query. Metric name filter. Comma-separated list of metrics with wildcard support. Set of objects to query metrics for. Names of metrics returned in @c returnData. Objects associated with metrics returned in @c returnData. Units of measurement for each returned metric. Divisor that should be applied to return values in order to get floating point values. For example: (double)returnData[returnDataIndices[0]+i] / returnScales[0] will retrieve the floating point value of i-th sample of the first metric. Sequence numbers of the first elements of value sequences of particular metrics returned in @c returnData. For aggregate metrics it is the sequence number of the sample the aggregate started calculation from. Indices of the first elements of value sequences of particular metrics returned in @c returnData. Lengths of value sequences of particular metrics. Flattened array of all metric data containing sequences of values for each metric.