VirtualBox

source: vbox/trunk/src/VBox/Main/idl/VirtualBox.xidl@ 14981

Last change on this file since 14981 was 14947, checked in by vboxsync, 16 years ago

Revive VBOX_E_OBJECT_IN_USE for deleteStorage as discussed with dmik.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 419.5 KB
Line 
1<?xml version="1.0" ?>
2
3<!--
4 * $Id: VirtualBox.xidl 14947 2008-12-03 14:55:29Z vboxsync $ *
5 *
6 * :tabSize=2:indentSize=2:noTabs=true:
7 * :folding=explicit:collapseFolds=1:
8 *
9 * Master declaration for VirtualBox's Main API, represented
10 * by COM/XPCOM and web service interfaces.
11 *
12 * From this document, the build system generates several files
13 * via XSLT that are then used during the build process.
14 *
15 * Below is the list of XSL templates that operate on this file and
16 * output files they generate. These XSL templates must be updated
17 * whenever the schema of this file changes:
18 *
19 * 1. src/VBox/Main/idl/midl.xsl =>
20 * out/<platform>/bin/sdk/idl/VirtualBox.idl
21 * (MS COM interface definition file for Main API)
22 *
23 * 2. src/VBox/Main/idl/xpidl.xsl =>
24 * out/<platform>/bin/sdk/idl/VirtualBox_XPCOM.idl
25 * (XPCOM interface definition file for Main API)
26 *
27 * 3. src/VBox/Main/idl/doxygen.xsl =>
28 * out/<platform>/obj/src/VBox/Main/VirtualBox.idl
29 * (pseudo-IDL for Doxygen to generate the official Main API
30 * documentation)
31 *
32 * 4. src/VBox/Main/webservice/*.xsl =>
33 * a bunch of WSDL and C++ files
34 * (VirtualBox web service sources and SOAP mappers;
35 * see src/VBox/Main/webservice/Makefile.kmk for details)
36 *
37 * 5. src/VBox/Frontends/VirtualBox/include/COMWrappers.xsl =>
38 * out/<platform>/obj/src/VBox/Frontends/VirtualBox/VirtualBox/include/COMWrappers.h
39 * (smart Qt-based C++ wrapper classes for COM interfaces
40 * of the Main API)
41 *
42 * 6. src/VBox/Frontends/VirtualBox4/include/COMWrappers.xsl =>
43 * out/<platform>/obj/src/VBox/Frontends/VirtualBox4/VirtualBox/include/COMWrappers.h
44 * (smart Qt-based C++ wrapper classes for COM interfaces
45 * of the Main API)
46 *
47 * 7. src/VBox/Installer/win32/VirtualBox_TypeLib.xsl =>
48 * out/<platform>/obj/src/VBox/Installer/win32/VirtualBox_TypeLib.wxi
49 * (Main API TypeLib block for the WiX installer)
50 *
51 * 8. src/VBox/Runtime/common/err/errmsgvboxcom.xsl =>
52 * out/<platform>/obj/Runtime/errmsgvboxcomdata.h
53 * (<result> extraction for the %Rhrc format specifier)
54 *
55 Copyright (C) 2006-2008 Sun Microsystems, Inc.
56
57 This file is part of VirtualBox Open Source Edition (OSE), as
58 available from http://www.virtualbox.org. This file is free software;
59 you can redistribute it and/or modify it under the terms of the GNU
60 General Public License (GPL) as published by the Free Software
61 Foundation, in version 2 as it comes in the "COPYING" file of the
62 VirtualBox OSE distribution. VirtualBox OSE is distributed in the
63 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
64
65 Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
66 Clara, CA 95054 USA or visit http://www.sun.com if you need
67 additional information or have any questions.
68-->
69
70<idl>
71
72<desc>
73 Welcome to the <b>VirtualBox Main API documentation</b>. This documentation
74 describes the so-called <i>VirtualBox Main API</i> which comprises all public
75 COM interfaces and components provided by the VirtualBox server and by the
76 VirtualBox client library.
77
78 VirtualBox employs a client-server design, meaning that whenever any part of
79 VirtualBox is running -- be it the Qt GUI, the VBoxManage command-line
80 interface or any virtual machine --, a dedicated server process named
81 VBoxSVC runs in the background. This allows multiple processes working with
82 VirtualBox to cooperate without conflicts. These processes communicate to each
83 other using inter-process communication facilities provided by the COM
84 implementation of the host computer.
85
86 On Windows platforms, the VirtualBox Main API uses Microsoft COM, a native COM
87 implementation. On all other platforms, Mozilla XPCOM, an open-source COM
88 implementation, is used.
89
90 All the parts that a typical VirtualBox user interacts with (the Qt GUI,
91 the VBoxManage command-line interface and the VBoxVRDP server) are technically
92 front-ends to the Main API and only use the interfaces that are documented
93 in this Main API documentation. This ensures that, with any given release
94 version of VirtualBox, all capabilities of the product that could be useful
95 to an external client program are always exposed by way of this API.
96
97 The VirtualBox Main API (also called the <i>VirtualBox COM library</i>)
98 contains two public component classes:
99 <tt>%VirtualBox.VirtualBox</tt> and <tt>%VirtualBox.Session</tt>, which
100 implement IVirtualBox and ISession interfaces respectively. These two classes
101 are of supreme importance and will be needed in order for any front-end
102 program to do anything useful. It is recommended to read the documentation of
103 the mentioned interfaces first.
104
105 The <tt>%VirtualBox.VirtualBox</tt> class is a singleton. This means that
106 there can be only one object of this class on the local machine at any given
107 time. This object is a parent of many other objects in the VirtualBox COM
108 library and lives in the VBoxSVC process. In fact, when you create an instance
109 of the <tt>VirtualBox.VirtualBox</tt>, the COM subsystem checks if the VBoxSVC
110 process is already running, starts it if not, and returns you a reference to
111 the<tt>VirtualBox</tt> object created in this process. When the last reference
112 to this object is released, the VBoxSVC process ends (with a 5 second delay to
113 protect from too frequent restarts).
114
115 The <tt>%VirtualBox.Session</tt> class is a regular component. You can create
116 as many <tt>Session</tt> objects as you need but all of them will live in a
117 process which issues the object instantiation call. <tt>Session</tt> objects
118 represent virtual machine sessions which are used to configure virtual
119 machines and control their execution.
120</desc>
121
122<if target="midl">
123 <cpp line="enum {"/>
124 <cpp line=" kTypeLibraryMajorVersion = 1,"/>
125 <cpp line=" kTypeLibraryMinorVersion = 0"/>
126 <cpp line="};"/>
127</if>
128
129<if target="xpidl">
130 <!-- NS_IMPL_THREADSAFE_ISUPPORTSxx_CI macros are placed here, for convenience -->
131 <cpp>
132/* currently, nsISupportsImpl.h lacks the below-like macros */
133
134#define NS_IMPL_THREADSAFE_QUERY_INTERFACE1_CI NS_IMPL_QUERY_INTERFACE1_CI
135#define NS_IMPL_THREADSAFE_QUERY_INTERFACE2_CI NS_IMPL_QUERY_INTERFACE2_CI
136
137#ifndef NS_IMPL_THREADSAFE_ISUPPORTS1_CI
138# define NS_IMPL_THREADSAFE_ISUPPORTS1_CI(_class, _interface) \
139 NS_IMPL_THREADSAFE_ADDREF(_class) \
140 NS_IMPL_THREADSAFE_RELEASE(_class) \
141 NS_IMPL_THREADSAFE_QUERY_INTERFACE1_CI(_class, _interface) \
142 NS_IMPL_CI_INTERFACE_GETTER1(_class, _interface)
143#endif
144
145#ifndef NS_IMPL_THREADSAFE_ISUPPORTS2_CI
146# define NS_IMPL_THREADSAFE_ISUPPORTS2_CI(_class, _i1, _i2) \
147 NS_IMPL_THREADSAFE_ADDREF(_class) \
148 NS_IMPL_THREADSAFE_RELEASE(_class) \
149 NS_IMPL_THREADSAFE_QUERY_INTERFACE2_CI(_class, _i1, _i2) \
150 NS_IMPL_CI_INTERFACE_GETTER2(_class, _i1, _i2)
151#endif
152
153#ifndef NS_IMPL_QUERY_INTERFACE1_AMBIGUOUS_CI
154# define NS_IMPL_QUERY_INTERFACE1_AMBIGUOUS_CI(_class, _i1, _ic1) \
155 NS_INTERFACE_MAP_BEGIN(_class) \
156 NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(_i1, _ic1) \
157 NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, _ic1) \
158 NS_IMPL_QUERY_CLASSINFO(_class) \
159 NS_INTERFACE_MAP_END
160#endif
161
162#ifndef NS_IMPL_QUERY_INTERFACE2_AMBIGUOUS_CI
163# define NS_IMPL_QUERY_INTERFACE2_AMBIGUOUS_CI(_class, _i1, _ic1, \
164 _i2, _ic2) \
165 NS_INTERFACE_MAP_BEGIN(_class) \
166 NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(_i1, _ic1) \
167 NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(_i2, _ic2) \
168 NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, _ic1) \
169 NS_IMPL_QUERY_CLASSINFO(_class) \
170 NS_INTERFACE_MAP_END
171#endif
172
173#define NS_IMPL_THREADSAFE_QUERY_INTERFACE1_AMBIGUOUS_CI NS_IMPL_QUERY_INTERFACE1_AMBIGUOUS_CI
174#define NS_IMPL_THREADSAFE_QUERY_INTERFACE2_AMBIGUOUS_CI NS_IMPL_QUERY_INTERFACE2_AMBIGUOUS_CI
175
176#ifndef NS_IMPL_THREADSAFE_ISUPPORTS1_AMBIGUOUS_CI
177# define NS_IMPL_THREADSAFE_ISUPPORTS1_AMBIGUOUS_CI(_class, _i1, _ic1) \
178 NS_IMPL_THREADSAFE_ADDREF(_class) \
179 NS_IMPL_THREADSAFE_RELEASE(_class) \
180 NS_IMPL_THREADSAFE_QUERY_INTERFACE1_AMBIGUOUS_CI(_class, _i1, _ic1) \
181 NS_IMPL_CI_INTERFACE_GETTER1(_class, _i1)
182#endif
183
184#ifndef NS_IMPL_THREADSAFE_ISUPPORTS2_AMBIGUOUS_CI
185# define NS_IMPL_THREADSAFE_ISUPPORTS2_AMBIGUOUS_CI(_class, _i1, _ic1, \
186 _i2, _ic2) \
187 NS_IMPL_THREADSAFE_ADDREF(_class) \
188 NS_IMPL_THREADSAFE_RELEASE(_class) \
189 NS_IMPL_THREADSAFE_QUERY_INTERFACE2_AMBIGUOUS_CI(_class, _i1, _ic1, \
190 _i2, _ic2) \
191 NS_IMPL_CI_INTERFACE_GETTER2(_class, _i1, _i2)
192#endif
193 </cpp>
194</if>
195
196<library
197 name="VirtualBox"
198 uuid="46137EEC-703B-4fe5-AFD4-7C9BBBBA0259"
199 version="1.3"
200 desc="VirtualBox Type Library"
201 appUuid="819B4D85-9CEE-493C-B6FC-64FFE759B3C9"
202 supportsErrorInfo="yes"
203>
204
205
206 <!--
207 // COM result codes for VirtualBox
208 /////////////////////////////////////////////////////////////////////////
209 -->
210
211 <descGroup id="VirtualBox_COM_result_codes" title="VirtualBox COM result codes">
212 <desc>
213 This section describes all VirtualBox-specific COM result codes that may
214 be returned by methods of VirtualBox COM interfaces in addition to
215 standard COM result codes.
216
217 Note that along with the result code, every VirtualBox method returns
218 extended error information through the IVirtualBoxErrorInfo interface on
219 failure. This interface is a preferred way to present the error to the end
220 user because it contains a human readable description of the error. Raw
221 result codes, both standard and described in this section, are intended to
222 be used by programs to analyze the reason of a failure and select an
223 appropriate course of action without involving the end user (for example,
224 retry the operation later or make a different call).
225
226 The standard COM result codes that may originate from our methods include:
227
228 <table>
229 <tr><td>E_INVALIDARG</td>
230 <td>
231 Returned when the value of the method's argument is not within the range
232 of valid values. This should not be confused with situations when the
233 value is within the range but simply doesn't suit the current object
234 state and there is a possibility that it will be accepted later (in such
235 cases VirtualBox-specific codes are returned, for example,
236 <link to="VBOX_E_OBJECT_NOT_FOUND"/>).
237 </td>
238 </tr>
239 <tr><td>E_POINTER</td>
240 <td>
241 Returned if a memory pointer for the output argument is invalid (for
242 example, <tt>NULL</tt>). Note that when pointers representing input
243 arguments (such as strings) are invalid, E_INVALIDARG is returned.
244 </td>
245 </tr>
246 <tr><td>E_ACCESSDENIED</td>
247 <td>
248 Returned when the called object is not ready. Since the lifetime of a
249 public COM object cannot be fully controlled by the implementation,
250 VirtualBox maintains the readiness state for all objects it creates and
251 returns this code in response to any method call on the object that was
252 deactivated by VirtualBox and is not functioning any more.
253 </td>
254 </tr>
255 <tr><td>E_OUTOFMEMORY</td>
256 <td>
257 Returned when a memory allocation operation fails.
258 </td>
259 </tr>
260 </table>
261 </desc>
262 </descGroup>
263
264 <!--
265 Note that src/VBox/Runtime/common/err/errmsgvboxcom.xsl will ignore
266 everything in <result>/<desc> after (and including) the first dot, so express
267 the matter of the error code in the first sentence and keep it short.
268 -->
269
270 <result name="VBOX_E_OBJECT_NOT_FOUND" value="0x80BB0001">
271 <desc>
272 Object corresponding to the supplied arguments does not exist.
273 </desc>
274 </result>
275
276 <result name="VBOX_E_INVALID_VM_STATE" value="0x80BB0002">
277 <desc>
278 Current virtual machine state prevents the operation.
279 </desc>
280 </result>
281
282 <result name="VBOX_E_VM_ERROR" value="0x80BB0003">
283 <desc>
284 Virtual machine error occurred attempting the operation.
285 </desc>
286 </result>
287
288 <result name="VBOX_E_FILE_ERROR" value="0x80BB0004">
289 <desc>
290 File not accessible or erroneous file contents.
291 </desc>
292 </result>
293
294 <result name="VBOX_E_IPRT_ERROR" value="0x80BB0005">
295 <desc>
296 Runtime subsystem error.
297 </desc>
298 </result>
299
300 <result name="VBOX_E_PDM_ERROR" value="0x80BB0006">
301 <desc>
302 Pluggable Device Manager error.
303 </desc>
304 </result>
305
306 <result name="VBOX_E_INVALID_OBJECT_STATE" value="0x80BB0007">
307 <desc>
308 Current object state prohibits operation.
309 </desc>
310 </result>
311
312 <result name="VBOX_E_HOST_ERROR" value="0x80BB0008">
313 <desc>
314 Host operating system related error.
315 </desc>
316 </result>
317
318 <result name="VBOX_E_NOT_SUPPORTED" value="0x80BB0009">
319 <desc>
320 Requested operation is not supported.
321 </desc>
322 </result>
323
324 <result name="VBOX_E_XML_ERROR" value="0x80BB000A">
325 <desc>
326 Invalid XML found.
327 </desc>
328 </result>
329
330 <result name="VBOX_E_INVALID_SESSION_STATE" value="0x80BB000B">
331 <desc>
332 Current session state prohibits operation.
333 </desc>
334 </result>
335
336 <result name="VBOX_E_OBJECT_IN_USE" value="0x80BB000C">
337 <desc>
338 Object being in use prohibits operation.
339 </desc>
340 </result>
341
342 <!--
343 Note that src/VBox/Runtime/common/err/errmsgvboxcom.xsl will ignore
344 everything in <result>/<desc> after (and including) the first dot, so express
345 the matter of the error code in the first sentence and keep it short.
346 -->
347
348 <descGroup/>
349
350 <!--
351 // all common enums
352 /////////////////////////////////////////////////////////////////////////
353 -->
354
355 <enum
356 name="TSBool"
357 uuid="523ff64d-842a-4b1a-80e7-c311b028cb3a"
358 >
359 <desc>
360 Boolean variable having a third state, default.
361 </desc>
362
363 <const name="False" value="0"/>
364 <const name="True" value="1"/>
365 <const name="Default" value="2"/>
366 </enum>
367
368 <enum
369 name="MachineState"
370 uuid="73bf04d0-7c4f-4684-9abf-d65a9ad74343"
371 >
372 <desc>
373 Virtual machine execution state. This enumeration represents possible
374 values of the <link to="IMachine::state"/> attribute.
375 </desc>
376
377 <const name="Null" value="0">
378 <desc><tt>null</tt> value. Never used by the API.</desc>
379 </const>
380 <const name="PoweredOff" value="1">
381 <desc>
382 The machine is not running.
383 </desc>
384 </const>
385 <const name="Saved" value="2">
386 <desc>
387 The machine is not currently running, but the execution state
388 of the machine has been saved to an external file when it
389 was running.
390 <note>
391 Only a few machine settings can be altered when the machine
392 is in this state.
393 </note>
394 </desc>
395 </const>
396 <const name="Aborted" value="3">
397 <desc>
398 A process running the machine has terminated abnormally.
399 Other than that, this value is equivalent to #PoweredOff.
400 </desc>
401 </const>
402 <const name="Running" value="4">
403 <desc>
404 The machine is currently being executed.
405 <note>
406 This value can be used in relational expressions:
407 all state values less than Running describe a virtual machine that is
408 not currently being executed (i.e., it is completely out of
409 action).
410 </note>
411 <note internal="yes">
412 For whoever decides to touch this enum: In order to keep the
413 aforementioned comparisons valid, this state must immediately
414 precede the Paused state.
415 </note>
416 </desc>
417 </const>
418 <const name="Paused" value="5">
419 <desc>
420 Execution of the machine has been paused.
421 <note>
422 This value can be used in relational expressions: all state values
423 greater than Paused represent unstable states of the running virtual
424 machine. Unless explicitly stated otherwise, no machine settings can
425 be altered when it is in one of the unstable states.
426 </note>
427 <note internal="yes">
428 For whoever decides to touch this enum: In order to keep the
429 aforementioned comparisons valid, this state must immediately
430 follow the Running state.
431 </note>
432 </desc>
433 </const>
434 <const name="Stuck" value="6">
435 <desc>
436 Execution of the machine has reached the "Guru Meditation"
437 condition. This condition indicates an internal VMM failure which may
438 happen as a result of either an unhandled low-level virtual hardware
439 exception or one of the recompiler exceptions (such as
440 the <i>too-many-traps</i> condition).
441 </desc>
442 </const>
443 <const name="Starting" value="7">
444 <desc>
445 Machine is being started after
446 <link to="IConsole::powerUp">powering it on</link> from a
447 zero execution state.
448 </desc>
449 </const>
450 <const name="Stopping" value="8">
451 <desc>
452 Machine is being normally stopped
453 (after explicitly <link to="IConsole::powerDown">powering it off</link>,
454 or after the guest OS has initiated a shutdown sequence).
455 </desc>
456 </const>
457 <const name="Saving" value="9">
458 <desc>
459 Machine is saving its execution state to a file as a
460 result of calling <link to="IConsole::saveState"/> or an online
461 snapshot of the machine is being taken using
462 <link to="IConsole::takeSnapshot"/>.
463 </desc>
464 </const>
465 <const name="Restoring" value="10">
466 <desc>
467 Execution state of the machine is being restored from a file
468 after <link to="IConsole::powerUp">powering it on</link> from
469 a saved execution state.
470 </desc>
471 </const>
472 <const name="Discarding" value="11">
473 <desc>
474 Snapshot of the machine is being discarded after calling
475 <link to="IConsole::discardSnapshot"/> or its current state is
476 being discarded after <link to="IConsole::discardCurrentState"/>.
477 </desc>
478 </const>
479 <const name="SettingUp" value="12">
480 <desc>
481 Lengthy setup operation is in progress (e.g.
482 <link to="IMachine::attachHardDisk2"/>).
483 </desc>
484 </const>
485 </enum>
486
487 <enum
488 name="SessionState"
489 uuid="CF2700C0-EA4B-47ae-9725-7810114B94D8"
490 >
491 <desc>
492 Session state. This enumeration represents possible values of
493 <link to="IMachine::sessionState"/> and <link to="ISession::state"/>
494 attributes. Individual value descriptions contain the appropriate
495 meaning for every case.
496 </desc>
497
498 <const name="Null" value="0">
499 <desc><tt>null</tt> value. Never used by the API.</desc>
500 </const>
501 <const name="Closed" value="1">
502 <desc>
503 The machine has no open sessions (<link to="IMachine::sessionState"/>);
504 the session is closed (<link to="ISession::state"/>)
505 </desc>
506 </const>
507 <const name="Open" value="2">
508 <desc>
509 The machine has an open direct session (<link to="IMachine::sessionState"/>);
510 the session is open (<link to="ISession::state"/>)
511 </desc>
512 </const>
513 <const name="Spawning" value="3">
514 <desc>
515 A new (direct) session is being opened for the machine
516 as a result of <link to="IVirtualBox::openRemoteSession()"/>
517 call (<link to="IMachine::sessionState"/>);
518 the session is currently being opened
519 as a result of <link to="IVirtualBox::openRemoteSession()"/>
520 call (<link to="ISession::state"/>)
521 </desc>
522 </const>
523 <const name="Closing" value="4">
524 <desc>
525 The direct session is being closed (<link to="IMachine::sessionState"/>);
526 the session is being closed (<link to="ISession::state"/>)
527 </desc>
528 </const>
529 </enum>
530
531 <enum
532 name="SessionType"
533 uuid="A13C02CB-0C2C-421E-8317-AC0E8AAA153A"
534 >
535 <desc>
536 Session type. This enumeration represents possible values of the
537 <link to="ISession::type"/> attribute.
538 </desc>
539
540 <const name="Null" value="0">
541 <desc><tt>null</tt> value. Never used by the API.</desc>
542 </const>
543 <const name="Direct" value="1">
544 <desc>
545 Direct session
546 (opened by <link to="IVirtualBox::openSession()"/>)
547 </desc>
548 </const>
549 <const name="Remote" value="2">
550 <desc>
551 Remote session
552 (opened by <link to="IVirtualBox::openRemoteSession()"/>)
553 </desc>
554 </const>
555 <const name="Existing" value="3">
556 <desc>
557 Existing session
558 (opened by <link to="IVirtualBox::openExistingSession()"/>)
559 </desc>
560 </const>
561 </enum>
562
563 <enum
564 name="DeviceType"
565 uuid="6d9420f7-0b56-4636-99f9-7346f1b01e57"
566 >
567 <desc>
568 Device type.
569 </desc>
570 <const name="Null" value="0">
571 <desc>
572 <tt>null</tt> value which may also mean "no device".
573 <note>
574 This value is not allowed for
575 <link to="IConsole::getDeviceActivity"/>
576 </note>
577 </desc>
578 </const>
579 <const name="Floppy" value="1">
580 <desc>Floppy device.</desc>
581 </const>
582 <const name="DVD" value="2">
583 <desc>CD/DVD-ROM device.</desc>
584 </const>
585 <const name="HardDisk" value="3">
586 <desc>Hard disk device.</desc>
587 </const>
588 <const name="Network" value="4">
589 <desc>Network device.</desc>
590 </const>
591 <const name="USB" value="5">
592 <desc>USB device.</desc>
593 </const>
594 <const name="SharedFolder" value="6">
595 <desc>Shared folder device.</desc>
596 </const>
597 </enum>
598
599 <enum
600 name="DeviceActivity"
601 uuid="6FC8AEAA-130A-4eb5-8954-3F921422D707"
602 >
603 <desc>
604 Device activity for <link to="IConsole::getDeviceActivity"/>.
605 </desc>
606
607 <const name="Null" value="0"/>
608 <const name="Idle" value="1"/>
609 <const name="Reading" value="2"/>
610 <const name="Writing" value="3"/>
611 </enum>
612
613 <enum
614 name="StorageBus"
615 uuid="715984a5-093c-43bb-aa42-a16ed16828dd"
616 >
617 <desc>Interface bus type for storage devices.</desc>
618
619 <const name="Null" value="0">
620 <desc><tt>null</tt> value. Never used by the API.</desc>
621 </const>
622
623 <const name="IDE" value="1"/>
624 <const name="SATA" value="2"/>
625 </enum>
626
627 <enum
628 name="ClipboardMode"
629 uuid="33364716-4008-4701-8f14-be0fa3d62950"
630 >
631 <desc>
632 Host-Guest clipboard interchange mode.
633 </desc>
634
635 <const name="Disabled" value="0"/>
636 <const name="HostToGuest" value="1"/>
637 <const name="GuestToHost" value="2"/>
638 <const name="Bidirectional" value="3"/>
639 </enum>
640
641 <enum
642 name="Scope"
643 uuid="7c91096e-499e-4eca-9f9b-9001438d7855"
644 >
645 <desc>
646 Scope of the operation.
647
648 A generic enumeration used in various methods to define the action or
649 argument scope.
650 </desc>
651
652 <const name="Global" value="0"/>
653 <const name="Machine" value="1"/>
654 <const name="Session" value="2"/>
655 </enum>
656
657 <enum
658 name="GuestStatisticType"
659 uuid="aa7c1d71-aafe-47a8-9608-27d2d337cf55"
660 >
661 <desc>
662 Statistics type for <link to="IGuest::getStatistic"/>.
663 </desc>
664
665 <const name="CPULoad_Idle" value="0">
666 <desc>
667 Idle CPU load (0-100%) for last interval.
668 </desc>
669 </const>
670 <const name="CPULoad_Kernel" value="1">
671 <desc>
672 Kernel CPU load (0-100%) for last interval.
673 </desc>
674 </const>
675 <const name="CPULoad_User" value="2">
676 <desc>
677 User CPU load (0-100%) for last interval.
678 </desc>
679 </const>
680 <const name="Threads" value="3">
681 <desc>
682 Total number of threads in the system.
683 </desc>
684 </const>
685 <const name="Processes" value="4">
686 <desc>
687 Total number of processes in the system.
688 </desc>
689 </const>
690 <const name="Handles" value="5">
691 <desc>
692 Total number of handles in the system.
693 </desc>
694 </const>
695 <const name="MemoryLoad" value="6">
696 <desc>
697 Memory load (0-100%).
698 </desc>
699 </const>
700 <const name="PhysMemTotal" value="7">
701 <desc>
702 Total physical memory in megabytes.
703 </desc>
704 </const>
705 <const name="PhysMemAvailable" value="8">
706 <desc>
707 Free physical memory in megabytes.
708 </desc>
709 </const>
710 <const name="PhysMemBalloon" value="9">
711 <desc>
712 Ballooned physical memory in megabytes.
713 </desc>
714 </const>
715 <const name="MemCommitTotal" value="10">
716 <desc>
717 Total amount of memory in the committed state in megabytes.
718 </desc>
719 </const>
720 <const name="MemKernelTotal" value="11">
721 <desc>
722 Total amount of memory used by the guest OS's kernel in megabytes.
723 </desc>
724 </const>
725 <const name="MemKernelPaged" value="12">
726 <desc>
727 Total amount of paged memory used by the guest OS's kernel in megabytes.
728 </desc>
729 </const>
730 <const name="MemKernelNonpaged" value="13">
731 <desc>
732 Total amount of non-paged memory used by the guest OS's kernel in megabytes.
733 </desc>
734 </const>
735 <const name="MemSystemCache" value="14">
736 <desc>
737 Total amount of memory used by the guest OS's system cache in megabytes.
738 </desc>
739 </const>
740 <const name="PageFileSize" value="15">
741 <desc>
742 Pagefile size in megabytes.
743 </desc>
744 </const>
745 <const name="SampleNumber" value="16">
746 <desc>
747 Statistics sample number
748 </desc>
749 </const>
750 <const name="MaxVal" value="17"/>
751 </enum>
752
753 <enum
754 name="BIOSBootMenuMode"
755 uuid="ae4fb9f7-29d2-45b4-b2c7-d579603135d5"
756 >
757 <desc>
758 BIOS boot menu mode.
759 </desc>
760
761 <const name="Disabled" value="0"/>
762 <const name="MenuOnly" value="1"/>
763 <const name="MessageAndMenu" value="2"/>
764 </enum>
765
766 <enum
767 name="IDEControllerType"
768 uuid="445330e3-202a-4dab-854f-ce22e6cb9715"
769 >
770 <desc>
771 IDE controller type.
772 </desc>
773
774 <const name="Null" value="0">
775 <desc><tt>null</tt> value. Never used by the API.</desc>
776 </const>
777 <const name="PIIX3" value="1"/>
778 <const name="PIIX4" value="2"/>
779 </enum>
780
781 <enum
782 name="DriveState"
783 uuid="cb7233b7-c519-42a5-8310-1830953cacbc"
784 >
785 <const name="Null" value="0">
786 <desc><tt>null</tt> value. Never used by the API.</desc>
787 </const>
788 <const name="NotMounted" value="1"/>
789 <const name="ImageMounted" value="2"/>
790 <const name="HostDriveCaptured" value="3"/>
791 </enum>
792
793 <enum
794 name="ProcessorFeature"
795 uuid="b8353b35-705d-4796-9967-ebfb7ba54af4"
796 >
797 <desc>
798 CPU features.
799 </desc>
800
801 <const name="HWVirtEx" value="0"/>
802 <const name="PAE" value="1"/>
803 <const name="LongMode" value="2"/>
804 </enum>
805
806
807 <!--
808 // IVirtualBoxErrorInfo
809 /////////////////////////////////////////////////////////////////////////
810 -->
811
812 <interface
813 name="IVirtualBoxErrorInfo" extends="$errorinfo"
814 uuid="e98b5376-8eb4-4eea-812a-3964bf3bb26f"
815 supportsErrorInfo="no"
816 wsmap="suppress"
817 >
818 <desc>
819 The IVirtualBoxErrorInfo interface represents extended error information.
820
821 Extended error information can be set by VirtualBox components after
822 unsuccessful or partially successful method invocation. This information
823 can be retrieved by the calling party as an IVirtualBoxErrorInfo object
824 and then shown to the client in addition to the plain 32-bit result code.
825
826 In MS COM, this interface extends the IErrorInfo interface,
827 in XPCOM, it extends the nsIException interface. In both cases,
828 it provides a set of common attributes to retrieve error
829 information.
830
831 Sometimes invocation of some component's method may involve methods of
832 other components that may also fail (independently of this method's
833 failure), or a series of non-fatal errors may precede a fatal error that
834 causes method failure. In cases like that, it may be desirable to preserve
835 information about all errors happened during method invocation and deliver
836 it to the caller. The <link to="#next"/> attribute is intended
837 specifically for this purpose and allows to represent a chain of errors
838 through a single IVirtualBoxErrorInfo object set after method invocation.
839
840 Note that errors are stored to a chain in the reverse order, i.e. the
841 initial error object you query right after method invocation is the last
842 error set by the callee, the object it points to in the @a next attribute
843 is the previous error and so on, up to the first error (which is the last
844 in the chain).
845 </desc>
846
847 <attribute name="resultCode" type="result" readonly="yes">
848 <desc>
849 Result code of the error.
850 Usually, it will be the same as the result code returned
851 by the method that provided this error information, but not
852 always. For example, on Win32, CoCreateInstance() will most
853 likely return E_NOINTERFACE upon unsuccessful component
854 instantiation attempt, but not the value the component factory
855 returned.
856 <note>
857 In MS COM, there is no equivalent.
858 In XPCOM, it is the same as nsIException::result.
859 </note>
860 </desc>
861 </attribute>
862
863 <attribute name="interfaceID" type="uuid" readonly="yes">
864 <desc>
865 UUID of the interface that defined the error.
866 <note>
867 In MS COM, it is the same as IErrorInfo::GetGUID.
868 In XPCOM, there is no equivalent.
869 </note>
870 </desc>
871 </attribute>
872
873 <attribute name="component" type="wstring" readonly="yes">
874 <desc>
875 Name of the component that generated the error.
876 <note>
877 In MS COM, it is the same as IErrorInfo::GetSource.
878 In XPCOM, there is no equivalent.
879 </note>
880 </desc>
881 </attribute>
882
883 <attribute name="text" type="wstring" readonly="yes">
884 <desc>
885 Text description of the error.
886 <note>
887 In MS COM, it is the same as IErrorInfo::GetDescription.
888 In XPCOM, it is the same as nsIException::message.
889 </note>
890 </desc>
891 </attribute>
892
893 <attribute name="next" type="IVirtualBoxErrorInfo" readonly="yes">
894 <desc>
895 Next error object if there is any, or @c null otherwise.
896 <note>
897 In MS COM, there is no equivalent.
898 In XPCOM, it is the same as nsIException::inner.
899 </note>
900 </desc>
901 </attribute>
902
903 </interface>
904
905
906 <!--
907 // IVirtualBox
908 /////////////////////////////////////////////////////////////////////////
909 -->
910
911 <interface
912 name="IVirtualBoxCallback" extends="$unknown"
913 uuid="5516cc08-fb81-47a6-b184-031e7bbd2997"
914 wsmap="suppress"
915 >
916 <method name="onMachineStateChange">
917 <desc>
918 The execution state of the given machine has changed.
919 <see>IMachine::state</see>
920 </desc>
921 <param name="machineId" type="uuid" dir="in">
922 <desc>ID of the machine this event relates to.</desc>
923 </param>
924 <param name="state" type="MachineState" dir="in">
925 <desc>New execution state.</desc>
926 </param>
927 </method>
928
929 <method name="onMachineDataChange">
930 <desc>
931 Any of the settings of the given machine has changed.
932 </desc>
933 <param name="machineId" type="uuid" dir="in">
934 <desc>ID of the machine this event relates to.</desc>
935 </param>
936 </method>
937
938 <method name="onExtraDataCanChange">
939 <desc>
940 Notification when someone tries to change extra data for
941 either the given machine or (if null) global extra data.
942 This gives the chance to veto against changes.
943 </desc>
944 <param name="machineId" type="uuid" dir="in">
945 <desc>
946 ID of the machine this event relates to
947 (null ID for global extra data change requests).
948 </desc>
949 </param>
950 <param name="key" type="wstring" dir="in">
951 <desc>
952 Extra data key for the attempted write.
953 </desc>
954 </param>
955 <param name="value" type="wstring" dir="in">
956 <desc>
957 Extra data value for the given key.
958 </desc>
959 </param>
960 <param name="error" type="wstring" dir="out">
961 <desc>
962 Optional error message describing the reason of the
963 veto (ignored if this notification returns @c true).
964 </desc>
965 </param>
966 <param name="allowChange" type="boolean" dir="return">
967 <desc>
968 Flag to indicate whether the callee agrees (@c true)
969 or vetoes against the change (@c false).
970 </desc>
971 </param>
972 </method>
973
974 <method name="onExtraDataChange">
975 <desc>
976 Notification when machine specific or global extra data
977 has changed.
978 </desc>
979 <param name="machineId" type="uuid" dir="in">
980 <desc>
981 ID of the machine this event relates to.
982 Null for global extra data changes.
983 </desc>
984 </param>
985 <param name="key" type="wstring" dir="in">
986 <desc>
987 Extra data key that has changed.
988 </desc>
989 </param>
990 <param name="value" type="wstring" dir="in">
991 <desc>
992 Extra data value for the given key.
993 </desc>
994 </param>
995 </method>
996
997 <method name="onMediaRegistered">
998 <desc>
999 The given media was registered or unregistered
1000 within this VirtualBox installation.
1001
1002 The @a mediaType parameter describes what type of
1003 media the specified @a mediaId refers to. Possible
1004 values are:
1005
1006 <ul>
1007 <li><link to="DeviceType::HardDisk"/>: the media is a hard disk
1008 that, if registered, can be obtained using the
1009 <link to="IVirtualBox::getHardDisk2()"/> call.</li>
1010 <li><link to="DeviceType::DVD"/>: the media is a CD/DVD image
1011 that, if registered, can be obtained using the
1012 <link to="IVirtualBox::getDVDImage()"/> call.</li>
1013 <li><link to="DeviceType::Floppy"/>: the media is a Floppy image
1014 that, if registered, can be obtained using the
1015 <link to="IVirtualBox::getFloppyImage()"/> call.</li>
1016 </ul>
1017
1018 Note that if this is a deregistration notification,
1019 there is no way to access the object representing the
1020 unregistered media. It is supposed that the
1021 application will do required cleanup based on the @a
1022 mediaId value.
1023 </desc>
1024 <param name="mediaId" type="uuid" dir="in">
1025 <desc>ID of the media this event relates to.</desc>
1026 </param>
1027 <param name="mediaType" type="DeviceType" dir="in">
1028 <desc>Type of the media this event relates to.</desc>
1029 </param>
1030 <param name="registered" type="boolean" dir="in">
1031 <desc>
1032 If true, the media was registered, otherwise it was
1033 unregistered.
1034 </desc>
1035 </param>
1036 </method>
1037
1038 <method name="onMachineRegistered">
1039 <desc>
1040 The given machine was registered or unregistered
1041 within this VirtualBox installation.
1042 </desc>
1043 <param name="machineId" type="uuid" dir="in">
1044 <desc>ID of the machine this event relates to.</desc>
1045 </param>
1046 <param name="registered" type="boolean" dir="in">
1047 <desc>
1048 If true, the machine was registered, otherwise it was
1049 unregistered.
1050 </desc>
1051 </param>
1052 </method>
1053
1054 <method name="onSessionStateChange">
1055 <desc>
1056 The state of the session for the given machine was changed.
1057 <see>IMachine::sessionState</see>
1058 </desc>
1059 <param name="machineId" type="uuid" dir="in">
1060 <desc>ID of the machine this event relates to.</desc>
1061 </param>
1062 <param name="state" type="SessionState" dir="in">
1063 <desc>New session state.</desc>
1064 </param>
1065 </method>
1066
1067 <method name="onSnapshotTaken">
1068 <desc>
1069 A new snapshot of the machine has been taken.
1070 <see>ISnapshot</see>
1071 </desc>
1072 <param name="machineId" type="uuid" dir="in">
1073 <desc>ID of the machine this event relates to.</desc>
1074 </param>
1075 <param name="snapshotId" type="uuid" dir="in">
1076 <desc>ID of the new snapshot.</desc>
1077 </param>
1078 </method>
1079
1080 <method name="onSnapshotDiscarded">
1081 <desc>
1082 Snapshot of the given machine has been discarded.
1083
1084 <note>
1085 This notification is delivered <b>after</b> the snapshot
1086 object has been uninitialized on the server (so that any
1087 attempt to call its methods will return an error).
1088 </note>
1089
1090 <see>ISnapshot</see>
1091 </desc>
1092 <param name="machineId" type="uuid" dir="in">
1093 <desc>ID of the machine this event relates to.</desc>
1094 </param>
1095 <param name="snapshotId" type="uuid" dir="in">
1096 <desc>
1097 ID of the discarded snapshot. <tt>null</tt> means the
1098 current machine state has been discarded (restored from
1099 the current snapshot).
1100 </desc>
1101 </param>
1102 </method>
1103
1104 <method name="onSnapshotChange">
1105 <desc>
1106 Snapshot properties (name and/or description) have been changed.
1107 <see>ISnapshot</see>
1108 </desc>
1109 <param name="machineId" type="uuid" dir="in">
1110 <desc>ID of the machine this event relates to.</desc>
1111 </param>
1112 <param name="snapshotId" type="uuid" dir="in">
1113 <desc>ID of the changed snapshot.</desc>
1114 </param>
1115 </method>
1116
1117 <method name="onGuestPropertyChange">
1118 <desc>
1119 Notification when a guest property has changed.
1120 </desc>
1121 <param name="machineId" type="uuid" dir="in">
1122 <desc>
1123 ID of the machine this event relates to.
1124 </desc>
1125 </param>
1126 <param name="name" type="wstring" dir="in">
1127 <desc>
1128 The name of the property that has changed.
1129 </desc>
1130 </param>
1131 <param name="value" type="wstring" dir="in">
1132 <desc>
1133 The new property value.
1134 </desc>
1135 </param>
1136 <param name="flags" type="wstring" dir="in">
1137 <desc>
1138 The new property flags.
1139 </desc>
1140 </param>
1141 </method>
1142
1143 </interface>
1144
1145 <interface
1146 name="IVirtualBox" extends="$dispatched"
1147 uuid="339abca2-f47a-4302-87f5-7bc324e6bbde"
1148 wsmap="managed"
1149 >
1150 <desc>
1151 The IVirtualBox interface represents the main interface exposed by the
1152 product that provides virtual machine management.
1153
1154 An instance of IVirtualBox is required for the product to do anything
1155 useful. Even though the interface does not expose this, internally,
1156 IVirtualBox is implemented as a singleton and actually lives in the
1157 process of the VirtualBox server (VBoxSVC.exe). This makes sure that
1158 IVirtualBox can track the state of all virtual machines on a particular
1159 host, regardless of which frontend started them.
1160
1161 To enumerate all the virtual machines on the host, use the
1162 <link to="IVirtualBox::machines2"/> attribute.
1163 </desc>
1164
1165 <attribute name="version" type="wstring" readonly="yes">
1166 <desc>
1167 A string representing the version number of the product. The
1168 format is 3 integer numbers divided by dots (e.g. 1.0.1). The
1169 last number represents the build number and will frequently change.
1170 </desc>
1171 </attribute>
1172
1173 <attribute name="revision" type="unsigned long" readonly="yes">
1174 <desc>
1175 The internal build revision number of the product.
1176 </desc>
1177 </attribute>
1178
1179 <attribute name="packageType" type="wstring" readonly="yes">
1180 <desc>
1181 A string representing the package type of this product. The
1182 format is OS_ARCH_DIST where OS is either WINDOWS, LINUX,
1183 SOLARIS, DARWIN. ARCH is either 32BITS or 64BITS. DIST
1184 is either GENERIC, UBUNTU_606, UBUNTU_710, or something like
1185 this.
1186 </desc>
1187 </attribute>
1188
1189 <attribute name="homeFolder" type="wstring" readonly="yes">
1190 <desc>
1191 Full path to the directory where the global settings file,
1192 <tt>VirtualBox.xml</tt>, is stored.
1193
1194 In this version of VirtualBox, the value of this property is
1195 always <tt>&lt;user_dir&gt;/.VirtualBox</tt> (where
1196 <tt>&lt;user_dir&gt;</tt> is the path to the user directory,
1197 as determined by the host OS), and cannot be changed.
1198
1199 This path is also used as the base to resolve relative paths in
1200 places where relative paths are allowed (unless otherwise
1201 expressly indicated).
1202 </desc>
1203 </attribute>
1204
1205 <attribute name="settingsFilePath" type="wstring" readonly="yes">
1206 <desc>
1207 Full name of the global settings file.
1208 The value of this property corresponds to the value of
1209 <link to="#homeFolder"/> plus <tt>/VirtualBox.xml</tt>.
1210 </desc>
1211 </attribute>
1212
1213 <attribute name="settingsFileVersion" type="wstring" readonly="yes">
1214 <desc>
1215 Current version of the format of the global VirtualBox settings file
1216 (<tt>VirtualBox.xml</tt>).
1217
1218 The version string has the following format:
1219 <pre>
1220 x.y-platform
1221 </pre>
1222 where <tt>x</tt> and <tt>y</tt> are the major and the minor format
1223 versions, and <tt>platform</tt> is the platform identifier.
1224
1225 The current version usually matches the value of the
1226 <link to="#settingsFormatVersion"/> attribute unless the
1227 settings file was created by an older version of VirtualBox and there
1228 was a change of the settings file format since then.
1229
1230 Note that VirtualBox automatically converts settings files from older
1231 versions to the most recent version when reading them (usually at
1232 VirtualBox startup) but it doesn't save the changes back until
1233 you call a method that implicitly saves settings (such as
1234 <link to="#setExtraData()"/>) or call <link to="#saveSettings()"/>
1235 explicitly. Therefore, if the value of this attribute differs from the
1236 value of <link to="#settingsFormatVersion"/>, then it
1237 means that the settings file was converted but the result of the
1238 conversion is not yet saved to disk.
1239
1240 The above feature may be used by interactive front-ends to inform users
1241 about the settings file format change and offer them to explicitly save
1242 all converted settings files (the global and VM-specific ones),
1243 optionally create backup copies of the old settings files before saving,
1244 etc.
1245
1246 <see>settingsFormatVersion, saveSettingsWithBackup()</see>
1247 </desc>
1248 </attribute>
1249
1250 <attribute name="settingsFormatVersion" type="wstring" readonly="yes">
1251 <desc>
1252 Most recent version of the settings file format.
1253
1254 The version string has the following format:
1255 <pre>
1256 x.y-platform
1257 </pre>
1258 where <tt>x</tt> and <tt>y</tt> are the major and the minor format
1259 versions, and <tt>platform</tt> is the platform identifier.
1260
1261 VirtualBox uses this version of the format when saving settings files
1262 (either as a result of method calls that require to save settings or as
1263 a result of an explicit call to <link to="#saveSettings()"/>).
1264
1265 <see>settingsFileVersion</see>
1266 </desc>
1267 </attribute>
1268
1269 <attribute name="host" type="IHost" readonly="yes">
1270 <desc>Associated host object.</desc>
1271 </attribute>
1272
1273 <attribute name="systemProperties" type="ISystemProperties" readonly="yes">
1274 <desc>Associated system information object.</desc>
1275 </attribute>
1276
1277 <attribute name="machines2" type="IMachine" readonly="yes" safearray="yes">
1278 <desc>
1279 Array of machine objects registered within this VirtualBox instance.
1280 </desc>
1281 </attribute>
1282
1283 <attribute name="hardDisks2" type="IHardDisk2" readonly="yes" safearray="yes">
1284 <desc>
1285 Array of hard disk objects known to this VirtualBox installation.
1286
1287 This array contains only base (root) hard disks. All differencing
1288 hard disks of the given base hard disk can be enumerated using
1289 <link to="IHardDisk2::children"/>.
1290 </desc>
1291 </attribute>
1292
1293 <attribute name="DVDImages" type="IDVDImage2" readonly="yes" safearray="yes">
1294 <desc>
1295 Array of CD/DVD image objects registered with this VirtualBox instance.
1296 </desc>
1297 </attribute>
1298
1299 <attribute name="floppyImages" type="IFloppyImage2" readonly="yes" safearray="yes">
1300 <desc>
1301 Array of floppy image objects registered with this VirtualBox instance.
1302 </desc>
1303 </attribute>
1304
1305 <attribute name="progressOperations" type="IProgressCollection" readonly="yes"/>
1306
1307 <attribute name="guestOSTypes" type="IGuestOSTypeCollection" readonly="yes"/>
1308
1309 <attribute name="sharedFolders" type="ISharedFolderCollection" readonly="yes">
1310 <desc>
1311 Collection of global shared folders. Global shared folders are
1312 available to all virtual machines.
1313
1314 New shared folders are added to the collection using
1315 <link to="#createSharedFolder"/>. Existing shared folders can be
1316 removed using <link to="#removeSharedFolder"/>.
1317
1318 <note>
1319 In the current version of the product, global shared folders are not
1320 implemented and therefore this collection is always empty.
1321 </note>
1322 </desc>
1323 </attribute>
1324
1325 <attribute name="performanceCollector" type="IPerformanceCollector" readonly="yes">
1326 <desc>
1327 Associated performance collector object.
1328 </desc>
1329 </attribute>
1330
1331 <method name="createMachine">
1332 <desc>
1333 Creates a new virtual machine.
1334
1335 The new machine is created unregistered, with the initial configuration
1336 set according to the specified guest OS type. A typical sequence of
1337 actions to create a new virtual machine is as follows:
1338
1339 <ol>
1340 <li>
1341 Call this method to have a new machine created. The returned machine
1342 object will be "mutable" allowing to change any machine property.
1343 </li>
1344
1345 <li>
1346 Configure the machine using the appropriate attributes and methods.
1347 </li>
1348
1349 <li>
1350 Call <link to="IMachine::saveSettings()" /> to write the settings
1351 to the machine's XML settings file. The configuration of the newly
1352 created machine will not be saved to disk until this method is
1353 called.
1354 </li>
1355
1356 <li>
1357 Call <link to="#registerMachine()" /> to add the machine to the list
1358 of machines known to VirtualBox.
1359 </li>
1360 </ol>
1361
1362 You should specify valid name for the newly created machine when calling
1363 this method. See the <link to="IMachine::name"/> attribute description
1364 for more details about the machine name.
1365
1366 The specified guest OS type identifier must match an ID of one of known
1367 guest OS types listed in the <link to="IVirtualBox::guestOSTypes"/>
1368 array.
1369
1370 Every machine has a <i>settings file</i> that is used to store
1371 the machine configuration. This file is stored in a directory called the
1372 <i>machine settings subfolder</i>. Both the settings subfolder and file
1373 will have a name that corresponds to the name of the virtual machine.
1374 You can specify where to create the machine setting subfolder using the
1375 @a baseFolder argument. The base folder can be absolute (full path) or
1376 relative to the <link to="IVirtualBox::homeFolder">VirtualBox home
1377 directory</link>.
1378
1379 If @a baseFolder is a null or empty string (which is recommended), the
1380 <link to="ISystemProperties::defaultMachineFolder">default machine
1381 settings folder</link> will be used as a base folder for the created
1382 machine. Otherwise the given base folder will be used. In either case,
1383 the full path to the resulting settings file has the following
1384 structure:
1385 <pre>
1386 &lt;base_folder&gt;/&lt;machine_name&gt;/&lt;machine_name&gt;.xml
1387 </pre>
1388
1389 Note that if the resulting settings file already exists, this method
1390 will fail with <link to="VBOX_E_FILE_ERROR"/>.
1391
1392 Optionally, you may specify an UUID of to assign to the created machine.
1393 However, this is not recommended and you should normally pass an empty
1394 (null) UUID to this method so that a new UUID will be automatically
1395 generated for every created machine.
1396
1397 <note>
1398 There is no way to change the name of the settings file or
1399 subfolder of the created machine directly.
1400 </note>
1401
1402 <result name="VBOX_E_OBJECT_NOT_FOUND">
1403 @a osTypeId is invalid.
1404 </result>
1405 <result name="VBOX_E_FILE_ERROR">
1406 Resulting settings file name is invalid or the settings file already
1407 exists or could not be created due to an I/O error.
1408 </result>
1409 <result name="E_INVALIDARG">
1410 @a name is empty or null.
1411 </result>
1412 </desc>
1413
1414 <param name="name" type="wstring" dir="in">
1415 <desc>Machine name.</desc>
1416 </param>
1417 <param name="osTypeId" type="wstring" dir="in">
1418 <desc>Guest OS Type ID.</desc>
1419 </param>
1420 <param name="baseFolder" type="wstring" dir="in">
1421 <desc>Base machine folder (optional).</desc>
1422 </param>
1423 <param name="id" type="uuid" dir="in">
1424 <desc>Machine UUID (optional).</desc>
1425 </param>
1426 <param name="machine" type="IMachine" dir="return">
1427 <desc>Created machine object.</desc>
1428 </param>
1429 </method>
1430
1431 <method name="createLegacyMachine">
1432 <desc>
1433 Creates a new virtual machine in "legacy" mode, using the specified
1434 settings file to store machine settings.
1435
1436 As opposed to machines created by <link to="#createMachine()"/>,
1437 the settings file of the machine created in "legacy" mode is not
1438 automatically renamed when the machine name is changed -- it will always
1439 remain the same as specified in this method call.
1440
1441 The specified settings file name can be absolute (full path) or relative
1442 to the <link to="IVirtualBox::homeFolder">VirtualBox home
1443 directory</link>. If the file name doesn't contain an extension, the
1444 default extension (.xml) will be appended.
1445
1446 Note that the configuration of the newly created machine is not
1447 saved to disk (and therefore no settings file is created)
1448 until <link to="IMachine::saveSettings()"/> is called. If the
1449 specified settings file already exists, this method
1450 will fail with <link to="VBOX_E_FILE_ERROR"/>..
1451
1452 See <link to="#createMachine()"/> for more information.
1453
1454 @deprecated This method may be removed later. Use <link
1455 to="IVirtualBox::createMachine()"/> instead.
1456
1457 <note>
1458 There is no way to change the name of the settings file
1459 of the machine created in "legacy" mode.
1460 </note>
1461
1462 <result name="VBOX_E_OBJECT_NOT_FOUND">
1463 @a osTypeId is invalid.
1464 </result>
1465 <result name="VBOX_E_FILE_ERROR">
1466 @a settingsFile is invalid or the settings file already exists or
1467 could not be created due to an I/O error.
1468 </result>
1469 <result name="E_INVALIDARG">
1470 @a name or @a settingsFile is empty or null.
1471 </result>
1472 </desc>
1473
1474 <param name="name" type="wstring" dir="in">
1475 <desc>Machine name.</desc>
1476 </param>
1477 <param name="osTypeId" type="wstring" dir="in">
1478 <desc>Machine OS Type ID.</desc>
1479 </param>
1480 <param name="settingsFile" type="wstring" dir="in">
1481 <desc>Name of the machine settings file.</desc>
1482 </param>
1483 <param name="id" type="uuid" dir="in">
1484 <desc>Machine UUID (optional).</desc>
1485 </param>
1486 <param name="machine" type="IMachine" dir="return">
1487 <desc>Created machine object.</desc>
1488 </param>
1489 </method>
1490
1491 <method name="openMachine">
1492 <desc>
1493 Opens a virtual machine from the existing settings file.
1494 The opened machine remains unregistered until you call
1495 <link to="#registerMachine()"/>.
1496
1497 The specified settings file name can be absolute
1498 (full path) or relative to the <link to="IVirtualBox::homeFolder">
1499 VirtualBox home directory</link>. This file must exist
1500 and must be a valid machine settings file whose contents
1501 will be used to construct the machine object.
1502
1503 @deprecated Will be removed soon.
1504 <result name="VBOX_E_FILE_ERROR">
1505 Settings file name invalid, not found or sharing violation.
1506 </result>
1507 </desc>
1508 <param name="settingsFile" type="wstring" dir="in">
1509 <desc>
1510 Name of the machine settings file.
1511 </desc>
1512 </param>
1513 <param name="machine" type="IMachine" dir="return">
1514 <desc>Opened machine object.</desc>
1515 </param>
1516 <note>
1517 <link to="IMachine::settingsModified"/> will return
1518 false for the created machine, until any of machine settings
1519 are changed.
1520 </note>
1521 </method>
1522
1523 <method name="registerMachine">
1524 <desc>
1525
1526 Registers the machine previously created using
1527 <link to="#createMachine()"/> or opened using
1528 <link to="#openMachine()"/> within this VirtualBox installation. After
1529 successful method invocation, the
1530 <link to="IVirtualBoxCallback::onMachineRegistered"/> signal is sent
1531 to all registered callbacks.
1532
1533 <note>
1534 This method implicitly calls <link to="IMachine::saveSettings"/>
1535 to save all current machine settings before registering it.
1536 </note>
1537
1538 <result name="VBOX_E_INVALID_OBJECT_STATE">
1539 Virtual machine was not created within this VirtualBox instance.
1540 </result>
1541
1542 </desc>
1543 <param name="machine" type="IMachine" dir="in"/>
1544 </method>
1545
1546 <method name="getMachine">
1547 <desc>
1548 Attempts to find a virtual machine given its UUID.
1549 To look up a machine by name, use <link to="IVirtualBox::findMachine" />
1550 instead.
1551
1552 <result name="VBOX_E_FILE_ERROR">
1553 Could not find registered machine matching @a id.
1554 </result>
1555
1556 </desc>
1557 <param name="id" type="uuid" dir="in"/>
1558 <param name="machine" type="IMachine" dir="return"/>
1559 </method>
1560
1561 <method name="findMachine">
1562 <desc>
1563 Attempts to find a virtual machine given its name.
1564 To look up a machine by UUID, use <link to="IVirtualBox::getMachine" />
1565 instead.
1566
1567 <result name="VBOX_E_FILE_ERROR">
1568 Could not find registered machine matching @a name.
1569 </result>
1570
1571 </desc>
1572 <param name="name" type="wstring" dir="in"/>
1573 <param name="machine" type="IMachine" dir="return"/>
1574 </method>
1575
1576 <method name="unregisterMachine">
1577 <desc>
1578
1579 Unregisters the machine previously registered using
1580 <link to="#registerMachine"/>. After successful method invocation, the
1581 <link to="IVirtualBoxCallback::onMachineRegistered"/> signal is sent
1582 to all registered callbacks.
1583
1584 <note>
1585 The specified machine must not be in the Saved state, have an open
1586 (or a spawning) direct session associated with it, have snapshots or
1587 have hard disks attached.
1588 </note>
1589
1590 <note>
1591 This method implicitly calls <link to="IMachine::saveSettings"/> to
1592 save all current machine settings before unregistering it.
1593 </note>
1594
1595 <note>
1596 If the given machine is inaccessible (see
1597 <link to="IMachine::accessible"/>), it will be unregistered and
1598 fully uninitialized right afterwards. As a result, the returned
1599 machine object will be unusable and an attempt to call
1600 <b>any</b> method will return the "Object not ready" error.
1601 </note>
1602
1603 <result name="VBOX_E_FILE_ERROR">
1604 Could not find registered machine matching @a id.
1605 </result>
1606 <result name="VBOX_E_INVALID_VM_STATE">
1607 Machine is in Saved state.
1608 </result>
1609 <result name="VBOX_E_INVALID_OBJECT_STATE">
1610 Machine has snapshot or open session or hard disk attached.
1611 </result>
1612
1613 </desc>
1614 <param name="id" type="uuid" dir="in">
1615 <desc>UUID of the machine to unregister.</desc>
1616 </param>
1617 <param name="machine" type="IMachine" dir="return">
1618 <desc>Unregistered machine object.</desc>
1619 </param>
1620 </method>
1621
1622 <method name="createHardDisk2">
1623 <desc>
1624 Creates a new base hard disk object that will use the given storage
1625 format and location for hard disk data.
1626
1627 Note that the actual storage unit is not created by this method. In
1628 order to do it, and before you are able to attach the created hard disk
1629 to virtual machines, you must call one of the following methods to
1630 allocate a format-specific storage unit at the specified location:
1631 <ul>
1632 <li><link to="IHardDisk2::createDynamicStorage()"/></li>
1633 <li><link to="IHardDisk2::createFixedStorage()"/></li>
1634 <li><link to="IHardDisk2::createDiffStorage()"/></li>
1635 </ul>
1636
1637 Some hard disk attributes, such as <link to="#id"/>, may remain
1638 uninitialized until the hard disk storage unit is successfully created
1639 by one of the above methods.
1640
1641 After the storage unit is successfully created, the hard disk gets
1642 remembered by this VirtualBox installation and will be accessible
1643 through <link to="#getHardDisk2()"/> and <link to="#findHardDisk2()"/>
1644 methods. Remembered root (base) hard disks are also returned as part of
1645 the <link to="#hardDisks2"/> array. See IHardDisk2 for more details.
1646
1647 The list of all storage formats supported by this VirtualBox
1648 installation can be obtained using
1649 <link to="ISystemProperties::hardDiskFormats"/>. If the @a format
1650 attribute is empty or <tt>null</tt> then the default storage format
1651 specified by <link to="ISystemProperties::defaultHardDiskFormat"/> will
1652 be used for creating a storage unit of the hard disk.
1653
1654 Note that the format of the location string is storage format specific.
1655 See <link to="IMedium::location"/>, IHardDisk2 and
1656 <link to="ISystemProperties::defaultHardDiskFolder"/> for more details.
1657
1658 <result name="VBOX_E_OBJECT_NOT_FOUND">
1659 @a format identifier is invalid. See
1660 <link to="ISystemProperties::hardDiskFormats"/>.
1661 </result>
1662 <result name="VBOX_E_FILE_ERROR">
1663 @a location is a not valid file name (for file-based formats only).
1664 </result>
1665 <result name="E_INVALIDARG">
1666 @a format is a null or empty string.
1667 </result>
1668 </desc>
1669 <param name="format" type="wstring" dir="in">
1670 <desc>
1671 Identifier of the storage format to use for the new hard disk.
1672 </desc>
1673 </param>
1674 <param name="location" type="wstring" dir="in">
1675 <desc>
1676 Location of the storage unit for the new hard disk.
1677 </desc>
1678 </param>
1679 <param name="hardDisk" type="IHardDisk2" dir="return">
1680 <desc>Created hard disk object.</desc>
1681 </param>
1682 </method>
1683
1684 <method name="openHardDisk2">
1685 <desc>
1686 Opens a hard disk from an existing location.
1687
1688 After the hard disk is successfully opened by this method, it gets
1689 remembered by (known to) this VirtualBox installation and will be
1690 accessible through <link to="#getHardDisk2()"/> and
1691 <link to="#findHardDisk2()"/> methods. Remembered root (base) hard disks
1692 are also returned as part of the <link to="#hardDisks2"/> array and can
1693 be attached to virtual machines. See IHardDisk2 for more details.
1694
1695 If a differencing hard disk is to be opened by this method, the
1696 operation will succeed only if its parent hard disk and all ancestors,
1697 if any, are already known to this VirtualBox installation (for example,
1698 were opened by this method before).
1699
1700 This method tries to guess the storage format of the specified hard disk
1701 by reading hard disk data at the specified location.
1702
1703 Note that the format of the location string is storage format specific.
1704 See <link to="IMedium::location"/>, IHardDisk2 and
1705 <link to="ISystemProperties::defaultHardDiskFolder"/> for more details.
1706
1707
1708 <result name="VBOX_E_FILE_ERROR">
1709 Invalid hard disk storage file location.
1710 </result>
1711 <result name="VBOX_E_IPRT_ERROR">
1712 Could not get hard disk storage format.
1713 </result>
1714 <result name="E_INVALIDARG">
1715 Invalid hard disk storage format.
1716 </result>
1717
1718 </desc>
1719 <param name="location" type="wstring" dir="in">
1720 <desc>
1721 Location of the storage unit that contains hard disk data in one of
1722 the supported storage formats.
1723 </desc>
1724 </param>
1725 <param name="hardDisk" type="IHardDisk2" dir="return">
1726 <desc>Opened hard disk object.</desc>
1727 </param>
1728 </method>
1729
1730 <method name="getHardDisk2" const="yes">
1731 <desc>
1732 Returns a hard disk with the given UUID.
1733
1734 The hard disk with the given UUID must be known to this VirtualBox
1735 installation, i.e. it must be previously created by
1736 <link to="#createHardDisk2()"/> or opened by <link
1737 to="#openHardDisk2()"/>, or attached to some known virtual machine.
1738
1739 <result name="VBOX_E_OBJECT_NOT_FOUND">
1740 No hard disk object matching @a id found.
1741 </result>
1742
1743 </desc>
1744 <param name="id" type="uuid" dir="in">
1745 <desc>UUID of the hard disk to look for.</desc>
1746 </param>
1747 <param name="hardDisk" type="IHardDisk2" dir="return">
1748 <desc>Found hard disk object.</desc>
1749 </param>
1750 </method>
1751
1752 <method name="findHardDisk2">
1753 <desc>
1754 Returns a hard disk that uses the given location to store hard
1755 disk data.
1756
1757 The given hard disk must be known to this VirtualBox installation, i.e.
1758 it must be previously created by
1759 <link to="#createHardDisk2()"/> or opened by <link
1760 to="#openHardDisk2()"/>, or attached to some known virtual machine.
1761
1762 The search is done by comparing the value of the @a location argument to
1763 the <link to="IHardDisk2::location"/> attribute of each known hard
1764 disk.
1765
1766 For locations represented by file names in the host's file system, the
1767 requested location can be a path relative to the
1768 <link to="IVirtualBox::homeFolder">VirtualBox home folder</link>. If
1769 only a file name without any path is given, the
1770 <link to="ISystemProperties::defaultHardDiskFolder"> default hard disk
1771 folder</link> will be prepended to the file name before searching. Note
1772 that on case sensitive file systems, a case sensitive comparison is
1773 performed, otherwise the case of symbols in the file path is ignored.
1774
1775 <result name="VBOX_E_OBJECT_NOT_FOUND">
1776 No hard disk object matching @a location found.
1777 </result>
1778
1779 </desc>
1780 <param name="location" type="wstring" dir="in">
1781 <desc>Location string to search for.</desc>
1782 </param>
1783 <param name="hardDisk" type="IHardDisk2" dir="return">
1784 <desc>Found hard disk object.</desc>
1785 </param>
1786 </method>
1787
1788 <method name="openDVDImage">
1789 <desc>
1790 Opens a CD/DVD image contained in the specified file of the supported
1791 format and assigns it the given UUID.
1792
1793 After the image is successfully opened by this method, it gets
1794 remembered by (known to) this VirtualBox installation and will be
1795 accessible through <link to="#getDVDImage()"/> and
1796 <link to="#findDVDImage()"/> methods. Remembered images are also
1797 returned as part of the <link to="#DVDImages"/> array and can be mounted
1798 to virtual machines. See IMedium for more details.
1799
1800 See <link to="IMedium::location"/> to get more details about the format
1801 of the location string.
1802
1803 <note>
1804 Currently only ISO 9960 CD/DVD images are supported by VirtualBox.
1805 </note>
1806
1807 <result name="VBOX_E_INVALID_OBJECT_STATE">
1808 CD/DVD image already exists in the media registry.
1809 </result>
1810
1811 </desc>
1812 <param name="location" type="wstring" dir="in">
1813 <desc>
1814 Full path to the file that contains a valid CD/DVD image.
1815 </desc>
1816 </param>
1817 <param name="id" type="uuid" dir="in">
1818 <desc>
1819 UUID to assign to the given image within this VirtualBox installation.
1820 If an empty (null) UUID is specified, the system will randomly
1821 generate a new UUID.
1822 </desc>
1823 </param>
1824 <param name="image" type="IDVDImage2" dir="return">
1825 <desc>Opened CD/DVD image object.</desc>
1826 </param>
1827 </method>
1828
1829 <method name="getDVDImage">
1830 <desc>
1831 Returns a CD/DVD image with the given UUID.
1832
1833 The image with the given UUID must be known to this VirtualBox
1834 installation, i.e. it must be previously opened by <link
1835 to="#openDVDImage()"/>, or mounted to some known virtual machine.
1836
1837 <result name="VBOX_E_OBJECT_NOT_FOUND">
1838 No matching DVD image found in the media registry.
1839 </result>
1840
1841 </desc>
1842 <param name="id" type="uuid" dir="in">
1843 <desc>UUID of the image to look for.</desc>
1844 </param>
1845 <param name="image" type="IDVDImage2" dir="return">
1846 <desc>Found CD/DVD image object.</desc>
1847 </param>
1848 </method>
1849
1850 <method name="findDVDImage">
1851 <desc>
1852 Returns a CD/DVD image with the given image location.
1853
1854 The image with the given UUID must be known to this VirtualBox
1855 installation, i.e. it must be previously opened by <link
1856 to="#openDVDImage()"/>, or mounted to some known virtual machine.
1857
1858 The search is done by comparing the value of the @a location argument to
1859 the <link to="IMedium::location"/> attribute of each known CD/DVD image.
1860
1861 The requested location can be a path relative to the
1862 <link to="IVirtualBox::homeFolder">VirtualBox home folder</link>. If
1863 only a file name without any path is given, the
1864 <link to="ISystemProperties::defaultHardDiskFolder"> default hard disk
1865 folder</link> will be prepended to the file name before searching. Note
1866 that on case sensitive file systems, a case sensitive comparison is
1867 performed, otherwise the case in the file path is ignored.
1868
1869 <result name="VBOX_E_FILE_ERROR">
1870 Invalid image file location.
1871 </result>
1872 <result name="VBOX_E_OBJECT_NOT_FOUND">
1873 No matching DVD image found in the media registry.
1874 </result>
1875
1876 </desc>
1877 <param name="location" type="wstring" dir="in">
1878 <desc>CD/DVD image file path to look for.</desc>
1879 </param>
1880 <param name="image" type="IDVDImage2" dir="return">
1881 <desc>Found CD/DVD image object.</desc>
1882 </param>
1883 </method>
1884
1885 <method name="openFloppyImage">
1886 <desc>
1887 Opens a floppy image contained in the specified file of the supported
1888 format and assigns it the given UUID.
1889
1890 After the image is successfully opened by this method, it gets
1891 remembered by (known to) this VirtualBox installation and will be
1892 accessible through <link to="#getFloppyImage()"/> and
1893 <link to="#findFloppyImage()"/> methods. Remembered images are also
1894 returned as part of the <link to="#floppyImages"/> array and can be
1895 mounted to virtual machines. See IMedium for more details.
1896
1897 See <link to="IMedium::location"/> to get more details about the format
1898 of the location string.
1899
1900 <result name="VBOX_E_FILE_ERROR">
1901 Floppy image specified by @a location not accessible.
1902 </result>
1903 <result name="VBOX_E_INVALID_OBJECT_STATE">
1904 Floppy image already exists in the media registry.
1905 </result>
1906
1907 <note>
1908 Currently, only raw floppy images are supported by VirtualBox.
1909 </note>
1910 </desc>
1911 <param name="location" type="wstring" dir="in">
1912 <desc>
1913 Full path to the file that contains a valid floppy image.
1914 </desc>
1915 </param>
1916 <param name="id" type="uuid" dir="in">
1917 <desc>
1918 UUID to assign to the given image file within this VirtualBox
1919 installation. If an empty (null) UUID is specified, the system will
1920 randomly generate a new UUID.
1921 </desc>
1922 </param>
1923 <param name="image" type="IFloppyImage2" dir="return">
1924 <desc>Opened floppy image object.</desc>
1925 </param>
1926 </method>
1927
1928 <method name="getFloppyImage">
1929 <desc>
1930 Returns a floppy image with the given UUID.
1931
1932 The image with the given UUID must be known to this VirtualBox
1933 installation, i.e. it must be previously opened by <link
1934 to="#openFloppyImage()"/>, or mounted to some known virtual machine.
1935
1936 <result name="VBOX_E_OBJECT_NOT_FOUND">
1937 No matching floppy image found in the media registry.
1938 </result>
1939
1940 </desc>
1941 <param name="id" type="uuid" dir="in">
1942 <desc>UUID of the image to look for.</desc>
1943 </param>
1944 <param name="image" type="IFloppyImage2" dir="return">
1945 <desc>Found floppy image object.</desc>
1946 </param>
1947 </method>
1948
1949 <method name="findFloppyImage">
1950 <desc>
1951 Returns a floppy image with the given image location.
1952
1953 The image with the given UUID must be known to this VirtualBox
1954 installation, i.e. it must be previously opened by <link
1955 to="#openFloppyImage()"/>, or mounted to some known virtual machine.
1956
1957 The search is done by comparing the value of the @a location argument to
1958 the <link to="IMedium::location"/> attribute of each known floppy image.
1959
1960 The requested location can be a path relative to the
1961 <link to="IVirtualBox::homeFolder">VirtualBox home folder</link>. If
1962 only a file name without any path is given, the
1963 <link to="ISystemProperties::defaultHardDiskFolder"> default hard disk
1964 folder</link> will be prepended to the file name before searching. Note
1965 that on case sensitive file systems, a case sensitive comparison is
1966 performed, otherwise the case of symbols in the file path is ignored.
1967
1968 <result name="VBOX_E_FILE_ERROR">
1969 Invalid image file location.
1970 </result>
1971 <result name="VBOX_E_OBJECT_NOT_FOUND">
1972 No matching floppy image found in the media registry.
1973 </result>
1974
1975 </desc>
1976 <param name="location" type="wstring" dir="in">
1977 <desc>Floppy image file path to look for.</desc>
1978 </param>
1979 <param name="image" type="IFloppyImage2" dir="return">
1980 <desc>Found floppy image object.</desc>
1981 </param>
1982 </method>
1983
1984 <method name="getGuestOSType">
1985 <desc>
1986 Returns an object describing the specified guest OS type.
1987
1988 The requested guest OS type is specified using a string which is a
1989 mnemonic identifier of the guest operating system, such as
1990 <tt>"win31"</tt> or <tt>"ubuntu"</tt>. The guest OS type ID of a
1991 particular virtual machine can be read or set using the
1992 <link to="IMachine::OSTypeId"/> attribute.
1993
1994 The <link to="IVirtualBox::guestOSTypes"/> collection contains all
1995 available guest OS type objects. Each object has an
1996 <link to="IGuestOSType::id"/> attribute which contains an identifier of
1997 the guest OS this object describes.
1998
1999 <result name="E_INVALIDARG">
2000 @a id is not a valid Guest OS type.
2001 </result>
2002
2003 </desc>
2004 <param name="id" type="wstring" dir="in">
2005 <desc>Guest OS type ID string.</desc>
2006 </param>
2007 <param name="type" type="IGuestOSType" dir="return">
2008 <desc>Guest OS type object.</desc>
2009 </param>
2010 </method>
2011
2012 <method name="createSharedFolder">
2013 <desc>
2014 Creates a new global shared folder by associating the given logical
2015 name with the given host path, adds it to the collection of shared
2016 folders and starts sharing it. Refer to the description of
2017 <link to="ISharedFolder"/> to read more about logical names.
2018 <note>
2019 In the current implementation, this operation is not
2020 implemented.
2021 </note>
2022 </desc>
2023 <param name="name" type="wstring" dir="in">
2024 <desc>Unique logical name of the shared folder.</desc>
2025 </param>
2026 <param name="hostPath" type="wstring" dir="in">
2027 <desc>Full path to the shared folder in the host file system.</desc>
2028 </param>
2029 <param name="writable" type="boolean" dir="in">
2030 <desc>Whether the share is writable or readonly</desc>
2031 </param>
2032 </method>
2033
2034 <method name="removeSharedFolder">
2035 <desc>
2036 Removes the global shared folder with the given name previously
2037 created by <link to="#createSharedFolder"/> from the collection of
2038 shared folders and stops sharing it.
2039 <note>
2040 In the current implementation, this operation is not
2041 implemented.
2042 </note>
2043 </desc>
2044 <param name="name" type="wstring" dir="in">
2045 <desc>Logical name of the shared folder to remove.</desc>
2046 </param>
2047 </method>
2048
2049 <method name="getNextExtraDataKey">
2050 <desc>
2051 Returns the global extra data key name following the supplied key.
2052
2053 An error is returned if the supplied @a key does not exist. @c NULL is
2054 returned in @a nextKey if the supplied key is the last key. When
2055 supplying @c NULL for the @a key, the first key item is returned in @a
2056 nextKey (if there is any). @a nextValue is an optional parameter and
2057 if supplied, the next key's value is returned in it.
2058
2059 <result name="VBOX_E_OBJECT_NOT_FOUND">
2060 Extra data @a key not found.
2061 </result>
2062
2063 </desc>
2064 <param name="key" type="wstring" dir="in">
2065 <desc>Name of the data key to follow.</desc>
2066 </param>
2067 <param name="nextKey" type="wstring" dir="out">
2068 <desc>Name of the next data key.</desc>
2069 </param>
2070 <param name="nextValue" type="wstring" dir="out">
2071 <desc>Value of the next data key.</desc>
2072 </param>
2073 </method>
2074
2075 <method name="getExtraData">
2076 <desc>
2077 Returns associated global extra data.
2078
2079 If the requested data @a key does not exist, this function will
2080 succeed and return @c NULL in the @a value argument.
2081
2082 <result name="VBOX_E_FILE_ERROR">
2083 Settings file not accessible.
2084 </result>
2085 <result name="VBOX_E_XML_ERROR">
2086 Could not parse the settings file.
2087 </result>
2088
2089 </desc>
2090 <param name="key" type="wstring" dir="in">
2091 <desc>Name of the data key to get.</desc>
2092 </param>
2093 <param name="value" type="wstring" dir="return">
2094 <desc>Value of the requested data key.</desc>
2095 </param>
2096 </method>
2097
2098 <method name="setExtraData">
2099 <desc>
2100 Sets associated global extra data.
2101
2102 If you pass @c NULL as a key @a value, the given @a key will be
2103 deleted.
2104
2105 <note>
2106 Before performing the actual data change, this method will ask all
2107 registered callbacks using the
2108 <link to="IVirtualBoxCallback::onExtraDataCanChange()"/>
2109 notification for a permission. If one of the callbacks refuses the
2110 new value, the change will not be performed.
2111 </note>
2112 <note>
2113 On success, the
2114 <link to="IVirtualBoxCallback::onExtraDataChange()"/> notification
2115 is called to inform all registered callbacks about a successful data
2116 change.
2117 </note>
2118
2119 <result name="VBOX_E_FILE_ERROR">
2120 Settings file not accessible.
2121 </result>
2122 <result name="VBOX_E_XML_ERROR">
2123 Could not parse the settings file.
2124 </result>
2125 <result name="E_ACCESSDENIED">
2126 Modification request refused.
2127 </result>
2128
2129 </desc>
2130 <param name="key" type="wstring" dir="in">
2131 <desc>Name of the data key to set.</desc>
2132 </param>
2133 <param name="value" type="wstring" dir="in">
2134 <desc>Value to assign to the key.</desc>
2135 </param>
2136 </method>
2137
2138 <method name="openSession">
2139 <desc>
2140 Opens a new direct session with the given virtual machine.
2141
2142 A direct session acts as a local lock on the given VM.
2143 There can be only one direct session open at a time for every
2144 virtual machine, protecting the VM from being manipulated by
2145 conflicting actions from different processes. Only after a
2146 direct session has been opened, one can change all VM settings
2147 and execute the VM in the process space of the session object.
2148
2149 Sessions therefore can be compared to mutex semaphores that
2150 lock a given VM for modification and execution.
2151 See <link to="ISession">ISession</link> for details.
2152
2153 <note>Unless you are writing a new VM frontend, you will not
2154 want to execute a VM in the current process. To spawn a new
2155 process that executes a VM, use
2156 <link to="IVirtualBox::openRemoteSession" />
2157 instead.</note>
2158
2159 Upon successful return, the session object can be used to
2160 get access to the machine and to the VM console.
2161
2162 In VirtualBox terminology, the machine becomes "mutable" after
2163 a session has been opened. Note that the "mutable" machine
2164 object, on which you may invoke IMachine methods to change its
2165 settings, will be a different object from the immutable IMachine
2166 objects returned by various IVirtualBox methods. To obtain a
2167 mutable IMachine object (upon which you can invoke settings methods),
2168 use the <link to="ISession::machine" /> attribute.
2169
2170 One must always call <link to="ISession::close" /> to release the
2171 lock on the machine, or the machine's state will eventually be
2172 set to "Aborted".
2173
2174 In other words, to change settings on a machine, the following
2175 sequence is typically performed:
2176
2177 <ol>
2178 <li>Call this method (openSession) to have a machine locked for
2179 the current session.</li>
2180
2181 <li>Obtain a mutable IMachine object from <link to="ISession::machine" />.</li>
2182
2183 <li>Change the settings of the machine.</li>
2184
2185 <li>Call <link to="IMachine::saveSettings" />.</li>
2186
2187 <li>Close the session by calling <link to="ISession::close()"/>.</li>
2188 </ol>
2189
2190 <result name="E_UNEXPECTED">
2191 Virtual machine not registered.
2192 </result>
2193 <result name="E_ACCESSDENIED">
2194 Process not started by OpenRemoteSession.
2195 </result>
2196 <result name="VBOX_E_INVALID_OBJECT_STATE">
2197 Session already open or being opened.
2198 </result>
2199 <result name="VBOX_E_VM_ERROR">
2200 Failed to assign machine to session.
2201 </result>
2202
2203 </desc>
2204 <param name="session" type="ISession" dir="in">
2205 <desc>
2206 Session object that will represent the opened session after
2207 successful method invocation. This object must not represent
2208 the already open session.
2209 <note>
2210 This session will be automatically closed if the
2211 VirtualBox server is terminated for some reason.
2212 </note>
2213 </desc>
2214 </param>
2215 <param name="machineId" type="uuid" dir="in">
2216 <desc>ID of the virtual machine to open a session with.</desc>
2217 </param>
2218 </method>
2219
2220 <method name="openRemoteSession">
2221 <desc>
2222 Spawns a new process that executes a virtual machine (called a
2223 "remote session").
2224
2225 Opening a remote session causes the VirtualBox server to start a new
2226 process that opens a direct session with the given VM. As a result, the
2227 VM is locked by that direct session in the new process, preventing
2228 conflicting changes from other processes. Since sessions act as locks
2229 that such prevent conflicting changes, one cannot open a remote session
2230 for a VM that already has another open session (direct or remote), or
2231 is currently in the process of opening one (see <link
2232 to="IMachine::sessionState"/>).
2233
2234 While the remote session still provides some level of control over the
2235 VM execution to the caller (using the <link to="IConsole" /> interface),
2236 not all VM settings are available for modification within the remote
2237 session context.
2238
2239 This operation can take some time (a new VM is started in a new process,
2240 for which memory and other resources need to be set up). Because of this,
2241 an <link to="IProgress" /> is returned to allow the caller to wait for this
2242 asynchronous operation to be completed. Until then, the remote session
2243 object remains in the closed state, and accessing the machine or its
2244 console through it is invalid. It is recommended to use
2245 <link to="IProgress::waitForCompletion" /> or similar calls to wait for
2246 completion.
2247
2248 As with all <link to="ISession" /> objects, it is recommended to call
2249 <link to="ISession::close" /> on the local session object once openRemoteSession()
2250 has been called. However, the session's state (see <link to="ISession::state" />)
2251 will not return to "Closed" until the remote session has also closed (i.e.
2252 until the VM is no longer running). In that case, however, the state of
2253 the session will automatically change back to "Closed".
2254
2255 Currently supported session types (values of the @a type
2256 argument) are:
2257 <ul>
2258 <li><tt>gui</tt>: VirtualBox Qt GUI session</li>
2259 <li><tt>vrdp</tt>: VirtualBox VRDP Server session</li>
2260 </ul>
2261
2262 The @a environment argument is a string containing definitions of
2263 environment variables in the following format:
2264 @code
2265 NAME[=VALUE]\n
2266 NAME[=VALUE]\n
2267 ...
2268 @endcode
2269 where <tt>\\n</tt> is the new line character. These environment
2270 variables will be appended to the environment of the VirtualBox server
2271 process. If an environment variable exists both in the server process
2272 and in this list, the value from this list takes precedence over the
2273 server's variable. If the value of the environment variable is
2274 omitted, this variable will be removed from the resulting environment.
2275 If the environment string is @c null, the server environment is
2276 inherited by the started process as is.
2277
2278 <see>openExistingSession</see>
2279
2280 <result name="E_UNEXPECTED">
2281 Virtual machine not registered.
2282 </result>
2283 <result name="E_INVALIDARG">
2284 Invalid session type @a type.
2285 </result>
2286 <result name="VBOX_E_OBJECT_NOT_FOUND">
2287 No machine matching @a machineId found.
2288 </result>
2289 <result name="VBOX_E_INVALID_OBJECT_STATE">
2290 Session already open or being opened.
2291 </result>
2292 <result name="VBOX_E_IPRT_ERROR">
2293 Launching process for machine failed.
2294 </result>
2295 <result name="VBOX_E_VM_ERROR">
2296 Failed to assign machine to session.
2297 </result>
2298
2299 </desc>
2300 <param name="session" type="ISession" dir="in">
2301 <desc>
2302 Session object that will represent the opened remote session
2303 after successful method invocation (this object must not
2304 represent an already open session).
2305 </desc>
2306 </param>
2307 <param name="machineId" type="uuid" dir="in">
2308 <desc>ID of the virtual machine to open a session with.</desc>
2309 </param>
2310 <param name="type" type="wstring" dir="in">
2311 <desc>
2312 Type of the remote session (case sensitive).
2313 </desc>
2314 </param>
2315 <param name="environment" type="wstring" dir="in">
2316 <desc>
2317 Environment to pass to the opened session (may be @c null).
2318 </desc>
2319 </param>
2320 <param name="progress" type="IProgress" dir="return">
2321 <desc>Progress object to track the operation completion.</desc>
2322 </param>
2323 </method>
2324
2325 <method name="openExistingSession">
2326 <desc>
2327 Opens a new remote session with the virtual machine for
2328 which a direct session is already open.
2329
2330 The remote session provides some level of control over the VM
2331 execution (using the IConsole interface) to the caller; however,
2332 within the remote session context, not all VM settings are available
2333 for modification.
2334
2335 As opposed to <link to="#openRemoteSession()"/>, the number of
2336 remote sessions opened this way is not limited by the API
2337
2338 <note>
2339 It is an error to open a remote session with the machine that
2340 doesn't have an open direct session.
2341 </note>
2342
2343 <result name="E_UNEXPECTED">
2344 Virtual machine not registered.
2345 </result>
2346 <result name="VBOX_E_OBJECT_NOT_FOUND">
2347 No machine matching @a machineId found.
2348 </result>
2349 <result name="VBOX_E_INVALID_OBJECT_STATE">
2350 Session already open or being opened.
2351 </result>
2352 <result name="VBOX_E_INVALID_SESSION_STATE">
2353 Direct session state not Open.
2354 </result>
2355 <result name="VBOX_E_VM_ERROR">
2356 Failed to get console object from direct session or assign
2357 machine to session.
2358 </result>
2359
2360 <see>openRemoteSession</see>
2361 </desc>
2362 <param name="session" type="ISession" dir="in">
2363 <desc>
2364 Session object that will represent the open remote session
2365 after successful method invocation. This object must not
2366 represent an already open session.
2367 <note>
2368 This session will be automatically closed when the peer
2369 (direct) session dies or gets closed.
2370 </note>
2371 </desc>
2372 </param>
2373 <param name="machineId" type="uuid" dir="in">
2374 <desc>ID of the virtual machine to open a session with.</desc>
2375 </param>
2376 </method>
2377
2378 <method name="registerCallback">
2379 <desc>
2380 Registers a new global VirtualBox callback. The methods of the given
2381 callback object will be called by VirtualBox when an appropriate
2382 event occurs.
2383
2384 <result name="E_INVALIDARG">
2385 Registering a @c NULL @a callback is pretty pointless, ain't it?
2386 <!-- See if someone is actually reading this and objects :-) -->
2387 </result>
2388
2389 </desc>
2390 <param name="callback" type="IVirtualBoxCallback" dir="in">
2391 <desc>Callback object to register.</desc>
2392 </param>
2393 </method>
2394
2395 <method name="unregisterCallback">
2396 <desc>
2397 Unregisters the previously registered global VirtualBox callback.
2398
2399 <result name="E_INVALIDARG">
2400 Specified @a callback not registered.
2401 </result>
2402
2403 </desc>
2404 <param name="callback" type="IVirtualBoxCallback" dir="in">
2405 <desc>Callback object to unregister.</desc>
2406 </param>
2407 </method>
2408
2409 <method name="waitForPropertyChange">
2410 <desc>
2411 Blocks the caller until any of the properties represented by the @a
2412 what argument changes the value or until the given timeout interval
2413 expires.
2414
2415 The @a what argument is a comma separated list of property masks that
2416 describe properties the caller is interested in. The property mask is
2417 a string in the following format:
2418
2419 <pre>
2420 [[group.]subgroup.]name
2421 </pre>
2422
2423 where @c name is the property name and @c group, @c subgroup are zero
2424 or more property group specifiers. Each element (group or name) in
2425 the property mask may be either a Latin string or an asterisk symbol
2426 (@c "*") which is used to match any string for the given element. A
2427 property mask that doesn't contain asterisk symbols represents a
2428 single fully qualified property name.
2429
2430 Groups in the fully qualified property name go from more generic (the
2431 left-most part) to more specific (the right-most part). The first
2432 element is usually a name of the object the property belongs to. The
2433 second element may be either a property name, or a child object name,
2434 or an index if the preceding element names an object which is one of
2435 many objects of the same type. This way, property names form a
2436 hierarchy of properties. Here are some examples of property names:
2437
2438 <table>
2439 <tr>
2440 <td><tt>VirtualBox.version</tt></td>
2441 <td><link to="IVirtualBox::version"/> property</td>
2442 </tr>
2443 <tr>
2444 <td><tt>Machine.&lt;UUID&gt;.name</tt></td>
2445 <td><link to="IMachine::name"/> property of the machine with the
2446 given UUID</td>
2447 </tr>
2448 </table>
2449
2450 Most property names directly correspond to the properties of objects
2451 (components) provided by the VirtualBox library and may be used to
2452 track changes to these properties. However, there may be
2453 pseudo-property names that don't correspond to any existing object's
2454 property directly, as well as there may be object properties that
2455 don't have a corresponding property name that is understood by this
2456 method, and therefore changes to such properties cannot be
2457 tracked. See individual object's property descriptions to get a
2458 fully qualified property name that can be used with this method (if
2459 any).
2460
2461 There is a special property mask @c "*" (i.e. a string consisting of a
2462 single asterisk symbol) that can be used to match all properties.
2463 Below are more examples of property masks:
2464
2465 <table>
2466 <tr>
2467 <td><tt>VirtualBox.*</tt></td>
2468 <td>Track all properties of the VirtualBox object</td>
2469 </tr>
2470 <tr>
2471 <td><tt>Machine.*.name</tt></td>
2472 <td>Track changes to the <link to="IMachine::name"/> property of
2473 all registered virtual machines</td>
2474 </tr>
2475 </table>
2476
2477 <note>
2478 This function is not implemented in the current version of the
2479 product.
2480 </note>
2481 </desc>
2482 <param name="what" type="wstring" dir="in">
2483 <desc>Comma separated list of property masks.</desc>
2484 </param>
2485 <param name="timeout" type="unsigned long" dir="in">
2486 <desc>
2487 Wait timeout in milliseconds.
2488 Specify -1 for an indefinite wait.
2489 </desc>
2490 </param>
2491 <param name="changed" type="wstring" dir="out">
2492 <desc>
2493 Comma separated list of properties that have been changed and caused
2494 this method to return to the caller.
2495 </desc>
2496 </param>
2497 <param name="values" type="wstring" dir="out">
2498 <desc>Reserved, not currently used.</desc>
2499 </param>
2500 </method>
2501
2502 <method name="saveSettings">
2503 <desc>
2504 Saves the global settings to the global settings file
2505 (<link to="#settingsFilePath"/>).
2506
2507 This method is only useful for explicitly saving the global settings
2508 file after it has been auto-converted from the old format to the most
2509 recent format (see <link to="#settingsFileVersion"/> for details).
2510 Normally, the global settings file is implicitly saved when a global
2511 setting is changed.
2512
2513 <result name="VBOX_E_FILE_ERROR">
2514 Settings file not accessible.
2515 </result>
2516 <result name="VBOX_E_XML_ERROR">
2517 Could not parse the settings file.
2518 </result>
2519
2520 </desc>
2521 </method>
2522
2523 <method name="saveSettingsWithBackup">
2524 <desc>
2525 Creates a backup copy of the global settings file
2526 (<link to="#settingsFilePath"/>) in case of auto-conversion, and then
2527 calls <link to="#saveSettings()"/>.
2528
2529 Note that the backup copy is created <b>only</b> if the settings file
2530 auto-conversion took place (see <link to="#settingsFileVersion"/> for
2531 details). Otherwise, this call is fully equivalent to
2532 <link to="#saveSettings()"/> and no backup copying is done.
2533
2534 The backup copy is created in the same directory where the original
2535 settings file is located. It is given the following file name:
2536 <pre>
2537 original.xml.x.y-platform.bak
2538 </pre>
2539 where <tt>original.xml</tt> is the original settings file name
2540 (excluding path), and <tt>x.y-platform</tt> is the version of the old
2541 format of the settings file (before auto-conversion).
2542
2543 If the given backup file already exists, this method will try to add the
2544 <tt>.N</tt> suffix to the backup file name (where <tt>N</tt> counts from
2545 0 to 9) and copy it again until it succeeds. If all suffixes are
2546 occupied, or if any other copy error occurs, this method will return a
2547 failure.
2548
2549 If the copy operation succeeds, the @a bakFileName return argument will
2550 receive a full path to the created backup file (for informational
2551 purposes). Note that this will happen even if the subsequent
2552 <link to="#saveSettings()"/> call performed by this method after the
2553 copy operation, fails.
2554
2555 <note>
2556 The VirtualBox API never calls this method. It is intended purely for
2557 the purposes of creating backup copies of the settings files by
2558 front-ends before saving the results of the automatically performed
2559 settings conversion to disk.
2560 </note>
2561
2562 <see>settingsFileVersion</see>
2563
2564 <result name="VBOX_E_FILE_ERROR">
2565 Settings file not accessible.
2566 </result>
2567 <result name="VBOX_E_XML_ERROR">
2568 Could not parse the settings file.
2569 </result>
2570 <result name="VBOX_E_IPRT_ERROR">
2571 Could not copy the settings file.
2572 </result>
2573
2574 </desc>
2575 <param name="bakFileName" type="wstring" dir="return">
2576 <desc>Full path to the created backup copy.</desc>
2577 </param>
2578 </method>
2579
2580 </interface>
2581
2582 <!--
2583 // IMachine
2584 /////////////////////////////////////////////////////////////////////////
2585 -->
2586
2587 <enumerator
2588 name="IMachineEnumerator" type="IMachine"
2589 uuid="1b554149-be0a-4465-9252-9ff8f420af55"
2590 />
2591
2592 <collection
2593 name="IMachineCollection" type="IMachine" enumerator="IMachineEnumerator"
2594 uuid="FD443EC1-3007-4F5B-9282-D72760A66916"
2595 readonly="yes"
2596 />
2597
2598 <interface
2599 name="IInternalMachineControl" extends="$unknown"
2600 uuid="4042ddf2-93d3-4749-8517-dde3f17ea630"
2601 internal="yes"
2602 wsmap="suppress"
2603 >
2604 <method name="updateState">
2605 <desc>
2606 Updates the VM state.
2607 <note>
2608 This operation will also update the settings file with
2609 the correct information about the saved state file
2610 and delete this file from disk when appropriate.
2611 </note>
2612 </desc>
2613 <param name="state" type="MachineState" dir="in"/>
2614 </method>
2615
2616 <method name="getIPCId">
2617 <param name="id" type="wstring" dir="return"/>
2618 </method>
2619
2620 <method name="runUSBDeviceFilters">
2621 <desc>
2622 Asks the server to run USB devices filters of the associated
2623 machine against the given USB device and tell if there is
2624 a match.
2625 <note>
2626 Intended to be used only for remote USB devices. Local
2627 ones don't require to call this method (this is done
2628 implicitly by the Host and USBProxyService).
2629 </note>
2630 </desc>
2631 <param name="device" type="IUSBDevice" dir="in"/>
2632 <param name="matched" type="boolean" dir="out"/>
2633 <param name="maskedInterfaces" type="unsigned long" dir="out"/>
2634 </method>
2635
2636 <method name="captureUSBDevice">
2637 <desc>
2638 Requests a capture of the given host USB device.
2639 When the request is completed, the VM process will
2640 get a <link to="IInternalSessionControl::onUSBDeviceAttach"/>
2641 notification.
2642 </desc>
2643 <param name="id" type="uuid" dir="in"/>
2644 </method>
2645
2646 <method name="detachUSBDevice">
2647 <desc>
2648 Notification that a VM is going to detach (done = false) or has
2649 already detached (done = true) the given USB device.
2650 When the done = true request is completed, the VM process will
2651 get a <link to="IInternalSessionControl::onUSBDeviceDetach"/>
2652 notification.
2653 <note>
2654 In the done = true case, the server must run its own filters
2655 and filters of all VMs but this one on the detached device
2656 as if it were just attached to the host computer.
2657 </note>
2658 </desc>
2659 <param name="id" type="uuid" dir="in"/>
2660 <param name="done" type="boolean" dir="in"/>
2661 </method>
2662
2663 <method name="autoCaptureUSBDevices">
2664 <desc>
2665 Requests a capture all matching USB devices attached to the host.
2666 When the request is completed, the VM process will
2667 get a <link to="IInternalSessionControl::onUSBDeviceAttach"/>
2668 notification per every captured device.
2669 </desc>
2670 </method>
2671
2672 <method name="detachAllUSBDevices">
2673 <desc>
2674 Notification that a VM that is being powered down. The done
2675 parameter indicates whether which stage of the power down
2676 we're at. When done = false the VM is announcing its
2677 intentions, while when done = true the VM is reporting
2678 what it has done.
2679 <note>
2680 In the done = true case, the server must run its own filters
2681 and filters of all VMs but this one on all detach devices as
2682 if they were just attached to the host computer.
2683 </note>
2684 </desc>
2685 <param name="done" type="boolean" dir="in"/>
2686 </method>
2687
2688 <method name="onSessionEnd">
2689 <desc>
2690 Triggered by the given session object when the session is about
2691 to close normally.
2692 </desc>
2693 <param name="session" type="ISession" dir="in">
2694 <desc>Session that is being closed</desc>
2695 </param>
2696 <param name="progress" type="IProgress" dir="return">
2697 <desc>
2698 Used to wait until the corresponding machine is actually
2699 dissociated from the given session on the server.
2700 Returned only when this session is a direct one.
2701 </desc>
2702 </param>
2703 </method>
2704
2705 <method name="beginSavingState">
2706 <desc>
2707 Called by the VM process to inform the server it wants to
2708 save the current state and stop the VM execution.
2709 </desc>
2710 <param name="progress" type="IProgress" dir="in">
2711 <desc>
2712 Progress object created by the VM process to wait until
2713 the state is saved.
2714 </desc>
2715 </param>
2716 <param name="stateFilePath" type="wstring" dir="out">
2717 <desc>
2718 File path the VM process must save the execution state to.
2719 </desc>
2720 </param>
2721 </method>
2722
2723 <method name="endSavingState">
2724 <desc>
2725 Called by the VM process to inform the server that saving
2726 the state previously requested by #beginSavingState is either
2727 successfully finished or there was a failure.
2728 </desc>
2729
2730 <param name="success" type="boolean" dir="in">
2731 <desc><tt>true</tt> to indicate success and <tt>false</tt> otherwise</desc>
2732 </param>
2733 </method>
2734
2735 <method name="adoptSavedState">
2736 <desc>
2737 Gets called by IConsole::adoptSavedState.
2738 </desc>
2739 <param name="savedStateFile" type="wstring" dir="in">
2740 <desc>Path to the saved state file to adopt.</desc>
2741 </param>
2742 </method>
2743
2744 <method name="beginTakingSnapshot">
2745 <desc>
2746 Called by the VM process to inform the server it wants to
2747 take a snapshot.
2748 </desc>
2749 <param name="initiator" type="IConsole" dir="in">
2750 <desc>The console object that initiated this call.</desc>
2751 </param>
2752 <param name="name" type="wstring" dir="in">
2753 <desc>Snapshot name</desc>
2754 </param>
2755 <param name="description" type="wstring" dir="in">
2756 <desc>Snapshot description</desc>
2757 </param>
2758 <param name="progress" type="IProgress" dir="in">
2759 <desc>
2760 Progress object created by the VM process to wait until
2761 the state is saved (only for online snapshots).
2762 </desc>
2763 </param>
2764 <param name="stateFilePath" type="wstring" dir="out">
2765 <desc>
2766 File path the VM process must save the execution state to.
2767 </desc>
2768 </param>
2769 <param name="serverProgress" type="IProgress" dir="out">
2770 <desc>
2771 Progress object created by the server process to wait until
2772 the snapshot is taken (VDI diff creation, etc.).
2773 </desc>
2774 </param>
2775 </method>
2776
2777 <method name="endTakingSnapshot">
2778 <desc>
2779 Called by the VM process to inform the server that the snapshot
2780 previously requested by #beginTakingSnapshot is either
2781 successfully taken or there was a failure.
2782 </desc>
2783
2784 <param name="success" type="boolean" dir="in">
2785 <desc><tt>true</tt> to indicate success and <tt>false</tt> otherwise</desc>
2786 </param>
2787 </method>
2788
2789 <method name="discardSnapshot">
2790 <desc>
2791 Gets called by IConsole::discardSnapshot.
2792 </desc>
2793 <param name="initiator" type="IConsole" dir="in">
2794 <desc>The console object that initiated this call.</desc>
2795 </param>
2796 <param name="id" type="uuid" dir="in">
2797 <desc>UUID of the snapshot to discard.</desc>
2798 </param>
2799 <param name="machineState" type="MachineState" dir="out">
2800 <desc>New machine state after this operation is started.</desc>
2801 </param>
2802 <param name="progress" type="IProgress" dir="return">
2803 <desc>Progress object to track the operation completion.</desc>
2804 </param>
2805 </method>
2806
2807 <method name="discardCurrentState">
2808 <desc>
2809 Gets called by IConsole::discardCurrentState.
2810 </desc>
2811 <param name="initiator" type="IConsole" dir="in">
2812 <desc>The console object that initiated this call.</desc>
2813 </param>
2814 <param name="machineState" type="MachineState" dir="out">
2815 <desc>New machine state after this operation is started.</desc>
2816 </param>
2817 <param name="progress" type="IProgress" dir="return">
2818 <desc>Progress object to track the operation completion.</desc>
2819 </param>
2820 </method>
2821
2822 <method name="discardCurrentSnapshotAndState">
2823 <desc>
2824 Gets called by IConsole::discardCurrentSnapshotAndState.
2825 </desc>
2826 <param name="initiator" type="IConsole" dir="in">
2827 <desc>The console object that initiated this call.</desc>
2828 </param>
2829 <param name="machineState" type="MachineState" dir="out">
2830 <desc>New machine state after this operation is started.</desc>
2831 </param>
2832 <param name="progress" type="IProgress" dir="return">
2833 <desc>Progress object to track the operation completion.</desc>
2834 </param>
2835 </method>
2836
2837 <method name="pullGuestProperties">
2838 <desc>
2839 Get the list of the guest properties matching a set of patterns along
2840 with their values, time stamps and flags and give responsibility for
2841 managing properties to the console.
2842 </desc>
2843 <param name="name" type="wstring" dir="out" safearray="yes">
2844 <desc>
2845 The names of the properties returned.
2846 </desc>
2847 </param>
2848 <param name="value" type="wstring" dir="out" safearray="yes">
2849 <desc>
2850 The values of the properties returned. The array entries match the
2851 corresponding entries in the @a name array.
2852 </desc>
2853 </param>
2854 <param name="timestamp" type="unsigned long long" dir="out" safearray="yes">
2855 <desc>
2856 The time stamps of the properties returned. The array entries match
2857 the corresponding entries in the @a name array.
2858 </desc>
2859 </param>
2860 <param name="flags" type="wstring" dir="out" safearray="yes">
2861 <desc>
2862 The flags of the properties returned. The array entries match the
2863 corresponding entries in the @a name array.
2864 </desc>
2865 </param>
2866 </method>
2867
2868 <method name="pushGuestProperties">
2869 <desc>
2870 Set the list of the guest properties matching a set of patterns along
2871 with their values, time stamps and flags and return responsibility for
2872 managing properties to IMachine.
2873 </desc>
2874 <param name="name" type="wstring" dir="in" safearray="yes">
2875 <desc>
2876 The names of the properties.
2877 </desc>
2878 </param>
2879 <param name="value" type="wstring" dir="in" safearray="yes">
2880 <desc>
2881 The values of the properties. The array entries match the
2882 corresponding entries in the @a name array.
2883 </desc>
2884 </param>
2885 <param name="timestamp" type="unsigned long long" dir="in" safearray="yes">
2886 <desc>
2887 The time stamps of the properties. The array entries match
2888 the corresponding entries in the @a name array.
2889 </desc>
2890 </param>
2891 <param name="flags" type="wstring" dir="in" safearray="yes">
2892 <desc>
2893 The flags of the properties. The array entries match the
2894 corresponding entries in the @a name array.
2895 </desc>
2896 </param>
2897 </method>
2898 <method name="pushGuestProperty">
2899 <desc>
2900 Update a single guest property in IMachine.
2901 </desc>
2902 <param name="name" type="wstring" dir="in">
2903 <desc>
2904 The name of the property to be updated.
2905 </desc>
2906 </param>
2907 <param name="value" type="wstring" dir="in">
2908 <desc>
2909 The value of the property.
2910 </desc>
2911 </param>
2912 <param name="timestamp" type="unsigned long long" dir="in">
2913 <desc>
2914 The timestamp of the property.
2915 </desc>
2916 </param>
2917 <param name="flags" type="wstring" dir="in">
2918 <desc>
2919 The flags of the property.
2920 </desc>
2921 </param>
2922 </method>
2923 </interface>
2924
2925 <interface
2926 name="IBIOSSettings" extends="$unknown"
2927 uuid="38b54279-dc35-4f5e-a431-835b867c6b5e"
2928 wsmap="managed"
2929 >
2930 <desc>
2931 The IBIOSSettings interface represents BIOS settings of the virtual
2932 machine. This is used only in the <link to="IMachine::BIOSSettings" /> attribute.
2933 </desc>
2934 <attribute name="logoFadeIn" type="boolean">
2935 <desc>Fade in flag for BIOS logo animation.</desc>
2936 </attribute>
2937
2938 <attribute name="logoFadeOut" type="boolean">
2939 <desc>Fade out flag for BIOS logo animation.</desc>
2940 </attribute>
2941
2942 <attribute name="logoDisplayTime" type="unsigned long">
2943 <desc>BIOS logo display time in milliseconds (0 = default).</desc>
2944 </attribute>
2945
2946 <attribute name="logoImagePath" type="wstring">
2947 <desc>Local file system path for external BIOS image.</desc>
2948 </attribute>
2949
2950 <attribute name="bootMenuMode" type="BIOSBootMenuMode">
2951 <desc>Mode of the BIOS boot device menu.</desc>
2952 </attribute>
2953
2954 <attribute name="ACPIEnabled" type="boolean">
2955 <desc>ACPI support flag.</desc>
2956 </attribute>
2957
2958 <attribute name="IOAPICEnabled" type="boolean">
2959 <desc>
2960 IO APIC support flag. If set, VirtualBox will provide an IO APIC
2961 and support IRQs above 15.
2962 </desc>
2963 </attribute>
2964
2965 <attribute name="timeOffset" type="long long">
2966 <desc>
2967 Offset in milliseconds from the host system time. This allows for
2968 guests running with a different system date/time than the host.
2969 It is equivalent to setting the system date/time in the BIOS other
2970 than it's not an absolute value but a relative one. Guest Additions
2971 time synchronization also honors this offset.
2972 </desc>
2973 </attribute>
2974
2975 <attribute name="PXEDebugEnabled" type="boolean">
2976 <desc>
2977 PXE debug logging flag. If set, VirtualBox will write extensive
2978 PXE trace information to the release log.
2979 </desc>
2980 </attribute>
2981
2982 <attribute name="IDEControllerType" type="IDEControllerType">
2983 <desc>
2984 Type of the virtual IDE controller. Depending on this value,
2985 VirtualBox will provide different virtual IDE hardware
2986 devices to the guest.
2987 </desc>
2988 </attribute>
2989
2990 </interface>
2991
2992 <interface
2993 name="IMachine" extends="$unknown"
2994 uuid="a744b229-3457-422f-8550-649c40346c55"
2995 wsmap="managed"
2996 >
2997 <desc>
2998 The IMachine interface represents a virtual machine, or guest, created
2999 in VirtualBox.
3000
3001 This interface is used in two contexts. First of all, a collection of
3002 objects implementing this interface is stored in the
3003 <link to="IVirtualBox::machines2"/> attribute which lists all the virtual
3004 machines that are currently registered with this VirtualBox
3005 installation. Also, once a session has been opened for the given virtual
3006 machine (e.g. the virtual machine is running), the machine object
3007 associated with the open session can be queried from the session object;
3008 see <link to="ISession"/> for details.
3009
3010 The main role of this interface is to expose the settings of the virtual
3011 machine and provide methods to change various aspects of the virtual
3012 machine's configuration. For machine objects stored in the
3013 <link to="IVirtualBox::machines2"/> collection, all attributes are
3014 read-only unless explicitly stated otherwise in individual attribute
3015 and method descriptions. In order to change a machine setting, a session
3016 for this machine must be opened using one of
3017 <link to="IVirtualBox::openSession"/>,
3018 <link to="IVirtualBox::openRemoteSession"/> or
3019 <link to="IVirtualBox::openExistingSession"/> methods. After the
3020 session has been successfully opened, a mutable machine object needs to
3021 be queried from the session object and then the desired settings changes
3022 can be applied to the returned object using IMachine attributes and
3023 methods. See the ISession interface description for more information
3024 about sessions.
3025
3026 Note that the IMachine interface does not provide methods to control
3027 virtual machine execution (such as start the machine, or power it
3028 down) -- these methods are grouped in a separate IConsole
3029 interface. Refer to the IConsole interface description to get more
3030 information about this topic.
3031
3032 <see>ISession, IConsole</see>
3033 </desc>
3034
3035 <attribute name="parent" type="IVirtualBox" readonly="yes">
3036 <desc>Associated parent object.</desc>
3037 </attribute>
3038
3039 <attribute name="accessible" type="boolean" readonly="yes">
3040 <desc>
3041 Whether this virtual machine is currently accessible or not.
3042
3043 The machine is considered to be inaccessible when:
3044 <ul>
3045 <li>It is a registered virtual machine, and
3046 </li>
3047 <li>Its settings file is inaccessible (for example, it is
3048 located on a network share that is not accessible during
3049 VirtualBox startup, or becomes inaccessible later, or if
3050 the settings file can be read but is invalid).
3051 </li>
3052 </ul>
3053
3054 Otherwise, the value of this property is always <tt>true</tt>.
3055
3056 Every time this property is read, the accessibility state of
3057 this machine is re-evaluated. If the returned value is |false|,
3058 the <link to="#accessError"/> property may be used to get the
3059 detailed error information describing the reason of
3060 inaccessibility.
3061
3062 When the machine is inaccessible, only the following properties
3063 can be used on it:
3064 <ul>
3065 <li><link to="#parent"/></li>
3066 <li><link to="#id"/></li>
3067 <li><link to="#settingsFilePath"/></li>
3068 <li><link to="#accessible"/></li>
3069 <li><link to="#accessError"/></li>
3070 </ul>
3071
3072 An attempt to access any other property or method will return
3073 an error.
3074
3075 The only possible action you can perform on an inaccessible
3076 machine is to unregister it using the
3077 <link to="IVirtualBox::unregisterMachine"/> call (or, to check
3078 for the accessibility state once more by querying this
3079 property).
3080
3081 <note>
3082 In the current implementation, once this property returns
3083 <tt>true</tt>, the machine will never become inaccessible
3084 later, even if its settings file cannot be successfully
3085 read/written any more (at least, until the VirtualBox
3086 server is restarted). This limitation may be removed in
3087 future releases.
3088 </note>
3089 </desc>
3090 </attribute>
3091
3092 <attribute name="accessError" type="IVirtualBoxErrorInfo" readonly="yes">
3093 <desc>
3094 Error information describing the reason of machine
3095 inaccessibility.
3096
3097 Reading this property is only valid after the last call to
3098 <link to="#accessible"/> returned <tt>false</tt> (i.e. the
3099 machine is currently unaccessible). Otherwise, a null
3100 IVirtualBoxErrorInfo object will be returned.
3101 </desc>
3102 </attribute>
3103
3104 <attribute name="name" type="wstring">
3105 <desc>
3106 Name of the virtual machine.
3107
3108 Besides being used for human-readable identification purposes
3109 everywhere in VirtualBox, the virtual machine name is also used
3110 as a name of the machine's settings file and as a name of the
3111 subdirectory this settings file resides in. Thus, every time you
3112 change the value of this property, the settings file will be
3113 renamed once you call <link to="#saveSettings()"/> to confirm the
3114 change. The containing subdirectory will be also renamed, but
3115 only if it has exactly the same name as the settings file
3116 itself prior to changing this property (for backward compatibility
3117 with previous API releases). The above implies the following
3118 limitations:
3119 <ul>
3120 <li>The machine name cannot be empty.</li>
3121 <li>The machine name can contain only characters that are valid
3122 file name characters according to the rules of the file
3123 system used to store VirtualBox configuration.</li>
3124 <li>You cannot have two or more machines with the same name
3125 if they use the same subdirectory for storing the machine
3126 settings files.</li>
3127 <li>You cannot change the name of the machine if it is running,
3128 or if any file in the directory containing the settings file
3129 is being used by another running machine or by any other
3130 process in the host operating system at a time when
3131 <link to="#saveSettings()"/> is called.
3132 </li>
3133 </ul>
3134 If any of the above limitations are hit, <link to="#saveSettings()"/>
3135 will return an appropriate error message explaining the exact
3136 reason and the changes you made to this machine will not be
3137 saved.
3138 <note>
3139 For "legacy" machines created using the
3140 <link to="IVirtualBox::createLegacyMachine()"/> call,
3141 the above naming limitations do not apply because the
3142 machine name does not affect the settings file name.
3143 The settings file name remains the same as it was specified
3144 during machine creation and never changes.
3145 </note>
3146 </desc>
3147 </attribute>
3148
3149 <attribute name="description" type="wstring">
3150 <desc>
3151 Description of the virtual machine.
3152
3153 The description attribute can contain any text and is
3154 typically used to describe the hardware and software
3155 configuration of the virtual machine in detail (i.e. network
3156 settings, versions of the installed software and so on).
3157 </desc>
3158 </attribute>
3159
3160 <attribute name="id" type="uuid" readonly="yes">
3161 <desc>UUID of the virtual machine.</desc>
3162 </attribute>
3163
3164 <attribute name="OSTypeId" type="wstring">
3165 <desc>
3166 User-defined identifier of the Guest OS type.
3167 You may use <link to="IVirtualBox::getGuestOSType"/> to obtain
3168 an IGuestOSType object representing details about the given
3169 Guest OS type.
3170 <note>
3171 This value may differ from the value returned by
3172 <link to="IGuest::OSTypeId"/> if Guest Additions are
3173 installed to the guest OS.
3174 </note>
3175 </desc>
3176 </attribute>
3177
3178 <attribute name="CPUCount" type="unsigned long">
3179 <desc>Number of virtual CPUs in the VM.</desc>
3180 </attribute>
3181
3182 <attribute name="memorySize" type="unsigned long">
3183 <desc>System memory size in megabytes.</desc>
3184 </attribute>
3185
3186 <attribute name="memoryBalloonSize" type="unsigned long">
3187 <desc>Initial memory balloon size in megabytes.</desc>
3188 </attribute>
3189
3190 <attribute name="statisticsUpdateInterval" type="unsigned long">
3191 <desc>Initial interval to update guest statistics in seconds.</desc>
3192 </attribute>
3193
3194 <attribute name="VRAMSize" type="unsigned long">
3195 <desc>Video memory size in megabytes.</desc>
3196 </attribute>
3197
3198 <attribute name="accelerate3DEnabled" type="boolean" default="false">
3199 <desc>
3200 This setting determines whether VirtualBox allows guests to make use
3201 of the 3D graphics support available on the host. Currently limited
3202 to OpenGL only. </desc>
3203 </attribute>
3204
3205 <attribute name="monitorCount" type="unsigned long">
3206 <desc>
3207 Number of virtual monitors.
3208 <note>
3209 Only effective on Windows XP and later guests with
3210 Guest Additions installed.
3211 </note>
3212 </desc>
3213 </attribute>
3214
3215 <attribute name="BIOSSettings" type="IBIOSSettings" readonly="yes">
3216 <desc>Object containing all BIOS settings.</desc>
3217 </attribute>
3218
3219 <attribute name="HWVirtExEnabled" type="TSBool">
3220 <desc>
3221 This setting determines whether VirtualBox will try to make use of
3222 the host CPU's hardware virtualization extensions such as Intel VT-x
3223 and AMD-V. Note that in case such extensions are not available,
3224 they will not be used.
3225 </desc>
3226 </attribute>
3227
3228 <attribute name="HWVirtExNestedPagingEnabled" type="boolean" default="false">
3229 <desc>
3230 This setting determines whether VirtualBox will try to make use of
3231 the nested paging extension of Intel VT-x and AMD-V. Note that in case
3232 such extensions are not available, they will not be used.
3233 </desc>
3234 </attribute>
3235
3236 <attribute name="HWVirtExVPIDEnabled" type="boolean" default="false">
3237 <desc>
3238 This setting determines whether VirtualBox will try to make use of
3239 the VPID extension of Intel VT-x. Note that in case such extensions are
3240 not available, they will not be used.
3241 </desc>
3242 </attribute>
3243
3244 <attribute name="PAEEnabled" type="boolean" default="false">
3245 <desc>
3246 This setting determines whether VirtualBox will expose the Physical Address
3247 Extension (PAE) feature of the host CPU to the guest. Note that in case PAE
3248 is not available, it will not be reported.
3249 </desc>
3250 </attribute>
3251
3252 <attribute name="snapshotFolder" type="wstring">
3253 <desc>
3254 Full path to the directory used to store snapshot data
3255 (differencing hard disks and saved state files) of this machine.
3256
3257 The initial value of this property is
3258 <tt>&lt;</tt><link to="#settingsFilePath">
3259 path_to_settings_file</link><tt>&gt;/&lt;</tt>
3260 <link to="#id">machine_uuid</link>
3261 <tt>&gt;</tt>.
3262
3263 Currently, it is an error to try to change this property on
3264 a machine that has snapshots (because this would require to
3265 move possibly large files to a different location).
3266 A separate method will be available for this purpose later.
3267
3268 <note>
3269 Setting this property to <tt>null</tt> will restore the
3270 initial value.
3271 </note>
3272 <note>
3273 When setting this property, the specified path can be
3274 absolute (full path) or relative to the directory where the
3275 <link to="#settingsFilePath">machine settings file</link>
3276 is located. When reading this property, a full path is
3277 always returned.
3278 </note>
3279 <note>
3280 The specified path may not exist, it will be created
3281 when necessary.
3282 </note>
3283 </desc>
3284 </attribute>
3285
3286 <attribute name="VRDPServer" type="IVRDPServer" readonly="yes">
3287 <desc>VRDP server object.</desc>
3288 </attribute>
3289
3290 <attribute name="hardDisk2Attachments" type="IHardDisk2Attachment" readonly="yes" safearray="yes">
3291 <desc>Array of hard disks attached to this machine.</desc>
3292 </attribute>
3293
3294 <attribute name="DVDDrive" type="IDVDDrive" readonly="yes">
3295 <desc>Associated DVD drive object.</desc>
3296 </attribute>
3297
3298 <attribute name="floppyDrive" type="IFloppyDrive" readonly="yes">
3299 <desc>Associated floppy drive object.</desc>
3300 </attribute>
3301
3302 <attribute name="USBController" type="IUSBController" readonly="yes">
3303 <desc>
3304 Associated USB controller object.
3305
3306 <note>
3307 This method may set a @ref com_warnings "warning result code".
3308 </note>
3309 <note>
3310 If USB functionality is not available in the given edition of
3311 VirtualBox, this method will set the result code to @c E_NOTIMPL.
3312 </note>
3313 </desc>
3314 </attribute>
3315
3316 <attribute name="audioAdapter" type="IAudioAdapter" readonly="yes">
3317 <desc>Associated audio adapter, always present.</desc>
3318 </attribute>
3319
3320 <attribute name="SATAController" type="ISATAController" readonly="yes">
3321 <desc>
3322 Associated SATA controller object.
3323 </desc>
3324 </attribute>
3325
3326 <attribute name="settingsFilePath" type="wstring" readonly="yes">
3327 <desc>
3328 Full name of the file containing machine settings data.
3329 </desc>
3330 </attribute>
3331
3332 <attribute name="settingsFileVersion" type="wstring" readonly="yes">
3333 <desc>
3334 Current version of the format of the settings file of this machine
3335 (<link to="#settingsFilePath"/>).
3336
3337 The version string has the following format:
3338 <pre>
3339 x.y-platform
3340 </pre>
3341 where <tt>x</tt> and <tt>y</tt> are the major and the minor format
3342 versions, and <tt>platform</tt> is the platform identifier.
3343
3344 The current version usually matches the value of the
3345 <link to="IVirtualBox::settingsFormatVersion"/> attribute unless the
3346 settings file was created by an older version of VirtualBox and there
3347 was a change of the settings file format since then.
3348
3349 Note that VirtualBox automatically converts settings files from older
3350 versions to the most recent version when reading them (usually at
3351 VirtualBox startup) but it doesn't save the changes back until
3352 you call a method that implicitly saves settings (such as
3353 <link to="#setExtraData()"/>) or call <link to="#saveSettings()"/>
3354 explicitly. Therefore, if the value of this attribute differs from the
3355 value of <link to="IVirtualBox::settingsFormatVersion"/>, then it
3356 means that the settings file was converted but the result of the
3357 conversion is not yet saved to disk.
3358
3359 The above feature may be used by interactive front-ends to inform users
3360 about the settings file format change and offer them to explicitly save
3361 all converted settings files (the global and VM-specific ones),
3362 optionally create backup copies of the old settings files before saving,
3363 etc.
3364
3365 <see>IVirtualBox::settingsFormatVersion, saveSettingsWithBackup()</see>
3366 </desc>
3367 </attribute>
3368
3369 <attribute name="settingsModified" type="boolean" readonly="yes">
3370 <desc>
3371 Whether the settings of this machine have been modified
3372 (but neither yet saved nor discarded).
3373 <note>
3374 Reading this property is only valid on instances returned
3375 by <link to="ISession::machine"/> and on new machines
3376 created by <link to="IVirtualBox::createMachine"/> or opened
3377 by <link to="IVirtualBox::openMachine"/> but not
3378 yet registered, or on unregistered machines after calling
3379 <link to="IVirtualBox::unregisterMachine"/>. For all other
3380 cases, the settings can never be modified.
3381 </note>
3382 <note>
3383 For newly created unregistered machines, the value of this
3384 property is always TRUE until <link to="#saveSettings()"/>
3385 is called (no matter if any machine settings have been
3386 changed after the creation or not). For opened machines
3387 the value is set to FALSE (and then follows to normal rules).
3388 </note>
3389 </desc>
3390 </attribute>
3391
3392 <attribute name="sessionState" type="SessionState" readonly="yes">
3393 <desc>Current session state for this machine.</desc>
3394 </attribute>
3395
3396 <attribute name="sessionType" type="wstring" readonly="yes">
3397 <desc>
3398 Type of the session. If <link to="#sessionState"/> is
3399 SessionSpawning or SessionOpen, this attribute contains the
3400 same value as passed to the
3401 <link to="IVirtualBox::openRemoteSession()"/> method in the @a
3402 type parameter. If the session was opened directly using
3403 <link to="IVirtualBox::openSession()"/>, or if
3404 <link to="#sessionState"/> is SessionClosed, the value of this
3405 attribute is @c null.
3406 </desc>
3407 </attribute>
3408
3409 <attribute name="sessionPid" type="unsigned long" readonly="yes">
3410 <desc>
3411 Identifier of the session process. This attribute contains the
3412 platform-dependent identifier of the process that has opened a
3413 direct session for this machine using the
3414 <link to="IVirtualBox::openSession()"/> call. The returned value
3415 is only valid if <link to="#sessionState"/> is SessionOpen or
3416 SessionClosing (i.e. a session is currently open or being
3417 closed) by the time this property is read.
3418 </desc>
3419 </attribute>
3420
3421 <attribute name="state" type="MachineState" readonly="yes">
3422 <desc>Current execution state of this machine.</desc>
3423 </attribute>
3424
3425 <attribute name="lastStateChange" type="long long" readonly="yes">
3426 <desc>
3427 Time stamp of the last execution state change,
3428 in milliseconds since 1970-01-01 UTC.
3429 </desc>
3430 </attribute>
3431
3432 <attribute name="stateFilePath" type="wstring" readonly="yes">
3433 <desc>
3434 Full path to the file that stores the execution state of
3435 the machine when it is in the <link to="MachineState::Saved"/>
3436 state.
3437 <note>
3438 When the machine is not in the Saved state, this attribute
3439 <tt>null</tt>.
3440 </note>
3441 </desc>
3442 </attribute>
3443
3444 <attribute name="logFolder" type="wstring" readonly="yes">
3445 <desc>
3446 Full path to the folder that stores a set of rotated log files
3447 recorded during machine execution. The most recent log file is
3448 named <tt>VBox.log</tt>, the previous log file is
3449 named <tt>VBox.log.1</tt> and so on (up to <tt>VBox.log.3</tt>
3450 in the current version).
3451 </desc>
3452 </attribute>
3453
3454 <attribute name="currentSnapshot" type="ISnapshot" readonly="yes">
3455 <desc>
3456 Current snapshot of this machine.
3457 <note>
3458 A <tt>null</tt> object is returned if the machine doesn't
3459 have snapshots.
3460 </note>
3461 <see><link to="ISnapshot"/></see>
3462 </desc>
3463 </attribute>
3464
3465 <attribute name="snapshotCount" type="unsigned long" readonly="yes">
3466 <desc>
3467 Number of snapshots taken on this machine. Zero means the
3468 machine doesn't have any snapshots.
3469 </desc>
3470 </attribute>
3471
3472 <attribute name="currentStateModified" type="boolean" readonly="yes">
3473 <desc>
3474 Returns <tt>true</tt> if the current state of the machine is not
3475 identical to the state stored in the current snapshot.
3476
3477 The current state is identical to the current snapshot right
3478 after one of the following calls are made:
3479 <ul>
3480 <li><link to="IConsole::discardCurrentState"/> or
3481 <link to="IConsole::discardCurrentSnapshotAndState"/>
3482 </li>
3483 <li><link to="IConsole::takeSnapshot"/> (issued on a
3484 powered off or saved machine, for which
3485 <link to="#settingsModified"/> returns <tt>false</tt>)
3486 </li>
3487 <li><link to="IMachine::setCurrentSnapshot"/>
3488 </li>
3489 </ul>
3490
3491 The current state remains identical until one of the following
3492 happens:
3493 <ul>
3494 <li>settings of the machine are changed</li>
3495 <li>the saved state is discarded</li>
3496 <li>the current snapshot is discarded</li>
3497 <li>an attempt to execute the machine is made</li>
3498 </ul>
3499
3500 <note>
3501 For machines that don't have snapshots, this property is
3502 always <tt>false</tt>.
3503 </note>
3504 </desc>
3505 </attribute>
3506
3507 <attribute name="sharedFolders" type="ISharedFolderCollection" readonly="yes">
3508 <desc>
3509 Collection of shared folders for this machine (permanent shared
3510 folders). These folders are shared automatically at machine startup
3511 and available only to the guest OS installed within this machine.
3512
3513 New shared folders are added to the collection using
3514 <link to="#createSharedFolder"/>. Existing shared folders can be
3515 removed using <link to="#removeSharedFolder"/>.
3516 </desc>
3517 </attribute>
3518
3519 <attribute name="clipboardMode" type="ClipboardMode">
3520 <desc>
3521 Synchronization mode between the host OS clipboard
3522 and the guest OS clipboard.
3523 </desc>
3524 </attribute>
3525
3526 <attribute name="guestPropertyNotificationPatterns" type="wstring">
3527 <desc>
3528 A comma-separated list of simple glob patterns. Changes to guest
3529 properties whose name matches one of the patterns will generate an
3530 <link to="IVirtualBoxCallback::onGuestPropertyChange"/> signal.
3531 </desc>
3532 </attribute>
3533
3534 <method name="setBootOrder">
3535 <desc>
3536 Puts the given device to the specified position in
3537 the boot order.
3538
3539 To indicate that no device is associated with the given position,
3540 <link to="DeviceType::Null"/> should be used.
3541
3542 @todo setHardDiskBootOrder(), setNetworkBootOrder()
3543 </desc>
3544 <param name="position" type="unsigned long" dir="in">
3545 <desc>
3546 Position in the boot order (<tt>1</tt> to the total number of
3547 devices the machine can boot from, as returned by
3548 <link to="ISystemProperties::maxBootPosition"/>).
3549 </desc>
3550 </param>
3551 <param name="device" type="DeviceType" dir="in">
3552 <desc>
3553 The type of the device used to boot at the given position.
3554 </desc>
3555 </param>
3556 </method>
3557
3558 <method name="getBootOrder" const="yes">
3559 <desc>
3560 Returns the device type that occupies the specified
3561 position in the boot order.
3562
3563 @todo [remove?]
3564 If the machine can have more than one device of the returned type
3565 (such as hard disks), then a separate method should be used to
3566 retrieve the individual device that occupies the given position.
3567
3568 If here are no devices at the given position, then
3569 <link to="DeviceType::Null"/> is returned.
3570
3571 @todo getHardDiskBootOrder(), getNetworkBootOrder()
3572 </desc>
3573 <param name="order" type="unsigned long" dir="in">
3574 <desc>
3575 Position in the boot order (<tt>1</tt> to the total number of
3576 devices the machine can boot from, as returned by
3577 <link to="ISystemProperties::maxBootPosition"/>).
3578 </desc>
3579 </param>
3580 <param name="device" type="DeviceType" dir="return">
3581 <desc>
3582 Device at the given position.
3583 </desc>
3584 </param>
3585 </method>
3586
3587 <method name="attachHardDisk2">
3588 <desc>
3589 Attaches a virtual hard disk identified by the given UUID to a device
3590 slot of the specified bus.
3591
3592 For the IDE bus, the @a channel parameter can be either @c 0 or @c 1, to
3593 specify the primary or secondary IDE controller, respectively. The
3594 SATA bus supports 30 channels, so this parameter can be a number in
3595 range from @c 0 to @c 29.
3596
3597 For the primary controller of the IDE bus, the @a device number can be
3598 either @c 0 or @c 1, to specify the master or the slave device,
3599 respectively. For the secondary IDE controller, the device number is
3600 always @c 1 because the master device is reserved for the CD-ROM drive.
3601
3602 For the SATA bus, the @a device parameter is not currently used and
3603 must always be @c 0.
3604
3605 The specified device slot must not have another disk attached to it, or
3606 this method will fail.
3607
3608 See <link to="IHardDisk2"/> for more detailed information about
3609 attaching hard disks.
3610
3611 <note>
3612 You cannot attach a hard disk to a running machine. Also, you cannot
3613 attach a hard disk to a newly created machine until this machine's
3614 settings are saved to disk using <link to="#saveSettings()"/>.
3615 </note>
3616 <note>
3617 If the hard disk is being attached indirectly, a new differencing hard
3618 disk will be implicitly created for it and attached instead. If the
3619 changes made to the machine settings (including this indirect
3620 attachment) are later cancelled using <link to="#discardSettings()"/>,
3621 this implicitly created differencing hard disk will be implicitly
3622 deleted.
3623 </note>
3624 </desc>
3625 <param name="id" type="uuid" dir="in">
3626 <desc>UUID of the hard disk to attach.</desc>
3627 </param>
3628 <param name="bus" type="StorageBus" dir="in">
3629 <desc>Type of the storage bus to use (IDE or SATA).</desc>
3630 </param>
3631 <param name="channel" type="long" dir="in">
3632 <desc>Channel to attach the hard disk to.</desc>
3633 </param>
3634 <param name="device" type="long" dir="in">
3635 <desc>
3636 Device slot in the given channel to attach the hard disk to.
3637 </desc>
3638 </param>
3639 </method>
3640
3641 <method name="getHardDisk2" const="yes">
3642 <desc>
3643 Returns the virtual hard disk attached to a device slot of the specified
3644 bus.
3645
3646 Note that if the hard disk was indirectly attached by
3647 <link to="#attachHardDisk2()"/> to the given device slot then this
3648 method will return not the same object as passed to the
3649 <link to="#attachHardDisk2()"/> call. See <link to="IHardDisk2"/> for
3650 more detailed information about attaching hard disks.
3651 </desc>
3652 <param name="bus" type="StorageBus" dir="in">
3653 <desc>Type of the storage bus to query (IDE or SATA).</desc>
3654 </param>
3655 <param name="channel" type="long" dir="in">
3656 <desc>Channel to query.</desc>
3657 </param>
3658 <param name="device" type="long" dir="in">
3659 <desc>Device slot in the given channel to query.</desc>
3660 </param>
3661 <param name="hardDisk" type="IHardDisk2" dir="return">
3662 <desc>Attached hard disk object.</desc>
3663 </param>
3664 </method>
3665
3666 <method name="detachHardDisk2">
3667 <desc>
3668 Detaches the virtual hard disk attached to a device slot of the
3669 specified bus.
3670
3671 Detaching the hard disk from the virtual machine is deferred. This means
3672 that the hard disk remains associated with the machine when this method
3673 returns and gets actually de-associated only after a successful
3674 <link to="#saveSettings()"/> call. See <link to="IHardDisk2"/>
3675 for more detailed information about attaching hard disks.
3676
3677 <note>
3678 You cannot detach the hard disk from a running machine.
3679 </note>
3680 <note>
3681 Detaching differencing hard disks implicitly created by <link
3682 to="#attachHardDisk2()"/> for the indirect attachment using this
3683 method will <b>not</b> implicitly delete them. The
3684 <link to="IHardDisk2::deleteStorage()"/> operation should be
3685 explicitly performed by the caller after the hard disk is successfully
3686 detached and the settings are saved with
3687 <link to="#saveSettings()"/>, if it is the desired action.
3688 </note>
3689
3690 </desc>
3691 <param name="bus" type="StorageBus" dir="in">
3692 <desc>Bus to detach the hard disk from.</desc>
3693 </param>
3694 <param name="channel" type="long" dir="in">
3695 <desc>Channel number to detach the hard disk from.</desc>
3696 </param>
3697 <param name="device" type="long" dir="in">
3698 <desc>Device slot number to detach the hard disk from.</desc>
3699 </param>
3700 </method>
3701
3702 <method name="getNetworkAdapter" const="yes">
3703 <desc>
3704 Returns the network adapter associated with the given slot.
3705 Slots are numbered sequentially, starting with zero. The total
3706 number of adapters per every machine is defined by the
3707 <link to="ISystemProperties::networkAdapterCount"/> property,
3708 so the maximum slot number is one less than that property's value.
3709 </desc>
3710 <param name="slot" type="unsigned long" dir="in"/>
3711 <param name="adapter" type="INetworkAdapter" dir="return"/>
3712 </method>
3713
3714 <method name="getSerialPort" const="yes">
3715 <desc>
3716 Returns the serial port associated with the given slot.
3717 Slots are numbered sequentially, starting with zero. The total
3718 number of serial ports per every machine is defined by the
3719 <link to="ISystemProperties::serialPortCount"/> property,
3720 so the maximum slot number is one less than that property's value.
3721 </desc>
3722 <param name="slot" type="unsigned long" dir="in"/>
3723 <param name="port" type="ISerialPort" dir="return"/>
3724 </method>
3725
3726 <method name="getParallelPort" const="yes">
3727 <desc>
3728 Returns the parallel port associated with the given slot.
3729 Slots are numbered sequentially, starting with zero. The total
3730 number of parallel ports per every machine is defined by the
3731 <link to="ISystemProperties::parallelPortCount"/> property,
3732 so the maximum slot number is one less than that property's value.
3733 </desc>
3734 <param name="slot" type="unsigned long" dir="in"/>
3735 <param name="port" type="IParallelPort" dir="return"/>
3736 </method>
3737
3738 <method name="getNextExtraDataKey">
3739 <desc>
3740 Returns the machine-specific extra data key name following the
3741 supplied key.
3742
3743 An error is returned if the supplied @a key does not exist. @c NULL is
3744 returned in @a nextKey if the supplied key is the last key. When
3745 supplying @c NULL for the @a key, the first key item is returned in @a
3746 nextKey (if there is any). @a nextValue is an optional parameter and
3747 if supplied, the next key's value is returned in it.
3748 </desc>
3749 <param name="key" type="wstring" dir="in">
3750 <desc>Name of the data key to follow.</desc>
3751 </param>
3752 <param name="nextKey" type="wstring" dir="out">
3753 <desc>Name of the next data key.</desc>
3754 </param>
3755 <param name="nextValue" type="wstring" dir="out">
3756 <desc>Value of the next data key.</desc>
3757 </param>
3758 </method>
3759
3760 <method name="getExtraData">
3761 <desc>
3762 Returns associated machine-specific extra data.
3763
3764 If the requested data @a key does not exist, this function will
3765 succeed and return @c NULL in the @a value argument.
3766 </desc>
3767 <param name="key" type="wstring" dir="in">
3768 <desc>Name of the data key to get.</desc>
3769 </param>
3770 <param name="value" type="wstring" dir="return">
3771 <desc>Value of the requested data key.</desc>
3772 </param>
3773 </method>
3774
3775 <method name="setExtraData">
3776 <desc>
3777 Sets associated machine-specific extra data.
3778
3779 If you pass @c NULL as a key @a value, the given @a key will be
3780 deleted.
3781
3782 <note>
3783 Before performing the actual data change, this method will ask all
3784 registered callbacks using the
3785 <link to="IVirtualBoxCallback::onExtraDataCanChange()"/>
3786 notification for a permission. If one of the callbacks refuses the
3787 new value, the change will not be performed.
3788 </note>
3789 <note>
3790 On success, the
3791 <link to="IVirtualBoxCallback::onExtraDataChange()"/> notification
3792 is called to inform all registered callbacks about a successful data
3793 change.
3794 </note>
3795 <note>
3796 This method can be called outside the machine session and therefore
3797 it's a caller's responsibility to handle possible race conditions
3798 when several clients change the same key at the same time.
3799 </note>
3800 </desc>
3801 <param name="key" type="wstring" dir="in">
3802 <desc>Name of the data key to set.</desc>
3803 </param>
3804 <param name="value" type="wstring" dir="in">
3805 <desc>Value to assign to the key.</desc>
3806 </param>
3807 </method>
3808
3809 <method name="saveSettings">
3810 <desc>
3811 Saves any changes to machine settings made since the session
3812 has been opened or a new machine has been created, or since the
3813 last call to <link to="#saveSettings()"/> or <link to="#discardSettings()"/>.
3814 For registered machines, new settings become visible to all
3815 other VirtualBox clients after successful invocation of this
3816 method.
3817 <note>
3818 The method sends <link to="IVirtualBoxCallback::onMachineDataChange()"/>
3819 notification event after the configuration has been successfully
3820 saved (only for registered machines).
3821 </note>
3822 <note>
3823 Calling this method is only valid on instances returned
3824 by <link to="ISession::machine"/> and on new machines
3825 created by <link to="IVirtualBox::createMachine"/> but not
3826 yet registered, or on unregistered machines after calling
3827 <link to="IVirtualBox::unregisterMachine"/>.
3828 </note>
3829 </desc>
3830 </method>
3831
3832 <method name="saveSettingsWithBackup">
3833 <desc>
3834 Creates a backup copy of the machine settings file (<link
3835 to="#settingsFilePath"/>) in case of auto-conversion, and then calls
3836 <link to="#saveSettings()"/>.
3837
3838 Note that the backup copy is created <b>only</b> if the settings file
3839 auto-conversion took place (see <link to="#settingsFileVersion"/> for
3840 details). Otherwise, this call is fully equivalent to
3841 <link to="#saveSettings()"/> and no backup copying is done.
3842
3843 The backup copy is created in the same directory where the original
3844 settings file is located. It is given the following file name:
3845 <pre>
3846 original.xml.x.y-platform.bak
3847 </pre>
3848 where <tt>original.xml</tt> is the original settings file name
3849 (excluding path), and <tt>x.y-platform</tt> is the version of the old
3850 format of the settings file (before auto-conversion).
3851
3852 If the given backup file already exists, this method will try to add the
3853 <tt>.N</tt> suffix to the backup file name (where <tt>N</tt> counts from
3854 0 to 9) and copy it again until it succeeds. If all suffixes are
3855 occupied, or if any other copy error occurs, this method will return a
3856 failure.
3857
3858 If the copy operation succeeds, the @a bakFileName return argument will
3859 receive a full path to the created backup file (for informational
3860 purposes). Note that this will happen even if the subsequent
3861 <link to="#saveSettings()"/> call performed by this method after the
3862 copy operation, fails.
3863
3864 <note>
3865 The VirtualBox API never calls this method. It is intended purely for
3866 the purposes of creating backup copies of the settings files by
3867 front-ends before saving the results of the automatically performed
3868 settings conversion to disk.
3869 </note>
3870
3871 <see>settingsFileVersion</see>
3872 </desc>
3873 <param name="bakFileName" type="wstring" dir="return">
3874 <desc>Full path to the created backup copy.</desc>
3875 </param>
3876 </method>
3877
3878 <method name="discardSettings">
3879 <desc>
3880 Discards any changes to the machine settings made since the session
3881 has been opened or since the last call to <link to="#saveSettings()"/>
3882 or <link to="#discardSettings"/>.
3883 <note>
3884 Calling this method is only valid on instances returned
3885 by <link to="ISession::machine"/> and on new machines
3886 created by <link to="IVirtualBox::createMachine"/> or
3887 opened by <link to="IVirtualBox::openMachine"/> but not
3888 yet registered, or on unregistered machines after calling
3889 <link to="IVirtualBox::unregisterMachine"/>.
3890 </note>
3891 </desc>
3892 </method>
3893
3894 <method name="deleteSettings">
3895 <desc>
3896 Deletes the settings file of this machine from disk.
3897 The machine must not be registered in order for this operation
3898 to succeed.
3899 <note>
3900 <link to="#settingsModified"/> will return TRUE after this
3901 method successfully returns.
3902 </note>
3903 <note>
3904 Calling this method is only valid on instances returned
3905 by <link to="ISession::machine"/> and on new machines
3906 created by <link to="IVirtualBox::createMachine"/> or
3907 opened by <link to="IVirtualBox::openMachine"/> but not
3908 yet registered, or on unregistered machines after calling
3909 <link to="IVirtualBox::unregisterMachine"/>.
3910 </note>
3911 <note>
3912 The deleted machine settings file can be restored (saved again)
3913 by calling <link to="#saveSettings()"/>.
3914 </note>
3915 </desc>
3916 </method>
3917
3918 <method name="getSnapshot">
3919 <desc>
3920 Returns a snapshot of this machine with the given UUID.
3921 A <tt>null</tt> UUID can be used to obtain the first snapshot
3922 taken on this machine. This is useful if you want to traverse
3923 the whole tree of snapshots starting from the root.
3924 </desc>
3925 <param name="id" type="uuid" dir="in">
3926 <desc>UUID of the snapshot to get</desc>
3927 </param>
3928 <param name="snapshot" type="ISnapshot" dir="return">
3929 <desc>Snapshot object with the given UUID.</desc>
3930 </param>
3931 </method>
3932
3933 <method name="findSnapshot">
3934 <desc>
3935 Returns a snapshot of this machine with the given name.
3936 </desc>
3937 <param name="name" type="wstring" dir="in">
3938 <desc>Name of the snapshot to find</desc>
3939 </param>
3940 <param name="snapshot" type="ISnapshot" dir="return">
3941 <desc>Snapshot object with the given name.</desc>
3942 </param>
3943 </method>
3944
3945 <method name="setCurrentSnapshot">
3946 <desc>
3947 Sets the current snapshot of this machine.
3948 <note>
3949 In the current implementation, this operation is not
3950 implemented.
3951 </note>
3952 </desc>
3953 <param name="id" type="uuid" dir="in">
3954 <desc>UUID of the snapshot to set as the current snapshot.</desc>
3955 </param>
3956 </method>
3957
3958 <method name="createSharedFolder">
3959 <desc>
3960 Creates a new permanent shared folder by associating the given logical
3961 name with the given host path, adds it to the collection of shared
3962 folders and starts sharing it. Refer to the description of
3963 <link to="ISharedFolder"/> to read more about logical names.
3964 </desc>
3965 <param name="name" type="wstring" dir="in">
3966 <desc>Unique logical name of the shared folder.</desc>
3967 </param>
3968 <param name="hostPath" type="wstring" dir="in">
3969 <desc>Full path to the shared folder in the host file system.</desc>
3970 </param>
3971 <param name="writable" type="boolean" dir="in">
3972 <desc>Whether the share is writable or readonly</desc>
3973 </param>
3974 </method>
3975
3976 <method name="removeSharedFolder">
3977 <desc>
3978 Removes the permanent shared folder with the given name previously
3979 created by <link to="#createSharedFolder"/> from the collection of
3980 shared folders and stops sharing it.
3981 </desc>
3982 <param name="name" type="wstring" dir="in">
3983 <desc>Logical name of the shared folder to remove.</desc>
3984 </param>
3985 </method>
3986
3987 <method name="canShowConsoleWindow">
3988 <desc>
3989 Returns @c true if the VM console process can activate the
3990 console window and bring it to foreground on the desktop of
3991 the host PC.
3992 <note>
3993 This method will fail if a session for this machine is not
3994 currently open.
3995 </note>
3996 </desc>
3997 <param name="canShow" type="boolean" dir="return">
3998 <desc>
3999 @c true if the console window can be shown and @c
4000 false otherwise.
4001 </desc>
4002 </param>
4003 </method>
4004
4005 <method name="showConsoleWindow">
4006 <desc>
4007 Activates the console window and brings it to foreground on
4008 the desktop of the host PC. Many modern window managers on
4009 many platforms implement some sort of focus stealing
4010 prevention logic, so that it may be impossible to activate
4011 a window without the help of the currently active
4012 application. In this case, this method will return a non-zero
4013 identifier that represents the top-level window of the VM
4014 console process. The caller, if it represents a currently
4015 active process, is responsible to use this identifier (in a
4016 platform-dependent manner) to perform actual window
4017 activation.
4018 <note>
4019 This method will fail if a session for this machine is not
4020 currently open.
4021 </note>
4022 </desc>
4023 <param name="winId" type="unsigned long long" dir="return">
4024 <desc>
4025 Platform-dependent identifier of the top-level VM console
4026 window, or zero if this method has performed all actions
4027 necessary to implement the <i>show window</i> semantics for
4028 the given platform and/or VirtualBox front-end.
4029 </desc>
4030 </param>
4031 </method>
4032
4033 <method name="getGuestProperty">
4034 <desc>
4035 Reads an entry from the machine's guest property store.
4036 </desc>
4037 <param name="name" type="wstring" dir="in">
4038 <desc>
4039 The name of the property to read.
4040 </desc>
4041 </param>
4042 <param name="value" type="wstring" dir="out">
4043 <desc>
4044 The value of the property. If the property does not exist then this
4045 will be empty.
4046 </desc>
4047 </param>
4048 <param name="timestamp" type="unsigned long long" dir="out">
4049 <desc>
4050 The time at which the property was last modified, as seen by the
4051 server process.
4052 </desc>
4053 </param>
4054 <param name="flags" type="wstring" dir="out">
4055 <desc>
4056 Additional property parameters, passed as a comma-separated list of
4057 "name=value" type entries.
4058 </desc>
4059 </param>
4060 </method>
4061
4062 <method name="getGuestPropertyValue">
4063 <desc>
4064 Reads a value from the machine's guest property store.
4065 </desc>
4066 <param name="property" type="wstring" dir="in">
4067 <desc>
4068 The name of the property to read.
4069 </desc>
4070 </param>
4071 <param name="value" type="wstring" dir="return">
4072 <desc>
4073 The value of the property. If the property does not exist then this
4074 will be empty.
4075 </desc>
4076 </param>
4077 </method>
4078
4079 <method name="getGuestPropertyTimestamp">
4080 <desc>
4081 Reads a property timestamp from the machine's guest property store.
4082 </desc>
4083 <param name="property" type="wstring" dir="in">
4084 <desc>
4085 The name of the property to read.
4086 </desc>
4087 </param>
4088 <param name="value" type="unsigned long long" dir="return">
4089 <desc>
4090 The timestamp. If the property does not exist then this will be
4091 empty.
4092 </desc>
4093 </param>
4094 </method>
4095
4096 <method name="setGuestProperty">
4097 <desc>
4098 Sets, changes or deletes an entry in the machine's guest property
4099 store.
4100 </desc>
4101 <param name="property" type="wstring" dir="in">
4102 <desc>
4103 The name of the property to set, change or delete.
4104 </desc>
4105 </param>
4106 <param name="value" type="wstring" dir="in">
4107 <desc>
4108 The new value of the property to set, change or delete. If the
4109 property does not yet exist and value is non-empty, it will be
4110 created. If the value is empty, the key will be deleted if it
4111 exists.
4112 </desc>
4113 </param>
4114 <param name="flags" type="wstring" dir="in">
4115 <desc>
4116 Additional property parameters, passed as a comma-separated list of
4117 "name=value" type entries.
4118 </desc>
4119 </param>
4120 </method>
4121
4122 <method name="setGuestPropertyValue">
4123 <desc>
4124 Sets, changes or deletes a value in the machine's guest property
4125 store. The flags field will be left unchanged or created empty for a
4126 new property.
4127 </desc>
4128 <param name="property" type="wstring" dir="in">
4129 <desc>
4130 The name of the property to set, change or delete.
4131 </desc>
4132 </param>
4133 <param name="value" type="wstring" dir="in">
4134 <desc>
4135 The new value of the property to set, change or delete. If the
4136 property does not yet exist and value is non-empty, it will be
4137 created. If value is empty, the property will be deleted if it
4138 exists.
4139 </desc>
4140 </param>
4141 </method>
4142
4143 <method name="enumerateGuestProperties">
4144 <desc>
4145 Return a list of the guest properties matching a set of patterns along
4146 with their values, time stamps and flags.
4147 </desc>
4148 <param name="patterns" type="wstring" dir="in">
4149 <desc>
4150 The patterns to match the properties against, separated by '|'
4151 characters. If this is empty or NULL, all properties will match.
4152 </desc>
4153 </param>
4154 <param name="name" type="wstring" dir="out" safearray="yes">
4155 <desc>
4156 The names of the properties returned.
4157 </desc>
4158 </param>
4159 <param name="value" type="wstring" dir="out" safearray="yes">
4160 <desc>
4161 The values of the properties returned. The array entries match the
4162 corresponding entries in the @a name array.
4163 </desc>
4164 </param>
4165 <param name="timestamp" type="unsigned long long" dir="out" safearray="yes">
4166 <desc>
4167 The time stamps of the properties returned. The array entries match
4168 the corresponding entries in the @a name array.
4169 </desc>
4170 </param>
4171 <param name="flags" type="wstring" dir="out" safearray="yes">
4172 <desc>
4173 The flags of the properties returned. The array entries match the
4174 corresponding entries in the @a name array.
4175 </desc>
4176 </param>
4177 </method>
4178</interface>
4179
4180 <!--
4181 // IConsole
4182 /////////////////////////////////////////////////////////////////////////
4183 -->
4184
4185 <interface
4186 name="IConsoleCallback" extends="$unknown"
4187 uuid="13dfbef3-b74d-487d-bada-2304529aefa6"
4188 wsmap="suppress"
4189 >
4190
4191 <method name="onMousePointerShapeChange">
4192 <desc>
4193 Notification when the guest mouse pointer shape has
4194 changed. The new shape data is given.
4195 </desc>
4196 <param name="visible" type="boolean" dir="in">
4197 <desc>
4198 Flag whether the pointer is visible.
4199 </desc>
4200 </param>
4201 <param name="alpha" type="boolean" dir="in">
4202 <desc>
4203 Flag whether the pointer has an alpha channel.
4204 </desc>
4205 </param>
4206 <param name="xHot" type="unsigned long" dir="in">
4207 <desc>
4208 The pointer hot spot x coordinate.
4209 </desc>
4210 </param>
4211 <param name="yHot" type="unsigned long" dir="in">
4212 <desc>
4213 The pointer hot spot y coordinate.
4214 </desc>
4215 </param>
4216 <param name="width" type="unsigned long" dir="in">
4217 <desc>
4218 Width of the pointer shape in pixels.
4219 </desc>
4220 </param>
4221 <param name="height" type="unsigned long" dir="in">
4222 <desc>
4223 Height of the pointer shape in pixels.
4224 </desc>
4225 </param>
4226 <param name="shape" type="octet" mod="ptr" dir="in">
4227 <desc>
4228 Address of the shape buffer.
4229
4230 The buffer contains 1 bpp (bits per pixel) AND mask followed by 32 bpp XOR (color) mask.
4231
4232 For pointers without alpha channel the XOR mask pixels are 32 bit values: (lsb)BGR0(msb).
4233 For pointers with alpha channel the XOR mask consists of (lsb)BGRA(msb) 32 bit values.
4234
4235 AND mask presents for pointers with alpha channel, so if the callback does not
4236 support alpha, the pointer could be displayed as a normal color pointer.
4237
4238 The AND mask is 1 bpp bitmap with byte aligned scanlines. Size of AND mask,
4239 therefore, is <tt>cbAnd = (width + 7) / 8 * height</tt>. The padding bits at the
4240 end of any scanline are undefined.
4241
4242 The XOR mask follows the AND mask on the next 4 bytes aligned offset:
4243 <tt>uint8_t *pXor = pAnd + (cbAnd + 3) &amp; ~3</tt>
4244 Bytes in the gap between the AND and the XOR mask are undefined.
4245 XOR mask scanlines have no gap between them and size of XOR mask is:
4246 <tt>cXor = width * 4 * height</tt>.
4247
4248 <note>
4249 If 'shape' is equal to 0, only pointer visibility is being changed.
4250 </note>
4251 </desc>
4252 </param>
4253 </method>
4254
4255 <method name="onMouseCapabilityChange">
4256 <desc>
4257 Notification when the mouse capabilities reported by the
4258 guest have changed. The new capabilities are passed.
4259 </desc>
4260 <param name="supportsAbsolute" type="boolean" dir="in"/>
4261 <param name="needsHostCursor" type="boolean" dir="in"/>
4262 </method>
4263
4264 <method name="onKeyboardLedsChange">
4265 <desc>
4266 Notification when the guest OS executes the KBD_CMD_SET_LEDS command
4267 to alter the state of the keyboard LEDs.
4268 </desc>
4269 <param name="numLock" type="boolean" dir="in"/>
4270 <param name="capsLock" type="boolean" dir="in"/>
4271 <param name="scrollLock" type="boolean" dir="in"/>
4272 </method>
4273
4274 <method name="onStateChange">
4275 <desc>
4276 Notification when the execution state of the machine has changed.
4277 The new state will be given.
4278 </desc>
4279 <param name="state" type="MachineState" dir="in"/>
4280 </method>
4281
4282 <method name="onAdditionsStateChange">
4283 <desc>
4284 Notification when a Guest Additions property changes.
4285 Interested callees should query IGuest attributes to
4286 find out what has changed.
4287 </desc>
4288 </method>
4289
4290 <method name="onDVDDriveChange">
4291 <desc>
4292 Notification when a property of the
4293 virtual <link to="IMachine::DVDDrive">DVD drive</link> changes.
4294 Interested callees should use IDVDDrive methods to find out what has
4295 changed.
4296 </desc>
4297 </method>
4298
4299 <method name="onFloppyDriveChange">
4300 <desc>
4301 Notification when a property of the
4302 virtual <link to="IMachine::floppyDrive">floppy drive</link> changes.
4303 Interested callees should use IFloppyDrive methods to find out what
4304 has changed.
4305 </desc>
4306 </method>
4307
4308 <method name="onNetworkAdapterChange">
4309 <desc>
4310 Notification when a property of one of the
4311 virtual <link to="IMachine::getNetworkAdapter">network adapters</link>
4312 changes. Interested callees should use INetworkAdapter methods and
4313 attributes to find out what has changed.
4314 </desc>
4315 <param name="networkAdapter" type="INetworkAdapter" dir="in">
4316 <desc>Network adapter that is subject to change.</desc>
4317 </param>
4318 </method>
4319
4320 <method name="onSerialPortChange">
4321 <desc>
4322 Notification when a property of one of the
4323 virtual <link to="IMachine::getSerialPort">serial ports</link> changes.
4324 Interested callees should use ISerialPort methods and attributes
4325 to find out what has changed.
4326 </desc>
4327 <param name="serialPort" type="ISerialPort" dir="in">
4328 <desc>Serial port that is subject to change.</desc>
4329 </param>
4330 </method>
4331
4332 <method name="onParallelPortChange">
4333 <desc>
4334 Notification when a property of one of the
4335 virtual <link to="IMachine::getParallelPort">parallel ports</link>
4336 changes. Interested callees should use ISerialPort methods and
4337 attributes to find out what has changed.
4338 </desc>
4339 <param name="parallelPort" type="IParallelPort" dir="in">
4340 <desc>Parallel port that is subject to change.</desc>
4341 </param>
4342 </method>
4343
4344 <method name="onVRDPServerChange">
4345 <desc>
4346 Notification when a property of the
4347 <link to="IMachine::VRDPServer">VRDP server</link> changes.
4348 Interested callees should use IVRDPServer methods and attributes to
4349 find out what has changed.
4350 </desc>
4351 </method>
4352
4353 <method name="onUSBControllerChange">
4354 <desc>
4355 Notification when a property of the virtual
4356 <link to="IMachine::USBController">USB controller</link> changes.
4357 Interested callees should use IUSBController methods and attributes to
4358 find out what has changed.
4359 </desc>
4360 </method>
4361
4362 <method name="onUSBDeviceStateChange">
4363 <desc>
4364 Notification when a USB device is attached to or detached from
4365 the virtual USB controller.
4366
4367 This notification is sent as a result of the indirect
4368 request to attach the device because it matches one of the
4369 machine USB filters, or as a result of the direct request
4370 issued by <link to="IConsole::attachUSBDevice"/> or
4371 <link to="IConsole::detachUSBDevice"/>.
4372
4373 This notification is sent in case of both a succeeded and a
4374 failed request completion. When the request succeeds, the @a
4375 error parameter is @c null, and the given device has been
4376 already added to (when @a attached is @c true) or removed from
4377 (when @a attached is @c false) the collection represented by
4378 <link to="IConsole::USBDevices"/>. On failure, the collection
4379 doesn't change and the @a error parameter represents the error
4380 message describing the failure.
4381
4382 </desc>
4383 <param name="device" type="IUSBDevice" dir="in">
4384 <desc>Device that is subject to state change.</desc>
4385 </param>
4386 <param name="attached" type="boolean" dir="in">
4387 <desc>
4388 <tt>true</tt> if the device was attached
4389 and <tt>false</tt> otherwise.
4390 </desc>
4391 </param>
4392 <param name="error" type="IVirtualBoxErrorInfo" dir="in">
4393 <desc>
4394 <tt>null</tt> on success or an error message object on
4395 failure.
4396 </desc>
4397 </param>
4398 </method>
4399
4400 <method name="onSharedFolderChange">
4401 <desc>
4402 Notification when a shared folder is added or removed.
4403 The @a scope argument defines one of three scopes:
4404 <link to="IVirtualBox::sharedFolders">global shared folders</link>
4405 (<link to="Scope::Global">Global</link>),
4406 <link to="IMachine::sharedFolders">permanent shared folders</link> of
4407 the machine (<link to="Scope::Machine">Machine</link>) or <link
4408 to="IConsole::sharedFolders">transient shared folders</link> of the
4409 machine (<link to="Scope::Session">Session</link>). Interested callees
4410 should use query the corresponding collections to find out what has
4411 changed.
4412 </desc>
4413 <param name="scope" type="Scope" dir="in">
4414 <desc>Scope of the notification.</desc>
4415 </param>
4416 </method>
4417
4418 <method name="onRuntimeError">
4419 <desc>
4420 Notification when an error happens during the virtual
4421 machine execution.
4422
4423 There are three kinds of runtime errors:
4424 <ul>
4425 <li><i>fatal</i></li>
4426 <li><i>non-fatal with retry</i></li>
4427 <li><i>non-fatal warnings</i></li>
4428 </ul>
4429
4430 <b>Fatal</b> errors are indicated by the @a fatal parameter set
4431 to <tt>true</tt>. In case of fatal errors, the virtual machine
4432 execution is always paused before calling this notification, and
4433 the notification handler is supposed either to immediately save
4434 the virtual machine state using <link to="IConsole::saveState()"/>
4435 or power it off using <link to="IConsole::powerDown()"/>.
4436 Resuming the execution can lead to unpredictable results.
4437
4438 <b>Non-fatal</b> errors and warnings are indicated by the
4439 @a fatal parameter set to <tt>false</tt>. If the virtual machine
4440 is in the Paused state by the time the error notification is
4441 received, it means that the user can <i>try to resume</i> the machine
4442 execution after attempting to solve the problem that caused the
4443 error. In this case, the notification handler is supposed
4444 to show an appropriate message to the user (depending on the
4445 value of the @a id parameter) that offers several actions such
4446 as <i>Retry</i>, <i>Save</i> or <i>Power Off</i>. If the user
4447 wants to retry, the notification handler should continue
4448 the machine execution using the <link to="IConsole::resume()"/>
4449 call. If the machine execution is not Paused during this
4450 notification, then it means this notification is a <i>warning</i>
4451 (for example, about a fatal condition that can happen very soon);
4452 no immediate action is required from the user, the machine
4453 continues its normal execution.
4454
4455 Note that in either case the notification handler
4456 <b>must not</b> perform any action directly on a thread
4457 where this notification is called. Everything it is allowed to
4458 do is to post a message to another thread that will then talk
4459 to the user and take the corresponding action.
4460
4461 Currently, the following error identifiers are known:
4462 <ul>
4463 <li><tt>"HostMemoryLow"</tt></li>
4464 <li><tt>"HostAudioNotResponding"</tt></li>
4465 <li><tt>"VDIStorageFull"</tt></li>
4466 </ul>
4467
4468 <note>
4469 This notification is not designed to be implemented by
4470 more than one callback at a time. If you have multiple
4471 IConsoleCallback instances registered on the given
4472 IConsole object, make sure you simply do nothing but
4473 return @c S_OK from all but one of them that does actual
4474 user notification and performs necessary actions.
4475 </note>
4476
4477 </desc>
4478 <param name="fatal" type="boolean" dir="in">
4479 <desc>Whether the error is fatal or not</desc>
4480 </param>
4481 <param name="id" type="wstring" dir="in">
4482 <desc>Error identifier</desc>
4483 </param>
4484 <param name="message" type="wstring" dir="in">
4485 <desc>Optional error message</desc>
4486 </param>
4487 </method>
4488
4489 <method name="onCanShowWindow">
4490 <desc>
4491 Notification when a call to
4492 <link to="IMachine::canShowConsoleWindow()"/> is made by a
4493 front-end to check if a subsequent call to
4494 <link to="IMachine::showConsoleWindow()"/> can succeed.
4495
4496 The callee should give an answer appropriate to the current
4497 machine state in the @a canShow argument. This answer must
4498 remain valid at least until the next
4499 <link to="IConsole::state">machine state</link> change.
4500
4501 <note>
4502 This notification is not designed to be implemented by
4503 more than one callback at a time. If you have multiple
4504 IConsoleCallback instances registered on the given
4505 IConsole object, make sure you simply do nothing but
4506 return @c true and @c S_OK from all but one of them that
4507 actually manages console window activation.
4508 </note>
4509 </desc>
4510 <param name="canShow" type="boolean" dir="return">
4511 <desc>
4512 @c true if the console window can be shown and @c
4513 false otherwise.
4514 </desc>
4515 </param>
4516 </method>
4517
4518 <method name="onShowWindow">
4519 <desc>
4520 Notification when a call to
4521 <link to="IMachine::showConsoleWindow()"/>
4522 requests the console window to be activated and brought to
4523 foreground on the desktop of the host PC.
4524
4525 This notification should cause the VM console process to
4526 perform the requested action as described above. If it is
4527 impossible to do it at a time of this notification, this
4528 method should return a failure.
4529
4530 Note that many modern window managers on many platforms
4531 implement some sort of focus stealing prevention logic, so
4532 that it may be impossible to activate a window without the
4533 help of the currently active application (which is supposedly
4534 an initiator of this notification). In this case, this method
4535 must return a non-zero identifier that represents the
4536 top-level window of the VM console process. The caller, if it
4537 represents a currently active process, is responsible to use
4538 this identifier (in a platform-dependent manner) to perform
4539 actual window activation.
4540
4541 This method must set @a winId to zero if it has performed all
4542 actions necessary to complete the request and the console
4543 window is now active and in foreground, to indicate that no
4544 further action is required on the caller's side.
4545
4546 <note>
4547 This notification is not designed to be implemented by
4548 more than one callback at a time. If you have multiple
4549 IConsoleCallback instances registered on the given
4550 IConsole object, make sure you simply do nothing but
4551 return @c S_OK from all but one of them that actually
4552 manages console window activation.
4553 </note>
4554 </desc>
4555 <param name="winId" type="unsigned long long" dir="return">
4556 <desc>
4557 Platform-dependent identifier of the top-level VM console
4558 window, or zero if this method has performed all actions
4559 necessary to implement the <i>show window</i> semantics for
4560 the given platform and/or this VirtualBox front-end.
4561 </desc>
4562 </param>
4563 </method>
4564
4565 </interface>
4566
4567 <interface
4568 name="IRemoteDisplayInfo" extends="$unknown"
4569 uuid="550104cd-2dfd-4a6c-857d-f6f8e088e62c"
4570 wsmap="struct"
4571 >
4572 <desc>
4573 Contains information about the remote display (VRDP) capabilities and status.
4574 This is used in the <link to="IConsole::remoteDisplayInfo" /> attribute.
4575 </desc>
4576
4577 <attribute name="active" type="boolean" readonly="yes">
4578 <desc>
4579 Whether the remote display connection is active.
4580 </desc>
4581 </attribute>
4582
4583 <attribute name="numberOfClients" type="unsigned long" readonly="yes">
4584 <desc>
4585 How many times a client connected.
4586 </desc>
4587 </attribute>
4588
4589 <attribute name="beginTime" type="long long" readonly="yes">
4590 <desc>
4591 When the last connection was established, in milliseconds since 1970-01-01 UTC.
4592 </desc>
4593 </attribute>
4594
4595 <attribute name="endTime" type="long long" readonly="yes">
4596 <desc>
4597 When the last connection was terminated or the current time, if
4598 connection is still active, in milliseconds since 1970-01-01 UTC.
4599 </desc>
4600 </attribute>
4601
4602 <attribute name="bytesSent" type="unsigned long long" readonly="yes">
4603 <desc>
4604 How many bytes were sent in last or current, if still active, connection.
4605 </desc>
4606 </attribute>
4607
4608 <attribute name="bytesSentTotal" type="unsigned long long" readonly="yes">
4609 <desc>
4610 How many bytes were sent in all connections.
4611 </desc>
4612 </attribute>
4613
4614 <attribute name="bytesReceived" type="unsigned long long" readonly="yes">
4615 <desc>
4616 How many bytes were received in last or current, if still active, connection.
4617 </desc>
4618 </attribute>
4619
4620 <attribute name="bytesReceivedTotal" type="unsigned long long" readonly="yes">
4621 <desc>
4622 How many bytes were received in all connections.
4623 </desc>
4624 </attribute>
4625
4626 <attribute name="user" type="wstring" readonly="yes">
4627 <desc>
4628 Login user name supplied by the client.
4629 </desc>
4630 </attribute>
4631
4632 <attribute name="domain" type="wstring" readonly="yes">
4633 <desc>
4634 Login domain name supplied by the client.
4635 </desc>
4636 </attribute>
4637
4638 <attribute name="clientName" type="wstring" readonly="yes">
4639 <desc>
4640 The client name supplied by the client.
4641 </desc>
4642 </attribute>
4643
4644 <attribute name="clientIP" type="wstring" readonly="yes">
4645 <desc>
4646 The IP address of the client.
4647 </desc>
4648 </attribute>
4649
4650 <attribute name="clientVersion" type="unsigned long" readonly="yes">
4651 <desc>
4652 The client software version number.
4653 </desc>
4654 </attribute>
4655
4656 <attribute name="encryptionStyle" type="unsigned long" readonly="yes">
4657 <desc>
4658 Public key exchange method used when connection was established.
4659 Values: 0 - RDP4 public key exchange scheme.
4660 1 - X509 certificates were sent to client.
4661 </desc>
4662 </attribute>
4663
4664 </interface>
4665
4666 <interface
4667 name="IConsole" extends="$unknown"
4668 uuid="e3c6d4a1-a935-47ca-b16d-f9e9c496e53e"
4669 wsmap="managed"
4670 >
4671 <desc>
4672 The IConsole interface represents an interface to control virtual
4673 machine execution.
4674
4675 The console object that implements the IConsole interface is obtained
4676 from a session object after the session for the given machine has been
4677 opened using one of <link to="IVirtualBox::openSession"/>,
4678 <link to="IVirtualBox::openRemoteSession"/> or
4679 <link to="IVirtualBox::openExistingSession"/> methods.
4680
4681 Methods of the IConsole interface allow the caller to query the current
4682 virtual machine execution state, pause the machine or power it down, save
4683 the machine state or take a snapshot, attach and detach removable media
4684 and so on.
4685
4686 <see>ISession</see>
4687 </desc>
4688
4689 <attribute name="machine" type="IMachine" readonly="yes">
4690 <desc>
4691 Machine object this console is sessioned with.
4692 <note>
4693 This is a convenience property, it has the same value as
4694 <link to="ISession::machine"/> of the corresponding session
4695 object.
4696 </note>
4697 </desc>
4698 </attribute>
4699
4700 <attribute name="state" type="MachineState" readonly="yes">
4701 <desc>
4702 Current execution state of the machine.
4703 <note>
4704 This property always returns the same value as the corresponding
4705 property of the IMachine object this console is sessioned with.
4706 For the process that owns (executes) the VM, this is the
4707 preferable way of querying the VM state, because no IPC
4708 calls are made.
4709 </note>
4710 </desc>
4711 </attribute>
4712
4713 <attribute name="guest" type="IGuest" readonly="yes">
4714 <desc>Guest object.</desc>
4715 </attribute>
4716
4717 <attribute name="keyboard" type="IKeyboard" readonly="yes">
4718 <desc>
4719 Virtual keyboard object.
4720 <note>
4721 If the machine is not running, any attempt to use
4722 the returned object will result in an error.
4723 </note>
4724 </desc>
4725 </attribute>
4726
4727 <attribute name="mouse" type="IMouse" readonly="yes">
4728 <desc>
4729 Virtual mouse object.
4730 <note>
4731 If the machine is not running, any attempt to use
4732 the returned object will result in an error.
4733 </note>
4734 </desc>
4735 </attribute>
4736
4737 <attribute name="display" type="IDisplay" readonly="yes">
4738 <desc>Virtual display object.
4739 <note>
4740 If the machine is not running, any attempt to use
4741 the returned object will result in an error.
4742 </note>
4743 </desc>
4744 </attribute>
4745
4746 <attribute name="debugger" type="IMachineDebugger" readonly="yes">
4747 <desc>Debugging interface.</desc>
4748 </attribute>
4749
4750 <attribute name="USBDevices" type="IUSBDeviceCollection" readonly="yes">
4751 <desc>
4752 Collection of USB devices currently attached to the virtual
4753 USB controller.
4754 <note>
4755 The collection is empty if the machine is not running.
4756 </note>
4757 </desc>
4758 </attribute>
4759
4760 <attribute name="remoteUSBDevices" type="IHostUSBDeviceCollection" readonly="yes">
4761 <desc>
4762 List of USB devices currently attached to the remote VRDP client.
4763 Once a new device is physically attached to the remote host computer,
4764 it appears in this list and remains there until detached.
4765 </desc>
4766 </attribute>
4767
4768 <attribute name="sharedFolders" type="ISharedFolderCollection" readonly="yes">
4769 <desc>
4770 Collection of shared folders for the current session. These folders
4771 are called transient shared folders because they are available to the
4772 guest OS running inside the associated virtual machine only for the
4773 duration of the session (as opposed to
4774 <link to="IMachine::sharedFolders"/> which represent permanent shared
4775 folders). When the session is closed (e.g. the machine is powered down),
4776 these folders are automatically discarded.
4777
4778 New shared folders are added to the collection using
4779 <link to="#createSharedFolder"/>. Existing shared folders can be
4780 removed using <link to="#removeSharedFolder"/>.
4781 </desc>
4782 </attribute>
4783
4784 <attribute name="remoteDisplayInfo" type="IRemoteDisplayInfo" readonly="yes">
4785 <desc>
4786 Interface that provides information on Remote Display (VRDP) connection.
4787 </desc>
4788 </attribute>
4789
4790 <method name="powerUp">
4791 <desc>
4792 Starts the virtual machine execution using the current machine
4793 state (that is, its current execution state, current settings and
4794 current hard disks).
4795
4796 If the machine is powered off or aborted, the execution will
4797 start from the beginning (as if the real hardware were just
4798 powered on).
4799
4800 If the machine is in the <link to="MachineState::Saved"/> state,
4801 it will continue its execution the point where the state has
4802 been saved.
4803
4804 <note>
4805 Unless you are trying to write a new VirtualBox front-end that
4806 performs direct machine execution (like the VirtualBox or VBoxSDL
4807 front-ends), don't call <link to="IConsole::powerUp"/> in a direct
4808 session opened by <link to="IVirtualBox::openSession"/> and use this
4809 session only to change virtual machine settings. If you simply want to
4810 start virtual machine execution using one of the existing front-ends
4811 (for example the VirtualBox GUI or headless server), simply use
4812 <link to="IVirtualBox::openRemoteSession"/>; these front-ends will
4813 power up the machine automatically for you.
4814 </note>
4815
4816 <see>#saveState</see>
4817 <result name="VBOX_E_INVALID_VM_STATE">
4818 Virtual machine already running.
4819 </result>
4820 <result name="VBOX_E_HOST_ERROR">
4821 Host interface does not exist or name not set.
4822 </result>
4823 <result name="VBOX_E_FILE_ERROR">
4824 Invalid saved state file.
4825 </result>
4826 </desc>
4827 <param name="progress" type="IProgress" dir="return">
4828 <desc>Progress object to track the operation completion.</desc>
4829 </param>
4830 </method>
4831
4832 <method name="powerUpPaused">
4833 <desc>
4834 Identical to powerUp except that the VM will enter the
4835 <link to="MachineState::Paused"/> state, instead of
4836 <link to="MachineState::Running"/>.
4837
4838 <see>#powerUp</see>
4839 <result name="VBOX_E_INVALID_VM_STATE">
4840 Virtual machine already running.
4841 </result>
4842 <result name="VBOX_E_HOST_ERROR">
4843 Host interface does not exist or name not set.
4844 </result>
4845 <result name="VBOX_E_FILE_ERROR">
4846 Invalid saved state file.
4847 </result>
4848 </desc>
4849 <param name="progress" type="IProgress" dir="return">
4850 <desc>Progress object to track the operation completion.</desc>
4851 </param>
4852 </method>
4853
4854 <method name="powerDown">
4855 <desc>
4856 Stops the virtual machine execution.
4857 After this operation completes, the machine will go to the
4858 PoweredOff state.
4859
4860 @deprecated This method will be removed in VirtualBox 2.1 where the
4861 powerDownAsync() method will take its name. Do not use this method in
4862 the code.
4863 <result name="VBOX_E_INVALID_VM_STATE">
4864 Virtual machine must be Running, Paused or Stuck to be powered down.
4865 </result>
4866 <result name="VBOX_E_VM_ERROR">
4867 Unable to power off or destroy virtual machine.
4868 </result>
4869 </desc>
4870 </method>
4871
4872 <method name="powerDownAsync">
4873 <desc>
4874 Initiates the power down procedure to stop the virtual machine
4875 execution.
4876
4877 The completion of the power down procedure is tracked using the returned
4878 IProgress object. After the operation is complete, the machine will go
4879 to the PoweredOff state.
4880
4881 @warning This method will be renamed to "powerDown" in VirtualBox 2.1
4882 where the original powerDown() method will be removed. You will need to
4883 rename "powerDownAsync" to "powerDown" in your sources to make them
4884 build with version 2.1.
4885 <result name="VBOX_E_INVALID_VM_STATE">
4886 Virtual machine must be Running, Paused or Stuck to be powered down.
4887 </result>
4888 </desc>
4889 <param name="progress" type="IProgress" dir="return">
4890 <desc>Progress object to track the operation completion.</desc>
4891 </param>
4892 </method>
4893
4894 <method name="reset">
4895 <desc>Resets the virtual machine.
4896 <result name="VBOX_E_INVALID_VM_STATE">
4897 Virtual machine not in Running state.
4898 </result>
4899 <result name="VBOX_E_VM_ERROR">
4900 Virtual machine error in reset operation.
4901 </result>
4902 </desc>
4903 </method>
4904
4905 <method name="pause">
4906 <desc>Pauses the virtual machine execution.
4907 <result name="VBOX_E_INVALID_VM_STATE">
4908 Virtual machine not in Running state.
4909 </result>
4910 <result name="VBOX_E_VM_ERROR">
4911 Virtual machine error in suspend operation.
4912 </result>
4913 </desc>
4914 </method>
4915
4916 <method name="resume">
4917 <desc>Resumes the virtual machine execution.
4918 <result name="VBOX_E_INVALID_VM_STATE">
4919 Virtual machine not in Paused state.
4920 </result>
4921 <result name="VBOX_E_VM_ERROR">
4922 Virtual machine error in resume operation.
4923 </result>
4924 </desc>
4925 </method>
4926
4927 <method name="powerButton">
4928 <desc>Send the ACPI power button event to the guest.
4929 <result name="VBOX_E_INVALID_VM_STATE">
4930 Virtual machine not in Running state.
4931 </result>
4932 <result name="VBOX_E_PDM_ERROR">
4933 Controlled power off failed.
4934 </result>
4935 </desc>
4936 </method>
4937
4938 <method name="sleepButton">
4939 <desc>Sends the ACPI sleep button event to the guest.
4940 <result name="VBOX_E_INVALID_VM_STATE">
4941 Virtual machine not in Running state.
4942 </result>
4943 <result name="VBOX_E_PDM_ERROR">
4944 Sending sleep button event failed.
4945 </result>
4946 </desc>
4947 </method>
4948
4949 <method name="getPowerButtonHandled">
4950 <desc>Checks if the last power button event was handled by guest.
4951 <result name="VBOX_E_PDM_ERROR">
4952 Checking if the event was handled by the guest OS failed.
4953 </result>
4954 </desc>
4955 <param name="handled" type="boolean" dir="return"/>
4956 </method>
4957
4958 <method name="getGuestEnteredACPIMode">
4959 <desc>Checks if the guest entered the ACPI mode G0 (working) or
4960 G1 (sleeping). If this method returns false, the guest will
4961 most likely not respond to external ACPI events.
4962 <result name="VBOX_E_INVALID_VM_STATE">
4963 Virtual machine not in Running state.
4964 </result>
4965 </desc>
4966 <param name="entered" type="boolean" dir="return"/>
4967 </method>
4968
4969 <method name="saveState">
4970 <desc>
4971 Saves the current execution state of a running virtual machine
4972 and stops its execution.
4973
4974 After this operation completes, the machine will go to the
4975 Saved state. Next time it is powered up, this state will
4976 be restored and the machine will continue its execution from
4977 the place where it was saved.
4978
4979 This operation differs from taking a snapshot to the effect
4980 that it doesn't create new differencing hard disks. Also, once
4981 the machine is powered up from the state saved using this method,
4982 the saved state is deleted, so it will be impossible to return
4983 to this state later.
4984
4985 <note>
4986 On success, this method implicitly calls
4987 <link to="IMachine::saveSettings()"/> to save all current machine
4988 settings (including runtime changes to the DVD drive, etc.).
4989 Together with the impossibility to change any VM settings when it is
4990 in the Saved state, this guarantees adequate hardware
4991 configuration of the machine when it is restored from the saved
4992 state file.
4993 </note>
4994
4995 <note>
4996 The machine must be in the Running or Paused state, otherwise
4997 the operation will fail.
4998 </note>
4999 <result name="VBOX_E_INVALID_VM_STATE">
5000 Virtual machine state neither Running nor Paused.
5001 </result>
5002 <result name="VBOX_E_FILE_ERROR">
5003 Failed to create directory for saved state file.
5004 </result>
5005
5006 <see><link to="#takeSnapshot"/></see>
5007 </desc>
5008 <param name="progress" type="IProgress" dir="return">
5009 <desc>Progress object to track the operation completion.</desc>
5010 </param>
5011 </method>
5012
5013 <method name="adoptSavedState">
5014 <desc>
5015 Associates the given saved state file to the virtual machine.
5016
5017 On success, the machine will go to the Saved state. Next time it is
5018 powered up, it will be restored from the adopted saved state and
5019 continue execution from the place where the saved state file was
5020 created.
5021
5022 The specified saved state file path may be absolute or relative to the
5023 folder the VM normally saves the state to (usually,
5024 <link to="IMachine::snapshotFolder"/>).
5025
5026 <note>
5027 It's a caller's responsibility to make sure the given saved state
5028 file is compatible with the settings of this virtual machine that
5029 represent its virtual hardware (memory size, hard disk configuration
5030 etc.). If there is a mismatch, the behavior of the virtual machine
5031 is undefined.
5032 </note>
5033 <result name="VBOX_E_INVALID_VM_STATE">
5034 Virtual machine state neither PoweredOff nor Aborted.
5035 </result>
5036 </desc>
5037 <param name="savedStateFile" type="wstring" dir="in">
5038 <desc>Path to the saved state file to adopt.</desc>
5039 </param>
5040 </method>
5041
5042 <method name="discardSavedState">
5043 <desc>
5044 Discards (deletes) the saved state of the virtual machine
5045 previously created by <link to="#saveState"/>. Next time the
5046 machine is powered up, a clean boot will occur.
5047 <note>
5048 This operation is equivalent to resetting or powering off
5049 the machine without doing a proper shutdown in the guest OS.
5050 </note>
5051 <result name="VBOX_E_INVALID_VM_STATE">
5052 Virtual machine not in state Saved.
5053 </result>
5054 </desc>
5055 </method>
5056
5057 <method name="getDeviceActivity">
5058 <desc>
5059 Gets the current activity type of a given device or device group.
5060 <result name="E_INVALIDARG">
5061 Invalid device type.
5062 </result>
5063 </desc>
5064 <param name="type" type="DeviceType" dir="in"/>
5065 <param name="activity" type="DeviceActivity" dir="return"/>
5066 </method>
5067
5068 <method name="attachUSBDevice">
5069 <desc>
5070 Attaches a host USB device with the given UUID to the
5071 USB controller of the virtual machine.
5072
5073 The device needs to be in one of the following states:
5074 <link to="USBDeviceState::Busy">Busy</link>,
5075 <link to="USBDeviceState::Available">Available</link> or
5076 <link to="USBDeviceState::Held">Held</link>,
5077 otherwise an error is immediately returned.
5078
5079 When the device state is
5080 <link to="USBDeviceState::Busy">Busy</link>, an error may also
5081 be returned if the host computer refuses to release it for some reason.
5082
5083 <see>IUSBController::deviceFilters, USBDeviceState</see>
5084 <result name="VBOX_E_INVALID_VM_STATE">
5085 Virtual machine state neither Running nor Paused.
5086 </result>
5087 <result name="VBOX_E_PDM_ERROR">
5088 Virtual machine does not have a USB controller.
5089 </result>
5090 </desc>
5091 <param name="id" type="uuid" dir="in">
5092 <desc>UUID of the host USB device to attach.</desc>
5093 </param>
5094 </method>
5095
5096 <method name="detachUSBDevice">
5097 <desc>
5098 Detaches an USB device with the given UUID from the USB controller
5099 of the virtual machine.
5100
5101 After this method succeeds, the VirtualBox server re-initiates
5102 all USB filters as if the device were just physically attached
5103 to the host, but filters of this machine are ignored to avoid
5104 a possible automatic re-attachment.
5105
5106 <see>IUSBController::deviceFilters, USBDeviceState</see>
5107
5108 <result name="VBOX_E_PDM_ERROR">
5109 Virtual machine does not have a USB controller.
5110 </result>
5111 <result name="E_INVALIDARG">
5112 USB device not attached to this virtual machine.
5113 </result>
5114 </desc>
5115 <param name="id" type="uuid" dir="in">
5116 <desc>UUID of the USB device to detach.</desc>
5117 </param>
5118 <param name="device" type="IUSBDevice" dir="return">
5119 <desc>Detached USB device.</desc>
5120 </param>
5121 </method>
5122
5123 <method name="createSharedFolder">
5124 <desc>
5125 Creates a transient new shared folder by associating the given logical
5126 name with the given host path, adds it to the collection of shared
5127 folders and starts sharing it. Refer to the description of
5128 <link to="ISharedFolder"/> to read more about logical names.
5129
5130 <result name="VBOX_E_INVALID_VM_STATE">
5131 Virtual machine in Saved state or currently changing state.
5132 </result>
5133 <result name="VBOX_E_FILE_ERROR">
5134 Shared folder already exists or not accessible.
5135 </result>
5136 </desc>
5137 <param name="name" type="wstring" dir="in">
5138 <desc>Unique logical name of the shared folder.</desc>
5139 </param>
5140 <param name="hostPath" type="wstring" dir="in">
5141 <desc>Full path to the shared folder in the host file system.</desc>
5142 </param>
5143 <param name="writable" type="boolean" dir="in">
5144 <desc>Whether the share is writable or readonly</desc>
5145 </param>
5146 </method>
5147
5148 <method name="removeSharedFolder">
5149 <desc>
5150 Removes a transient shared folder with the given name previously
5151 created by <link to="#createSharedFolder"/> from the collection of
5152 shared folders and stops sharing it.
5153 <result name="VBOX_E_INVALID_VM_STATE">
5154 Virtual machine in Saved state or currently changing state.
5155 </result>
5156 <result name="VBOX_E_FILE_ERROR">
5157 Shared folder does not exists.
5158 </result>
5159 </desc>
5160 <param name="name" type="wstring" dir="in">
5161 <desc>Logical name of the shared folder to remove.</desc>
5162 </param>
5163 </method>
5164
5165 <method name="takeSnapshot">
5166 <desc>
5167 Saves the current execution state and all settings of the
5168 machine and creates differencing images for all
5169 normal (non-independent) hard disks.
5170
5171 This method can be called for a PoweredOff, Saved, Running or
5172 Paused virtual machine. When the machine is PoweredOff, an
5173 offline <link to="ISnapshot">snapshot</link> is created,
5174 in all other cases -- an online snapshot.
5175
5176 The taken snapshot is always based on the
5177 <link to="IMachine::currentSnapshot">current
5178 snapshot</link> of the associated virtual machine and becomes
5179 a new current snapshot.
5180
5181 <note>
5182 This method implicitly calls <link to="IMachine::saveSettings()"/> to
5183 save all current machine settings before taking an offline snapshot.
5184 </note>
5185
5186 <see>ISnapshot, <link to="#saveState"/></see>
5187 <result name="VBOX_E_INVALID_VM_STATE">
5188 Virtual machine currently changing state.
5189 </result>
5190 </desc>
5191 <param name="name" type="wstring" dir="in">
5192 <desc>Short name for the snapshot.</desc>
5193 </param>
5194 <param name="description" type="wstring" dir="in">
5195 <desc>Optional description of the snapshot.</desc>
5196 </param>
5197 <param name="progress" type="IProgress" dir="return">
5198 <desc>Progress object to track the operation completion.</desc>
5199 </param>
5200 </method>
5201
5202 <method name="discardSnapshot">
5203 <desc>
5204
5205 Starts discarding the specified snapshot. The execution state
5206 and settings of the associated machine stored in the snapshot
5207 will be deleted. The contents of all differencing hard disks of
5208 this snapshot will be merged with the contents of their
5209 dependent child hard disks to keep the, disks valid (in other
5210 words, all changes represented by hard disks being discarded
5211 will be propagated to their child hard disks). After that, this
5212 snapshot's differencing hard disks will be deleted. The parent
5213 of this snapshot will become a new parent for all its child
5214 snapshots.
5215
5216 If the discarded snapshot is the current one, its parent
5217 snapshot will become a new current snapshot. The current machine
5218 state is not directly affected in this case, except that
5219 currently attached differencing hard disks based on hard disks
5220 of the discarded snapshot will be also merged as described
5221 above.
5222
5223 If the discarded snapshot is the first one (the root snapshot)
5224 and it has exactly one child snapshot, this child snapshot will
5225 become the first snapshot after discarding. If there are no
5226 children at all (i.e. the first snapshot is the only snapshot of
5227 the machine), both the current and the first snapshot of the
5228 machine will be set to null. In all other cases, the first
5229 snapshot cannot be discarded.
5230
5231 You cannot discard the snapshot if it
5232 stores <link to="HardDiskType::Normal">normal</link> (non-differencing)
5233 hard disks that have differencing hard disks based on them. Snapshots of
5234 such kind can be discarded only when every normal hard disk has either
5235 no children at all or exactly one child. In the former case, the normal
5236 hard disk simply becomes unused (i.e. not attached to any VM). In the
5237 latter case, it receives all the changes stored in the child hard disk,
5238 and then it replaces the child hard disk in the configuration of the
5239 corresponding snapshot or machine.
5240
5241 Also, you cannot discard the snapshot if it stores hard disks
5242 (of any type) having differencing child hard disks that belong
5243 to other machines. Such snapshots can be only discarded after
5244 you discard all snapshots of other machines containing "foreign"
5245 child disks, or detach these "foreign" child disks from machines
5246 they are attached to.
5247
5248 One particular example of the snapshot storing normal hard disks
5249 is the first snapshot of a virtual machine that had normal hard
5250 disks attached when taking the snapshot. Be careful when
5251 discarding such snapshots because this implicitly commits
5252 changes (made since the snapshot being discarded has been taken)
5253 to normal hard disks (as described above), which may be not what
5254 you want.
5255
5256 The virtual machine is put to
5257 the <link to="MachineState::Discarding">Discarding</link> state until
5258 the discard operation is completed.
5259
5260 <note>
5261 The machine must not be running, otherwise the operation
5262 will fail.
5263 </note>
5264
5265 <note>
5266 Child hard disks of all normal hard disks of the discarded snapshot
5267 must be accessible (see <link to="IMedium::state"/>) for this
5268 operation to succeed. In particular, this means that all virtual
5269 machines, whose hard disks are directly or indirectly based on the
5270 hard disks of discarded snapshot, must be powered off.
5271 </note>
5272 <note>
5273 Merging hard disk contents can be very time and disk space
5274 consuming, if these disks are big in size and have many
5275 children. However, if the snapshot being discarded is the last
5276 (head) snapshot on the branch, the operation will be rather
5277 quick.
5278 </note>
5279 <note>
5280 Note that discarding the current snapshot
5281 will implicitly call <link to="IMachine::saveSettings()"/> to
5282 make all current machine settings permanent.
5283 </note>
5284 <result name="VBOX_E_INVALID_VM_STATE">
5285 Virtual machine is running.
5286 </result>
5287 </desc>
5288 <param name="id" type="uuid" dir="in">
5289 <desc>UUID of the snapshot to discard.</desc>
5290 </param>
5291 <param name="progress" type="IProgress" dir="return">
5292 <desc>Progress object to track the operation completion.</desc>
5293 </param>
5294 </method>
5295
5296 <method name="discardCurrentState">
5297 <desc>
5298 This operation is similar to <link to="#discardSnapshot()"/> but
5299 affects the current machine state. This means that the state stored in
5300 the current snapshot will become a new current state, and all current
5301 settings of the machine and changes stored in differencing hard disks
5302 will be lost.
5303
5304 After this operation is successfully completed, new empty differencing
5305 hard disks are created for all normal hard disks of the machine.
5306
5307 If the current snapshot of the machine is an online snapshot, the
5308 machine will go to the <link to="MachineState::Saved"> saved
5309 state</link>, so that the next time it is powered on, the execution
5310 state will be restored from the current snapshot.
5311
5312 <note>
5313 The machine must not be running, otherwise the operation will fail.
5314 </note>
5315
5316 <note>
5317 If the machine state is <link to="MachineState::Saved">Saved</link>
5318 prior to this operation, the saved state file will be implicitly
5319 discarded (as if <link to="IConsole::discardSavedState()"/> were
5320 called).
5321 </note>
5322
5323 <result name="VBOX_E_INVALID_VM_STATE">
5324 Virtual machine is running.
5325 </result>
5326 </desc>
5327 <param name="progress" type="IProgress" dir="return">
5328 <desc>Progress object to track the operation completion.</desc>
5329 </param>
5330 </method>
5331
5332 <method name="discardCurrentSnapshotAndState">
5333 <desc>
5334
5335 This method is equivalent to
5336 doing <link to="IConsole::discardSnapshot">discardSnapshot</link>
5337 (currentSnapshot.id(), progress) followed by
5338 <link to="#discardCurrentState()"/>.
5339
5340 As a result, the machine will be fully restored from the
5341 snapshot preceding the current snapshot, while both the current
5342 snapshot and the current machine state will be discarded.
5343
5344 If the current snapshot is the first snapshot of the machine (i.e. it
5345 has the only snapshot), the current machine state will be
5346 discarded <b>before</b> discarding the snapshot. In other words, the
5347 machine will be restored from its last snapshot, before discarding
5348 it. This differs from performing a single
5349 <link to="#discardSnapshot()"/> call (note that no
5350 <link to="#discardCurrentState()"/> will be possible after it)
5351 to the effect that the latter will preserve the current state instead of
5352 discarding it.
5353
5354 Unless explicitly mentioned otherwise, all remarks and
5355 limitations of the above two methods also apply to this method.
5356
5357 <note>
5358 The machine must not be running, otherwise the operation
5359 will fail.
5360 </note>
5361
5362 <note>
5363 If the machine state is <link to="MachineState::Saved">Saved</link>
5364 prior to this operation, the saved state file will be implicitly
5365 discarded (as if <link to="#discardSavedState()"/> were
5366 called).
5367 </note>
5368
5369 <note>
5370 This method is more efficient than calling both of the above
5371 methods separately: it requires less IPC calls and provides
5372 a single progress object.
5373 </note>
5374
5375 <result name="VBOX_E_INVALID_VM_STATE">
5376 Virtual machine is running.
5377 </result>
5378 </desc>
5379 <param name="progress" type="IProgress" dir="return">
5380 <desc>Progress object to track the operation completion.</desc>
5381 </param>
5382 </method>
5383
5384 <method name="registerCallback">
5385 <desc>
5386 Registers a new console callback on this instance. The methods of the
5387 callback interface will be called by this instance when the appropriate
5388 event occurs.
5389 </desc>
5390 <param name="callback" type="IConsoleCallback" dir="in"/>
5391 </method>
5392
5393 <method name="unregisterCallback">
5394 <desc>
5395 Unregisters the console callback previously registered using
5396 <link to="#registerCallback"/>.
5397 <result name="E_INVALIDARG">
5398 Given @a callback handler is not registered.
5399 </result>
5400 </desc>
5401 <param name="callback" type="IConsoleCallback" dir="in"/>
5402 </method>
5403 </interface>
5404
5405 <!--
5406 // IHost
5407 /////////////////////////////////////////////////////////////////////////
5408 -->
5409
5410 <interface
5411 name="IHostDVDDrive" extends="$unknown"
5412 uuid="21f86694-202d-4ce4-8b05-a63ff82dbf4c"
5413 wsmap="managed"
5414 >
5415 <desc>
5416 The IHostDVDDrive interface represents the physical CD/DVD drive
5417 hardware on the host. Used indirectly in <link to="IHost::DVDDrives"/>.
5418 </desc>
5419
5420 <attribute name="name" type="wstring" readonly="yes">
5421 <desc>
5422 Returns the platform-specific device identifier.
5423 On DOS-like platforms, it is a drive name (e.g. R:).
5424 On Unix-like platforms, it is a device name (e.g. /dev/hdc).
5425 </desc>
5426 </attribute>
5427 <attribute name="description" type="wstring" readonly="yes">
5428 <desc>
5429 Returns a human readable description for the drive. This
5430 description usually contains the product and vendor name. A
5431 @c null string is returned if the description is not available.
5432 </desc>
5433 </attribute>
5434 <attribute name="udi" type="wstring" readonly="yes">
5435 <desc>
5436 Returns the unique device identifier for the drive. This
5437 attribute is reserved for future use instead of
5438 <link to="#name"/>. Currently it is not used and may return
5439 @c null on some platforms.
5440 </desc>
5441 </attribute>
5442
5443 </interface>
5444
5445 <enumerator
5446 name="IHostDVDDriveEnumerator" type="IHostDVDDrive"
5447 uuid="1ed7cfaf-c363-40df-aa4e-89c1afb7d96b"
5448 />
5449
5450 <collection
5451 name="IHostDVDDriveCollection" type="IHostDVDDrive"
5452 enumerator="IHostDVDDriveEnumerator"
5453 uuid="1909c533-1a1e-445f-a4e1-a267cffc30ed"
5454 readonly="yes"
5455 >
5456 <method name="findByName">
5457 <desc>
5458 Searches this collection for a host drive with the given name.
5459 <note>
5460 The method returns an error if the given name does not
5461 correspond to any host drive in the collection.
5462 </note>
5463 </desc>
5464 <param name="name" type="wstring" dir="in">
5465 <desc>Name of the host drive to search for</desc>
5466 </param>
5467 <param name="drive" type="IHostDVDDrive" dir="return">
5468 <desc>Found host drive object</desc>
5469 </param>
5470 </method>
5471 </collection>
5472
5473 <interface
5474 name="IHostFloppyDrive" extends="$unknown"
5475 uuid="b6a4d1a9-4221-43c3-bd52-021a5daa9ed2"
5476 wsmap="managed"
5477 >
5478 <desc>
5479 The IHostFloppyDrive interface represents the physical floppy drive
5480 hardware on the host. Used indirectly in <link to="IHost::floppyDrives"/>.
5481 </desc>
5482 <attribute name="name" type="wstring" readonly="yes">
5483 <desc>
5484 Returns the platform-specific device identifier.
5485 On DOS-like platforms, it is a drive name (e.g. A:).
5486 On Unix-like platforms, it is a device name (e.g. /dev/fd0).
5487 </desc>
5488 </attribute>
5489 <attribute name="description" type="wstring" readonly="yes">
5490 <desc>
5491 Returns a human readable description for the drive. This
5492 description usually contains the product and vendor name. A
5493 @c null string is returned if the description is not available.
5494 </desc>
5495 </attribute>
5496 <attribute name="udi" type="wstring" readonly="yes">
5497 <desc>
5498 Returns the unique device identifier for the drive. This
5499 attribute is reserved for future use instead of
5500 <link to="#name"/>. Currently it is not used and may return
5501 @c null on some platforms.
5502 </desc>
5503 </attribute>
5504 </interface>
5505
5506 <enumerator
5507 name="IHostFloppyDriveEnumerator" type="IHostFloppyDrive"
5508 uuid="ce04c924-4f54-432a-9dec-11fddc3ea875"
5509 />
5510
5511 <collection
5512 name="IHostFloppyDriveCollection" type="IHostFloppyDrive"
5513 enumerator="IHostFloppyDriveEnumerator"
5514 uuid="fd84bb86-c59a-4037-a557-755ff263a460"
5515 readonly="yes"
5516 >
5517 <method name="findByName">
5518 <desc>
5519 Searches this collection for a host drive with the given name.
5520 <note>
5521 The method returns an error if the given name does not
5522 correspond to any host drive in the collection.
5523 </note>
5524 </desc>
5525 <param name="name" type="wstring" dir="in">
5526 <desc>Name of the host drive to search for</desc>
5527 </param>
5528 <param name="drive" type="IHostFloppyDrive" dir="return">
5529 <desc>Found host drive object</desc>
5530 </param>
5531 </method>
5532 </collection>
5533
5534 <interface
5535 name="IHostNetworkInterface" extends="$unknown"
5536 uuid="F4512D7C-B074-4e97-99B8-6D2BD27C3F5A"
5537 wsmap="managed"
5538 >
5539 <attribute name="name" type="wstring" readonly="yes">
5540 <desc>Returns the host network interface name.</desc>
5541 </attribute>
5542
5543 <attribute name="id" type="uuid" readonly="yes">
5544 <desc>Returns the interface UUID.</desc>
5545 </attribute>
5546 </interface>
5547
5548 <enumerator
5549 name="IHostNetworkInterfaceEnumerator" type="IHostNetworkInterface"
5550 uuid="7B52FEF7-56E8-4aec-92F5-15E6D11EC630"
5551 />
5552
5553 <collection
5554 name="IHostNetworkInterfaceCollection" type="IHostNetworkInterface"
5555 enumerator="IHostNetworkInterfaceEnumerator"
5556 uuid="BF1D41F2-B97B-4314-A0FB-D4823AF42FB5"
5557 readonly="yes"
5558 >
5559 <method name="findByName">
5560 <desc>
5561 Searches this collection for a host network interface with the given name.
5562 <note>
5563 The method returns an error if the given name does not
5564 correspond to any host network interface in the collection.
5565 </note>
5566 </desc>
5567 <param name="name" type="wstring" dir="in">
5568 <desc>Name of the host network interface to search for.</desc>
5569 </param>
5570 <param name="networkInterface" type="IHostNetworkInterface" dir="return">
5571 <desc>Found host network interface object.</desc>
5572 </param>
5573 </method>
5574 <method name="findById">
5575 <desc>
5576 Searches this collection for a host network interface with the given GUID.
5577 <note>
5578 The method returns an error if the given GUID does not
5579 correspond to any host network interface in the collection.
5580 </note>
5581 </desc>
5582 <param name="id" type="uuid" dir="in">
5583 <desc>GUID of the host network interface to search for.</desc>
5584 </param>
5585 <param name="networkInterface" type="IHostNetworkInterface" dir="return">
5586 <desc>Found host network interface object.</desc>
5587 </param>
5588 </method>
5589 </collection>
5590
5591 <interface
5592 name="IHost" extends="$unknown"
5593 uuid="4be2e85f-a54c-4bc7-8bf6-f070f9113940"
5594 wsmap="managed"
5595 >
5596 <desc>
5597 The IHost interface represents the physical machine that this VirtualBox
5598 installation runs on.
5599
5600 An object implementing this interface is returned by the
5601 <link to="IVirtualBox::host" /> attribute. This interface contains
5602 read-only information about the host's physical hardware (such as what
5603 processors, and disks are available, what the host operating system is,
5604 and so on) and also allows for manipulating some of the host's hardware,
5605 such as global USB device filters and host interface networking.
5606
5607 </desc>
5608 <attribute name="DVDDrives" type="IHostDVDDriveCollection" readonly="yes">
5609 <desc>List of DVD drives available on the host.</desc>
5610 </attribute>
5611
5612 <attribute name="floppyDrives" type="IHostFloppyDriveCollection" readonly="yes">
5613 <desc>List of floppy drives available on the host.</desc>
5614 </attribute>
5615
5616 <attribute name="USBDevices" type="IHostUSBDeviceCollection" readonly="yes">
5617 <desc>
5618 List of USB devices currently attached to the host.
5619 Once a new device is physically attached to the host computer,
5620 it appears in this list and remains there until detached.
5621
5622 <note>
5623 This method may set a @ref com_warnings "warning result code".
5624 </note>
5625 <note>
5626 If USB functionality is not available in the given edition of
5627 VirtualBox, this method will set the result code to @c E_NOTIMPL.
5628 </note>
5629 </desc>
5630 </attribute>
5631
5632 <attribute name="USBDeviceFilters" type="IHostUSBDeviceFilterCollection" readonly="yes">
5633 <desc>
5634 List of USB device filters in action.
5635 When a new device is physically attached to the host computer,
5636 filters from this list are applied to it (in order they are stored
5637 in the list). The first matched filter will determine the
5638 <link to="IHostUSBDeviceFilter::action">action</link>
5639 performed on the device.
5640
5641 Unless the device is ignored by these filters, filters of all
5642 currently running virtual machines
5643 (<link to="IUSBController::deviceFilters"/>) are applied to it.
5644
5645 <note>
5646 This method may set a @ref com_warnings "warning result code".
5647 </note>
5648 <note>
5649 If USB functionality is not available in the given edition of
5650 VirtualBox, this method will set the result code to @c E_NOTIMPL.
5651 </note>
5652
5653 <see>IHostUSBDeviceFilter, USBDeviceState</see>
5654 </desc>
5655 </attribute>
5656
5657 <attribute name="networkInterfaces" type="IHostNetworkInterfaceCollection" readonly="yes">
5658 <desc>List of host network interfaces currently defined on the host.</desc>
5659 </attribute>
5660
5661 <attribute name="processorCount" type="unsigned long" readonly="yes">
5662 <desc>Number of (logical) CPUs installed in the host system.</desc>
5663 </attribute>
5664
5665 <attribute name="processorOnlineCount" type="unsigned long" readonly="yes">
5666 <desc>Number of (logical) CPUs online in the host system.</desc>
5667 </attribute>
5668
5669 <method name="getProcessorSpeed">
5670 <desc>Query the (approximate) maximum speed of a specified host CPU in Megahertz.</desc>
5671 <param name="cpuId" type="unsigned long" dir="in">
5672 <desc>
5673 Identifier of the CPU.
5674 </desc>
5675 </param>
5676 <param name="speed" type="unsigned long" dir="return">
5677 <desc>
5678 Speed value. 0 is returned if value is not known or @a cpuId is
5679 invalid.
5680 </desc>
5681 </param>
5682 </method>
5683
5684 <method name="getProcessorFeature">
5685 <desc>Query whether a CPU feature is supported or not.</desc>
5686 <param name="feature" type="ProcessorFeature" dir="in">
5687 <desc>
5688 CPU Feature identifier.
5689 </desc>
5690 </param>
5691 <param name="supported" type="boolean" dir="return">
5692 <desc>
5693 Feature is supported or not.
5694 </desc>
5695 </param>
5696 </method>
5697
5698 <method name="getProcessorDescription">
5699 <desc>Query the model string of a specified host CPU.</desc>
5700 <param name="cpuId" type="unsigned long" dir="in">
5701 <desc>
5702 Identifier of the CPU.
5703 </desc>
5704 </param>
5705 <param name="description" type="wstring" dir="return">
5706 <desc>
5707 Model string. A NULL string is returned if value is not known or
5708 @a cpuId is invalid.
5709 </desc>
5710 </param>
5711 </method>
5712
5713 <attribute name="memorySize" type="unsigned long" readonly="yes">
5714 <desc>Amount of system memory in megabytes installed in the host system.</desc>
5715 </attribute>
5716
5717 <attribute name="memoryAvailable" type="unsigned long" readonly="yes">
5718 <desc>Available system memory in the host system.</desc>
5719 </attribute>
5720
5721 <attribute name="operatingSystem" type="wstring" readonly="yes">
5722 <desc>Name of the host system's operating system.</desc>
5723 </attribute>
5724
5725 <attribute name="OSVersion" type="wstring" readonly="yes">
5726 <desc>Host operating system's version string.</desc>
5727 </attribute>
5728
5729 <attribute name="UTCTime" type="long long" readonly="yes">
5730 <desc>Returns the current host time in milliseconds since 1970-01-01 UTC.</desc>
5731 </attribute>
5732
5733<if target="midl">
5734 <method name="createHostNetworkInterface">
5735 <desc>
5736 Creates a new adapter for Host Interface Networking.
5737 </desc>
5738 <param name="name" type="wstring" dir="in">
5739 <desc>
5740 Adapter name.
5741 </desc>
5742 </param>
5743 <param name="hostInterface" type="IHostNetworkInterface" dir="out">
5744 <desc>
5745 Created host interface object.
5746 </desc>
5747 </param>
5748 <param name="progress" type="IProgress" dir="return">
5749 <desc>
5750 Progress object to track the operation completion.
5751 </desc>
5752 </param>
5753 </method>
5754 <method name="removeHostNetworkInterface">
5755 <desc>
5756 Removes the given host network interface.
5757 </desc>
5758 <param name="id" type="uuid" dir="in">
5759 <desc>
5760 Adapter GUID.
5761 </desc>
5762 </param>
5763 <param name="hostInterface" type="IHostNetworkInterface" dir="out">
5764 <desc>
5765 Removed host interface object.
5766 </desc>
5767 </param>
5768 <param name="progress" type="IProgress" dir="return">
5769 <desc>
5770 Progress object to track the operation completion.
5771 </desc>
5772 </param>
5773 </method>
5774</if>
5775
5776 <method name="createUSBDeviceFilter">
5777 <desc>
5778 Creates a new USB device filter. All attributes except
5779 the filter name are set to <tt>null</tt> (any match),
5780 <i>active</i> is <tt>false</tt> (the filter is not active).
5781
5782 The created filter can be added to the list of filters using
5783 <link to="#insertUSBDeviceFilter()"/>.
5784
5785 <see>#USBDeviceFilters</see>
5786 </desc>
5787 <param name="name" type="wstring" dir="in">
5788 <desc>
5789 Filter name. See <link to="IHostUSBDeviceFilter::name"/>
5790 for more info.
5791 </desc>
5792 </param>
5793 <param name="filter" type="IHostUSBDeviceFilter" dir="return">
5794 <desc>Created filter object.</desc>
5795 </param>
5796 </method>
5797
5798 <method name="insertUSBDeviceFilter">
5799 <desc>
5800 Inserts the given USB device to the specified position
5801 in the list of filters.
5802
5803 Positions are numbered starting from <tt>0</tt>. If the specified
5804 position is equal to or greater than the number of elements in
5805 the list, the filter is added to the end of the collection.
5806
5807 <note>
5808 Duplicates are not allowed, so an attempt to insert a
5809 filter that is already in the list, will return an
5810 error.
5811 </note>
5812 <note>
5813 This method may set a @ref com_warnings "warning result code".
5814 </note>
5815 <note>
5816 If USB functionality is not available in the given edition of
5817 VirtualBox, this method will set the result code to @c E_NOTIMPL.
5818 </note>
5819
5820 <see>#USBDeviceFilters</see>
5821 </desc>
5822 <param name="position" type="unsigned long" dir="in">
5823 <desc>Position to insert the filter to.</desc>
5824 </param>
5825 <param name="filter" type="IHostUSBDeviceFilter" dir="in">
5826 <desc>USB device filter to insert.</desc>
5827 </param>
5828 </method>
5829
5830 <method name="removeUSBDeviceFilter">
5831 <desc>
5832 Removes a USB device filter from the specified position in the
5833 list of filters.
5834
5835 Positions are numbered starting from <tt>0</tt>. Specifying a
5836 position equal to or greater than the number of elements in
5837 the list will produce an error.
5838
5839 <note>
5840 This method may set a @ref com_warnings "warning result code".
5841 </note>
5842 <note>
5843 If USB functionality is not available in the given edition of
5844 VirtualBox, this method will set the result code to @c E_NOTIMPL.
5845 </note>
5846
5847 <see>#USBDeviceFilters</see>
5848 </desc>
5849 <param name="position" type="unsigned long" dir="in">
5850 <desc>Position to remove the filter from.</desc>
5851 </param>
5852 <param name="filter" type="IHostUSBDeviceFilter" dir="return">
5853 <desc>Removed USB device filter.</desc>
5854 </param>
5855 </method>
5856
5857 </interface>
5858
5859 <!--
5860 // ISystemProperties
5861 /////////////////////////////////////////////////////////////////////////
5862 -->
5863
5864 <interface
5865 name="ISystemProperties"
5866 extends="$unknown"
5867 uuid="604afeba-5963-4d12-a577-902ffb96352a"
5868 wsmap="managed"
5869 >
5870 <desc>
5871 The ISystemProperties interface represents global properties of the given
5872 VirtualBox installation.
5873
5874 These properties define limits and default values for various attributes
5875 and parameters. Most of the properties are read-only, but some can be
5876 changed by a user.
5877 </desc>
5878
5879 <attribute name="minGuestRAM" type="unsigned long" readonly="yes">
5880 <desc>Minimum guest system memory in Megabytes.</desc>
5881 </attribute>
5882
5883 <attribute name="maxGuestRAM" type="unsigned long" readonly="yes">
5884 <desc>Maximum guest system memory in Megabytes.</desc>
5885 </attribute>
5886
5887 <attribute name="minGuestVRAM" type="unsigned long" readonly="yes">
5888 <desc>Minimum guest video memory in Megabytes.</desc>
5889 </attribute>
5890
5891 <attribute name="maxGuestVRAM" type="unsigned long" readonly="yes">
5892 <desc>Maximum guest video memory in Megabytes.</desc>
5893 </attribute>
5894
5895 <attribute name="maxVDISize" type="unsigned long long" readonly="yes">
5896 <desc>Maximum size of a virtual disk image in Megabytes.</desc>
5897 </attribute>
5898
5899 <attribute name="networkAdapterCount" type="unsigned long" readonly="yes">
5900 <desc>
5901 Number of network adapters associated with every
5902 <link to="IMachine"/> instance.
5903 </desc>
5904 </attribute>
5905
5906 <attribute name="serialPortCount" type="unsigned long" readonly="yes">
5907 <desc>
5908 Number of serial ports associated with every
5909 <link to="IMachine"/> instance.
5910 </desc>
5911 </attribute>
5912
5913 <attribute name="parallelPortCount" type="unsigned long" readonly="yes">
5914 <desc>
5915 Number of parallel ports associated with every
5916 <link to="IMachine"/> instance.
5917 </desc>
5918 </attribute>
5919
5920 <attribute name="maxBootPosition" type="unsigned long" readonly="yes">
5921 <desc>
5922 Maximum device position in the boot order. This value corresponds
5923 to the total number of devices a machine can boot from, to make it
5924 possible to include all possible devices to the boot list.
5925 <see><link to="IMachine::setBootOrder()"/></see>
5926 </desc>
5927 </attribute>
5928
5929 <attribute name="defaultMachineFolder" type="wstring">
5930 <desc>
5931 Full path to the default directory used to create new or open
5932 existing machines when a settings file name contains no
5933 path.
5934
5935 The initial value of this property is
5936 <tt>&lt;</tt><link to="IVirtualBox::homeFolder">
5937 VirtualBox_home</link><tt>&gt;/Machines</tt>.
5938
5939 <note>
5940 Setting this property to <tt>null</tt> will restore the
5941 initial value.
5942 </note>
5943 <note>
5944 When settings this property, the specified path can be
5945 absolute (full path) or relative
5946 to the <link to="IVirtualBox::homeFolder">
5947 VirtualBox home directory</link>.
5948 When reading this property, a full path is
5949 always returned.
5950 </note>
5951 <note>
5952 The specified path may not exist, it will be created
5953 when necessary.
5954 </note>
5955
5956 <see>
5957 <link to="IVirtualBox::createMachine()"/>,
5958 <link to="IVirtualBox::openMachine()"/>
5959 </see>
5960 </desc>
5961 </attribute>
5962
5963 <attribute name="defaultHardDiskFolder" type="wstring">
5964 <desc>
5965 Full path to the default directory used to create new or open existing
5966 virtual disks.
5967
5968 This path is used when the storage unit of a hard disk is a regular file
5969 in the host's file system and only a file name that contains no path is
5970 given.
5971
5972 The initial value of this property is
5973 <tt>&lt;</tt>
5974 <link to="IVirtualBox::homeFolder">VirtualBox_home</link>
5975 <tt>&gt;/HardDisks</tt>.
5976
5977 <note>
5978 Setting this property to <tt>null</tt> will restore the
5979 initial value.
5980 </note>
5981 <note>
5982 When settings this property, the specified path can be relative
5983 to the
5984 <link to="IVirtualBox::homeFolder">VirtualBox home directory</link> or
5985 absolute. When reading this property, a full path is
5986 always returned.
5987 </note>
5988 <note>
5989 The specified path may not exist, it will be created
5990 when necessary.
5991 </note>
5992
5993 <see>
5994 IHardDisk2,
5995 <link to="IVirtualBox::createHardDisk2()"/>,
5996 <link to="IVirtualBox::openHardDisk2()"/>,
5997 <link to="IMedium::location"/>
5998 </see>
5999 </desc>
6000 </attribute>
6001
6002 <attribute name="hardDiskFormats" type="IHardDiskFormat" safearray="yes" readonly="yes">
6003 <desc>
6004 List of all hard disk storage formats supported by this VirtualBox
6005 installation.
6006
6007 Note that the virtual hard disk framework is backend-based, therefore
6008 the list of supported formats depends on what backends are currently
6009 installed.
6010
6011 <see>
6012 <link to="IHardDiskFormat"/>,
6013 </see>
6014 </desc>
6015 </attribute>
6016
6017 <attribute name="defaultHardDiskFormat" type="wstring">
6018 <desc>
6019 Identifier of the default hard disk format used by VirtualBox.
6020
6021 The hard disk format set by this attribute is used by VirtualBox
6022 when the hard disk format was not specified explicitly. One example is
6023 <link to="IVirtualBox::createHardDisk2()"/> with the <tt>null</tt>
6024 format argument. A more complex example is implicit creation of
6025 differencing hard disks when taking a snapshot of a virtual machine:
6026 this operation will try to use a format of the parent hard disk first
6027 and if this format does not support differencing hard disks the default
6028 format specified by this argument will be used.
6029
6030 The list of supported hard disk formats may be obtained by the
6031 <link to="#defaultHardDiskFormats"/> call. Note that the default
6032 hard disk format must have a capability to create differencing hard
6033 disks; otherwise opeartions that create hard disks implicitly may fail
6034 unexpectedly.
6035
6036 The initial value of this property is <tt>VDI</tt> in the current
6037 version of the VirtualBox product, but may change in the future.
6038
6039 <note>
6040 Setting this property to <tt>null</tt> will restore the
6041 initial value.
6042 </note>
6043
6044 <see>
6045 <link to="#hardDiskFormats"/>,
6046 <link to="IHardDiskFormat:id"/>,
6047 <link to="IVirtualBox::createHardDisk2()"/>
6048 </see>
6049 </desc>
6050 </attribute>
6051
6052 <attribute name="remoteDisplayAuthLibrary" type="wstring">
6053 <desc>
6054 Library that provides authentication for VRDP clients. The library
6055 is used if a virtual machine's authentication type is set to "external"
6056 in the VM RemoteDisplay configuration.
6057
6058 The system library extension (".DLL" or ".so") must be omitted.
6059 A full path can be specified; if not, then the library must reside on the
6060 system's default library path.
6061
6062 The default value of this property is <tt>VRDPAuth</tt>. There is a library
6063 of that name in one of the default VirtualBox library directories.
6064
6065 For details about VirtualBox authentication libraries and how to implement
6066 them, please refer to the VirtualBox manual.
6067
6068 <note>
6069 Setting this property to <tt>null</tt> will restore the
6070 initial value.
6071 </note>
6072 </desc>
6073 </attribute>
6074
6075 <attribute name="webServiceAuthLibrary" type="wstring">
6076 <desc>
6077 Library that provides authentication for webservice clients. The library
6078 is used if a virtual machine's authentication type is set to "external"
6079 in the VM RemoteDisplay configuration and will be called from
6080 within the <link to="IWebsessionManager::logon" /> implementation.
6081
6082 As opposed to <link to="ISystemProperties::remoteDisplayAuthLibrary" />,
6083 there is no per-VM setting for this, as the webservice is a global
6084 resource (if it is running). Only for this setting (for the webservice),
6085 setting this value to a literal "null" string disables authentication,
6086 meaning that <link to="IWebsessionManager::logon" /> will always succeed,
6087 no matter what user name and password are supplied.
6088
6089 The initial value of this property is <tt>VRDPAuth</tt>,
6090 meaning that the webservice will use the same authentication
6091 library that is used by default for VBoxVRDP (again, see
6092 <link to="ISystemProperties::remoteDisplayAuthLibrary" />).
6093 The format and calling convention of authentication libraries
6094 is the same for the webservice as it is for VBoxVRDP.
6095
6096 </desc>
6097 </attribute>
6098
6099 <attribute name="HWVirtExEnabled" type="boolean">
6100 <desc>
6101 This specifies the default value for hardware virtualization
6102 extensions. If enabled, virtual machines will make use of
6103 hardware virtualization extensions such as Intel VT-x and
6104 AMD-V by default. This value can be overridden by each VM
6105 using their <link to="IMachine::HWVirtExEnabled" /> property.
6106 </desc>
6107 </attribute>
6108
6109 <attribute name="LogHistoryCount" type="unsigned long">
6110 <desc>
6111 This value specifies how many old release log files are kept.
6112 </desc>
6113 </attribute>
6114 </interface>
6115
6116 <!--
6117 // IGuest
6118 /////////////////////////////////////////////////////////////////////////
6119 -->
6120
6121 <interface
6122 name="IGuestOSType" extends="$unknown"
6123 uuid="bc415228-eed0-402c-92f5-96fc4e2dd7e4"
6124 wsmap="struct"
6125 >
6126 <desc>
6127 </desc>
6128
6129 <attribute name="familyId" type="wstring" readonly="yes">
6130 <desc>Guest OS family identifier string.</desc>
6131 </attribute>
6132
6133 <attribute name="familyDescription" type="wstring" readonly="yes">
6134 <desc>Human readable description of the guest OS family.</desc>
6135 </attribute>
6136
6137 <attribute name="id" type="wstring" readonly="yes">
6138 <desc>Guest OS identifier string.</desc>
6139 </attribute>
6140
6141 <attribute name="description" type="wstring" readonly="yes">
6142 <desc>Human readable description of the guest OS.</desc>
6143 </attribute>
6144
6145 <attribute name="is64Bit" type="boolean" readonly="yes">
6146 <desc>Returns @c true if the given OS is 64-bit</desc>
6147 </attribute>
6148
6149 <attribute name="recommendedIOAPIC" type="boolean" readonly="yes">
6150 <desc>Returns @c true if IO APIC recommended for this OS type.</desc>
6151 </attribute>
6152
6153 <attribute name="recommendedVirtEx" type="boolean" readonly="yes">
6154 <desc>Returns @c true if VT-x or AMD-V recommended for this OS type.</desc>
6155 </attribute>
6156
6157 <attribute name="recommendedRAM" type="unsigned long" readonly="yes">
6158 <desc>Recommended RAM size in Megabytes.</desc>
6159 </attribute>
6160
6161 <attribute name="recommendedVRAM" type="unsigned long" readonly="yes">
6162 <desc>Recommended video RAM size in Megabytes.</desc>
6163 </attribute>
6164
6165 <attribute name="recommendedHDD" type="unsigned long" readonly="yes">
6166 <desc>Recommended hard disk size in Megabytes.</desc>
6167 </attribute>
6168
6169 <attribute name="adapterType" type="NetworkAdapterType" readonly="yes">
6170 <desc>Returns recommended network adapter for this OS type.</desc>
6171 </attribute>
6172 </interface>
6173
6174
6175 <enumerator
6176 name="IGuestOSTypeEnumerator" type="IGuestOSType"
6177 uuid="a3335e02-4669-4e3c-80c7-c4dc7056a07c"
6178 />
6179
6180 <collection
6181 name="IGuestOSTypeCollection" type="IGuestOSType" enumerator="IGuestOSTypeEnumerator"
6182 uuid="a5e36749-a610-498b-9f29-2e36c1042d65"
6183 readonly="yes"
6184 />
6185
6186 <interface
6187 name="IGuest" extends="$unknown"
6188 uuid="d8556fca-81bc-12af-fca3-365528fa38ca"
6189
6190 wsmap="suppress"
6191 >
6192 <desc>
6193 The IGuest interface represents information about the operating system
6194 running inside the virtual machine. Used in
6195 <link to="IConsole::guest"/>.
6196
6197 IGuest provides information about the guest operating system, whether
6198 Guest Additions are installed and other OS-specific virtual machine
6199 properties.
6200 </desc>
6201
6202 <attribute name="OSTypeId" type="wstring" readonly="yes">
6203 <desc>
6204 Identifier of the Guest OS type as reported by the Guest
6205 Additions.
6206 You may use <link to="IVirtualBox::getGuestOSType"/> to obtain
6207 an IGuestOSType object representing details about the given
6208 Guest OS type.
6209 <note>
6210 If Guest Additions are not installed, this value will be
6211 the same as <link to="IMachine::OSTypeId"/>.
6212 </note>
6213 </desc>
6214 </attribute>
6215
6216 <attribute name="additionsActive" type="boolean" readonly="yes">
6217 <desc>
6218 Flag whether the Guest Additions are installed and active
6219 in which case their version will be returned by the
6220 <link to="#additionsVersion"/> property.
6221 </desc>
6222 </attribute>
6223
6224 <attribute name="additionsVersion" type="wstring" readonly="yes">
6225 <desc>
6226 Version of the Guest Additions (3 decimal numbers separated
6227 by dots) or empty when the Additions are not installed. The
6228 Additions may also report a version but yet not be active as
6229 the version might be refused by VirtualBox (incompatible) or
6230 other failures occurred.
6231 </desc>
6232 </attribute>
6233
6234 <attribute name="supportsSeamless" type="boolean" readonly="yes">
6235 <desc>
6236 Flag whether seamless guest display rendering (seamless desktop
6237 integration) is supported.
6238 </desc>
6239 </attribute>
6240
6241 <attribute name="supportsGraphics" type="boolean" readonly="yes">
6242 <desc>
6243 Flag whether the guest is in graphics mode. If it is not, then
6244 seamless rendering will not work, resize hints are not immediately
6245 acted on and guest display resizes are probably not initiated by
6246 the guest additions.
6247 </desc>
6248 </attribute>
6249
6250 <attribute name="memoryBalloonSize" type="unsigned long">
6251 <desc>Guest system memory balloon size in megabytes.</desc>
6252 </attribute>
6253
6254 <attribute name="statisticsUpdateInterval" type="unsigned long">
6255 <desc>Interval to update guest statistics in seconds.</desc>
6256 </attribute>
6257
6258 <method name="setCredentials">
6259 <desc>
6260 Store login credentials that can be queried by guest operating
6261 systems with Additions installed. The credentials are transient
6262 to the session and the guest may also choose to erase them. Note
6263 that the caller cannot determine whether the guest operating system
6264 has queried or made use of the credentials.
6265 </desc>
6266 <param name="userName" type="wstring" dir="in">
6267 <desc>User name string, can be empty</desc>
6268 </param>
6269 <param name="password" type="wstring" dir="in">
6270 <desc>Password string, can be empty</desc>
6271 </param>
6272 <param name="domain" type="wstring" dir="in">
6273 <desc>Domain name (guest logon scheme specific), can be empty</desc>
6274 </param>
6275 <param name="allowInteractiveLogon" type="boolean" dir="in">
6276 <desc>
6277 Flag whether the guest should alternatively allow the user to
6278 interactively specify different credentials. This flag might
6279 not be supported by all versions of the Additions.
6280 </desc>
6281 </param>
6282 </method>
6283
6284 <method name="getStatistic">
6285 <desc>
6286 Query specified guest statistics as reported by the VirtualBox Additions.
6287 </desc>
6288 <param name="cpuId" type="unsigned long" dir="in">
6289 <desc>Virtual CPU id; not relevant for all statistic types</desc>
6290 </param>
6291 <param name="statistic" type="GuestStatisticType" dir="in">
6292 <desc>Statistic type.</desc>
6293 </param>
6294 <param name="statVal" type="unsigned long" dir="out">
6295 <desc>Statistics value</desc>
6296 </param>
6297 </method>
6298
6299 </interface>
6300
6301
6302 <!--
6303 // IProgress
6304 /////////////////////////////////////////////////////////////////////////
6305 -->
6306
6307 <enumerator
6308 name="IProgressEnumerator" type="IProgress"
6309 uuid="e0380522-4ef1-48f4-856c-e455177ccb2d"
6310 />
6311
6312 <collection
6313 name="IProgressCollection" type="IProgress" enumerator="IProgressEnumerator"
6314 uuid="78B76A7C-F0F2-467c-9F0E-F089A54EE957"
6315 readonly="yes"
6316 />
6317
6318 <interface
6319 name="IProgress" extends="$unknown"
6320 uuid="10CC03A1-717E-429b-992D-C67B56175A51"
6321 wsmap="managed"
6322 >
6323 <desc>
6324 The IProgress interface represents a task progress object that allows
6325 to wait for the completion of some asynchronous task.
6326
6327 The task consists of one or more operations that run sequentially,
6328 one after one. There is an individual percent of completion of the
6329 current operation and the percent of completion of the task as a
6330 whole. Similarly, you can wait for the completion of a particular
6331 operation or for the completion of the whole task.
6332
6333 Every operation is identified by a number (starting from 0)
6334 and has a separate description.
6335 </desc>
6336
6337 <attribute name="id" type="uuid" readonly="yes">
6338 <desc>ID of the task.</desc>
6339 </attribute>
6340
6341 <attribute name="description" type="wstring" readonly="yes">
6342 <desc>Description of the task.</desc>
6343 </attribute>
6344
6345 <attribute name="initiator" type="$unknown" readonly="yes">
6346 <desc>Initiator of the task.</desc>
6347 </attribute>
6348
6349 <attribute name="cancelable" type="boolean" readonly="yes">
6350 <desc>Whether the task can be interrupted.</desc>
6351 </attribute>
6352
6353 <attribute name="percent" type="long" readonly="yes">
6354 <desc>
6355 Current task progress value in percent.
6356 This value depends on how many operations are already complete.
6357 </desc>
6358 </attribute>
6359
6360 <attribute name="completed" type="boolean" readonly="yes">
6361 <desc>Whether the task has been completed.</desc>
6362 </attribute>
6363
6364 <attribute name="canceled" type="boolean" readonly="yes">
6365 <desc>Whether the task has been canceled.</desc>
6366 </attribute>
6367
6368 <attribute name="resultCode" type="result" readonly="yes">
6369 <desc>
6370 Result code of the progress task.
6371 Valid only if <link to="#completed"/> is true.
6372 </desc>
6373 </attribute>
6374
6375 <attribute name="errorInfo" type="IVirtualBoxErrorInfo" readonly="yes">
6376 <desc>
6377 Extended information about the unsuccessful result of the
6378 progress operation. May be NULL when no extended information
6379 is available.
6380 Valid only if <link to="#completed"/> is true and
6381 <link to="#resultCode"/> indicates a failure.
6382 </desc>
6383 </attribute>
6384
6385 <attribute name="operationCount" type="unsigned long" readonly="yes">
6386 <desc>
6387 Number of operations this task is divided into.
6388 Every task consists of at least one operation.
6389 </desc>
6390 </attribute>
6391
6392 <attribute name="operation" type="unsigned long" readonly="yes">
6393 <desc>Number of the operation being currently executed.</desc>
6394 </attribute>
6395
6396 <attribute name="operationDescription" type="wstring" readonly="yes">
6397 <desc>
6398 Description of the operation being currently executed.
6399 </desc>
6400 </attribute>
6401
6402 <attribute name="operationPercent" type="long" readonly="yes">
6403 <desc>Current operation progress value in percent.</desc>
6404 </attribute>
6405
6406 <method name="waitForCompletion">
6407 <desc>
6408 Waits until the task is done (including all operations) with a
6409 given timeout.
6410 </desc>
6411 <param name="timeout" type="long" dir="in">
6412 <desc>
6413 Timeout value in milliseconds.
6414 Specify -1 for an indefinite wait.
6415 </desc>
6416 </param>
6417 </method>
6418
6419 <method name="waitForOperationCompletion">
6420 <desc>
6421 Waits until the given operation is done with a given timeout.
6422 </desc>
6423 <param name="operation" type="unsigned long" dir="in">
6424 <desc>
6425 Number of the operation to wait for.
6426 Must be less than <link to="#operationCount"/>.
6427 </desc>
6428 </param>
6429 <param name="timeout" type="long" dir="in">
6430 <desc>
6431 Timeout value in milliseconds.
6432 Specify -1 for an indefinite wait.
6433 </desc>
6434 </param>
6435 </method>
6436
6437 <method name="cancel">
6438 <desc>
6439 Cancels the task.
6440 <note>
6441 If <link to="#cancelable"/> is <tt>false</tt>, then
6442 this method will fail.
6443 </note>
6444 </desc>
6445 </method>
6446
6447 </interface>
6448
6449
6450 <!--
6451 // ISnapshot
6452 /////////////////////////////////////////////////////////////////////////
6453 -->
6454
6455 <enumerator
6456 name="ISnapshotEnumerator" type="ISnapshot"
6457 uuid="25cfa2a4-1f1d-4f05-9658-b7a5894ef1a3"
6458 />
6459
6460 <collection
6461 name="ISnapshotCollection" type="ISnapshot"
6462 enumerator="ISnapshotEnumerator"
6463 uuid="23852e3c-94cd-4801-ab05-ed35675b3894"
6464 readonly="yes"
6465 />
6466
6467 <interface
6468 name="ISnapshot" extends="$unknown"
6469 uuid="9f1bbf79-13b0-4da2-abba-4a992c65c083"
6470 wsmap="managed"
6471 >
6472 <desc>
6473 The ISnapshot interface represents a snapshot of the virtual
6474 machine.
6475
6476 The <i>snapshot</i> stores all the information about a virtual
6477 machine necessary to bring it to exactly the same state as it was at
6478 the time of taking the snapshot. The snapshot includes:
6479
6480 <ul>
6481 <li>all settings of the virtual machine (i.e. its hardware
6482 configuration: RAM size, attached hard disks, etc.)
6483 </li>
6484 <li>the execution state of the virtual machine (memory contents,
6485 CPU state, etc.).
6486 </li>
6487 </ul>
6488
6489 Snapshots can be <i>offline</i> (taken when the VM is powered off)
6490 or <i>online</i> (taken when the VM is running). The execution
6491 state of the offline snapshot is called a <i>zero execution state</i>
6492 (it doesn't actually contain any information about memory contents
6493 or the CPU state, assuming that all hardware is just powered off).
6494
6495 <h3>Snapshot branches</h3>
6496
6497 Snapshots can be chained. Chained snapshots form a branch where
6498 every next snapshot is based on the previous one. This chaining is
6499 mostly related to hard disk branching (see <link to="IHardDisk2"/>
6500 description). This means that every time a new snapshot is created,
6501 a new differencing hard disk is implicitly created for all normal
6502 hard disks attached to the given virtual machine. This allows to
6503 fully restore hard disk contents when the machine is later reverted
6504 to a particular snapshot.
6505
6506 In the current implementation, multiple snapshot branches within one
6507 virtual machine are not allowed. Every machine has a single branch,
6508 and <link to="IConsole::takeSnapshot()"/> operation adds a new
6509 snapshot to the top of that branch.
6510
6511 Existing snapshots can be discarded using
6512 <link to="IConsole::discardSnapshot()"/>.
6513
6514 <h3>Current snapshot</h3>
6515
6516 Every virtual machine has a current snapshot, identified by
6517 <link to="IMachine::currentSnapshot"/>. This snapshot is used as
6518 a base for the <i>current machine state</i> (see below), to the effect
6519 that all normal hard disks of the machine and its execution
6520 state are based on this snapshot.
6521
6522 In the current implementation, the current snapshot is always the
6523 last taken snapshot (i.e. the head snapshot on the branch) and it
6524 cannot be changed.
6525
6526 The current snapshot is <tt>null</tt> if the machine doesn't have
6527 snapshots at all; in this case the current machine state is just
6528 current settings of this machine plus its current execution state.
6529
6530 <h3>Current machine state</h3>
6531
6532 The current machine state is what represented by IMachine instances got
6533 directly from IVirtualBox
6534 using <link
6535 to="IVirtualBox::getMachine()">getMachine()</link>, <link
6536 to="IVirtualBox::findMachine()">findMachine()</link>, etc. (as opposed
6537 to instances returned by <link to="ISnapshot::machine"/>). This state
6538 is always used when the machine is <link to="IConsole::powerUp"> powered
6539 on</link>.
6540
6541 The current machine state also includes the current execution state.
6542 If the machine is being currently executed
6543 (<link to="IMachine::state"/> is <link to="MachineState::Running"/>
6544 and above), its execution state is just what's happening now.
6545 If it is powered off (<link to="MachineState::PoweredOff"/> or
6546 <link to="MachineState::Aborted"/>), it has a zero execution state.
6547 If the machine is saved (<link to="MachineState::Saved"/>), its
6548 execution state is what saved in the execution state file
6549 (<link to="IMachine::stateFilePath"/>).
6550
6551 If the machine is in the saved state, then, next time it is powered
6552 on, its execution state will be fully restored from the saved state
6553 file and the execution will continue from the point where the state
6554 was saved.
6555
6556 Similarly to snapshots, the current machine state can be discarded
6557 using <link to="IConsole::discardCurrentState()"/>.
6558
6559 <h3>Taking and discarding snapshots</h3>
6560
6561 The table below briefly explains the meaning of every snapshot
6562 operation:
6563
6564 <table>
6565 <tr><th>Operation</th><th>Meaning</th><th>Remarks</th></tr>
6566
6567 <tr><td><link to="IConsole::takeSnapshot()"/></td>
6568
6569 <td>Save the current state of the virtual machine, including all
6570 settings, contents of normal hard disks and the current modifications
6571 to immutable hard disks (for online snapshots)</td>
6572
6573 <td>The current state is not changed (the machine will continue
6574 execution if it is being executed when the snapshot is
6575 taken)</td></tr>
6576
6577 <tr><td><link to="IConsole::discardSnapshot()"/></td>
6578
6579 <td>Forget the state of the virtual machine stored in the snapshot:
6580 dismiss all saved settings and delete the saved execution state (for
6581 online snapshots)</td>
6582
6583 <td>Other snapshots (including child snapshots, if any) and the
6584 current state are not directly affected</td></tr>
6585
6586 <tr><td><link to="IConsole::discardCurrentState()"/></td>
6587
6588 <td>Restore the current state of the virtual machine from the state
6589 stored in the current snapshot, including all settings and hard disk
6590 contents</td>
6591
6592 <td>The current state of the machine existed prior to this operation
6593 is lost</td></tr>
6594
6595 <tr><td><link to="IConsole::discardCurrentSnapshotAndState()"/></td>
6596
6597 <td>Completely revert the virtual machine to the state it was in
6598 before the current snapshot has been taken</td>
6599
6600 <td>The current state, as well as the current snapshot, are
6601 lost</td></tr>
6602
6603 </table>
6604
6605 </desc>
6606
6607 <attribute name="id" type="uuid" readonly="yes">
6608 <desc>UUID of the snapshot.</desc>
6609 </attribute>
6610
6611 <attribute name="name" type="wstring">
6612 <desc>Short name of the snapshot.</desc>
6613 </attribute>
6614
6615 <attribute name="description" type="wstring">
6616 <desc>Optional description of the snapshot.</desc>
6617 </attribute>
6618
6619 <attribute name="timeStamp" type="long long" readonly="yes">
6620 <desc>
6621 Time stamp of the snapshot, in milliseconds since 1970-01-01 UTC.
6622 </desc>
6623 </attribute>
6624
6625 <attribute name="online" type="boolean" readonly="yes">
6626 <desc>
6627 <tt>true</tt> if this snapshot is an online snapshot and
6628 <tt>false</tt> otherwise.
6629
6630 <note>
6631 When this attribute is <tt>true</tt>, the
6632 <link to="IMachine::stateFilePath"/> attribute of the
6633 <link to="#machine"/> object associated with this snapshot
6634 will point to the saved state file. Otherwise, it will be
6635 <tt>null</tt>.
6636 </note>
6637 </desc>
6638 </attribute>
6639
6640 <attribute name="machine" type="IMachine" readonly="yes">
6641 <desc>
6642 Virtual machine this snapshot is taken on. This object
6643 stores all settings the machine had when taking this snapshot.
6644 <note>
6645 The returned machine object is immutable, i.e. no
6646 any settings can be changed.
6647 </note>
6648 </desc>
6649 </attribute>
6650
6651 <attribute name="parent" type="ISnapshot" readonly="yes">
6652 <desc>
6653 Parent snapshot (a snapshot this one is based on).
6654 <note>
6655 It's not an error to read this attribute on a snapshot
6656 that doesn't have a parent -- a null object will be
6657 returned to indicate this.
6658 </note>
6659 </desc>
6660 </attribute>
6661
6662 <attribute name="children" type="ISnapshotCollection" readonly="yes">
6663 <desc>
6664 Child snapshots (all snapshots having this one as a parent).
6665 <note>
6666 In the current implementation, there can be only one
6667 child snapshot, or no children at all, meaning this is the
6668 last (head) snapshot.
6669 </note>
6670 </desc>
6671 </attribute>
6672
6673 </interface>
6674
6675
6676 <!--
6677 // IMedia
6678 /////////////////////////////////////////////////////////////////////////
6679 -->
6680
6681 <enum
6682 name="MediaState"
6683 uuid="8b86e03c-2f1c-412a-8fbd-326f62701200"
6684 >
6685 <desc>
6686 Virtual media state.
6687 <see>IMedia</see>
6688 </desc>
6689
6690 <const name="NotCreated" value="0">
6691 <desc>
6692 Associated media storage does not exist (either was not created yet or
6693 was deleted).
6694 </desc>
6695 </const>
6696 <const name="Created" value="1">
6697 <desc>
6698 Associated storage exists and accessible.
6699 </desc>
6700 </const>
6701 <const name="LockedRead" value="2">
6702 <desc>
6703 Media is locked for reading, no data modification is possible.
6704 </desc>
6705 </const>
6706 <const name="LockedWrite" value="3">
6707 <desc>
6708 Media is locked for writing, no concurrent data reading or modification
6709 is possible.
6710 </desc>
6711 </const>
6712 <const name="Inaccessible" value="4">
6713 <desc>
6714 Associated media storage is not accessible.
6715 </desc>
6716 </const>
6717 <const name="Creating" value="5">
6718 <desc>
6719 Associated media storage is being created.
6720 </desc>
6721 </const>
6722 <const name="Deleting" value="6">
6723 <desc>
6724 Associated media storage is being deleted.
6725 </desc>
6726 </const>
6727 </enum>
6728
6729 <interface
6730 name="IMedium" extends="$unknown"
6731 uuid="a7fb3bfb-c180-4274-bae4-7fbc89046e13"
6732 wsmap="managed"
6733 >
6734 <desc>
6735 The IMedium interface is a common interface for all objects representing
6736 virtual media such as hard disks, DVD images.
6737
6738 Each medium is associated with a storage unit (such as a file on the host
6739 computer or a network resource) that holds actual data. The location of
6740 the storage unit is represented by the #location attribute. The value of
6741 this attribute is media type dependent.
6742
6743 The exact media type may be determined by querying the appropriate
6744 interface such as:
6745 <ul>
6746 <li>IHardDisk2 (virtual hard disks)</li>
6747 <li>IDVDImage2 (standard CD/DVD ISO image files)</li>
6748 <li>IFloppyImage2 (raw floppy image files)</li>
6749 </ul>
6750
6751 Existing media are opened using the following methods, depending on the
6752 media type:
6753 <ul>
6754 <li><link to="IVirtualBox::openHardDisk2()"/></li>
6755 <li><link to="IVirtualBox::openDVDImage()"/></li>
6756 <li><link to="IVirtualBox::openFloppyImage()"/></li>
6757 </ul>
6758
6759 New hard disk media are created using the
6760 <link to="IVirtualBox::createHardDisk2()"/> method. CD/DVD and floppy
6761 images are created outside VirtualBox, usually by storing a copy
6762 of the real medium of the corresponding type in a regular file.
6763
6764 <h3>Known Media</h3>
6765
6766 When an existing medium gets opened for the first time, it gets
6767 automatically remembered by the given VirtualBox installation or, in other
6768 words, becomes a <i>known medium</i>. Known media are stored in the media
6769 registry transparently maintained by VirtualBox and stored in settings
6770 files so that this registry is preserved when VirtualBox is not running.
6771
6772 Newly created virtual hard disks get remembered only when the associated
6773 storage unit is actually created (see IHardDisk2 for more details).
6774
6775 All known media can be enumerated using
6776 <link to="IVirtualBox::hardDisks2"/>,
6777 <link to="IVirtualBox::DVDImages"/> and
6778 <link to="IVirtualBox::floppyImages"/> attributes. Individual media can be
6779 quickly found by UUID using <link to="IVirtualBox::getHardDisk2()"/>
6780 and similar methods or by location using
6781 <link to="IVirtualBox::findHardDisk2()"/> and similar methods.
6782
6783 Only known media can be attached to virtual machines.
6784
6785 Removing known media from the media registry is performed when the given
6786 medium is closed using the <link to="#close()"/> method or when its
6787 associated storage unit is deleted (only for hard disks).
6788
6789 <h3>Accessibility Checks</h3>
6790
6791 The given medium (with the created storage unit) is considered to be
6792 <i>accessible</i> when its storage unit can be successfully read from.
6793 Accessible media are indicated by the <link to="MediaState::Created"/>
6794 value of the <link to="#state"/> attribute. When the storage unit cannot
6795 be read (for example, because it is located on a disconnected network
6796 resource, or was accidentally deleted outside VirtualBox), the medium is
6797 considered to be <i>inaccessible</i> which is indicated by the
6798 <link to="MediaState::Inaccessible"/> state. The details about the reason
6799 of being inaccessible can be obtained using the
6800 <link to="#lastAccessError"/> attribute.
6801
6802 A new accessibility check is performed each time the <link to="#state"/>
6803 attribute is read. Please note that this check may take long time (several
6804 seconds or even minutes, depending on the storage unit location and
6805 format), and will block the calling thread until finished. For this
6806 reason, it is recommended to never read this attribute on the main UI
6807 thread to avoid making the UI unresponsive.
6808
6809 Note that when VirtualBox starts up (e.g. the VirtualBox object gets
6810 created for the first time), all known media are in the
6811 <link to="MediaState::Inaccessible"/> state but the value of the <link
6812 to="#lastAccessError"/> attribute is <tt>null</tt> because no actual
6813 accessibility check is made on startup. This is done to make the
6814 VirtualBox object ready for serving requests as
6815 fast as possible and let the end-user application decide if it needs to
6816 check media accessibility right away or not.
6817 </desc>
6818
6819 <attribute name="id" type="uuid" readonly="yes">
6820 <desc>
6821 UUID of the medium. For a newly created medium, this value is a randomly
6822 generated UUID.
6823
6824 <note>
6825 For media in one of MediaState::NotCreated, MediaState::Creating or
6826 MediaState::Deleting states, the value of this property is undefined
6827 and will most likely be an empty UUID.
6828 </note>
6829 </desc>
6830 </attribute>
6831
6832 <attribute name="description" type="wstring">
6833 <desc>
6834 Optional description of the medium. For newly created media, the value
6835 of this attribute value is <tt>null</tt>.
6836
6837 Media types that don't support this attribute will return E_NOTIMPL in
6838 attempt to get or set this attribute's value.
6839
6840 <note>
6841 For some storage types, reading this attribute may return an outdated
6842 (last known) value when <link to="#state"/> is <link
6843 to="MediaState::Inaccessible"/> or <link
6844 to="MediaState::LockedWrite"/> because the value of this attribute is
6845 stored within the storage unit itself. Also note that changing the
6846 attribute value is not possible in such case, as well as when the
6847 medium is the <link to="MediaState::LockedRead"/> state.
6848 </note>
6849 </desc>
6850 </attribute>
6851
6852 <attribute name="state" type="MediaState" readonly="yes">
6853 <desc>
6854 Current media state. Inspect <link to="MediaState"/> values for details.
6855
6856 Reading this attribute may take long time because a new accessibility
6857 check of the storage unit is performed every time the attribute is read.
6858 This check may cause a significant delay if the storage unit of the
6859 given medium is, for example, a file located on a network share which is
6860 not currently accessible due to connectivity problems -- the call will
6861 not return until a timeout interval defined by the host OS for this
6862 operation expires.
6863
6864 If the last known state of the medium is <link to="MediaState::Created"/>
6865 and the accessibility check fails then the state would be set to
6866 <link to="MediaState::Inaccessible"/> and <link to="#lastAccessError"/>
6867 may be used to get more details about the failure. If the state of the
6868 medium is <link to="MediaState::LockedRead"/> or
6869 <link to="MediaState::LockedWrite"/> then it remains the same, and a
6870 non-null value of <link to="#lastAccessError"/> will indicate a failed
6871 accessibility check in this case.
6872
6873 Note that not all media states are applicable to certain media types.
6874 For example, states <link to="MediaState::NotCreated"/>,
6875 <link to="MediaState::LockedWrite"/>, <link to="MediaState::Creating"/>,
6876 <link to="MediaState::Deleting"/> are meaningless for IDVDImage2 and
6877 IFloppyImage2 media.
6878 </desc>
6879 </attribute>
6880
6881 <attribute name="location" type="wstring">
6882 <desc>
6883 Location of the storage unit holding media data.
6884
6885 The format of the location string is media type specific. For media
6886 types that use regular files in a host's file system, the location
6887 string is just a full file name.
6888
6889 Some media types may support changing the storage unit location by
6890 simply changing the value of this property. If this operation is not
6891 supported, the implementation will return E_NOTIMPL in attempt to set
6892 this attribute's value.
6893
6894 When setting a value of the location attribute which is a regular file
6895 in the host's file system, the given file name may be either relative to
6896 the <link to="IVirtualBox::homeFolder">VirtualBox home folder</link> or
6897 absolute. Note that if the given location specification does not contain
6898 the file extension part then a proper default extension will be
6899 automatically appended by the implementation depending on the media type.
6900 </desc>
6901 </attribute>
6902
6903 <attribute name="name" type="wstring" readonly="yes">
6904 <desc>
6905 Name of the storage unit holding media data.
6906
6907 The returned string is a short version of the <link to="#location"/>
6908 attribute that is suitable for representing the medium in situations
6909 where the full location specification is too long (such as lists
6910 and comboboxes in GUI frontends). This string is also used by frontends
6911 to sort the media list alphabetically when needed.
6912
6913 For example, for locations that are regular files in the host's file
6914 system, the value of this attribute is just a file name (+ extension),
6915 without the path specification.
6916
6917 Note that as opposed to the <link to="#location"/> attribute, the name
6918 attribute will not necessary be unique for a list of media of the
6919 given type and format.
6920 </desc>
6921 </attribute>
6922
6923 <attribute name="size" type="unsigned long long" readonly="yes">
6924 <desc>
6925 Physical size of the storage unit used to hold media data (in bytes).
6926
6927 <note>
6928 For media whose <link to="#state"/> is <link
6929 to="MediaState::Inaccessible"/>, the value of this property is the
6930 last known size. For <link to="MediaState::NotCreated"/> media,
6931 the returned value is zero.
6932 </note>
6933 </desc>
6934 </attribute>
6935
6936 <attribute name="lastAccessError" type="wstring" readonly="yes">
6937 <desc>
6938 Text message that represents the result of the last accessibility
6939 check.
6940
6941 Accessibility checks are performed each time the <link to="#state"/>
6942 attribute is read. A @c null string is returned if the last
6943 accessibility check was successful. A non-null string indicates a
6944 failure and should normally describe a reason of the failure (for
6945 example, a file read error).
6946 </desc>
6947 </attribute>
6948
6949 <attribute name="machineIds" type="uuid" safearray="yes" readonly="yes">
6950 <desc>
6951 Array of UUIDs of all machines this medium is attached to.
6952
6953 A <tt>null</tt> array is returned if this medium is not attached to any
6954 machine or to any machine's snapshot.
6955
6956 <note>
6957 The returned array will include a machine even if this medium is not
6958 attached to that machine in the current state but attached to it in
6959 one of the machine's snapshots. See <link to="#getSnapshotIds()"/> for
6960 details.
6961 </note>
6962 </desc>
6963 </attribute>
6964
6965 <method name="getSnapshotIds">
6966 <desc>
6967 Returns an array of UUIDs of all snapshots of the given machine where
6968 this medium is attached to it.
6969
6970 If the medium is attached to the machine in the current state, then the
6971 first element in the array will always be the ID of the queried machine
6972 (i.e. the value equal to the @c machineId argument), followed by
6973 snapshot IDs (if any).
6974
6975 If the medium is not attached to the machine in the current state, then
6976 the array will contain only snapshot IDs.
6977
6978 The returned array may be <tt>null</tt> if this medium is not attached
6979 to the given machine at all, neither in the current state nor in one of
6980 snapshots.
6981 </desc>
6982 <param name="machineId" type="uuid" dir="in">
6983 <desc>
6984 UUID of the machine to query.
6985 </desc>
6986 </param>
6987 <param name="snapshotIds" type="uuid" safearray="yes" dir="return">
6988 <desc>
6989 Array of snapshot UUIDs of the given machine using this medium.
6990 </desc>
6991 </param>
6992 </method>
6993
6994 <method name="lockRead">
6995 <desc>
6996 Locks this medium for reading.
6997
6998 The read lock is shared: many clients can simultaneously lock the
6999 same media for reading unless it is already locked for writing (see
7000 <link to="#lockWrite()"/>) in which case an error is returned.
7001
7002 When the medium is locked for reading, it cannot be modified from within
7003 VirtualBox. This means that any method that changes the properties of
7004 this medium or contents of the storage unit will return an error (unless
7005 explicitly stated otherwise) and that an attempt to start a virtual
7006 machine that wants to modify the medium will also fail.
7007
7008 When the virtual machine is started up, it locks for reading all media
7009 it uses in read-only mode. If some media cannot be locked for reading,
7010 the startup procedure will fail.
7011
7012 The medium locked for reading must be unlocked using the
7013 <link to="#unlockRead()"/> method. Calls to <link to="#lockRead()"/> can
7014 be nested and must be followed by the same number of paired
7015 <link to="#unlockRead()"/> calls.
7016
7017 This method sets the media state to <link to="MediaState::LockedRead"/>
7018 on success. The state prior to this call must be
7019 <link to="MediaState::Created"/>,
7020 <link to="MediaState::Inaccessible"/> or
7021 <link to="MediaState::LockedRead"/>. As you can see, inaccessible media
7022 can be locked too. This is not an error; this method performs a logical
7023 lock that prevents modifications of this media through the VirtualBox
7024 API, not a physical lock of the underlying storage unit.
7025
7026 Either on success or on failure, this method returns the current state
7027 of the medium <b>before</b> the operation.
7028 </desc>
7029 <param name="state" type="MediaState" dir="return">
7030 <desc>
7031 State of the medium after the operation.
7032 </desc>
7033 </param>
7034 </method>
7035
7036 <method name="unlockRead">
7037 <desc>
7038 Cancels the read lock previously set by <link to="#lockRead()"/>.
7039
7040 Either on success or on failure, this method returns the current state
7041 of the medium <b>after</b> the operation.
7042
7043 See <link to="#lockRead()"/> for more details.
7044 </desc>
7045 <param name="state" type="MediaState" dir="return">
7046 <desc>
7047 State of the medium after the operation.
7048 </desc>
7049 </param>
7050 </method>
7051
7052 <method name="lockWrite">
7053 <desc>
7054 Locks this medium for writing.
7055
7056 The write lock, as opposed to <link to="#lockRead()"/>, is exclusive:
7057 there may be only one client that holds a write lock and there may be no
7058 read locks while the write lock is held.
7059
7060 When the medium is locked for writing, it cannot be modified from within
7061 VirtualBox and it is not guaranteed that the values of its properties
7062 are up-to-date. Any method that changes the properties of this medium or
7063 contents of the storage unit will return an error ((unless explicitly
7064 stated otherwise) and an attempt to start a virtual machine that wants
7065 to modify or to read the medium will also fail.
7066
7067 When the virtual machine is started up, it locks for writing all media
7068 it uses to write data to. If some media cannot be locked for writing,
7069 the startup procedure will fail.
7070
7071 The medium locked for writing must be unlocked using the
7072 <link to="#unlockWrite()"/> method. Calls to <link to="#lockWrite()"/>
7073 can <b>not</b> be nested and must be followed by a paired
7074 <link to="#unlockWrite()"/> call.
7075
7076 This method sets the media state to <link to="MediaState::LockedWrite"/>
7077 on success. The state prior to this call must be
7078 <link to="MediaState::Created"/> or
7079 <link to="MediaState::Inaccessible"/>. As you can see, inaccessible media
7080 can be locked too. This is not an error; this method performs a logical
7081 lock that prevents modifications of this media through the VirtualBox
7082 API, not a physical lock of the underlying storage unit.
7083
7084 Either on success or on failure, this method returns the current state
7085 of the medium <b>before</b> the operation.
7086 </desc>
7087 <param name="state" type="MediaState" dir="return">
7088 <desc>
7089 State of the medium after the operation.
7090 </desc>
7091 </param>
7092 </method>
7093
7094 <method name="unlockWrite">
7095 <desc>
7096 Cancels the write lock previously set by <link to="#lockWrite()"/>.
7097
7098 Either on success or on failure, this method returns the current state
7099 of the medium <b>after</b> the operation.
7100
7101 See <link to="#lockWrite()"/> for more details.
7102 </desc>
7103 <param name="state" type="MediaState" dir="return">
7104 <desc>
7105 State of the medium after the operation.
7106 </desc>
7107 </param>
7108 </method>
7109
7110 <method name="close">
7111 <desc>
7112 Closes this media.
7113
7114 The hard disk must not be attached to any known virtual machine and must
7115 not have any known child hard disks, otherwise the operation will fail.
7116
7117 When the hard disk is successfully closed, it gets removed from the list
7118 of remembered hard disks, but its storage unit is not deleted. In
7119 particular, this means that this hard disk can be later opened again
7120 using the <link to="IVirtualBox::openHardDisk2"/> call.
7121
7122 Note that after this method successfully returns, the given hard disk
7123 object becomes uninitialized. This means that any attempt to call any of
7124 its methods or attributes will fail with the <tt>"Object not ready"
7125 (E_ACCESSDENIED)</tt> error.
7126 </desc>
7127 </method>
7128
7129 </interface>
7130
7131
7132 <!--
7133 // IHardDisk2
7134 /////////////////////////////////////////////////////////////////////////
7135 -->
7136
7137 <enum
7138 name="HardDiskType"
7139 uuid="a348fafd-a64e-4643-ba65-eb3896bd7e0a"
7140 >
7141 <desc>
7142 Virtual hard disk type.
7143 <see>IHardDisk</see>
7144 </desc>
7145
7146 <const name="Normal" value="0">
7147 <desc>
7148 Normal hard disk (attached directly or indirectly, preserved
7149 when taking snapshots).
7150 </desc>
7151 </const>
7152 <const name="Immutable" value="1">
7153 <desc>
7154 Immutable hard disk (attached indirectly, changes are wiped out
7155 after powering off the virtual machine).
7156 </desc>
7157 </const>
7158 <const name="Writethrough" value="2">
7159 <desc>
7160 Write through hard disk (attached directly, ignored when
7161 taking snapshots).
7162 </desc>
7163 </const>
7164 </enum>
7165
7166 <interface
7167 name="IHardDisk2Attachment" extends="$unknown"
7168 uuid="fa2f4619-2c14-4090-869e-73b45419b7b5"
7169 wsmap="struct"
7170 >
7171 <desc>
7172 The IHardDisk2Attachment interface represents a hard disk attachment of a
7173 virtual machine.
7174
7175 Every hard disk attachment specifies a slot of the virtual hard disk
7176 controller and a virtual hard disk attached to this slot.
7177
7178 The array of hard disk attachments is returned by
7179 <link to="IMachine::hardDisk2Attachments"/>.
7180
7181 <note>
7182 With the COM API, this is an interface like all the others. With the
7183 webservice, this is mapped to a structure, so querying the attribute
7184 will not return an object, but a complete structure.
7185 </note>
7186 </desc>
7187 <attribute name="hardDisk" type="IHardDisk2" readonly="yes">
7188 <desc>Hard disk object associated with this attachment.</desc>
7189 </attribute>
7190
7191 <attribute name="bus" type="StorageBus" readonly="yes">
7192 <desc>Interface bus of this attachment.</desc>
7193 </attribute>
7194
7195 <attribute name="channel" type="long" readonly="yes">
7196 <desc>Channel number of this attachment.</desc>
7197 </attribute>
7198
7199 <attribute name="device" type="long" readonly="yes">
7200 <desc>Device slot number of this attachment.</desc>
7201 </attribute>
7202
7203 </interface>
7204
7205 <interface
7206 name="IHardDisk2" extends="IMedium"
7207 uuid="4fece1c1-2a75-43ce-ba82-76d2a89b9d5d"
7208 wsmap="managed"
7209 >
7210 <desc>
7211 The IHardDisk2 interface represents a virtual hard disk drive
7212 used by a virtual machine.
7213
7214 Virtual hard disk objects virtualize the hard disk hardware and look like
7215 regular hard disks for the guest OS running inside the virtual machine.
7216
7217 <h3>Hard Disk Types</h3>
7218
7219 There are three types of hard disks:
7220 <link to="HardDiskType::Normal">Normal</link>,
7221 <link to="HardDiskType::Immutable">Immutable</link> and
7222 <link to="HardDiskType::Writethrough">Writethrough</link>. The type of the
7223 hard disk defines how the hard disk is attached to a virtual machine and
7224 what happens when a <link to="ISnapshot">snapshot</link> of the virtual
7225 machine with the attached hard disk is taken. The type of the hard disk is
7226 defined by the <link to="#type"/> attribute.
7227
7228 All hard disks can be also divided in two big groups: <i>base</i> hard
7229 disks and <i>differencing</i> hard disks. A base hard disk contains all
7230 sectors of the hard disk data in its storage unit and therefore can be
7231 used independently. On the contrary, a differencing hard disk contains
7232 only some part of the hard disk data (a subset of sectors) and needs
7233 another hard disk to get access to the missing sectors of data. This
7234 another hard disk is called a <i>parent</i> hard disk and defines a hard
7235 disk to which this differencing hard disk is known to be <i>linked to</i>.
7236 The parent hard disk may be itself a differencing hard disk. This
7237 way, differencing hard disks form a linked hard disk chain. This chain
7238 always ends with the base hard disk which is sometimes referred to as the
7239 root hard disk of this chain. Note that several differencing hard disks
7240 may be linked to the same parent hard disk. This way, all known hard disks
7241 form a hard disk tree which is based on their parent-child relationship.
7242
7243 Differencing hard disks can be distinguished from base hard disks by
7244 querying the <link to="#parent"/> attribute: base hard disks do not have
7245 parents they would depend on, so the value of this attribute is always
7246 <tt>null</tt> for them. Using this attribute, it is possible to walk up
7247 the hard disk tree (from the child hard disk to its parent). It is also
7248 possible to walk down the tree using the <link to="#children"/>
7249 attribute.
7250
7251 Note that the type of all differencing hard disks is
7252 <link to="HardDiskType::Normal">Normal</link>; all other values are
7253 meaningless for them. Base hard disks may be of any type.
7254
7255 <h3>Creating Hard Disks</h3>
7256
7257 New base hard disks are created using
7258 <link to="IVirtualBox::createHardDisk2()"/>. Existing hard disks are
7259 opened using <link to="IVirtualBox::openHardDisk2()"/>. Differencing hard
7260 disks are usually implicitly created by VirtualBox when needed but may
7261 also be created explicitly using <link to="#createDiffStorage()"/>.
7262
7263 After the hard disk is successfully created (including the storage unit)
7264 or opened, it becomes a known hard disk (remembered in the internal media
7265 registry). Known hard disks can be attached to a virtual machine, accessed
7266 through <link to="IVirtualBox::getHardDisk2()"/> and
7267 <link to="IVirtualBox::findHardDisk2()"/> methods or enumerated using the
7268 <link to="IVirtualBox::hardDisks2"/> array (only for base hard disks).
7269
7270 The following methods, besides <link to="IMedium::close()"/>,
7271 automatically remove the hard disk from the media registry:
7272 <ul>
7273 <li><link to="#deleteStorage()"/></li>
7274 <li><link to="#mergeTo()"/></li>
7275 </ul>
7276
7277 If the storage unit of the hard disk is a regular file in the host's
7278 file system then the rules stated in the description of the
7279 <link to="IMedium::location"/> attribute apply when setting its value. In
7280 addition, a plain file name without any path may be given, in which case
7281 the <link to="ISystemProperties::defaultHardDiskFolder"> default hard disk
7282 folder</link> will be prepended to it.
7283
7284 <h4>Automatic composition of the file name part</h4>
7285
7286 Another extension to the <link to="IMedium::location"/> attribute is that
7287 there is a possibility to cause VirtualBox to compose a unique value for
7288 the file name part of the location using the UUID of the hard disk. This
7289 applies only to hard disks in <link to="MediaState::NotCreated"/> state,
7290 e.g. before the storage unit is created, and works as follows. You set the
7291 value of the <link to="IMedium::location"/> attribute to a location
7292 specification which only contains the path specification but not the file
7293 name part and ends with either a forward slash or a backslash character.
7294 In response, VirtualBox will generate a new UUID for the hard disk and
7295 compose the file name using the following pattern:
7296 <pre>
7297 &lt;path&gt;/{&lt;uuid&gt;}.&lt;ext&gt;
7298 </pre>
7299 where <tt>&lt;path&gt;</tt> is the supplied path specification,
7300 <tt>&lt;uuid&gt;</tt> is the newly generated UUID and <tt>&lt;ext&gt;</tt>
7301 is the default extension for the storage format of this hard disk. After
7302 that, you may call any of the methods that create a new hard disk storage
7303 unit and they will use the generated UUID and file name.
7304
7305 <h3>Attaching Hard Disks</h3>
7306
7307 Hard disks are attached to virtual machines using the
7308 <link to="IMachine::attachHardDisk2()"/> method and detached using the
7309 <link to="IMachine::detachHardDisk2()"/> method. Depending on their
7310 <link to="#type"/>, hard disks are attached either
7311 <i>directly</i> or <i>indirectly</i>.
7312
7313 When a hard disk is being attached directly, it is associated with the
7314 virtual machine and used for hard disk operations when the machine is
7315 running. When a hard disk is being attached indirectly, a new differencing
7316 hard disk linked to it is implicitly created and this differencing hard
7317 disk is associated with the machine and used for hard disk operations.
7318 This also means that if <link to="IMachine::attachHardDisk2()"/> performs
7319 a direct attachment then the same hard disk will be returned in response
7320 to the subsequent <link to="IMachine::getHardDisk2()"/> call; however if
7321 an indirect attachment is performed then
7322 <link to="IMachine::getHardDisk2()"/> will return the implicitly created
7323 differencing hard disk, not the original one passed to <link
7324 to="IMachine::attachHardDisk2()"/>. The following table shows the
7325 dependency of the attachment type on the hard disk type:
7326
7327 <table>
7328 <tr>
7329 <th>Hard Disk Type</th>
7330 <th>Direct or Indirect?</th>
7331 </tr>
7332 <tr>
7333 <td>Normal (Base)</td>
7334 <td>
7335 Normal base hard disks that do not have children (i.e. differencing
7336 hard disks linked to them) and that are not already attached to
7337 virtual machines in snapshots are attached <b>directly</b>.
7338 Otherwise, they are attached <b>indirectly</b> because having
7339 dependent children or being part of the snapshot makes it impossible
7340 to modify hard disk contents without breaking the integrity of the
7341 dependent party. The <link to="#readOnly"/> attribute allows to
7342 quickly determine the kind of the attachment for the given hard
7343 disk. Note that if a normal base hard disk is to be indirectly
7344 attached to a virtual machine with snapshots then a special
7345 procedure called <i>smart attachment</i> is performed (see below).
7346 </td>
7347 </tr>
7348 <tr>
7349 <td>Normal (Differencing)</td>
7350 <td>
7351 Differencing hard disks are like normal base hard disks: attached
7352 <b>directly</b> if they do not have children and are not attached to
7353 virtual machines in snapshots, and <b>indirectly</b> otherwise. Note
7354 that the smart attachment procedure is never performed for
7355 differencing hard disks.
7356 </td>
7357 </tr>
7358 <tr>
7359 <td>Immutable</td>
7360 <td>
7361 Immutable hard disks are always attached <b>indirectly</b> because
7362 they are designed to be non-writable. If an immutable hard disk is
7363 attached to a virtual machine with snapshots then a special
7364 procedure called smart attachment is performed (see below).
7365 </td>
7366 </tr>
7367 <tr>
7368 <td>Writethrough</td>
7369 <td>
7370 Writethrough hard disks are always attached <b>directly</b>, also as
7371 designed. This also means that writethrough hard disks cannot have
7372 other hard disks linked to them at all.
7373 </td>
7374 </tr>
7375 </table>
7376
7377 Note that the same hard disk, regardless of its type, may be attached to
7378 more than one virtual machine at a time. In this case, the machine that is
7379 started first gains exclusive access to the hard disk and attempts to
7380 start other machines having this hard disk attached will fail until the
7381 first machine is powered down.
7382
7383 Detaching hard disks is performed in a <i>deferred</i> fashion. This means
7384 that the given hard disk remains associated with the given machine after a
7385 successful <link to="IMachine::detachHardDisk2()"/> call until
7386 <link to="IMachine::saveSettings()"/> is called to save all changes to
7387 machine settings to disk. This deferring is necessary to guarantee that
7388 the hard disk configuration may be restored at any time by a call to
7389 <link to="IMachine::discardSettings()"/> before the settings
7390 are saved (committed).
7391
7392 Note that if <link to="IMachine::discardSettings()"/> is called after
7393 indirectly attaching some hard disks to the machine but before a call to
7394 <link to="IMachine::saveSettings()"/> is made, it will implicitly delete
7395 all differencing hard disks implicitly created by
7396 <link to="IMachine::attachHardDisk2()"/> for these indirect attachments.
7397 Such implicitly created hard disks will also be immediately deleted when
7398 detached explicitly using the <link to="IMachine::detachHardDisk2()"/>
7399 call if it is made before <link to="IMachine::saveSettings()"/>. This
7400 implicit deletion is safe because newly created differencing hard
7401 disks do not contain any user data.
7402
7403 However, keep in mind that detaching differencing hard disks that were
7404 implicitly created by <link to="IMachine::attachHardDisk2()"/>
7405 before the last <link to="IMachine::saveSettings()"/> call will
7406 <b>not</b> implicitly delete them as they may already contain some data
7407 (for example, as a result of virtual machine execution). If these hard
7408 disks are no more necessary, the caller can always delete them explicitly
7409 using <link to="#deleteStorage()"/> after they are actually de-associated
7410 from this machine by the <link to="IMachine::saveSettings()"/> call.
7411
7412 <h3>Smart Attachment</h3>
7413
7414 When normal base or immutable hard disks are indirectly attached to a
7415 virtual machine then some additional steps are performed to make sure the
7416 virtual machine will have the most recent "view" of the hard disk being
7417 attached. These steps include walking through the machine's snapshots
7418 starting from the current one and going through ancestors up to the first
7419 snapshot. Hard disks attached to the virtual machine in all
7420 of the encountered snapshots are checked whether they are descendants of
7421 the given normal base or immutable hard disk. The first found child (which
7422 is the differencing hard disk) will be used instead of the normal base or
7423 immutable hard disk as a parent for creating a new differencing hard disk
7424 that will be actually attached to the machine. And only if no descendants
7425 are found or if the virtual machine does not have any snapshots then the
7426 normal base or immutable hard disk will be used itself as a parent for
7427 this differencing hard disk.
7428
7429 It is easier to explain what smart attachment does using the
7430 following example:
7431 <pre>
7432BEFORE attaching B.vdi: AFTER attaching B.vdi:
7433
7434Snapshot 1 (B.vdi) Snapshot 1 (B.vdi)
7435 Snapshot 2 (D1->B.vdi) Snapshot 2 (D1->B.vdi)
7436 Snapshot 3 (D2->D1.vdi) Snapshot 3 (D2->D1.vdi)
7437 Snapshot 4 (none) Snapshot 4 (none)
7438 CurState (none) CurState (D3->D2.vdi)
7439
7440 NOT
7441 ...
7442 CurState (D3->B.vdi)
7443 </pre>
7444 The first column is the virtual machine configuration before the base hard
7445 disk <tt>B.vdi</tt> is attached, the second column shows the machine after
7446 this hard disk is attached. Constructs like <tt>D1->B.vdi</tt> and similar
7447 mean that the hard disk that is actually attached to the machine is a
7448 differencing hard disk, <tt>D1.vdi</tt>, which is linked to (based on)
7449 another hard disk, <tt>B.vdi</tt>.
7450
7451 As we can see from the example, the hard disk <tt>B.vdi</tt> was detached
7452 from the machine before taking Snapshot 4. Later, after Snapshot 4 was
7453 taken, the user decides to attach <tt>B.vdi</tt> again. <tt>B.vdi</tt> has
7454 dependent child hard disks (<tt>D1.vdi</tt>, <tt>D2.vdi</tt>), therefore
7455 it cannot be attached directly and needs an indirect attachment (i.e.
7456 implicit creation of a new differencing hard disk). Due to the smart
7457 attachment procedure, the new differencing hard disk
7458 (<tt>D3.vdi</tt>) will be based on <tt>D2.vdi</tt>, not on
7459 <tt>B.vdi</tt> itself, since <tt>D2.vdi</tt> is the most recent view of
7460 <tt>B.vdi</tt> existing for this snapshot branch of the given virtual
7461 machine.
7462
7463 Note that if there is more than one descendant hard disk of the given base
7464 hard disk found in a snapshot, and there is an exact device, channel and
7465 bus match, then this exact match will be used. Otherwise, the youngest
7466 descendant will be picked up.
7467
7468 There is one more important aspect of the smart attachment procedure which
7469 is not related to snapshots at all. Before walking through the snapshots
7470 as described above, the backup copy of the current list of hard disk
7471 attachment is searched for descendants. This backup copy is created when
7472 the hard disk configuration is changed for the first time after the last
7473 <link to="IMachine::saveSettings()"/> call and used by
7474 <link to="IMachine::discardSettings()"/> to undo the recent hard disk
7475 changes. When such a descendant is found in this backup copy, it will be
7476 simply re-attached back, without creating a new differencing hard disk for
7477 it. This optimization is necessary to make it possible to re-attach the
7478 base or immutable hard disk to a different bus, channel or device slot
7479 without losing the contents of the differencing hard disk actually
7480 attached to the machine in place of it.
7481 </desc>
7482
7483 <attribute name="format" type="wstring" readonly="yes">
7484 <desc>
7485 Storage format of this hard disk.
7486
7487 The value of this attribute is a string that specifies a backend used to
7488 store hard disk data. The storage format is defined when you create a
7489 new hard disk or automatically detected when you open an existing hard
7490 disk medium, and cannot be changed later.
7491
7492 The list of all storage formats supported by this VirtualBox
7493 installation can be obtained using
7494 <link to="ISystemProperties::hardDiskFormats"/>.
7495 </desc>
7496 </attribute>
7497
7498 <attribute name="type" type="HardDiskType">
7499 <desc>
7500 Type (role) of this hard disk.
7501
7502 The following constraints apply when changing the value of this
7503 attribute:
7504 <ul>
7505 <li>If a hard disk is attached to a virtual machine (either in the
7506 current state or in one of the snapshots), its type cannot be
7507 changed.
7508 </li>
7509 <li>As long as the hard disk has children, its type cannot be set
7510 to <link to="HardDiskType::Writethrough"/>.
7511 </li>
7512 <li>The type of all differencing hard disks is
7513 <link to="HardDiskType::Normal"/> and cannot be changed.
7514 </li>
7515 </ul>
7516
7517 The type of a newly created or opened hard disk is set to
7518 <link to="HardDiskType::Normal"/>.
7519 </desc>
7520 </attribute>
7521
7522 <attribute name="parent" type="IHardDisk2" readonly="yes">
7523 <desc>
7524 Parent of this hard disk (a hard disk this hard disk is directly based
7525 on).
7526
7527 Only differencing hard disks have parents. For base (non-differencing)
7528 hard disks, <tt>null</tt> is returned.
7529 </desc>
7530 </attribute>
7531
7532 <attribute name="children" type="IHardDisk2" safearray="yes" readonly="yes">
7533 <desc>
7534 Children of this hard disk (all differencing hard disks directly based
7535 on this hard disk). A <tt>null</tt> array is returned if this hard disk
7536 does not have any children.
7537 </desc>
7538 </attribute>
7539
7540 <attribute name="root" type="IHardDisk2" readonly="yes">
7541 <desc>
7542 Root hard disk of this hard disk.
7543
7544 If this is a differencing hard disk, its root hard disk is the base hard
7545 disk the given hard disk branch starts from. For all other types of hard
7546 disks, this property returns the hard disk object itself (i.e. the same
7547 object this property is read on).
7548 </desc>
7549 </attribute>
7550
7551 <attribute name="readOnly" type="boolean" readonly="yes">
7552 <desc>
7553 Returns <tt>true</tt> if this hard disk is read-only and <tt>false</tt>
7554 otherwise.
7555
7556 A hard disk is considered to be read-only when its contents cannot be
7557 modified without breaking the integrity of other parties that depend on
7558 this hard disk such as its child hard disks or snapshots of virtual
7559 machines where this hard disk is attached to these machines. If there
7560 are no children and no such snapshots then there is no dependency and
7561 the hard disk is not read-only.
7562
7563 The value of this attribute can be used to determine the kind of the
7564 attachment that will take place when attaching this hard disk to a
7565 virtual machine. If the value is <tt>false</tt> then the hard disk will
7566 be attached directly. If the value is <tt>true</tt> then the hard disk
7567 will be attached indirectly by creating a new differencing child hard
7568 disk for that. See the interface description for more information.
7569
7570 Note that all <link to="HardDiskType::Immutable">Immutable</link> hard
7571 disks are always read-only while all
7572 <link to="HardDiskType::Writethrough">Writethrough</link> hard disks are
7573 always not.
7574
7575 <note>
7576 The read-only condition represented by this attribute is related to
7577 the hard disk type and usage, not to the current
7578 <link to="IMedium::state">media state</link> and not to the read-only
7579 state of the storage unit.
7580 </note>
7581 </desc>
7582 </attribute>
7583
7584 <attribute name="logicalSize" type="unsigned long long" readonly="yes">
7585 <desc>
7586 Logical size of this hard disk (in megabytes), as reported to the
7587 guest OS running inside the virtual machine this disk is
7588 attached to. The logical size is defined when the hard disk is created
7589 and cannot be changed later.
7590
7591 <note>
7592 Reading this property on a differencing hard disk will return the size
7593 of its <link to="#root"/> hard disk.
7594 </note>
7595 <note>
7596 For hard disks whose state is <link to="#state"/> is <link
7597 to="MediaState::Inaccessible"/>, the value of this property is the
7598 last known logical size. For <link to="MediaState::NotCreated"/> hard
7599 disks, the returned value is zero.
7600 </note>
7601 </desc>
7602 </attribute>
7603
7604 <!-- storage methods -->
7605
7606 <method name="getProperty">
7607 <desc>
7608 Returns the value of the custom hard disk property with the given name.
7609
7610 The list of all properties supported by the given hard disk format can
7611 be obtained with <link to="IHardDiskFormat::describeProperties()"/>.
7612
7613 Note that if this method returns a <tt>null</tt> @a value, the requested
7614 property is supported but currently not assigned any value.
7615
7616 <result name="VBOX_E_OBJECT_NOT_FOUND">
7617 Requested property does not exist (not supported by the format).
7618 </result>
7619 <result name="E_INVALIDARG">@a name is NULL or empty.</result>
7620 </desc>
7621 <param name="name" type="wstring" dir="in">
7622 <desc>Name of the property to get.</desc>
7623 </param>
7624 <param name="value" type="wstring" dir="return">
7625 <desc>Current property value.</desc>
7626 </param>
7627 </method>
7628
7629 <method name="setProperty">
7630 <desc>
7631 Sets the value of the custom hard disk property with the given name.
7632
7633 The list of all properties supported by the given hard disk format can
7634 be obtained with <link to="IHardDiskFormat::describeProperties()"/>.
7635
7636 Note that passing <tt>null</tt> as @a value will reset the value of the
7637 property to nothing which may also be understood as deleting the
7638 property's value. For properties with no values, the format backend will
7639 use a default value if such a value is defined for the given property.
7640
7641 <result name="VBOX_E_OBJECT_NOT_FOUND">
7642 Requested property does not exist (not supported by the format).
7643 </result>
7644 <result name="E_INVALIDARG">@a name is NULL or empty.</result>
7645 </desc>
7646 <param name="name" type="wstring" dir="in">
7647 <desc>Name of the property to set.</desc>
7648 </param>
7649 <param name="value" type="wstring" dir="in">
7650 <desc>Property value to set.</desc>
7651 </param>
7652 </method>
7653
7654 <method name="getProperties">
7655 <desc>
7656 Returns values for a group of properties in one call.
7657
7658 The names of the properties to get are specified using the @a names
7659 argument which is a list of comma-separated property names or
7660 <tt>null</tt> if all properties are to be returned. Note that currently
7661 the value of this argument is ignored and the method always returns all
7662 existing properties.
7663
7664 The list of all properties supported by the given hard disk format can
7665 be obtained with <link to="IHardDiskFormat::describeProperties()"/>.
7666
7667 The method returns two arrays, the array of property names corresponding
7668 to the @a names argument and the current values of these properties.
7669 <!-- FIXME: Both arrays [sentence was cut off here. Complete. -->
7670
7671 Note that for properties that don't have values assigned to them,
7672 <tt>null</tt> is returned at the appropriate index in the @a returnValues
7673 array.
7674
7675 </desc>
7676 <param name="names" type="wstring" dir="in">
7677 <desc>
7678 Names of properties to get.
7679 </desc>
7680 </param>
7681 <param name="returnNames" type="wstring" safearray="yes" dir="out">
7682 <desc>Names of returned properties.</desc>
7683 </param>
7684 <param name="returnValues" type="wstring" safearray="yes" dir="return">
7685 <desc>Values of returned properties.</desc>
7686 </param>
7687 </method>
7688
7689 <!-- storage methods -->
7690
7691 <method name="createDynamicStorage">
7692 <desc>
7693 Starts creating a dynamically expanding hard disk storage unit in the
7694 background. The previous storage unit created for this object, if
7695 any, must first be deleted using <link to="#deleteStorage"/>, otherwise
7696 the operation will fail.
7697
7698 Before the operation starts, the hard disk is placed in
7699 <link to="MediaState::Creating"/> state. If the create operation
7700 fails, the media will be placed back in <link to="MediaState::NotCreated"/>
7701 state.
7702
7703 After the returned progress object reports that the operation has
7704 successfully completed, the media state will be set to <link
7705 to="MediaState::Created"/>, the hard disk will be remembered by this
7706 VirtualBox installation and may be attached to virtual machines.
7707
7708 <result name="VBOX_E_NOT_SUPPORTED">
7709 Dynamic storage creation operation is not supported. See <link
7710 to="IHardDiskFormat::capabilities"/>.
7711 </result>
7712 </desc>
7713 <param name="logicalSize" type="unsigned long long" dir="in">
7714 <desc>Maximum logical size of the hard disk in megabytes.</desc>
7715 </param>
7716 <param name="progress" type="IProgress" dir="return">
7717 <desc>Progress object to track the operation completion.</desc>
7718 </param>
7719 </method>
7720
7721 <method name="createFixedStorage">
7722 <desc>
7723 Starts creating a fixed-size hard disk storage unit in the background.
7724 The previous storage unit created for this object, if
7725 any, must be first deleted using <link to="#deleteStorage"/>, otherwise
7726 the operation will fail.
7727
7728 Before the operation starts, the hard disk is placed to
7729 <link to="MediaState::Creating"/> state. If the create operation
7730 fails, the media will placed back to <link to="MediaState::NotCreated"/>
7731 state.
7732
7733 After the returned progress object reports that the operation is
7734 successfully complete, the media state will be set to <link
7735 to="MediaState::Created"/>, the hard disk will be remembered by this
7736 VirtualBox installation and may be attached to virtual machines.
7737
7738 <result name="VBOX_E_NOT_SUPPORTED">
7739 Fixed storage creation operation is not supported. See
7740 <link to="IHardDiskFormat::capabilities"/>.
7741 </result>
7742 </desc>
7743 <param name="logicalSize" type="unsigned long long" dir="in">
7744 <desc>Logical size of the hard disk in megabytes.</desc>
7745 </param>
7746 <param name="progress" type="IProgress" dir="return">
7747 <desc>Progress object to track the operation completion.</desc>
7748 </param>
7749 </method>
7750
7751 <method name="deleteStorage">
7752 <desc>
7753 Starts deleting the storage unit of this hard disk.
7754
7755 The hard disk must not be attached to any known virtual machine and must
7756 not have any known child hard disks, otherwise the operation will fail.
7757 It will also fail if there is no storage unit to delete or if deletion
7758 is already in progress, or if the hard disk is being in use (locked for
7759 read or for write) or inaccessible. Therefore, the only valid state for
7760 this operation to succeed is <link to="MediaState::Created"/>.
7761
7762 Before the operation starts, the hard disk is placed to
7763 <link to="MediaState::Deleting"/> state and gets removed from the list
7764 of remembered hard disks (media registry). If the delete operation
7765 fails, the media will be remembered again and placed back to
7766 <link to="MediaState::Created"/> state.
7767
7768 After the returned progress object reports that the operation is
7769 complete, the media state will be set to
7770 <link to="MediaState::NotCreated"/> and you will be able to use one of
7771 the storage creation methods to create it again.
7772
7773 <see>#close()</see>
7774
7775 <result name="VBOX_E_OBJECT_IN_USE">
7776 Hard disk is attached to a virtual machine.
7777 </result>
7778 <result name="VBOX_E_NOT_SUPPORTED">
7779 Storage deletion is not allowed because neither of storage creation
7780 operations are supported. See
7781 <link to="IHardDiskFormat::capabilities"/>.
7782 </result>
7783
7784 <note>
7785 If the deletion operation fails, it is not guaranteed that the storage
7786 unit still exists. You may check the <link to="IMedium::state"/> value
7787 to answer this question.
7788 </note>
7789 </desc>
7790 <param name="progress" type="IProgress" dir="return">
7791 <desc>Progress object to track the operation completion.</desc>
7792 </param>
7793 </method>
7794
7795 <!-- diff methods -->
7796
7797 <method name="createDiffStorage">
7798 <desc>
7799 Starts creating an empty differencing storage unit based on this hard
7800 disk in the format and at the location defined by the @a target
7801 argument.
7802
7803 The target hard disk must be in <link to="MediaState::NotCreated"/>
7804 state (i.e. must not have an existing storage unit). Upon successful
7805 completion, this operation will set the type of the target hard disk to
7806 <link to="HardDiskType::Normal"/> and create a storage unit necessary to
7807 represent the differencing hard disk data in the given format (according
7808 to the storage format of the target object).
7809
7810 After the returned progress object reports that the operation is
7811 successfully complete, the target hard disk gets remembered by this
7812 VirtualBox installation and may be attached to virtual machines.
7813
7814 <note>
7815 The hard disk will be set to <link to="MediaState::LockedRead"/>
7816 state for the duration of this operation.
7817 </note>
7818 <result name="VBOX_E_OBJECT_IN_USE">
7819 Hard disk not in NotCreated state.
7820 </result>
7821 </desc>
7822 <param name="target" type="IHardDisk2" dir="in">
7823 <desc>Target hard disk.</desc>
7824 </param>
7825 <param name="progress" type="IProgress" dir="return">
7826 <desc>Progress object to track the operation completion.</desc>
7827 </param>
7828 </method>
7829
7830 <method name="mergeTo">
7831 <desc>
7832 Starts merging the contents of this hard disk and all intermediate
7833 differencing hard disks in the chain to the given target hard disk.
7834
7835 The target hard disk must be either a descendant of this hard disk or
7836 its ancestor (otherwise this method will immediately return a failure).
7837 It follows that there are two logical directions of the merge operation:
7838 from ancestor to descendant (<i>forward merge</i>) and from descendant to
7839 ancestor (<i>backward merge</i>). Let us consider the following hard disk
7840 chain:
7841
7842 <pre>Base &lt;- Diff_1 &lt;- Diff_2</pre>
7843
7844 Here, calling this method on the <tt>Base</tt> hard disk object with
7845 <tt>Diff_2</tt> as an argument will be a forward merge; calling it on
7846 <tt>Diff_2</tt> with <tt>Base</tt> as an argument will be a backward
7847 merge. Note that in both cases the contents of the resulting hard disk
7848 will be the same, the only difference is the hard disk object that takes
7849 the result of the merge operation. In case of the forward merge in the
7850 above example, the result will be written to <tt>Diff_2</tt>; in case of
7851 the backward merge, the result will be written to <tt>Base</tt>. In
7852 other words, the result of the operation is always stored in the target
7853 hard disk.
7854
7855 Upon successful operation completion, the storage units of all hard
7856 disks in the chain between this (source) hard disk and the target hard
7857 disk, including the source hard disk itself, will be automatically
7858 deleted and the relevant hard disk objects (including this hard disk)
7859 will become uninitialized. This means that any attempt to call any of
7860 their methods or attributes will fail with the
7861 <tt>"Object not ready" (E_ACCESSDENIED)</tt> error. Applied to the above
7862 example, the forward merge of <tt>Base</tt> to <tt>Diff_2</tt> will
7863 delete and uninitialize both <tt>Base</tt> and <tt>Diff_1</tt> hard
7864 disks. Note that <tt>Diff_2</tt> in this case will become a base hard
7865 disk itself since it will no longer be based on any other hard disk.
7866
7867 Considering the above, all of the following conditions must be met in
7868 order for the merge operation to succeed:
7869 <ul>
7870 <li>
7871 Neither this (source) hard disk nor any intermediate
7872 differencing hard disk in the chain between it and the target
7873 hard disk is attached to any virtual machine.
7874 </li>
7875 <li>
7876 Neither the source hard disk nor the target hard disk is an
7877 <link to="HardDiskType::Immutable"/> hard disk.
7878 </li>
7879 <li>
7880 The part of the hard disk tree from the source hard disk to the
7881 target hard disk is a linear chain, i.e. all hard disks in this
7882 chain have exactly one child which is the next hard disk in this
7883 chain. The only exception from this rule is the target hard disk in
7884 the forward merge operation; it is allowed to have any number of
7885 child hard disks because the merge operation will hot change its
7886 logical contents (as it is seen by the guest OS or by children).
7887 </li>
7888 <li>
7889 None of the involved hard disks are in
7890 <link to="MediaState::LockedRead"/> or
7891 <link to="MediaState::LockedWrite"/> state.
7892 </li>
7893 </ul>
7894
7895 <note>
7896 This (source) hard disk and all intermediates will be placed to <link
7897 to="MediaState::Deleting"/> state and the target hard disk will be
7898 placed to <link to="MediaState::LockedWrite"/> state and for the
7899 duration of this operation.
7900 </note>
7901 </desc>
7902 <param name="targetId" type="uuid" dir="in">
7903 <desc>UUID of the target ancestor or descendant hard disk.</desc>
7904 </param>
7905 <param name="progress" type="IProgress" dir="return">
7906 <desc>Progress object to track the operation completion.</desc>
7907 </param>
7908 </method>
7909
7910 <!-- clone methods -->
7911
7912 <method name="cloneTo">
7913 <desc>
7914 Starts creating a clone of this hard disk in the format and at the
7915 location defined by the @a target argument.
7916
7917 The target hard disk must be in <link to="MediaState::NotCreated"/>
7918 state (i.e. must not have an existing storage unit). Upon successful
7919 completion, the cloned hard disk will contain exactly the same sector
7920 data as the hard disk being cloned, except that a new UUID for the clone
7921 will be randomly generated.
7922
7923 After the returned progress object reports that the operation is
7924 successfully complete, the target hard disk gets remembered by this
7925 VirtualBox installation and may be attached to virtual machines.
7926
7927 <note>
7928 If the cloned hard disk is a differencing hard disk, it will inherit
7929 parent dependency of the original hard disk.
7930 </note>
7931 <note>
7932 This hard disk will be placed to <link to="MediaState::LockedRead"/>
7933 state for the duration of this operation.
7934 </note>
7935 </desc>
7936 <param name="target" type="IHardDisk2" dir="in">
7937 <desc>Target hard disk.</desc>
7938 </param>
7939 <param name="progress" type="IProgress" dir="return">
7940 <desc>Progress object to track the operation completion.</desc>
7941 </param>
7942 </method>
7943
7944 <method name="flattenTo">
7945 <desc>
7946 Starts creating a deep (independent) clone of this hard disk in the
7947 format and at the location defined by the @a target argument.
7948
7949 This operation is similar to <link to="#cloneTo()"/> except that when
7950 applied to a differencing hard disk, it will also copy missing hard disk
7951 data from all parent hard disks it is linked to. This will make the
7952 created clone an independent base hard disk that contains all hard disk
7953 data and does not need any other hard disks to operate.
7954
7955 After the returned progress object reports that the operation is
7956 successfully complete, the target hard disk gets remembered by this
7957 VirtualBox installation and may be attached to virtual machines.
7958
7959 <note>
7960 For base hard disks, this operation is identical to
7961 <link to="#cloneTo()"/>.
7962 </note>
7963 <note>
7964 This hard disk and all its parent hard disks will be placed to <link
7965 to="MediaState::LockedRead"/> state for the duration of this
7966 operation.
7967 </note>
7968 </desc>
7969 <param name="target" type="IHardDisk2" dir="in">
7970 <desc>Target hard disk.</desc>
7971 </param>
7972 <param name="progress" type="IProgress" dir="return">
7973 <desc>Progress object to track the operation completion.</desc>
7974 </param>
7975 </method>
7976
7977 </interface>
7978
7979
7980 <!--
7981 // IHardDiskFormat
7982 /////////////////////////////////////////////////////////////////////////
7983 -->
7984
7985 <enum
7986 name="DataType"
7987 uuid="d90ea51e-a3f1-4a01-beb1-c1723c0d3ba7"
7988 >
7989 <const name="Int32" value="0"/>
7990 <const name="Int8" value="1"/>
7991 <const name="String" value="2"/>
7992 </enum>
7993
7994 <enum
7995 name="DataFlags"
7996 uuid="86884dcf-1d6b-4f1b-b4bf-f5aa44959d60"
7997 >
7998 <const name="None" value="0x00"/>
7999 <const name="Mandatory" value="0x01"/>
8000 <const name="Expert" value="0x02"/>
8001 <const name="Array" value="0x04"/>
8002 <const name="FlagMask" value="0x07"/>
8003 </enum>
8004
8005 <enum
8006 name="HardDiskFormatCapabilities"
8007 uuid="1df1e4aa-d25a-4ba6-b2a2-02f60eb5903b"
8008 >
8009 <desc>
8010 Hard disk format capability flags.
8011 </desc>
8012
8013 <const name="Uuid" value="0x01">
8014 <desc>
8015 Supports UUIDs as expected by VirtualBox code.
8016 </desc>
8017 </const>
8018
8019 <const name="CreateFixed" value="0x02">
8020 <desc>
8021 Supports creating fixed size images, allocating all space instantly.
8022 </desc>
8023 </const>
8024
8025 <const name="CreateDynamic" value="0x04">
8026 <desc>
8027 Supports creating dynamically growing images, allocating space on
8028 demand.
8029 </desc>
8030 </const>
8031
8032 <const name="CreateSplit2G" value="0x08">
8033 <desc>
8034 Supports creating images split in chunks of a bit less than 2 GBytes.
8035 </desc>
8036 </const>
8037
8038 <const name="Differencing" value="0x10">
8039 <desc>
8040 Supports being used as a format for differencing hard disks (see <link
8041 to="IHardDisk2::createDiffStorage"/>).
8042 </desc>
8043 </const>
8044
8045 <const name="Asynchronous" value="0x20">
8046 <desc>
8047 Supports asynchronous I/O operations for at least some configurations.
8048 </desc>
8049 </const>
8050
8051 <const name="File" value="0x40">
8052 <desc>
8053 The format backend operates on files. The <link to="IMedium::location"/>
8054 attribute of the hard disk specifies a file used to store hard disk
8055 data. For a list of supported file extensions see
8056 <link to="IHardDiskFormat::fileExtensions"/>.
8057 </desc>
8058 </const>
8059
8060 <const name="Properties" value="0x80">
8061 <desc>
8062 The format backend uses the property interface to configure the storage
8063 location and properties. The <link to="IHardDiskFormat::describeProperties"/>
8064 method is used to get access to properties supported by the given hard
8065 disk format.
8066 </desc>
8067 </const>
8068
8069 <const name="CapabilityMask" value="0xFF"/>
8070 </enum>
8071
8072 <interface
8073 name="IHardDiskFormat" extends="$unknown"
8074 uuid="7f3ba790-3a0b-4a8a-bac2-bb50150123c5"
8075 wsmap="managed"
8076 >
8077 <desc>
8078 The IHardDiskFormat interface represents a virtual hard disk format.
8079
8080 Each hard disk format has an associated backend which is used to handle
8081 hard disks stored in this format. This interface provides information
8082 about the properties of the associated backend.
8083
8084 Each hard disk format is identified by a string represented by the
8085 <link to="#id"/> attribute. This string is used in calls like
8086 <link to="IVirtualBox::createHardDisk2()"/> to specify the desired
8087 format.
8088
8089 The list of all supported hard disk formats can be obtained using
8090 <link to="ISystemProperties::hardDiskFormats"/>.
8091
8092 <see>IHardDisk2</see>
8093 </desc>
8094
8095 <attribute name="id" type="wstring" readonly="yes">
8096 <desc>
8097 Identifier of this format.
8098
8099 This string is used in methods of other interfaces where it is necessary
8100 to specify a hard disk format, such as
8101 <link to="IVirtualBox::createHardDisk2()"/>.
8102 </desc>
8103 </attribute>
8104
8105 <attribute name="name" type="wstring" readonly="yes">
8106 <desc>
8107 Human readable description of this format.
8108
8109 Mainly for use in file open dialogs.
8110 </desc>
8111 </attribute>
8112
8113 <attribute name="fileExtensions" type="wstring" safearray="yes" readonly="yes">
8114 <desc>
8115 Array of strings containing the supported file extensions.
8116
8117 The first extension in the array is the extension preferred by the
8118 backend. It is recommended to use this extension when specifying a
8119 location of the storage unit for a new hard disk.
8120
8121 Note that some backends do not work on files, so this array may be
8122 empty.
8123
8124 <see>IHardDiskFormat::capabilities</see>
8125 </desc>
8126 </attribute>
8127
8128 <attribute name="capabilities" type="unsigned long" readonly="yes">
8129 <desc>
8130 Capabilities of the format as a set of bit flags.
8131
8132 For the meaning of individual capability flags see
8133 <link to="HardDiskFormatCapabilities"/>.
8134 </desc>
8135 </attribute>
8136
8137 <method name="describeProperties">
8138 <desc>
8139 Returns several arrays describing the properties supported by this
8140 format.
8141
8142 An element with the given index in each array describes one
8143 property. Thus, the number of elements in each returned array is the
8144 same and corresponds to the number of supported properties.
8145
8146 The returned arrays are not empty only if the
8147 <link to="HardDiskFormatCapabilities::Properties"/> flag is set.
8148
8149 <see>DataType</see>
8150 <see>DataFlags</see>
8151 </desc>
8152
8153 <param name="names" type="wstring" safearray="yes" dir="out">
8154 <desc>Array of property names.</desc>
8155 </param>
8156 <param name="description" type="wstring" safearray="yes" dir="out">
8157 <desc>Array of property descriptions.</desc>
8158 </param>
8159 <param name="types" type="DataType" safearray="yes" dir="out">
8160 <desc>Array of property types.</desc>
8161 </param>
8162 <param name="flags" type="unsigned long" safearray="yes" dir="out">
8163 <desc>Array of property flags.</desc>
8164 </param>
8165 <param name="defaults" type="wstring" safearray="yes" dir="out">
8166 <desc>Array of default property values.</desc>
8167 </param>
8168 </method>
8169
8170 </interface>
8171
8172
8173 <!--
8174 // IFloppyImage2
8175 /////////////////////////////////////////////////////////////////////////
8176 -->
8177
8178 <interface
8179 name="IFloppyImage2" extends="IMedium"
8180 uuid="fcdee8f0-03f9-11dd-95ff-0800200c9a66"
8181 wsmap="managed"
8182 >
8183 <desc>
8184 The IFloppyImage2 interface represents a medium containing the image
8185 of a floppy disk.
8186 </desc>
8187
8188 </interface>
8189
8190
8191 <!--
8192 // IDVDImage2
8193 /////////////////////////////////////////////////////////////////////////
8194 -->
8195
8196 <interface
8197 name="IDVDImage2" extends="IMedium"
8198 uuid="1c5165f1-9543-478d-a117-84a1d2317068"
8199 wsmap="managed"
8200 >
8201 <desc>
8202 The IDVDImage2 interface represents a medium containing the image
8203 of a CD or DVD disk in the ISO format.
8204 </desc>
8205
8206 </interface>
8207
8208
8209 <!--
8210 // IDVDDrive
8211 /////////////////////////////////////////////////////////////////////////
8212 -->
8213
8214 <interface
8215 name="IDVDDrive" extends="$unknown"
8216 uuid="d650ef30-be9b-4dae-b463-11d5824681a5"
8217 wsmap="managed"
8218 >
8219 <desc>
8220 The IDVDDrive interface represents the virtual CD/DVD drive of the
8221 virtual machine. An object of this type is returned by
8222 <link to="IMachine::DVDDrive"/>.
8223 </desc>
8224
8225 <attribute name="state" type="DriveState" readonly="yes">
8226 <desc>Current drive state.</desc>
8227 </attribute>
8228
8229 <attribute name="passthrough" type="boolean">
8230 <desc>
8231 When a host drive is mounted and passthrough is enabled
8232 the guest OS will be able to directly send SCSI commands to
8233 the host drive. This enables the guest OS to use CD/DVD writers
8234 but is potentially dangerous.
8235 </desc>
8236 </attribute>
8237
8238 <method name="mountImage">
8239 <desc>Mounts a CD/DVD image with the specified UUID.</desc>
8240 <param name="imageId" type="uuid" dir="in"/>
8241 </method>
8242
8243 <method name="captureHostDrive">
8244 <desc>Captures the specified host CD/DVD drive.</desc>
8245 <param name="drive" type="IHostDVDDrive" dir="in"/>
8246 </method>
8247
8248 <method name="unmount">
8249 <desc>Unmounts the currently mounted image or host drive.</desc>
8250 </method>
8251
8252 <method name="getImage">
8253 <desc>Returns the currently mounted CD/DVD image.</desc>
8254 <param name="image" type="IDVDImage2" dir="return"/>
8255 </method>
8256
8257 <method name="getHostDrive">
8258 <desc>Returns the currently mounted host CD/DVD drive.</desc>
8259 <param name="drive" type="IHostDVDDrive" dir="return"/>
8260 </method>
8261
8262 </interface>
8263
8264
8265 <!--
8266 // IFloppyDrive
8267 /////////////////////////////////////////////////////////////////////////
8268 -->
8269
8270 <interface
8271 name="IFloppyDrive" extends="$unknown"
8272 uuid="159412cd-bab8-452e-8097-218a020825a6"
8273 wsmap="managed"
8274 >
8275 <desc>
8276 The IFloppyDrive interface represents the virtual floppy drive of the
8277 virtual machine. An object of this type is returned by
8278 <link to="IMachine::floppyDrive" />.
8279 </desc>
8280
8281 <attribute name="enabled" type="boolean">
8282 <desc>
8283 Flag whether the floppy drive is enabled. If it is disabled,
8284 the floppy drive will not be reported to the guest OS.
8285 </desc>
8286 </attribute>
8287
8288 <attribute name="state" type="DriveState" readonly="yes">
8289 <desc>Current drive state.</desc>
8290 </attribute>
8291
8292 <method name="mountImage">
8293 <desc>Mounts a floppy image with the specified UUID.</desc>
8294 <param name="imageId" type="uuid" dir="in"/>
8295 </method>
8296
8297 <method name="captureHostDrive">
8298 <desc>Captures the specified host floppy drive.</desc>
8299 <param name="drive" type="IHostFloppyDrive" dir="in"/>
8300 </method>
8301
8302 <method name="unmount">
8303 <desc>Unmounts the currently mounted image or host drive.</desc>
8304 </method>
8305
8306 <method name="getImage">
8307 <desc>Returns the currently mounted floppy image.</desc>
8308 <param name="image" type="IFloppyImage2" dir="return"/>
8309 </method>
8310
8311 <method name="getHostDrive">
8312 <desc>Returns the currently mounted host floppy drive.</desc>
8313 <param name="drive" type="IHostFloppyDrive" dir="return"/>
8314 </method>
8315
8316 </interface>
8317
8318
8319 <!--
8320 // IKeyboard
8321 /////////////////////////////////////////////////////////////////////////
8322 -->
8323
8324 <interface
8325 name="IKeyboard" extends="$unknown"
8326 uuid="2d1a531b-4c6e-49cc-8af6-5c857b78b5d7"
8327 wsmap="managed"
8328 >
8329 <desc>
8330 The IKeyboard interface represents the virtual machine's keyboard. Used
8331 in <link to="IConsole::keyboard"/>.
8332
8333 Through this interface, the virtual machine's virtual keyboard can be controlled. One
8334 can send keystrokes to the virtual machine and send the Ctrl-Alt-Del sequence to it.
8335 </desc>
8336 <method name="putScancode">
8337 <desc>Sends a scancode to the keyboard.</desc>
8338 <param name="scancode" type="long" dir="in"/>
8339 </method>
8340
8341 <method name="putScancodes">
8342 <desc>Sends an array of scancode to the keyboard.</desc>
8343 <param name="scancodes" type="long" dir="in" safearray="yes"/>
8344 <param name="codesStored" type="unsigned long" dir="return"/>
8345 </method>
8346
8347 <method name="putCAD">
8348 <desc>Sends the Ctrl-Alt-Del sequence to the keyboard.</desc>
8349 </method>
8350
8351 </interface>
8352
8353
8354 <!--
8355 // IMouse
8356 /////////////////////////////////////////////////////////////////////////
8357 -->
8358
8359 <enum
8360 name="MouseButtonState"
8361 uuid="03131722-2EC5-4173-9794-0DACA46673EF"
8362 >
8363 <desc>
8364 Mouse button state.
8365 </desc>
8366
8367 <const name="LeftButton" value="0x01"/>
8368 <const name="RightButton" value="0x02"/>
8369 <const name="MiddleButton" value="0x04"/>
8370 <const name="WheelUp" value="0x08"/>
8371 <const name="WheelDown" value="0x10"/>
8372 <const name="MouseStateMask" value="0x1F"/>
8373 </enum>
8374
8375 <interface
8376 name="IMouse" extends="$unknown"
8377 uuid="FD443EC1-0006-4F5B-9282-D72760A66916"
8378 wsmap="managed"
8379 >
8380 <desc>
8381 The IMouse interface represents the virtual machine's mouse. Used in
8382 <link to="IConsole::mouse"/>.
8383
8384 Through this interface, the virtual machine's virtual mouse can be
8385 controlled.
8386 </desc>
8387
8388 <attribute name="absoluteSupported" type="boolean" readonly="yes">
8389 <desc>
8390 Whether the guest OS supports absolute mouse pointer positioning
8391 or not.
8392 <note>
8393 VirtualBox Guest Tools need to be installed to the guest OS
8394 in order to enable absolute mouse positioning support.
8395 You can use the <link to="IConsoleCallback::onMouseCapabilityChange"/>
8396 callback to be instantly informed about changes of this attribute
8397 during virtual machine execution.
8398 </note>
8399 <see><link to="#putMouseEventAbsolute"/></see>
8400 </desc>
8401 </attribute>
8402
8403 <method name="putMouseEvent">
8404 <desc>
8405 Initiates a mouse event using relative pointer movements
8406 along x and y axis.
8407 </desc>
8408
8409 <param name="dx" type="long" dir="in">
8410 <desc>
8411 Amount of pixels the mouse should move to the right.
8412 Negative values move the mouse to the left.
8413 </desc>
8414 </param>
8415 <param name="dy" type="long" dir="in">
8416 <desc>
8417 Amount of pixels the mouse should move downwards.
8418 Negative values move the mouse upwards.
8419 </desc>
8420 </param>
8421 <param name="dz" type="long" dir="in">
8422 <desc>
8423 Amount of mouse wheel moves.
8424 Positive values describe clockwise wheel rotations,
8425 negative values describe counterclockwise rotations.
8426 </desc>
8427 </param>
8428 <param name="buttonState" type="long" dir="in">
8429 <desc>
8430 The current state of mouse buttons. Every bit represents
8431 a mouse button as follows:
8432 <table>
8433 <tr><td>Bit 0 (<tt>0x01</tt>)</td><td>left mouse button</td></tr>
8434 <tr><td>Bit 1 (<tt>0x02</tt>)</td><td>right mouse button</td></tr>
8435 <tr><td>Bit 2 (<tt>0x04</tt>)</td><td>middle mouse button</td></tr>
8436 </table>
8437 A value of <tt>1</tt> means the corresponding button is pressed.
8438 otherwise it is released.
8439 </desc>
8440 </param>
8441 </method>
8442
8443 <method name="putMouseEventAbsolute">
8444 <desc>
8445 Positions the mouse pointer using absolute x and y coordinates.
8446 These coordinates are expressed in pixels and
8447 start from <tt>[1,1]</tt> which corresponds to the top left
8448 corner of the virtual display.
8449
8450 <note>
8451 This method will have effect only if absolute mouse
8452 positioning is supported by the guest OS.
8453 </note>
8454
8455 <see><link to="#absoluteSupported"/></see>
8456 </desc>
8457
8458 <param name="x" type="long" dir="in">
8459 <desc>
8460 X coordinate of the pointer in pixels, starting from <tt>1</tt>.
8461 </desc>
8462 </param>
8463 <param name="y" type="long" dir="in">
8464 <desc>
8465 Y coordinate of the pointer in pixels, starting from <tt>1</tt>.
8466 </desc>
8467 </param>
8468 <param name="dz" type="long" dir="in">
8469 <desc>
8470 Amount of mouse wheel moves.
8471 Positive values describe clockwise wheel rotations,
8472 negative values describe counterclockwise rotations.
8473 </desc>
8474 </param>
8475 <param name="buttonState" type="long" dir="in">
8476 <desc>
8477 The current state of mouse buttons. Every bit represents
8478 a mouse button as follows:
8479 <table>
8480 <tr><td>Bit 0 (<tt>0x01</tt>)</td><td>left mouse button</td></tr>
8481 <tr><td>Bit 1 (<tt>0x02</tt>)</td><td>right mouse button</td></tr>
8482 <tr><td>Bit 2 (<tt>0x04</tt>)</td><td>middle mouse button</td></tr>
8483 </table>
8484 A value of <tt>1</tt> means the corresponding button is pressed.
8485 otherwise it is released.
8486 </desc>
8487 </param>
8488 </method>
8489
8490 </interface>
8491
8492 <!--
8493 // IDisplay
8494 /////////////////////////////////////////////////////////////////////////
8495 -->
8496
8497 <enum
8498 name="FramebufferAccelerationOperation"
8499 uuid="f0e5ebbe-dc8e-4e2d-916e-53baa3844df8"
8500 >
8501 <desc>
8502 Frame buffer acceleration operation.
8503 </desc>
8504
8505 <const name="SolidFillAcceleration" value="1"/>
8506 <const name="ScreenCopyAcceleration" value="2"/>
8507 </enum>
8508
8509 <enum
8510 name="FramebufferPixelFormat"
8511 uuid="6b27d1fc-4f2c-4e9c-a166-01d06540305d"
8512 >
8513 <desc>
8514 Format of the video memory buffer. Constants represented by this enum can
8515 be used to test for particular values of <link
8516 to="IFramebuffer::pixelFormat"/>. See also <link
8517 to="IFramebuffer::requestResize()"/>.
8518
8519 See also www.fourcc.org for more information about FOURCC pixel formats.
8520 </desc>
8521
8522 <const name="Opaque" value="0xFFFFFFFF">
8523 <desc>
8524 Unknown buffer format. The user may not assume any particular
8525 format of the buffer.
8526 </desc>
8527 </const>
8528 <const name="FOURCC_RGB" value="0x32424752">
8529 <desc>
8530 Basic RGB format. <link to="IFramebuffer::bitsPerPixel"/> determines
8531 the bit layout.
8532 </desc>
8533 </const>
8534 </enum>
8535
8536 <interface
8537 name="IFramebuffer" extends="$unknown"
8538 uuid="af431304-5b09-40e2-94da-3c3cb03822c1"
8539 wsmap="suppress"
8540 >
8541 <attribute name="address" type="octet" mod="ptr" readonly="yes">
8542 <desc>Address of the start byte of the frame buffer.</desc>
8543 </attribute>
8544
8545 <attribute name="width" type="unsigned long" readonly="yes">
8546 <desc>Frame buffer width, in pixels.</desc>
8547 </attribute>
8548
8549 <attribute name="height" type="unsigned long" readonly="yes">
8550 <desc>Frame buffer height, in pixels.</desc>
8551 </attribute>
8552
8553 <attribute name="bitsPerPixel" type="unsigned long" readonly="yes">
8554 <desc>
8555 Color depth, in bits per pixel. When <link to="#pixelFormat"/> is <link
8556 to="FramebufferPixelFormat::FOURCC_RGB">FOURCC_RGB</link>, valid values
8557 are: 8, 15, 16, 24 and 32.
8558 </desc>
8559 </attribute>
8560
8561 <attribute name="bytesPerLine" type="unsigned long" readonly="yes">
8562 <desc>
8563 Scan line size, in bytes. When <link to="#pixelFormat"/> is <link
8564 to="FramebufferPixelFormat::FOURCC_RGB">FOURCC_RGB</link>, the
8565 size of the scan line must be aligned to 32 bits.
8566 </desc>
8567 </attribute>
8568
8569 <attribute name="pixelFormat" type="unsigned long" readonly="yes">
8570 <desc>
8571 Frame buffer pixel format. It's either one of the values defined by <link
8572 to="FramebufferPixelFormat"/> or a raw FOURCC code.
8573 <note>
8574 This attribute must never return <link
8575 to="PixelFormat::Opaque"/> -- the format of the buffer
8576 <link to="#address"/> points to must be always known.
8577 </note>
8578 </desc>
8579 </attribute>
8580
8581 <attribute name="usesGuestVRAM" type="boolean" readonly="yes">
8582 <desc>
8583 Defines whether this frame buffer uses the virtual video card's memory
8584 buffer (guest VRAM) directly or not. See <link
8585 to="IFramebuffer::requestResize()"/> for more information.
8586 </desc>
8587 </attribute>
8588
8589 <attribute name="heightReduction" type="unsigned long" readonly="yes">
8590 <desc>
8591 Hint from the frame buffer about how much of the standard
8592 screen height it wants to use for itself. This information is
8593 exposed to the guest through the VESA BIOS and VMMDev interface
8594 so that it can use it for determining its video mode table. It
8595 is not guaranteed that the guest respects the value.
8596 </desc>
8597 </attribute>
8598
8599 <attribute name="overlay" type="IFramebufferOverlay" readonly="yes">
8600 <desc>
8601 An alpha-blended overlay which is superposed over the frame buffer.
8602 The initial purpose is to allow the display of icons providing
8603 information about the VM state, including disk activity, in front
8604 ends which do not have other means of doing that. The overlay is
8605 designed to controlled exclusively by IDisplay. It has no locking
8606 of its own, and any changes made to it are not guaranteed to be
8607 visible until the affected portion of IFramebuffer is updated. The
8608 overlay can be created lazily the first time it is requested. This
8609 attribute can also return NULL to signal that the overlay is not
8610 implemented.
8611 </desc>
8612 </attribute>
8613
8614 <attribute name="winId" type="unsigned long long" readonly="yes">
8615 <desc>
8616 Platform-dependent identifier of the window where context of this
8617 frame buffer is drawn, or zero if there's no such window.
8618 </desc>
8619 </attribute>
8620
8621 <method name="lock">
8622 <desc>
8623 Locks the frame buffer.
8624 Gets called by the IDisplay object where this frame buffer is
8625 bound to.
8626 </desc>
8627 </method>
8628
8629 <method name="unlock">
8630 <desc>
8631 Unlocks the frame buffer.
8632 Gets called by the IDisplay object where this frame buffer is
8633 bound to.
8634 </desc>
8635 </method>
8636
8637 <method name="notifyUpdate">
8638 <desc>
8639 Informs about an update.
8640 Gets called by the display object where this buffer is
8641 registered.
8642 </desc>
8643 <param name="x" type="unsigned long" dir="in"/>
8644 <param name="y" type="unsigned long" dir="in"/>
8645 <param name="width" type="unsigned long" dir="in"/>
8646 <param name="height" type="unsigned long" dir="in"/>
8647 <param name="finished" type="boolean" dir="return"/>
8648 </method>
8649
8650 <method name="requestResize">
8651 <desc>
8652 Requests a size and pixel format change.
8653
8654 There are two modes of working with the video buffer of the virtual
8655 machine. The <i>indirect</i> mode implies that the IFramebuffer
8656 implementation allocates a memory buffer for the requested display mode
8657 and provides it to the virtual machine. In <i>direct</i> mode, the
8658 IFramebuffer implementation uses the memory buffer allocated and owned
8659 by the virtual machine. This buffer represents the video memory of the
8660 emulated video adapter (so called <i>guest VRAM</i>). The direct mode is
8661 usually faster because the implementation gets a raw pointer to the
8662 guest VRAM buffer which it can directly use for visualizing the contents
8663 of the virtual display, as opposed to the indirect mode where the
8664 contents of guest VRAM are copied to the memory buffer provided by
8665 the implementation every time a display update occurs.
8666
8667 It is important to note that the direct mode is really fast only when
8668 the implementation uses the given guest VRAM buffer directly, for
8669 example, by blitting it to the window representing the virtual machine's
8670 display, which saves at least one copy operation comparing to the
8671 indirect mode. However, using the guest VRAM buffer directly is not
8672 always possible: the format and the color depth of this buffer may be
8673 not supported by the target window, or it may be unknown (opaque) as in
8674 case of text or non-linear multi-plane VGA video modes. In this case,
8675 the indirect mode (that is always available) should be used as a
8676 fallback: when the guest VRAM contents are copied to the
8677 implementation-provided memory buffer, color and format conversion is
8678 done automatically by the underlying code.
8679
8680 The @a pixelFormat parameter defines whether the direct mode is
8681 available or not. If @a pixelFormat is <link
8682 to="PixelFormat::Opaque"/> then direct access to the guest
8683 VRAM buffer is not available -- the @a VRAM, @a bitsPerPixel and @a
8684 bytesPerLine parameters must be ignored and the implementation must use
8685 the indirect mode (where it provides its own buffer in one of the
8686 supported formats). In all other cases, @a pixelFormat together with @a
8687 bitsPerPixel and @a bytesPerLine define the format of the video memory
8688 buffer pointed to by the @a VRAM parameter and the implementation is
8689 free to choose which mode to use. To indicate that this frame buffer uses
8690 the direct mode, the implementation of the <link to="#usesGuestVRAM"/>
8691 attribute must return <tt>true</tt> and <link to="#address"/> must
8692 return exactly the same address that is passed in the @a VRAM parameter
8693 of this method; otherwise it is assumed that the indirect strategy is
8694 chosen.
8695
8696 The @a width and @a height parameters represent the size of the
8697 requested display mode in both modes. In case of indirect mode, the
8698 provided memory buffer should be big enough to store data of the given
8699 display mode. In case of direct mode, it is guaranteed that the given @a
8700 VRAM buffer contains enough space to represent the display mode of the
8701 given size. Note that this frame buffer's <link to="#width"/> and <link
8702 to="#height"/> attributes must return exactly the same values as
8703 passed to this method after the resize is completed (see below).
8704
8705 The @a finished output parameter determines if the implementation has
8706 finished resizing the frame buffer or not. If, for some reason, the
8707 resize cannot be finished immediately during this call, @a finished
8708 must be set to @c false, and the implementation must call
8709 <link to="IDisplay::resizeCompleted()"/> after it has returned from
8710 this method as soon as possible. If @a finished is @c false, the
8711 machine will not call any frame buffer methods until
8712 <link to="IDisplay::resizeCompleted()"/> is called.
8713
8714 Note that if the direct mode is chosen, the <link to="#bitsPerPixel"/>,
8715 <link to="#bytesPerLine"/> and <link to="#pixelFormat"/> attributes of
8716 this frame buffer must return exactly the same values as specified in the
8717 parameters of this method, after the resize is completed. If the
8718 indirect mode is chosen, these attributes must return values describing
8719 the format of the implementation's own memory buffer <link
8720 to="#address"/> points to. Note also that the <link to="#bitsPerPixel"/>
8721 value must always correlate with <link to="#pixelFormat"/>. Note that
8722 the <link to="#pixelFormat"/> attribute must never return <link
8723 to="PixelFormat::Opaque"/> regardless of the selected mode.
8724
8725 <note>
8726 This method is called by the IDisplay object under the
8727 <link to="#lock()"/> provided by this IFramebuffer
8728 implementation. If this method returns @c false in @a finished, then
8729 this lock is not released until
8730 <link to="IDisplay::resizeCompleted()"/> is called.
8731 </note>
8732 </desc>
8733 <param name="screenId" type="unsigned long" dir="in">
8734 <desc>
8735 Logical screen number. Must be used in the corresponding call to
8736 <link to="IDisplay::resizeCompleted()"/> if this call is made.
8737 </desc>
8738 </param>
8739 <param name="pixelFormat" type="unsigned long" dir="in">
8740 <desc>
8741 Pixel format of the memory buffer pointed to by @a VRAM.
8742 See also <link to="FramebufferPixelFormat"/>.
8743 </desc>
8744 </param>
8745 <param name="VRAM" type="octet" mod="ptr" dir="in">
8746 <desc>Pointer to the virtual video card's VRAM (may be @c null).</desc>
8747 </param>
8748 <param name="bitsPerPixel" type="unsigned long" dir="in">
8749 <desc>Color depth, bits per pixel.</desc>
8750 </param>
8751 <param name="bytesPerLine" type="unsigned long" dir="in">
8752 <desc>Size of one scan line, in bytes.</desc>
8753 </param>
8754 <param name="width" type="unsigned long" dir="in">
8755 <desc>Width of the guest display, in pixels.</desc>
8756 </param>
8757 <param name="height" type="unsigned long" dir="in">
8758 <desc>Height of the guest display, in pixels.</desc>
8759 </param>
8760 <param name="finished" type="boolean" dir="return">
8761 <desc>
8762 Can the VM start using the new frame buffer immediately
8763 after this method returns or it should wait for
8764 <link to="IDisplay::resizeCompleted()"/>.
8765 </desc>
8766 </param>
8767 </method>
8768
8769 <method name="operationSupported">
8770 <desc>
8771 Returns whether the given acceleration operation is supported
8772 by the IFramebuffer implementation. If not, the display object
8773 will not attempt to call the corresponding IFramebuffer entry
8774 point. Even if an operation is indicated to supported, the
8775 IFramebuffer implementation always has the option to return non
8776 supported from the corresponding acceleration method in which
8777 case the operation will be performed by the display engine. This
8778 allows for reduced IFramebuffer implementation complexity where
8779 only common cases are handled.
8780 </desc>
8781 <param name="operation" type="FramebufferAccelerationOperation" dir="in"/>
8782 <param name="supported" type="boolean" dir="return"/>
8783 </method>
8784
8785 <method name="videoModeSupported">
8786 <desc>
8787 Returns whether the frame buffer implementation is willing to
8788 support a given video mode. In case it is not able to render
8789 the video mode (or for some reason not willing), it should
8790 return false. Usually this method is called when the guest
8791 asks the VMM device whether a given video mode is supported
8792 so the information returned is directly exposed to the guest.
8793 It is important that this method returns very quickly.
8794 </desc>
8795 <param name="width" type="unsigned long" dir="in"/>
8796 <param name="height" type="unsigned long" dir="in"/>
8797 <param name="bpp" type="unsigned long" dir="in"/>
8798 <param name="supported" type="boolean" dir="return"/>
8799 </method>
8800
8801 <method name="solidFill">
8802 <desc>
8803 Fills the specified rectangle on screen with a solid color.
8804 </desc>
8805 <param name="x" type="unsigned long" dir="in"/>
8806 <param name="y" type="unsigned long" dir="in"/>
8807 <param name="width" type="unsigned long" dir="in"/>
8808 <param name="height" type="unsigned long" dir="in"/>
8809 <param name="color" type="unsigned long" dir="in"/>
8810 <param name="handled" type="boolean" dir="return"/>
8811 </method>
8812
8813 <method name="copyScreenBits">
8814 <desc>
8815 Copies specified rectangle on the screen.
8816 </desc>
8817 <param name="xDst" type="unsigned long" dir="in"/>
8818 <param name="yDst" type="unsigned long" dir="in"/>
8819 <param name="xSrc" type="unsigned long" dir="in"/>
8820 <param name="ySrc" type="unsigned long" dir="in"/>
8821 <param name="width" type="unsigned long" dir="in"/>
8822 <param name="height" type="unsigned long" dir="in"/>
8823 <param name="handled" type="boolean" dir="return"/>
8824 </method>
8825
8826 <method name="getVisibleRegion">
8827 <desc>
8828 Returns the visible region of this frame buffer.
8829
8830 If the @a rectangles parameter is <tt>NULL</tt> then the value of the
8831 @a count parameter is ignored and the number of elements necessary to
8832 describe the current visible region is returned in @a countCopied.
8833
8834 If @a rectangles is not <tt>NULL</tt> but @a count is less
8835 than the required number of elements to store region data, the method
8836 will report a failure. If @a count is equal or greater than the
8837 required number of elements, then the actual number of elements copied
8838 to the provided array will be returned in @a countCopied.
8839
8840 <note>
8841 The address of the provided array must be in the process space of
8842 this IFramebuffer object.
8843 </note>
8844 </desc>
8845 <param name="rectangles" type="octet" mod="ptr" dir="in">
8846 <desc>Pointer to the <tt>RTRECT</tt> array to receive region data.</desc>
8847 </param>
8848 <param name="count" type="unsigned long" dir="in">
8849 <desc>Number of <tt>RTRECT</tt> elements in the @a rectangles array.</desc>
8850 </param>
8851 <param name="countCopied" type="unsigned long" dir="return">
8852 <desc>Number of elements copied to the @a rectangles array.</desc>
8853 </param>
8854 </method>
8855
8856 <method name="setVisibleRegion">
8857 <desc>
8858 Suggests a new visible region to this frame buffer. This region
8859 represents the area of the VM display which is a union of regions of
8860 all top-level windows of the guest operating system running inside the
8861 VM (if the Guest Additions for this system support this
8862 functionality). This information may be used by the frontends to
8863 implement the seamless desktop integration feature.
8864
8865 <note>
8866 The address of the provided array must be in the process space of
8867 this IFramebuffer object.
8868 </note>
8869 <note>
8870 The IFramebuffer implementation must make a copy of the provided
8871 array of rectangles.
8872 </note>
8873 </desc>
8874 <param name="rectangles" type="octet" mod="ptr" dir="in">
8875 <desc>Pointer to the <tt>RTRECT</tt> array.</desc>
8876 </param>
8877 <param name="count" type="unsigned long" dir="in">
8878 <desc>Number of <tt>RTRECT</tt> elements in the @a rectangles array.</desc>
8879 </param>
8880 </method>
8881
8882 </interface>
8883
8884 <interface
8885 name="IFramebufferOverlay" extends="IFrameBuffer"
8886 uuid="0bcc1c7e-e415-47d2-bfdb-e4c705fb0f47"
8887 wsmap="suppress"
8888 >
8889 <desc>
8890 The IFramebufferOverlay interface represents an alpha blended overlay
8891 for displaying status icons above an IFramebuffer. It is always created
8892 not visible, so that it must be explicitly shown. It only covers a
8893 portion of the IFramebuffer, determined by its width, height and
8894 co-ordinates. It is always in packed pixel little-endian 32bit ARGB (in
8895 that order) format, and may be written to directly. Do re-read the
8896 width though, after setting it, as it may be adjusted (increased) to
8897 make it more suitable for the front end.
8898 </desc>
8899 <attribute name="x" type="unsigned long" readonly="yes">
8900 <desc>X position of the overlay, relative to the frame buffer.</desc>
8901 </attribute>
8902
8903 <attribute name="y" type="unsigned long" readonly="yes">
8904 <desc>Y position of the overlay, relative to the frame buffer.</desc>
8905 </attribute>
8906
8907 <attribute name="visible" type="boolean" readonly="no">
8908 <desc>
8909 Whether the overlay is currently visible.
8910 </desc>
8911 </attribute>
8912
8913 <attribute name="alpha" type="unsigned long" readonly="no">
8914 <desc>
8915 The global alpha value for the overlay. This may or may not be
8916 supported by a given front end.
8917 </desc>
8918 </attribute>
8919
8920 <method name="move">
8921 <desc>
8922 Changes the overlay's position relative to the IFramebuffer.
8923 </desc>
8924 <param name="x" type="unsigned long" dir="in"/>
8925 <param name="y" type="unsigned long" dir="in"/>
8926 </method>
8927
8928 </interface>
8929
8930 <interface
8931 name="IDisplay" extends="$unknown"
8932 uuid="09789f63-4525-48e5-a5e4-1080453b0eab"
8933 wsmap="suppress"
8934 >
8935 <desc>
8936 The IDisplay interface represents the virtual machine's display.
8937
8938 The object implementing this interface is contained in each
8939 <link to="IConsole::display"/> attribute and represents the visual
8940 output of the virtual machine.
8941
8942 The virtual display supports pluggable output targets represented by the
8943 IFramebuffer interface. Examples of the output target are a window on
8944 the host computer or an RDP session's display on a remote computer.
8945 </desc>
8946 <attribute name="width" type="unsigned long" readonly="yes">
8947 <desc>Current display width.</desc>
8948 </attribute>
8949
8950 <attribute name="height" type="unsigned long" readonly="yes">
8951 <desc>Current display height.</desc>
8952 </attribute>
8953
8954 <attribute name="bitsPerPixel" type="unsigned long" readonly="yes">
8955 <desc>
8956 Current guest display color depth. Note that this may differ
8957 from <link to="IFramebuffer::bitsPerPixel"/>.
8958 </desc>
8959 </attribute>
8960
8961 <method name="setupInternalFramebuffer">
8962 <desc>
8963 Prepares an internally managed frame buffer.
8964 </desc>
8965 <param name="depth" type="unsigned long" dir="in"/>
8966 </method>
8967
8968 <method name="lockFramebuffer">
8969 <desc>
8970 Requests access to the internal frame buffer.
8971 </desc>
8972 <param name="address" type="octet" mod="ptr" dir="return"/>
8973 </method>
8974
8975 <method name="unlockFramebuffer">
8976 <desc>
8977 Releases access to the internal frame buffer.
8978 </desc>
8979 </method>
8980
8981 <method name="registerExternalFramebuffer">
8982 <desc>
8983 Registers an external frame buffer.
8984 </desc>
8985 <param name="framebuffer" type="IFramebuffer" dir="in"/>
8986 </method>
8987
8988 <method name="setFramebuffer">
8989 <desc>
8990 Sets the framebuffer for given screen.
8991 </desc>
8992 <param name="screenId" type="unsigned long" dir="in"/>
8993 <param name="framebuffer" type="IFramebuffer" dir="in"/>
8994 </method>
8995
8996 <method name="getFramebuffer">
8997 <desc>
8998 Queries the framebuffer for given screen.
8999 </desc>
9000 <param name="screenId" type="unsigned long" dir="in"/>
9001 <param name="framebuffer" type="IFramebuffer" dir="out"/>
9002 <param name="xOrigin" type="long" dir="out"/>
9003 <param name="yOrigin" type="long" dir="out"/>
9004 </method>
9005
9006 <method name="setVideoModeHint">
9007 <desc>
9008 Asks VirtualBox to request the given video mode from
9009 the guest. This is just a hint and it cannot be guaranteed
9010 that the requested resolution will be used. Guest Additions
9011 are required for the request to be seen by guests. The caller
9012 should issue the request and wait for a resolution change and
9013 after a timeout retry.
9014
9015 Specifying <tt>0</tt> for either @a width, @a height or @a bitsPerPixel
9016 parameters means that the corresponding values should be taken from the
9017 current video mode (i.e. left unchanged).
9018
9019 If the guest OS supports multi-monitor configuration then the @a display
9020 parameter specifies the number of the guest display to send the hint to:
9021 <tt>0</tt> is the primary display, <tt>1</tt> is the first secondary and
9022 so on. If the multi-monitor configuration is not supported, @a display
9023 must be <tt>0</tt>.
9024
9025 </desc>
9026 <param name="width" type="unsigned long" dir="in"/>
9027 <param name="height" type="unsigned long" dir="in"/>
9028 <param name="bitsPerPixel" type="unsigned long" dir="in"/>
9029 <param name="display" type="unsigned long" dir="in"/>
9030 </method>
9031
9032 <method name="setSeamlessMode">
9033 <desc>
9034 Enables or disables seamless guest display rendering (seamless desktop
9035 integration) mode.
9036 <note>
9037 Calling this method has no effect if <link
9038 to="IGuest::supportsSeamless"/> returns <tt>false</tt>.
9039 </note>
9040 </desc>
9041 <param name="enabled" type="boolean" dir="in"/>
9042 </method>
9043
9044 <method name="takeScreenShot">
9045 <desc>
9046 Takes a screen shot of the requested size and copies it to the
9047 32-bpp buffer allocated by the caller.
9048 </desc>
9049 <param name="address" type="octet" mod="ptr" dir="in"/>
9050 <param name="width" type="unsigned long" dir="in"/>
9051 <param name="height" type="unsigned long" dir="in"/>
9052 </method>
9053
9054 <method name="drawToScreen">
9055 <desc>
9056 Draws a 32-bpp image of the specified size from the given buffer
9057 to the given point on the VM display.
9058 </desc>
9059 <param name="address" type="octet" mod="ptr" dir="in"/>
9060 <param name="x" type="unsigned long" dir="in"/>
9061 <param name="y" type="unsigned long" dir="in"/>
9062 <param name="width" type="unsigned long" dir="in"/>
9063 <param name="height" type="unsigned long" dir="in"/>
9064 </method>
9065
9066 <method name="invalidateAndUpdate">
9067 <desc>
9068 Does a full invalidation of the VM display and instructs the VM
9069 to update it.
9070 </desc>
9071 </method>
9072
9073 <method name="resizeCompleted">
9074 <desc>
9075 Signals that a framebuffer has completed the resize operation.
9076 </desc>
9077 <param name="screenId" type="unsigned long" dir="in"/>
9078 </method>
9079
9080 <method name="updateCompleted">
9081 <desc>
9082 Signals that a framebuffer has completed the update operation.
9083 </desc>
9084 </method>
9085
9086 </interface>
9087
9088 <!--
9089 // INetworkAdapter
9090 /////////////////////////////////////////////////////////////////////////
9091 -->
9092
9093 <enum
9094 name="NetworkAttachmentType"
9095 uuid="8730d899-d036-4925-bc63-e58f3486f4bf"
9096 >
9097 <desc>
9098 Network attachment type.
9099 </desc>
9100
9101 <const name="Null" value="0">
9102 <desc><tt>null</tt> value. Also means "not attached".</desc>
9103 </const>
9104 <const name="NAT" value="1"/>
9105 <const name="HostInterface" value="2"/>
9106 <const name="Internal" value="3"/>
9107 </enum>
9108
9109 <enum
9110 name="NetworkAdapterType"
9111 uuid="156b17b9-5d61-4d54-be90-62e37dda848d"
9112 >
9113 <desc>
9114 Network adapter type.
9115 </desc>
9116
9117 <const name="Null" value="0">
9118 <desc><tt>null</tt> value. Never used by the API.</desc>
9119 </const>
9120 <const name="Am79C970A" value="1"/>
9121 <const name="Am79C973" value="2"/>
9122 <const name="I82540EM" value="3"/>
9123 <const name="I82543GC" value="4"/>
9124 </enum>
9125
9126 <interface
9127 name="INetworkAdapter" extends="$unknown"
9128 uuid="a876d9b1-68d9-43b1-9c68-ddea0a473663"
9129 wsmap="managed"
9130 >
9131 <attribute name="adapterType" type="NetworkAdapterType">
9132 <desc>
9133 Type of the virtual network adapter. Depending on this value,
9134 VirtualBox will provide a different virtual network hardware
9135 to the guest.
9136 </desc>
9137 </attribute>
9138
9139 <attribute name="slot" type="unsigned long" readonly="yes">
9140 <desc>
9141 Slot number this adapter is plugged into. Corresponds to
9142 the value you pass to <link to="IMachine::getNetworkAdapter"/>
9143 to obtain this instance.
9144 </desc>
9145 </attribute>
9146
9147 <attribute name="enabled" type="boolean">
9148 <desc>
9149 Flag whether the network adapter is present in the
9150 guest system. If disabled, the virtual guest hardware will
9151 not contain this network adapter. Can only be changed when
9152 the VM is not running.
9153 </desc>
9154 </attribute>
9155
9156 <attribute name="MACAddress" type="wstring">
9157 <desc>
9158 Ethernet MAC address of the adapter, 12 hexadecimal characters. When setting
9159 it to NULL, VirtualBox will generate a unique MAC address.
9160 </desc>
9161 </attribute>
9162
9163 <attribute name="attachmentType" type="NetworkAttachmentType" readonly="yes"/>
9164
9165 <attribute name="hostInterface" type="wstring">
9166 <desc>
9167 Name of the Host Network Interface that is currently in use. NULL will be returned
9168 if no device has been allocated. On Linux, setting this refers to a permanent TAP
9169 device. However, a file descriptor has precedence over the interface name on Linux.
9170 Note that when VirtualBox allocates a TAP device, this property will not be set, i.e. the
9171 interface name would have to be determined using the file descriptor and /proc/self/fd.
9172 </desc>
9173 </attribute>
9174
9175<if target="xpidl">
9176 <attribute name="TAPFileDescriptor" type="long">
9177 <desc>
9178 File descriptor of the TAP device. It can either be setup by the caller
9179 which has to supply an existing valid file handle allocated in the parent
9180 process of the VM process or allocated by VirtualBox. The value is -1 if it
9181 has not been defined. This property is non persistent, i.e. it will not be
9182 stored in the VM's configuration data and thus has to be set at each startup.
9183 </desc>
9184 </attribute>
9185 <attribute name="TAPSetupApplication" type="wstring">
9186 <desc>
9187 Application to start to configure the TAP device.
9188 It is being passed two parameters, 1) the file handle (as ASCII),
9189 2) the TAP device name if it is available.
9190 </desc>
9191 </attribute>
9192 <attribute name="TAPTerminateApplication" type="wstring">
9193 <desc>
9194 Application to start before closing a TAP device.
9195 It is being passed two parameters, 1) the file handle (as ASCII),
9196 2) the TAP device name if it is available.
9197 </desc>
9198 </attribute>
9199</if>
9200
9201 <attribute name="internalNetwork" type="wstring">
9202 <desc>
9203 Name of the internal network the VM is attached to.
9204 </desc>
9205 </attribute>
9206
9207 <attribute name="NATNetwork" type="wstring">
9208 <desc>
9209 Name of the NAT network the VM is attached to.
9210 </desc>
9211 </attribute>
9212
9213 <attribute name="cableConnected" type="boolean">
9214 <desc>
9215 Flag whether the adapter reports the cable as connected or not.
9216 It can be used to report offline situations to a VM.
9217 </desc>
9218 </attribute>
9219
9220 <attribute name="lineSpeed" type="unsigned long">
9221 <desc>
9222 Line speed reported by custom drivers, in units of 1 kbps.
9223 </desc>
9224 </attribute>
9225
9226 <attribute name="traceEnabled" type="boolean">
9227 <desc>
9228 Flag whether network traffic from/to the network card should be traced.
9229 Can only be toggled when the VM is turned off.
9230 </desc>
9231 </attribute>
9232
9233 <attribute name="traceFile" type="wstring">
9234 <desc>
9235 Filename where a network trace will be stored. If not set, VBox-pid.pcap
9236 will be used.
9237 </desc>
9238 </attribute>
9239
9240 <method name="attachToNAT">
9241 <desc>
9242 Attach the network adapter to the Network Address Translation (NAT) interface.
9243 </desc>
9244 </method>
9245
9246 <method name="attachToHostInterface">
9247 <desc>
9248 Attach the network adapter to a host interface. On Linux, the TAP
9249 setup application will be executed if configured and unless a device
9250 name and/or file descriptor has been set, a new TAP interface will be
9251 created.
9252 </desc>
9253 </method>
9254
9255 <method name="attachToInternalNetwork">
9256 <desc>
9257 Attach the network adapter to an internal network.
9258 </desc>
9259 </method>
9260
9261 <method name="detach">
9262 <desc>
9263 Detach the network adapter
9264 </desc>
9265 </method>
9266 </interface>
9267
9268
9269 <!--
9270 // ISerialPort
9271 /////////////////////////////////////////////////////////////////////////
9272 -->
9273
9274 <enum
9275 name="PortMode"
9276 uuid="b266f43c-2e93-46b3-812b-c20e600e867b"
9277 >
9278 <desc>
9279 The PortMode enumeration represents possible communication modes for
9280 the virtual serial port device.
9281 </desc>
9282
9283 <const name="Disconnected" value="0">
9284 <desc>Virtual device is not attached to any real host device.</desc>
9285 </const>
9286 <const name="HostPipe" value="1">
9287 <desc>Virtual device is attached to a host pipe.</desc>
9288 </const>
9289 <const name="HostDevice" value="2">
9290 <desc>Virtual device is attached to a host device.</desc>
9291 </const>
9292 </enum>
9293
9294 <interface
9295 name="ISerialPort" extends="$unknown"
9296 uuid="937f6970-5103-4745-b78e-d28dcf1479a8"
9297 wsmap="managed"
9298 >
9299
9300 <desc>
9301 The ISerialPort interface represents the virtual serial port device.
9302
9303 The virtual serial port device acts like an ordinary serial port
9304 inside the virtual machine. This device communicates to the real
9305 serial port hardware in one of two modes: host pipe or host device.
9306
9307 In host pipe mode, the #path attribute specifies the path to the pipe on
9308 the host computer that represents a serial port. The #server attribute
9309 determines if this pipe is created by the virtual machine process at
9310 machine startup or it must already exist before starting machine
9311 execution.
9312
9313 In host device mode, the #path attribute specifies the name of the
9314 serial port device on the host computer.
9315
9316 There is also a third communication mode: the disconnected mode. In this
9317 mode, the guest OS running inside the virtual machine will be able to
9318 detect the serial port, but all port write operations will be discarded
9319 and all port read operations will return no data.
9320
9321 <see>IMachine::getSerialPort</see>
9322 </desc>
9323
9324 <attribute name="slot" type="unsigned long" readonly="yes">
9325 <desc>
9326 Slot number this serial port is plugged into. Corresponds to
9327 the value you pass to <link to="IMachine::getSerialPort"/>
9328 to obtain this instance.
9329 </desc>
9330 </attribute>
9331
9332 <attribute name="enabled" type="boolean">
9333 <desc>
9334 Flag whether the serial port is enabled. If disabled,
9335 the serial port will not be reported to the guest OS.
9336 </desc>
9337 </attribute>
9338
9339 <attribute name="IOBase" type="unsigned long">
9340 <desc>Base I/O address of the serial port.</desc>
9341 </attribute>
9342
9343 <attribute name="IRQ" type="unsigned long">
9344 <desc>IRQ number of the serial port.</desc>
9345 </attribute>
9346
9347 <attribute name="hostMode" type="PortMode">
9348 <desc>
9349 How is this port connected to the host.
9350 <note>
9351 Changing this attribute may fail if the conditions for
9352 <link to="#path"/> are not met.
9353 </note>
9354 </desc>
9355 </attribute>
9356
9357 <attribute name="server" type="boolean">
9358 <desc>
9359 Flag whether this serial port acts as a server (creates a new pipe on
9360 the host) or as a client (uses the existing pipe). This attribute is
9361 used only when <link to="#hostMode"/> is PortMode::HostPipe.
9362 </desc>
9363 </attribute>
9364
9365 <attribute name="path" type="wstring">
9366 <desc>
9367 Path to the serial port's pipe on the host when <link to="#hostMode"/> is
9368 PortMode::HostPipe, or the host serial device name when
9369 <link to="#hostMode"/> is PortMode::HostDevice. In either of the above
9370 cases, setting a @c null or an empty string as the attribute's value
9371 will result into an error. Otherwise, the value of this property is
9372 ignored.
9373 </desc>
9374 </attribute>
9375
9376 </interface>
9377
9378 <!--
9379 // IParallelPort
9380 /////////////////////////////////////////////////////////////////////////
9381 -->
9382
9383 <interface
9384 name="IParallelPort" extends="$unknown"
9385 uuid="0c925f06-dd10-4b77-8de8-294d738c3214"
9386 wsmap="managed"
9387 >
9388
9389 <desc>
9390 The IParallelPort interface represents the virtual parallel port device.
9391
9392 The virtual parallel port device acts like an ordinary parallel port
9393 inside the virtual machine. This device communicates to the real
9394 parallel port hardware using the name of the parallel device on the host
9395 computer specified in the #path attribute.
9396
9397 Each virtual parallel port device is assigned a base I/O address and an
9398 IRQ number that will be reported to the guest operating system and used
9399 to operate the given parallel port from within the virtual machine.
9400
9401 <see>IMachine::getParallelPort</see>
9402 </desc>
9403
9404 <attribute name="slot" type="unsigned long" readonly="yes">
9405 <desc>
9406 Slot number this parallel port is plugged into. Corresponds to
9407 the value you pass to <link to="IMachine::getParallelPort"/>
9408 to obtain this instance.
9409 </desc>
9410 </attribute>
9411
9412 <attribute name="enabled" type="boolean">
9413 <desc>
9414 Flag whether the parallel port is enabled. If disabled,
9415 the parallel port will not be reported to the guest OS.
9416 </desc>
9417 </attribute>
9418
9419 <attribute name="IOBase" type="unsigned long">
9420 <desc>Base I/O address of the parallel port.</desc>
9421 </attribute>
9422
9423 <attribute name="IRQ" type="unsigned long">
9424 <desc>IRQ number of the parallel port.</desc>
9425 </attribute>
9426
9427 <attribute name="path" type="wstring">
9428 <desc>
9429 Host parallel device name. If this parallel port is enabled, setting a
9430 @c null or an empty string as this attribute's value will result into
9431 an error.
9432 </desc>
9433 </attribute>
9434
9435 </interface>
9436
9437
9438 <!--
9439 // IMachineDebugger
9440 /////////////////////////////////////////////////////////////////////////
9441 -->
9442
9443 <interface
9444 name="IMachineDebugger" extends="$unknown"
9445 uuid="b0b2a2dd-0627-4502-91c2-ddc5e77609e0"
9446 wsmap="suppress"
9447 >
9448 <method name="resetStats">
9449 <desc>
9450 Reset VM statistics.
9451 </desc>
9452 <param name="pattern" type="wstring" dir="in">
9453 <desc>The selection pattern. A bit similar to filename globbing.</desc>
9454 </param>
9455 </method>
9456
9457 <method name="dumpStats">
9458 <desc>
9459 Dumps VM statistics.
9460 </desc>
9461 <param name="pattern" type="wstring" dir="in">
9462 <desc>The selection pattern. A bit similar to filename globbing.</desc>
9463 </param>
9464 </method>
9465
9466 <method name="getStats">
9467 <desc>
9468 Get the VM statistics in a XMLish format.
9469 </desc>
9470 <param name="pattern" type="wstring" dir="in">
9471 <desc>The selection pattern. A bit similar to filename globbing.</desc>
9472 </param>
9473 <param name="withDescriptions" type="boolean" dir="in">
9474 <desc>Whether to include the descriptions.</desc>
9475 </param>
9476 <param name="stats" type="wstring" dir="out">
9477 <desc>The XML document containing the statistics.</desc>
9478 </param>
9479 </method>
9480
9481 <method name="injectNMI">
9482 <desc>
9483 Inject an NMI into a running VT-x/AMD-V VM.
9484 </desc>
9485 </method>
9486
9487 <attribute name="singlestep" type="boolean">
9488 <desc>Switch for enabling singlestepping.</desc>
9489 </attribute>
9490
9491 <attribute name="recompileUser" type="boolean">
9492 <desc>Switch for forcing code recompilation for user mode code.</desc>
9493 </attribute>
9494
9495 <attribute name="recompileSupervisor" type="boolean">
9496 <desc>Switch for forcing code recompilation for supervisor mode code.</desc>
9497 </attribute>
9498
9499 <attribute name="PATMEnabled" type="boolean">
9500 <desc>Switch for enabling and disabling the PATM component.</desc>
9501 </attribute>
9502
9503 <attribute name="CSAMEnabled" type="boolean">
9504 <desc>Switch for enabling and disabling the CSAM component.</desc>
9505 </attribute>
9506
9507 <attribute name="logEnabled" type="boolean">
9508 <desc>Switch for enabling and disabling logging.</desc>
9509 </attribute>
9510
9511 <attribute name="HWVirtExEnabled" type="boolean" readonly="yes">
9512 <desc>
9513 Flag indicating whether the VM is currently making use of CPU hardware
9514 virtualization extensions.
9515 </desc>
9516 </attribute>
9517
9518 <attribute name="HWVirtExNestedPagingEnabled" type="boolean" readonly="yes">
9519 <desc>
9520 Flag indicating whether the VM is currently making use of the nested paging
9521 CPU hardware virtualization extension.
9522 </desc>
9523 </attribute>
9524
9525 <attribute name="HWVirtExVPIDEnabled" type="boolean" readonly="yes">
9526 <desc>
9527 Flag indicating whether the VM is currently making use of the VPID
9528 VT-x extension.
9529 </desc>
9530 </attribute>
9531
9532 <attribute name="PAEEnabled" type="boolean" readonly="yes">
9533 <desc>
9534 Flag indicating whether the VM is currently making use of the Physical
9535 Address Extension CPU feature.
9536 </desc>
9537 </attribute>
9538
9539 <attribute name="virtualTimeRate" type="unsigned long">
9540 <desc>
9541 The rate at which the virtual time runs expressed as a percentage.
9542 The accepted range is 2% to 20000%.
9543 </desc>
9544 </attribute>
9545
9546 <!-- @todo method for setting log flags, groups and destination! -->
9547
9548 <attribute name="VM" type="unsigned long long" readonly="yes">
9549 <desc>
9550 Gets the VM handle. This is only for internal use while
9551 we carve the details of this interface.
9552 </desc>
9553 </attribute>
9554
9555 </interface>
9556
9557 <!--
9558 // IUSBController
9559 /////////////////////////////////////////////////////////////////////////
9560 -->
9561
9562 <interface
9563 name="IUSBController" extends="$unknown"
9564 uuid="f4c2d3dc-f109-4da7-93b1-ec28973ac89f"
9565 wsmap="managed"
9566 >
9567 <attribute name="enabled" type="boolean">
9568 <desc>
9569 Flag whether the USB controller is present in the
9570 guest system. If disabled, the virtual guest hardware will
9571 not contain any USB controller. Can only be changed when
9572 the VM is powered off.
9573 </desc>
9574 </attribute>
9575
9576 <attribute name="enabledEhci" type="boolean">
9577 <desc>
9578 Flag whether the USB EHCI controller is present in the
9579 guest system. If disabled, the virtual guest hardware will
9580 not contain a USB EHCI controller. Can only be changed when
9581 the VM is powered off.
9582 </desc>
9583 </attribute>
9584
9585 <attribute name="USBStandard" type="unsigned short" readonly="yes">
9586 <desc>
9587 USB standard version which the controller implements.
9588 This is a BCD which means that the major version is in the
9589 high byte and minor version is in the low byte.
9590 </desc>
9591 </attribute>
9592
9593 <attribute name="deviceFilters" type="IUSBDeviceFilterCollection" readonly="yes">
9594 <desc>
9595 List of USB device filters associated with the machine.
9596
9597 If the machine is currently running, these filters are activated
9598 every time a new (supported) USB device is attached to the host
9599 computer that was not ignored by global filters
9600 (<link to="IHost::USBDeviceFilters"/>).
9601
9602 These filters are also activated when the machine is powered up.
9603 They are run against a list of all currently available USB
9604 devices (in states
9605 <link to="USBDeviceState::Available">Available</link>,
9606 <link to="USBDeviceState::Busy">Busy</link>,
9607 <link to="USBDeviceState::Held">Held</link>) that were not previously
9608 ignored by global filters.
9609
9610 If at least one filter matches the USB device in question, this
9611 device is automatically captured (attached to) the virtual USB
9612 controller of this machine.
9613
9614 <see>IUSBDeviceFilter, ::IUSBController</see>
9615 </desc>
9616 </attribute>
9617
9618 <method name="createDeviceFilter">
9619 <desc>
9620 Creates a new USB device filter. All attributes except
9621 the filter name are set to <tt>null</tt> (any match),
9622 <i>active</i> is <tt>false</tt> (the filter is not active).
9623
9624 The created filter can then be added to the list of filters using
9625 <link to="#insertDeviceFilter()"/>.
9626
9627 <see>#deviceFilters</see>
9628 </desc>
9629 <param name="name" type="wstring" dir="in">
9630 <desc>
9631 Filter name. See <link to="IUSBDeviceFilter::name"/>
9632 for more info.
9633 </desc>
9634 </param>
9635 <param name="filter" type="IUSBDeviceFilter" dir="return">
9636 <desc>Created filter object.</desc>
9637 </param>
9638 </method>
9639
9640 <method name="insertDeviceFilter">
9641 <desc>
9642 Inserts the given USB device to the specified position
9643 in the list of filters.
9644
9645 Positions are numbered starting from <tt>0</tt>. If the specified
9646 position is equal to or greater than the number of elements in
9647 the list, the filter is added to the end of the collection.
9648
9649 <note>
9650 Duplicates are not allowed, so an attempt to insert a
9651 filter that is already in the collection, will return an
9652 error.
9653 </note>
9654
9655 <see>#deviceFilters</see>
9656 </desc>
9657 <param name="position" type="unsigned long" dir="in">
9658 <desc>Position to insert the filter to.</desc>
9659 </param>
9660 <param name="filter" type="IUSBDeviceFilter" dir="in">
9661 <desc>USB device filter to insert.</desc>
9662 </param>
9663 </method>
9664
9665 <method name="removeDeviceFilter">
9666 <desc>
9667 Removes a USB device filter from the specified position in the
9668 list of filters.
9669
9670 Positions are numbered starting from <tt>0</tt>. Specifying a
9671 position equal to or greater than the number of elements in
9672 the list will produce an error.
9673
9674 <see>#deviceFilters</see>
9675 </desc>
9676 <param name="position" type="unsigned long" dir="in">
9677 <desc>Position to remove the filter from.</desc>
9678 </param>
9679 <param name="filter" type="IUSBDeviceFilter" dir="return">
9680 <desc>Removed USB device filter.</desc>
9681 </param>
9682 </method>
9683
9684 </interface>
9685
9686
9687 <!--
9688 // IUSBDevice
9689 /////////////////////////////////////////////////////////////////////////
9690 -->
9691
9692 <enumerator
9693 name="IUSBDeviceEnumerator" type="IUSBDevice"
9694 uuid="aefe00f7-eb8a-454b-9ea4-fd5ad93c0e99"
9695 />
9696
9697 <collection
9698 name="IUSBDeviceCollection" type="IUSBDevice"
9699 enumerator="IUSBDeviceEnumerator"
9700 uuid="e31f3248-90dd-4ca2-95f0-6b36042d96a2"
9701 readonly="yes"
9702 >
9703 <method name="findById">
9704 <desc>
9705 Searches this collection for a USB device with the given UUID.
9706 <note>
9707 The method returns an error if the given UUID does not
9708 correspond to any USB device in the collection.
9709 </note>
9710 <see>IUSBDevice::id</see>
9711 </desc>
9712 <param name="id" type="uuid" dir="in">
9713 <desc>UUID of the USB device to search for.</desc>
9714 </param>
9715 <param name="device" type="IUSBDevice" dir="return">
9716 <desc>Found USB device object.</desc>
9717 </param>
9718 </method>
9719
9720 <method name="findByAddress">
9721 <desc>
9722 Searches this collection for a USB device with the given
9723 host address.
9724 <note>
9725 The method returns an error if the given address does not
9726 correspond to any USB device in the collection.
9727 </note>
9728 <see>IUSBDevice::address</see>
9729 </desc>
9730 <param name="name" type="wstring" dir="in">
9731 <desc>
9732 Address of the USB device (as assigned by the host) to
9733 search for.
9734 </desc>
9735 </param>
9736 <param name="device" type="IUSBDevice" dir="return">
9737 <desc>Found USB device object.</desc>
9738 </param>
9739 </method>
9740
9741 </collection>
9742
9743 <interface
9744 name="IUSBDevice" extends="$unknown"
9745 uuid="850af07b-9ee8-48c2-b6b0-f6d0acbf63c3"
9746 wsmap="managed"
9747 >
9748 <desc>
9749 The IUSBDevice interface represents a virtual USB device attached to the
9750 virtual machine.
9751
9752 A collection of objects implementing this interface is stored in the
9753 <link to="IConsole::USBDevices"/> attribute which lists all USB devices
9754 attached to a running virtual machine's USB controller.
9755 </desc>
9756
9757 <attribute name="id" type="uuid" readonly="yes">
9758 <desc>
9759 Unique USB device ID. This ID is built from #vendorId,
9760 #productId, #revision and #serialNumber.
9761 </desc>
9762 </attribute>
9763
9764 <attribute name="vendorId" type="unsigned short" readonly="yes">
9765 <desc>Vendor ID.</desc>
9766 </attribute>
9767
9768 <attribute name="productId" type="unsigned short" readonly="yes">
9769 <desc>Product ID.</desc>
9770 </attribute>
9771
9772 <attribute name="revision" type="unsigned short" readonly="yes">
9773 <desc>
9774 Product revision number. This is a packed BCD represented as
9775 unsigned short. The high byte is the integer part and the low
9776 byte is the decimal.
9777 </desc>
9778 </attribute>
9779
9780 <attribute name="manufacturer" type="wstring" readonly="yes">
9781 <desc>Manufacturer string.</desc>
9782 </attribute>
9783
9784 <attribute name="product" type="wstring" readonly="yes">
9785 <desc>Product string.</desc>
9786 </attribute>
9787
9788 <attribute name="serialNumber" type="wstring" readonly="yes">
9789 <desc>Serial number string.</desc>
9790 </attribute>
9791
9792 <attribute name="address" type="wstring" readonly="yes">
9793 <desc>Host specific address of the device.</desc>
9794 </attribute>
9795
9796 <attribute name="port" type="unsigned short" readonly="yes">
9797 <desc>
9798 Host USB port number the device is physically
9799 connected to.
9800 </desc>
9801 </attribute>
9802
9803 <attribute name="version" type="unsigned short" readonly="yes">
9804 <desc>
9805 The major USB version of the device - 1 or 2.
9806 </desc>
9807 </attribute>
9808
9809 <attribute name="portVersion" type="unsigned short" readonly="yes">
9810 <desc>
9811 The major USB version of the host USB port the device is
9812 physically connected to - 1 or 2. For devices not connected to
9813 anything this will have the same value as the version attribute.
9814 </desc>
9815 </attribute>
9816
9817 <attribute name="remote" type="boolean" readonly="yes">
9818 <desc>
9819 Whether the device is physically connected to a remote VRDP
9820 client or to a local host machine.
9821 </desc>
9822 </attribute>
9823
9824 </interface>
9825
9826
9827 <!--
9828 // IUSBDeviceFilter
9829 /////////////////////////////////////////////////////////////////////////
9830 -->
9831
9832 <enumerator
9833 name="IUSBDeviceFilterEnumerator" type="IUSBDeviceFilter"
9834 uuid="d5109c61-93e7-4726-926b-0dee1020da56"
9835 />
9836
9837 <collection
9838 name="IUSBDeviceFilterCollection" type="IUSBDeviceFilter"
9839 enumerator="IUSBDeviceFilterEnumerator"
9840 uuid="4fa3fc99-ceb1-4bf5-a9cb-e962d825c1ef"
9841 readonly="yes"
9842 />
9843
9844 <interface
9845 name="IUSBDeviceFilter" extends="$unknown"
9846 uuid="d6831fb4-1a94-4c2c-96ef-8d0d6192066d"
9847 wsmap="managed"
9848 >
9849 <desc>
9850 The IUSBDeviceFilter interface represents an USB device filter used
9851 to perform actions on a group of USB devices.
9852
9853 This type of filters is used by running virtual machines to
9854 automatically capture selected USB devices once they are physically
9855 attached to the host computer.
9856
9857 A USB device is matched to the given device filter if and only if all
9858 attributes of the device match the corresponding attributes of the
9859 filter (that is, attributes are joined together using the logical AND
9860 operation). On the other hand, all together, filters in the list of
9861 filters carry the semantics of the logical OR operation. So if it is
9862 desirable to create a match like "this vendor id OR this product id",
9863 one needs to create two filters and specify "any match" (see below)
9864 for unused attributes.
9865
9866 All filter attributes used for matching are strings. Each string
9867 is an expression representing a set of values of the corresponding
9868 device attribute, that will match the given filter. Currently, the
9869 following filtering expressions are supported:
9870
9871 <ul>
9872 <li><i>Interval filters</i>. Used to specify valid intervals for
9873 integer device attributes (Vendor ID, Product ID and Revision).
9874 The format of the string is:
9875
9876 <tt>int:((m)|([m]-[n]))(,(m)|([m]-[n]))*</tt>
9877
9878 where <tt>m</tt> and <tt>n</tt> are integer numbers, either in octal
9879 (starting from <tt>0</tt>), hexadecimal (starting from <tt>0x</tt>)
9880 or decimal (otherwise) form, so that <tt>m &lt; n</tt>. If <tt>m</tt>
9881 is omitted before a dash (<tt>-</tt>), the minimum possible integer
9882 is assumed; if <tt>n</tt> is omitted after a dash, the maximum
9883 possible integer is assumed.
9884 </li>
9885 <li><i>Boolean filters</i>. Used to specify acceptable values for
9886 boolean device attributes. The format of the string is:
9887
9888 <tt>true|false|yes|no|0|1</tt>
9889
9890 </li>
9891 <li><i>Exact match</i>. Used to specify a single value for the given
9892 device attribute. Any string that doesn't start with <tt>int:</tt>
9893 represents the exact match. String device attributes are compared to
9894 this string including case of symbols. Integer attributes are first
9895 converted to a string (see individual filter attributes) and then
9896 compared ignoring case.
9897
9898 </li>
9899 <li><i>Any match</i>. Any value of the corresponding device attribute
9900 will match the given filter. An empty or <tt>null</tt> string is
9901 used to construct this type of filtering expressions.
9902
9903 </li>
9904 </ul>
9905
9906 <note>
9907 On the Windows host platform, interval filters are not currently
9908 available. Also all string filter attributes
9909 (<link to="#manufacturer"/>, <link to="#product"/>,
9910 <link to="#serialNumber"/>) are ignored, so they behave as
9911 <i>any match</i> no matter what string expression is specified.
9912 </note>
9913
9914 <see>IUSBController::deviceFilters, IHostUSBDeviceFilter</see>
9915 </desc>
9916
9917 <attribute name="name" type="wstring">
9918 <desc>
9919 Visible name for this filter.
9920 This name is used to visually distinguish one filter from another,
9921 so it can neither be <tt>null</tt> nor an empty string.
9922 </desc>
9923 </attribute>
9924
9925 <attribute name="active" type="boolean">
9926 <desc>Whether this filter active or has been temporarily disabled.</desc>
9927 </attribute>
9928
9929 <attribute name="vendorId" type="wstring">
9930 <desc>
9931 <link to="IUSBDevice::vendorId">Vendor ID</link> filter.
9932 The string representation for the <i>exact matching</i>
9933 has the form <tt>XXXX</tt>, where <tt>X</tt> is the hex digit
9934 (including leading zeroes).
9935 </desc>
9936 </attribute>
9937
9938 <attribute name="productId" type="wstring">
9939 <desc>
9940 <link to="IUSBDevice::productId">Product ID</link> filter.
9941 The string representation for the <i>exact matching</i>
9942 has the form <tt>XXXX</tt>, where <tt>X</tt> is the hex digit
9943 (including leading zeroes).
9944 </desc>
9945 </attribute>
9946
9947 <attribute name="revision" type="wstring">
9948 <desc>
9949 <link to="IUSBDevice::productId">Product revision number</link>
9950 filter. The string representation for the <i>exact matching</i>
9951 has the form <tt>IIFF</tt>, where <tt>I</tt> is the decimal digit
9952 of the integer part of the revision, and <tt>F</tt> is the
9953 decimal digit of its fractional part (including leading and
9954 trailing zeros).
9955 Note that for interval filters, it's best to use the hexadecimal
9956 form, because the revision is stored as a 16 bit packed BCD value;
9957 so the expression <tt>int:0x0100-0x0199</tt> will match any
9958 revision from <tt>1.0</tt> to <tt>1.99</tt>.
9959 </desc>
9960 </attribute>
9961
9962 <attribute name="manufacturer" type="wstring">
9963 <desc>
9964 <link to="IUSBDevice::manufacturer">Manufacturer</link> filter.
9965 </desc>
9966 </attribute>
9967
9968 <attribute name="product" type="wstring">
9969 <desc>
9970 <link to="IUSBDevice::product">Product</link> filter.
9971 </desc>
9972 </attribute>
9973
9974 <attribute name="serialNumber" type="wstring">
9975 <desc>
9976 <link to="IUSBDevice::serialNumber">Serial number</link> filter.
9977 </desc>
9978 </attribute>
9979
9980 <attribute name="port" type="wstring">
9981 <desc>
9982 <link to="IUSBDevice::port">Host USB port</link> filter.
9983 </desc>
9984 </attribute>
9985
9986 <attribute name="remote" type="wstring">
9987 <desc>
9988 <link to="IUSBDevice::remote">Remote state</link> filter.
9989 <note>
9990 This filter makes sense only for machine USB filters,
9991 i.e. it is ignored by IHostUSBDeviceFilter objects.
9992 </note>
9993 </desc>
9994 </attribute>
9995
9996 <attribute name="maskedInterfaces" type="unsigned long">
9997 <desc>
9998 This is an advanced option for hiding one or more USB interfaces
9999 from the guest. The value is a bit mask where the bits that are set
10000 means the corresponding USB interface should be hidden, masked off
10001 if you like.
10002 This feature only works on Linux hosts.
10003 </desc>
10004 </attribute>
10005
10006 </interface>
10007
10008
10009 <!--
10010 // IHostUSBDevice
10011 /////////////////////////////////////////////////////////////////////////
10012 -->
10013
10014 <enum
10015 name="USBDeviceState"
10016 uuid="b99a2e65-67fb-4882-82fd-f3e5e8193ab4"
10017 >
10018 <desc>
10019 USB device state. This enumeration represents all possible states
10020 of the USB device physically attached to the host computer regarding
10021 its state on the host computer and availability to guest computers
10022 (all currently running virtual machines).
10023
10024 Once a supported USB device is attached to the host, global USB
10025 filters (<link to="IHost::USBDeviceFilters"/>) are activated. They can
10026 either ignore the device, or put it to #Held state, or do nothing. Unless
10027 the device is ignored by global filters, filters of all currently running
10028 guests (<link to="IUSBController::deviceFilters"/>) are activated that can
10029 put it to #Captured state.
10030
10031 If the device was ignored by global filters, or didn't match
10032 any filters at all (including guest ones), it is handled by the host
10033 in a normal way. In this case, the device state is determined by
10034 the host and can be one of #Unavailable, #Busy or #Available, depending on
10035 the current device usage.
10036
10037 Besides auto-capturing based on filters, the device can be manually
10038 captured by guests (<link to="IConsole::attachUSBDevice()"/>) if its
10039 state is #Busy, #Available or #Held.
10040
10041 <note>
10042 Due to differences in USB stack implementations in Linux and Win32,
10043 states #Busy and #Available are applicable only to the Linux version of
10044 the product. This also means that (<link
10045 to="IConsole::attachUSBDevice()"/>) can only succeed on Win32 if
10046 the device state is #Held.
10047 </note>
10048
10049 <see>IHostUSBDevice, IHostUSBDeviceFilter</see>
10050 </desc>
10051
10052 <const name="NotSupported" value="0">
10053 <desc>
10054 Not supported by the VirtualBox server, not available to guests.
10055 </desc>
10056 </const>
10057 <const name="Unavailable" value="1">
10058 <desc>
10059 Being used by the host computer exclusively,
10060 not available to guests.
10061 </desc>
10062 </const>
10063 <const name="Busy" value="2">
10064 <desc>
10065 Being used by the host computer, potentially available to guests.
10066 </desc>
10067 </const>
10068 <const name="Available" value="3">
10069 <desc>
10070 Not used by the host computer, available to guests.
10071 The host computer can also start using the device at any time.
10072 </desc>
10073 </const>
10074 <const name="Held" value="4">
10075 <desc>
10076 Held by the VirtualBox server (ignored by the host computer),
10077 available to guests.
10078 </desc>
10079 </const>
10080 <const name="Captured" value="5">
10081 <desc>
10082 Captured by one of the guest computers, not available
10083 to anybody else.
10084 </desc>
10085 </const>
10086 </enum>
10087
10088 <enumerator
10089 name="IHostUSBDeviceEnumerator" type="IHostUSBDevice"
10090 uuid="a0c55136-939f-4d20-b9d3-4d406f08bfa5"
10091 />
10092
10093 <collection
10094 name="IHostUSBDeviceCollection" type="IHostUSBDevice"
10095 enumerator="IHostUSBDeviceEnumerator"
10096 uuid="f9d3f96d-b027-4994-b589-70bb9ee0d364"
10097 readonly="yes"
10098 >
10099 <method name="findById">
10100 <desc>
10101 Searches this collection for a USB device with the given UUID.
10102 <note>
10103 The method returns an error if the given UUID does not
10104 correspond to any USB device in the collection.
10105 </note>
10106 <see>IHostUSBDevice::id</see>
10107 </desc>
10108 <param name="id" type="uuid" dir="in">
10109 <desc>UUID of the USB device to search for.</desc>
10110 </param>
10111 <param name="device" type="IHostUSBDevice" dir="return">
10112 <desc>Found USB device object.</desc>
10113 </param>
10114 </method>
10115
10116 <method name="findByAddress">
10117 <desc>
10118 Searches this collection for a USB device with the given
10119 host address.
10120 <note>
10121 The method returns an error if the given address does not
10122 correspond to any USB device in the collection.
10123 </note>
10124 <see>IHostUSBDevice::address</see>
10125 </desc>
10126 <param name="name" type="wstring" dir="in">
10127 <desc>
10128 Address of the USB device (as assigned by the host) to
10129 search for.
10130 </desc>
10131 </param>
10132 <param name="device" type="IHostUSBDevice" dir="return">
10133 <desc>Found USB device object.</desc>
10134 </param>
10135 </method>
10136
10137 </collection>
10138
10139 <interface
10140 name="IHostUSBDevice" extends="IUSBDevice"
10141 uuid="173b4b44-d268-4334-a00d-b6521c9a740a"
10142 wsmap="managed"
10143 >
10144 <desc>
10145 The IHostUSBDevice interface represents a physical USB device attached
10146 to the host computer.
10147
10148 Besides properties inherited from IUSBDevice, this interface adds the
10149 <link to="#state"/> property that holds the current state of the USB
10150 device.
10151
10152 <see>IHost::USBDevices, IHost::USBDeviceFilters</see>
10153 </desc>
10154
10155 <attribute name="state" type="USBDeviceState" readonly="yes">
10156 <desc>
10157 Current state of the device.
10158 </desc>
10159 </attribute>
10160
10161 <!-- @todo add class, subclass, bandwidth, configs, interfaces endpoints and such later. -->
10162
10163 </interface>
10164
10165
10166 <!--
10167 // IHostUSBDeviceFilter
10168 /////////////////////////////////////////////////////////////////////////
10169 -->
10170
10171 <enum
10172 name="USBDeviceFilterAction"
10173 uuid="cbc30a49-2f4e-43b5-9da6-121320475933"
10174 >
10175 <desc>
10176 Actions for host USB device filters.
10177 <see>IHostUSBDeviceFilter, USBDeviceState</see>
10178 </desc>
10179
10180 <const name="Null" value="0">
10181 <desc><tt>null</tt> value. Never used by the API.</desc>
10182 </const>
10183 <const name="Ignore" value="1">
10184 <desc>Ignore the matched USB device.</desc>
10185 </const>
10186 <const name="Hold" value="2">
10187 <desc>Hold the matched USB device.</desc>
10188 </const>
10189 </enum>
10190
10191 <enumerator
10192 name="IHostUSBDeviceFilterEnumerator" type="IHostUSBDeviceFilter"
10193 uuid="ff735211-903e-4642-9c37-189eb44579fe"
10194 />
10195
10196 <collection
10197 name="IHostUSBDeviceFilterCollection" type="IHostUSBDeviceFilter"
10198 enumerator="IHostUSBDeviceFilterEnumerator"
10199 uuid="1a80458b-87f1-4a74-995d-04e2330119e0"
10200 readonly="yes"
10201 />
10202
10203 <interface
10204 name="IHostUSBDeviceFilter" extends="IUSBDeviceFilter"
10205 uuid="4cc70246-d74a-400f-8222-3900489c0374"
10206 wsmap="managed"
10207 >
10208 <desc>
10209 The IHostUSBDeviceFilter interface represents a global filter for a
10210 physical USB device used by the host computer. Used indirectly in
10211 <link to="IHost::USBDeviceFilters"/>.
10212
10213 Using filters of this type, the host computer determines the initial
10214 state of the USB device after it is physically attached to the
10215 host's USB controller.
10216
10217 <note>
10218 The <link to="#remote"/> attribute is ignored by this type of
10219 filters, because it makes sense only for
10220 <link to="IUSBController::deviceFilters">machine USB filters</link>.
10221 </note>
10222
10223 <see>IHost::USBDeviceFilters</see>
10224 </desc>
10225
10226 <attribute name="action" type="USBDeviceFilterAction">
10227 <desc>
10228 Action performed by the host when an attached USB device
10229 matches this filter.
10230 </desc>
10231 </attribute>
10232
10233 </interface>
10234
10235 <!--
10236 // IAudioAdapter
10237 /////////////////////////////////////////////////////////////////////////
10238 -->
10239
10240 <enum
10241 name="AudioDriverType"
10242 uuid="4bcc3d73-c2fe-40db-b72f-0c2ca9d68496"
10243 >
10244 <desc>
10245 Host audio driver type.
10246 </desc>
10247
10248 <const name="Null" value="0">
10249 <desc><tt>null</tt> value. Also means "dummy audio driver".</desc>
10250 </const>
10251 <const name="WinMM" value="1"/>
10252 <const name="OSS" value="2"/>
10253 <const name="ALSA" value="3"/>
10254 <const name="DirectSound" value="4"/>
10255 <const name="CoreAudio" value="5"/>
10256 <const name="MMPM" value="6"/>
10257 <const name="Pulse" value="7"/>
10258 <const name="SolAudio" value="8"/>
10259 </enum>
10260
10261 <enum
10262 name="AudioControllerType"
10263 uuid="7afd395c-42c3-444e-8788-3ce80292f36c"
10264 >
10265 <desc>
10266 Virtual audio controller type.
10267 </desc>
10268
10269 <const name="AC97" value="0"/>
10270 <const name="SB16" value="1"/>
10271 </enum>
10272
10273 <interface
10274 name="IAudioAdapter" extends="$unknown"
10275 uuid="921873db-5f3f-4b69-91f9-7be9e535a2cb"
10276 wsmap="managed"
10277 >
10278 <desc>
10279 The IAudioAdapter interface represents the virtual audio adapter of
10280 the virtual machine. Used in <link to="IMachine::audioAdapter"/>.
10281 </desc>
10282 <attribute name="enabled" type="boolean">
10283 <desc>
10284 Flag whether the audio adapter is present in the
10285 guest system. If disabled, the virtual guest hardware will
10286 not contain any audio adapter. Can only be changed when
10287 the VM is not running.
10288 </desc>
10289 </attribute>
10290 <attribute name="audioController" type="AudioControllerType">
10291 <desc>
10292 The audio hardware we emulate.
10293 </desc>
10294 </attribute>
10295 <attribute name="audioDriver" type="AudioDriverType">
10296 <desc>
10297 Audio driver the adapter is connected to. This setting
10298 can only be changed when the VM is not running.
10299 </desc>
10300 </attribute>
10301 </interface>
10302
10303 <!--
10304 // IVRDPServer
10305 /////////////////////////////////////////////////////////////////////////
10306 -->
10307
10308 <enum
10309 name="VRDPAuthType"
10310 uuid="3d91887a-b67f-4b33-85bf-2da7ab1ea83a"
10311 >
10312 <desc>
10313 VRDP authentication type.
10314 </desc>
10315
10316 <const name="Null" value="0">
10317 <desc><tt>null</tt> value. Also means "no authentication".</desc>
10318 </const>
10319 <const name="External" value="1"/>
10320 <const name="Guest" value="2"/>
10321 </enum>
10322
10323 <interface
10324 name="IVRDPServer" extends="$unknown"
10325 uuid="f4584ae7-6bce-474b-83d6-17d235e6aa89"
10326 wsmap="managed"
10327 >
10328 <attribute name="enabled" type="boolean">
10329 <desc>VRDP server status.</desc>
10330 </attribute>
10331
10332 <attribute name="port" type="unsigned long">
10333 <desc>
10334 VRDP server port number.
10335 <note>
10336 Setting the value of this property to <tt>0</tt> will reset the port
10337 number to the default value which is
10338 currently <tt>3389</tt>. Reading this property will always return a
10339 real port number, even after it has been set to <tt>0</tt> (in which
10340 case the default port is returned).
10341 </note>
10342 </desc>
10343 </attribute>
10344
10345 <attribute name="netAddress" type="wstring">
10346 <desc>VRDP server address.</desc>
10347 </attribute>
10348
10349 <attribute name="authType" type="VRDPAuthType">
10350 <desc>VRDP authentication method.</desc>
10351 </attribute>
10352
10353 <attribute name="authTimeout" type="unsigned long">
10354 <desc>Timeout for guest authentication. Milliseconds.</desc>
10355 </attribute>
10356
10357 <attribute name="allowMultiConnection" type="boolean">
10358 <desc>
10359 Flag whether multiple simultaneous connections to the VM are permitted.
10360 Note that this will be replaced by a more powerful mechanism in the future.
10361 </desc>
10362 </attribute>
10363
10364 <attribute name="reuseSingleConnection" type="boolean">
10365 <desc>
10366 Flag whether the existing connection must be dropped and a new connection
10367 must be established by the VRDP server, when a new client connects in single
10368 connection mode.
10369 </desc>
10370 </attribute>
10371
10372 </interface>
10373
10374
10375 <!--
10376 // ISharedFolder
10377 /////////////////////////////////////////////////////////////////////////
10378 -->
10379
10380 <enumerator
10381 name="ISharedFolderEnumerator" type="ISharedFolder"
10382 uuid="1d420fd8-e7c1-4511-abf4-a504dc6d0cbf"
10383 />
10384
10385 <collection
10386 name="ISharedFolderCollection" type="ISharedFolder"
10387 enumerator="ISharedFolderEnumerator"
10388 uuid="9c7e2282-bb16-4fa7-9138-f383c5e02353"
10389 readonly="yes">
10390
10391 <method name="findByName">
10392 <desc>
10393 Searches this collection for a shared folder with the given logical
10394 name.
10395 <note>
10396 The method returns an error if the given name does not correspond to
10397 any shared folder in the collection.
10398 </note>
10399 </desc>
10400 <param name="name" type="wstring" dir="in">
10401 <desc>Logical name of the shared folder to search for</desc>
10402 </param>
10403 <param name="sharedFolder" type="ISharedFolder" dir="return">
10404 <desc>Found shared folder object</desc>
10405 </param>
10406 </method>
10407
10408 </collection>
10409
10410 <interface
10411 name="ISharedFolder" extends="$unknown"
10412 uuid="8b0c5f70-9139-4f97-a421-64d5e9c335d5"
10413 wsmap="struct"
10414 >
10415 <desc>
10416 The ISharedFolder interface represents a folder in the host computer's
10417 file system accessible from the guest OS running inside a virtual
10418 machine using an associated logical name.
10419
10420 There are three types of shared folders:
10421 <ul>
10422 <li><i>Global</i> (<link to="IVirtualBox::sharedFolders"/>), shared
10423 folders available to all virtual machines.</li>
10424 <li><i>Permanent</i> (<link to="IMachine::sharedFolders"/>),
10425 VM-specific shared folders available to the given virtual machine at
10426 startup.</li>
10427 <li><i>Transient</i> (<link to="IConsole::sharedFolders"/>),
10428 VM-specific shared folders created in the session context (for
10429 example, when the virtual machine is running) and automatically
10430 discarded when the session is closed (the VM is powered off).</li>
10431 </ul>
10432
10433 Logical names of shared folders must be unique within the given scope
10434 (global, permanent or transient). However, they do not need to be unique
10435 across scopes. In this case, the definition of the shared folder in a
10436 more specific scope takes precedence over definitions in all other
10437 scopes. The order of precedence is (more specific to more general):
10438 <ol>
10439 <li>Transient definitions</li>
10440 <li>Permanent definitions</li>
10441 <li>Global definitions</li>
10442 </ol>
10443
10444 For example, if MyMachine has a shared folder named
10445 <tt>C_DRIVE</tt> (that points to <tt>C:\\</tt>), then creating a
10446 transient shared folder named <tt>C_DRIVE</tt> (that points
10447 to <tt>C:\\\\WINDOWS</tt>) will change the definition
10448 of <tt>C_DRIVE</tt> in the guest OS so
10449 that <tt>\\\\VBOXSVR\\C_DRIVE</tt> will give access
10450 to <tt>C:\\WINDOWS</tt> instead of <tt>C:\\</tt> on the host
10451 PC. Removing the transient shared folder <tt>C_DRIVE</tt> will restore
10452 the previous (permanent) definition of <tt>C_DRIVE</tt> that points
10453 to <tt>C:\\</tt> if it still exists.
10454
10455 Note that permanent and transient shared folders of different machines
10456 are in different name spaces, so they don't overlap and don't need to
10457 have unique logical names.
10458
10459 <note>
10460 Global shared folders are not implemented in the current version of the
10461 product.
10462 </note>
10463 </desc>
10464
10465 <attribute name="name" type="wstring" readonly="yes">
10466 <desc>Logical name of the shared folder.</desc>
10467 </attribute>
10468
10469 <attribute name="hostPath" type="wstring" readonly="yes">
10470 <desc>Full path to the shared folder in the host file system.</desc>
10471 </attribute>
10472
10473 <attribute name="accessible" type="boolean" readonly="yes">
10474 <desc>
10475 Whether the folder defined by the host path is currently
10476 accessible or not.
10477 For example, the folder can be unaccessible if it is placed
10478 on the network share that is not available by the time
10479 this property is read.
10480 </desc>
10481 </attribute>
10482
10483 <attribute name="writable" type="boolean" readonly="yes">
10484 <desc>
10485 Whether the folder defined by the host path is writable or
10486 not.
10487 </desc>
10488 </attribute>
10489
10490 </interface>
10491
10492 <!--
10493 // ISession
10494 /////////////////////////////////////////////////////////////////////////
10495 -->
10496
10497 <interface
10498 name="IInternalSessionControl" extends="$unknown"
10499 uuid="2581845a-5a9d-45fb-bc3b-2476552dd970"
10500 internal="yes"
10501 wsmap="suppress"
10502 >
10503 <method name="getPID">
10504 <desc>PID of the process that has created this Session object.
10505 </desc>
10506 <param name="pid" type="unsigned long" dir="return"/>
10507 </method>
10508
10509 <method name="getRemoteConsole">
10510 <desc>Returns the console object suitable for remote control.</desc>
10511 <param name="console" type="IConsole" dir="return"/>
10512 </method>
10513
10514 <method name="assignMachine">
10515 <desc>
10516 Assigns the machine object associated with this direct-type
10517 session or informs the session that it will be a remote one
10518 (if machine = NULL).
10519 </desc>
10520 <param name="machine" type="IMachine" dir="in"/>
10521 </method>
10522
10523 <method name="assignRemoteMachine">
10524 <desc>
10525 Assigns the machine and the (remote) console object associated with
10526 this remote-type session.
10527 </desc>
10528 <param name="machine" type="IMachine" dir="in"/>
10529 <param name="console" type="IConsole" dir="in"/>
10530 </method>
10531
10532 <method name="updateMachineState">
10533 <desc>
10534 Updates the machine state in the VM process.
10535 Must be called only in certain cases
10536 (see the method implementation).
10537 </desc>
10538 <param name="aMachineState" type="MachineState" dir="in"/>
10539 </method>
10540
10541 <method name="uninitialize">
10542 <desc>
10543 Uninitializes (closes) this session. Used by VirtualBox to close
10544 the corresponding remote session when the direct session dies
10545 or gets closed.
10546 </desc>
10547 </method>
10548
10549 <method name="onDVDDriveChange">
10550 <desc>
10551 Triggered when settings of the DVD drive object of the
10552 associated virtual machine have changed.
10553 </desc>
10554 </method>
10555
10556 <method name="onFloppyDriveChange">
10557 <desc>
10558 Triggered when settings of the floppy drive object of the
10559 associated virtual machine have changed.
10560 </desc>
10561 </method>
10562
10563 <method name="onNetworkAdapterChange">
10564 <desc>
10565 Triggered when settings of a network adapter of the
10566 associated virtual machine have changed.
10567 </desc>
10568 <param name="networkAdapter" type="INetworkAdapter" dir="in"/>
10569 </method>
10570
10571 <method name="onSerialPortChange">
10572 <desc>
10573 Triggered when settings of a serial port of the
10574 associated virtual machine have changed.
10575 </desc>
10576 <param name="serialPort" type="ISerialPort" dir="in"/>
10577 </method>
10578
10579 <method name="onParallelPortChange">
10580 <desc>
10581 Triggered when settings of a parallel port of the
10582 associated virtual machine have changed.
10583 </desc>
10584 <param name="parallelPort" type="IParallelPort" dir="in"/>
10585 </method>
10586
10587 <method name="onVRDPServerChange">
10588 <desc>
10589 Triggered when settings of the VRDP server object of the
10590 associated virtual machine have changed.
10591 </desc>
10592 </method>
10593
10594 <method name="onUSBControllerChange">
10595 <desc>
10596 Triggered when settings of the USB controller object of the
10597 associated virtual machine have changed.
10598 </desc>
10599 </method>
10600
10601 <method name="onSharedFolderChange">
10602 <desc>
10603 Triggered when a permanent (global or machine) shared folder has been
10604 created or removed.
10605 <note>
10606 We don't pass shared folder parameters in this notification because
10607 the order in which parallel notifications are delivered is not defined,
10608 therefore it could happen that these parameters were outdated by the
10609 time of processing this notification.
10610 </note>
10611 </desc>
10612 <param name="global" type="boolean" dir="in"/>
10613 </method>
10614
10615 <method name="onUSBDeviceAttach">
10616 <desc>
10617 Triggered when a request to capture a USB device (as a result
10618 of matched USB filters or direct call to
10619 <link to="IConsole::attachUSBDevice"/>) has completed.
10620 A @c null @a error object means success, otherwise it
10621 describes a failure.
10622 </desc>
10623 <param name="device" type="IUSBDevice" dir="in"/>
10624 <param name="error" type="IVirtualBoxErrorInfo" dir="in"/>
10625 <param name="maskedInterfaces" type="unsigned long" dir="in"/>
10626 </method>
10627
10628 <method name="onUSBDeviceDetach">
10629 <desc>
10630 Triggered when a request to release the USB device (as a result
10631 of machine termination or direct call to
10632 <link to="IConsole::detachUSBDevice"/>) has completed.
10633 A @c null @a error object means success, otherwise it
10634 </desc>
10635 <param name="id" type="uuid" dir="in"/>
10636 <param name="error" type="IVirtualBoxErrorInfo" dir="in"/>
10637 </method>
10638
10639 <method name="onShowWindow">
10640 <desc>
10641 Called by <link to="IMachine::canShowConsoleWindow()"/> and by
10642 <link to="IMachine::showConsoleWindow()"/> in order to notify
10643 console callbacks
10644 <link to="IConsoleCallback::onCanShowWindow()"/>
10645 and <link to="IConsoleCallback::onShowWindow()"/>.
10646 </desc>
10647 <param name="check" type="boolean" dir="in"/>
10648 <param name="canShow" type="boolean" dir="out"/>
10649 <param name="winId" type="unsigned long long" dir="out"/>
10650 </method>
10651
10652 <method name="accessGuestProperty">
10653 <desc>
10654 Called by <link to="IMachine::getGuestProperty()"/> and by
10655 <link to="IMachine::setGuestProperty()"/> in order to read and
10656 modify guest properties.
10657 </desc>
10658 <param name="name" type="wstring" dir="in"/>
10659 <param name="value" type="wstring" dir="in"/>
10660 <param name="flags" type="wstring" dir="in"/>
10661 <param name="isSetter" type="boolean" dir="in"/>
10662 <param name="retValue" type="wstring" dir="out"/>
10663 <param name="retTimestamp" type="unsigned long long" dir="out"/>
10664 <param name="retFlags" type="wstring" dir="out"/>
10665 </method>
10666
10667 <method name="enumerateGuestProperties">
10668 <desc>
10669 Return a list of the guest properties matching a set of patterns along
10670 with their values, time stamps and flags.
10671 </desc>
10672 <param name="patterns" type="wstring" dir="in">
10673 <desc>
10674 The patterns to match the properties against as a comma-separated
10675 string. If this is empty, all properties currently set will be
10676 returned.
10677 </desc>
10678 </param>
10679 <param name="key" type="wstring" dir="out" safearray="yes">
10680 <desc>
10681 The key names of the properties returned.
10682 </desc>
10683 </param>
10684 <param name="value" type="wstring" dir="out" safearray="yes">
10685 <desc>
10686 The values of the properties returned. The array entries match the
10687 corresponding entries in the @a key array.
10688 </desc>
10689 </param>
10690 <param name="timestamp" type="unsigned long long" dir="out" safearray="yes">
10691 <desc>
10692 The time stamps of the properties returned. The array entries match
10693 the corresponding entries in the @a key array.
10694 </desc>
10695 </param>
10696 <param name="flags" type="wstring" dir="out" safearray="yes">
10697 <desc>
10698 The flags of the properties returned. The array entries match the
10699 corresponding entries in the @a key array.
10700 </desc>
10701 </param>
10702 </method>
10703
10704 </interface>
10705
10706 <interface
10707 name="ISession" extends="$dispatched"
10708 uuid="12F4DCDB-12B2-4ec1-B7CD-DDD9F6C5BF4D"
10709 wsmap="managed"
10710 >
10711 <desc>
10712 The ISession interface represents a serialization primitive for virtual
10713 machines.
10714
10715 With VirtualBox, every time one wishes to manipulate a virtual machine
10716 (e.g. change its settings or start execution), a session object is
10717 required. Such an object must be passed to one of the session methods
10718 that open the given session, which then initiates the machine manipulation.
10719
10720 A session serves several purposes: it identifies to the inter-process VirtualBox
10721 code which process is currently working with the virtual machine, and it ensures
10722 that there are no incompatible requests from several processes for the
10723 same virtual machine. Session objects can therefore be thought of as mutex
10724 semaphores that lock virtual machines to prevent conflicting accesses from
10725 several processes.
10726
10727 How sessions objects are used depends on whether you use the Main API
10728 via COM or via the webservice:
10729
10730 <ul>
10731 <li>When using the COM API directly, an object of the Session class from the
10732 VirtualBox type library needs to be created. In regular COM C++ client code,
10733 this can be done by calling <tt>createLocalObject()</tt>, a standard COM API.
10734 This object will then act as a local session object in further calls to open
10735 a session.
10736 </li>
10737
10738 <li>In the webservice, the session manager (IWebsessionManager) instead creates
10739 one session object automatically when <link to="IWebsessionManager::logon" />
10740 is called. A managed object reference to that session object can be retrieved by
10741 calling <link to="IWebsessionManager::getSessionObject" />. This session object
10742 reference can then be used to open sessions.
10743 </li>
10744 </ul>
10745
10746 Sessions are mainly used in two variations:
10747
10748 <ul>
10749 <li>
10750 To start a virtual machine in a separate process, one would call
10751 <link to="IVirtualBox::openRemoteSession"/>, which requires a session
10752 object as its first parameter. This session then identifies the caller
10753 and lets him control the started machine (for example, pause machine
10754 execution or power it down) as well as be notified about machine
10755 execution state changes.
10756 </li>
10757
10758 <li>To alter machine settings, or to start machine execution within the
10759 current process, one needs to open a direct session for the machine first by
10760 calling <link to="IVirtualBox::openSession"/>. While a direct session
10761 is open within one process, no any other process may open another direct
10762 session for the same machine. This prevents the machine from being changed
10763 by other processes while it is running or while the machine is being configured.
10764 </li>
10765 </ul>
10766
10767 One also can attach to an existing direct session already opened by
10768 another process (for example, in order to send a control request to the
10769 virtual machine such as the pause or the reset request). This is done by
10770 calling <link to="IVirtualBox::openExistingSession"/>.
10771
10772 <note>
10773 Unless you are trying to write a new VirtualBox front-end that
10774 performs direct machine execution (like the VirtualBox or VBoxSDL
10775 front-ends), don't call <link to="IConsole::powerUp"/> in a direct
10776 session opened by <link to="IVirtualBox::openSession"/> and use this
10777 session only to change virtual machine settings. If you simply want to
10778 start virtual machine execution using one of the existing front-ends
10779 (for example the VirtualBox GUI or headless server), simply use
10780 <link to="IVirtualBox::openRemoteSession"/>; these front-ends
10781 will power up the machine automatically for you.
10782 </note>
10783 </desc>
10784
10785 <attribute name="state" type="SessionState" readonly="yes">
10786 <desc>Current state of this session.</desc>
10787 </attribute>
10788
10789 <attribute name="type" type="SessionType" readonly="yes">
10790 <desc>
10791 Type of this session. The value of this attribute is valid only
10792 if the session is currently open (i.e. its #state is SessionType::SessionOpen),
10793 otherwise an error will be returned.
10794 </desc>
10795 </attribute>
10796
10797 <attribute name="machine" type="IMachine" readonly="yes">
10798 <desc>Machine object associated with this session.</desc>
10799 </attribute>
10800
10801 <attribute name="console" type="IConsole" readonly="yes">
10802 <desc>Console object associated with this session.</desc>
10803 </attribute>
10804
10805 <method name="close">
10806 <desc>
10807 Closes a session that was previously opened.
10808
10809 It is recommended that every time an "open session" method (such as
10810 <link to="IVirtualBox::openRemoteSession" /> or
10811 <link to="IVirtualBox::openSession" />) has been called to
10812 manipulate a virtual machine, the caller invoke
10813 ISession::close() when it's done doing so. Since sessions are
10814 serialization primitives much like ordinary mutexes, they are
10815 best used the same way: for each "open" call, there should be
10816 a matching "close" call, even when errors occur.
10817
10818 Otherwise, if a direct session for a machine opened with
10819 <link to="IVirtualBox::openSession()"/> is not explicitly closed
10820 when the application terminates, the state of the machine will
10821 be set to <link to="MachineState::Aborted" /> on the server.
10822
10823 Generally, it is recommended to close all open sessions explicitly
10824 before terminating the application (no matter what is the reason of
10825 the termination).
10826
10827 <note>
10828 Do not expect the session state (<link to="ISession::state" />
10829 to return to "Closed" immediately after you invoke
10830 ISession::close(), particularly if you have started a remote
10831 session to execute the VM in a new process. The session state will
10832 automatically return to "Closed" once the VM is no longer executing,
10833 which can of course take a very long time.
10834 </note>
10835 </desc>
10836 </method>
10837
10838 </interface>
10839
10840 <!--
10841 // ISATAController
10842 /////////////////////////////////////////////////////////////////////////
10843 -->
10844
10845 <interface
10846 name="ISATAController" extends="$unknown"
10847 uuid="9a4b868b-1376-4533-8ef5-065b8e8cedff"
10848 wsmap="managed"
10849 >
10850 <attribute name="enabled" type="boolean">
10851 <desc>
10852 Flag whether the SATA controller is present in the
10853 guest system. If disabled, the virtual guest hardware will
10854 not contain any SATA controller. Can only be changed when
10855 the VM is powered off.
10856 </desc>
10857 </attribute>
10858
10859 <attribute name="portCount" type="unsigned long">
10860 <desc>
10861 The number of usable ports on the SATA controller.
10862 It ranges from 1 to 30.
10863 </desc>
10864 </attribute>
10865
10866 <method name="GetIDEEmulationPort">
10867 <desc>Gets the corresponding port number which is emulated as an IDE device.</desc>
10868 <param name="devicePosition" type="long" dir="in"/>
10869 <param name="portNumber" type="long" dir="return"/>
10870 </method>
10871
10872 <method name="SetIDEEmulationPort">
10873 <desc>Sets the port number which is emulated as an IDE device.</desc>
10874 <param name="devicePosition" type="long" dir="in"/>
10875 <param name="portNumber" type="long" dir="in"/>
10876 </method>
10877
10878 </interface>
10879
10880<if target="wsdl">
10881
10882 <!--
10883 // IManagedObjectRef
10884 /////////////////////////////////////////////////////////////////////////
10885 -->
10886
10887 <interface
10888 name="IManagedObjectRef" extends="$unknown"
10889 uuid="9474d09d-2313-46de-b568-a42b8718e8ed"
10890 internal="yes"
10891 wsmap="managed"
10892 wscpp="hardcoded"
10893 >
10894 <desc>
10895 Managed object reference.
10896
10897 Only within the webservice, a managed object reference (which is really
10898 an opaque number) allows a webservice client to address an object
10899 that lives in the address space of the webservice server.
10900
10901 Behind each managed object reference, there is a COM object that lives
10902 in the webservice server's address space. The COM object is not freed
10903 until the managed object reference is released, either by an explicit
10904 call to <link to="IManagedObjectRef::release" /> or by logging off from
10905 the webservice (<link to="IWebsessionManager::logoff" />), which releases
10906 all objects created during the webservice session.
10907
10908 Whenever a method call of the VirtualBox API returns a COM object, the
10909 webservice representation of that method will instead return a
10910 managed object reference, which can then be used to invoke methods
10911 on that object.
10912 </desc>
10913
10914 <method name="getInterfaceName">
10915 <desc>
10916 Returns the name of the interface that this managed object represents,
10917 for example, "IMachine", as a string.
10918 </desc>
10919 <param name="return" type="wstring" dir="return"/>
10920 </method>
10921
10922 <method name="release">
10923 <desc>
10924 Releases this managed object reference and frees the resources that
10925 were allocated for it in the webservice server process. After calling
10926 this method, the identifier of the reference can no longer be used.
10927 </desc>
10928 </method>
10929
10930 </interface>
10931
10932 <!--
10933 // IWebsessionManager
10934 /////////////////////////////////////////////////////////////////////////
10935 -->
10936
10937 <interface
10938 name="IWebsessionManager" extends="$unknown"
10939 uuid="dea1b4c7-2de3-418a-850d-7868617f7733"
10940 internal="yes"
10941 wsmap="global"
10942 wscpp="hardcoded"
10943 >
10944 <desc>
10945 Websession manager. This provides essential services
10946 to webservice clients.
10947 </desc>
10948 <method name="logon">
10949 <desc>
10950 Logs a new client onto the webservice and returns a managed object reference to
10951 the IVirtualBox instance, which the client can then use as a basis to further
10952 queries, since all calls to the VirtualBox API are based on the IVirtualBox
10953 interface, in one way or the other.
10954 </desc>
10955 <param name="username" type="wstring" dir="in"/>
10956 <param name="password" type="wstring" dir="in"/>
10957 <param name="return" type="IVirtualBox" dir="return"/>
10958 </method>
10959
10960 <method name="getSessionObject">
10961 <desc>
10962 Returns a managed object reference to the internal ISession object that was created
10963 for this web service session when the client logged on.
10964
10965 <see>ISession</see>
10966 </desc>
10967 <param name="refIVirtualBox" type="IVirtualBox" dir="in"/>
10968 <param name="return" type="ISession" dir="return"/>
10969 </method>
10970
10971 <method name="logoff">
10972 <desc>
10973 Logs off the client who has previously logged on with <link to="IWebsessionManager::logoff" />
10974 and destroys all resources associated with the session (most importantly, all
10975 managed objects created in the server while the session was active).
10976 </desc>
10977 <param name="refIVirtualBox" type="IVirtualBox" dir="in"/>
10978 </method>
10979
10980 </interface>
10981
10982</if>
10983
10984 <!--
10985 // IPerformanceCollector & friends
10986 /////////////////////////////////////////////////////////////////////////
10987 -->
10988
10989 <interface
10990 name="IPerformanceMetric" extends="$unknown"
10991 uuid="2a1a60ae-9345-4019-ad53-d34ba41cbfe9" wsmap="managed"
10992 >
10993 <desc>
10994 The IPerformanceMetric interface represents parameters of the given
10995 performance metric.
10996 </desc>
10997
10998 <attribute name="metricName" type="wstring" readonly="yes">
10999 <desc>
11000 Name of the metric.
11001 </desc>
11002 </attribute>
11003
11004 <attribute name="object" type="$unknown" readonly="yes">
11005 <desc>
11006 Object this metric belongs to.
11007 </desc>
11008 </attribute>
11009
11010 <attribute name="description" type="wstring" readonly="yes">
11011 <desc>
11012 Textual description of the metric.
11013 </desc>
11014 </attribute>
11015
11016 <attribute name="period" type="unsigned long" readonly="yes">
11017 <desc>
11018 Time interval between samples, measured in seconds.
11019 </desc>
11020 </attribute>
11021
11022 <attribute name="count" type="unsigned long" readonly="yes">
11023 <desc>
11024 Number of recent samples retained by the performance collector for this
11025 metric.
11026
11027 When the collected sample count exceeds this number, older samples
11028 are discarded.
11029 </desc>
11030 </attribute>
11031
11032 <attribute name="unit" type="wstring" readonly="yes">
11033 <desc>
11034 Unit of measurement.
11035 </desc>
11036 </attribute>
11037
11038 <attribute name="minimumValue" type="long" readonly="yes">
11039 <desc>
11040 Minimum possible value of this metric.
11041 </desc>
11042 </attribute>
11043
11044 <attribute name="maximumValue" type="long" readonly="yes">
11045 <desc>
11046 Maximum possible value of this metric.
11047 </desc>
11048 </attribute>
11049 </interface>
11050
11051 <interface
11052 name="IPerformanceCollector" extends="$unknown"
11053 uuid="e22e1acb-ac4a-43bb-a31c-17321659b0c6"
11054 wsmap="managed"
11055 >
11056 <desc>
11057 The IPerformanceCollector interface represents a service that collects and
11058 stores performance metrics data.
11059
11060 Performance metrics are associated with objects like IHost and
11061 IMachine. Each object has a distinct set of performance metrics.
11062 The set can be obtained with <link to="IPerformanceCollector::getMetrics"/>.
11063
11064 Metric data are collected at the specified intervals and are retained
11065 internally. The interval and the number of samples retained can be set
11066 with <link to="IPerformanceCollector::setupMetrics" />.
11067
11068 Metrics are organized hierarchically, each level separated by slash (/).
11069 General scheme for metric name is
11070 "Category/Metric[/SubMetric][:aggregation]". For example CPU/Load/User:avg
11071 metric name stands for: CPU category, Load metric, User submetric, average
11072 aggregate. An aggregate function is computed over all retained data. Valid
11073 aggregate functions are:
11074
11075 <ul>
11076 <li>avg -- average</li>
11077 <li>min -- minimum</li>
11078 <li>max -- maximum</li>
11079 </ul>
11080
11081 "Category/Metric" together form base metric name. A base metric is the
11082 smallest unit for which a sampling interval and the number of retained
11083 samples can be set. Only base metrics can be enabled and disabled. All
11084 sub-metrics are collected when their base metric is collected.
11085 Collected values for any set of sub-metrics can be queried with
11086 <link to="IPerformanceCollector::queryMetricsData" />. When setting up
11087 metric parameters, querying metric data, enabling or disabling metrics
11088 wildcards can be used in metric names to specify a subset of metrics. For
11089 example, to select all CPU-related metrics use <tt>CPU/*</tt>, all
11090 averages can be queried using <tt>*:avg</tt> and so on. To query metric
11091 values without aggregates <tt>*:</tt> can be used.
11092
11093 The valid names for base metrics are:
11094
11095 <ul>
11096 <li>CPU/Load</li>
11097 <li>CPU/MHz</li>
11098 <li>RAM/Usage</li>
11099 </ul>
11100
11101 The general sequence for collecting and retrieving the metrics is:
11102 <ul>
11103 <li>
11104 Obtain an instance of IPerformanceCollector with
11105 <link to="IVirtualBox::performanceCollector" />
11106 </li>
11107 <li>
11108 Allocate and populate an array with references to objects the metrics
11109 will be collected for. Use references to IHost and IMachine objects.
11110 </li>
11111 <li>
11112 Allocate and populate an array with base metric names the data will be
11113 collected for.
11114 </li>
11115 <li>
11116 Call <link to="IPerformanceCollector::setupMetrics" />. From now on the
11117 metric data will be collected and stored.
11118 </li>
11119 <li>
11120 Wait for the data to get collected.
11121 </li>
11122 <li>
11123 Allocate and populate an array with references to objects the metric
11124 values will be queried for. You can re-use the object array used for
11125 setting base metrics.
11126 </li>
11127 <li>
11128 Allocate and populate an array with metric names the data will be
11129 collected for. Note that metric names differ from base metric names.
11130 </li>
11131 <li>
11132 Call <link to="IPerformanceCollector::queryMetricsData" />. The data that
11133 have been collected so far are returned. Note that the values are still
11134 retained internally and data collection continues.
11135 </li>
11136 </ul>
11137
11138 For an example of usage refer to the following files in VirtualBox SDK:
11139 <ul>
11140 <li>
11141 Java: <tt>bindings/webservice/java/jax-ws/samples/metrictest.java</tt>
11142 </li>
11143 <li>
11144 Python: <tt>bindings/xpcom/python/sample/shellcommon.py</tt>
11145 </li>
11146 </ul>
11147 </desc>
11148
11149 <attribute name="metricNames" type="wstring" readonly="yes" safearray="yes">
11150 <desc>
11151 Array of unique names of metrics.
11152
11153 This array represents all metrics supported by the performance
11154 collector. Individual objects do not necessarily support all of them.
11155 <link to="IPerformanceCollector::getMetrics"/> can be used to get the
11156 list of supported metrics for a particular object.
11157 </desc>
11158 </attribute>
11159
11160 <method name="getMetrics">
11161 <desc>
11162 Returns parameters of specified metrics for a set of objects.
11163 <note>
11164 @c Null metrics array means all metrics. @c Null object array means
11165 all existing objects.
11166 </note>
11167 </desc>
11168 <param name="metricNames" type="wstring" dir="in" safearray="yes">
11169 <desc>
11170 Metric name filter. Currently, only a comma-separated list of metrics
11171 is supported.
11172 </desc>
11173 </param>
11174 <param name="objects" type="$unknown" dir="in" safearray="yes">
11175 <desc>
11176 Set of objects to return metric parameters for.
11177 </desc>
11178 </param>
11179 <param name="metrics" type="IPerformanceMetric" dir="return" safearray="yes">
11180 <desc>
11181 Array of returned metric parameters.
11182 </desc>
11183 </param>
11184 </method>
11185
11186 <method name="setupMetrics">
11187 <desc>
11188 Sets parameters of specified base metrics for a set of objects. Returns
11189 an array of <link to="IPerformanceMetric" /> describing the metrics have
11190 been affected.
11191 <note>
11192 @c Null or empty metric name array means all metrics. @c Null or empty
11193 object array means all existing objects. If metric name array contains
11194 a single element and object array contains many, the single metric
11195 name array element is applied to each object array element to form
11196 metric/object pairs.
11197 </note>
11198 </desc>
11199 <param name="metricNames" type="wstring" dir="in" safearray="yes">
11200 <desc>
11201 Metric name filter. Comma-separated list of metrics with wildcard
11202 support.
11203 </desc>
11204 </param>
11205 <param name="objects" type="$unknown" dir="in" safearray="yes">
11206 <desc>
11207 Set of objects to setup metric parameters for.
11208 </desc>
11209 </param>
11210 <param name="period" type="unsigned long" dir="in">
11211 <desc>
11212 Time interval in seconds between two consecutive samples of performance
11213 data.
11214 </desc>
11215 </param>
11216 <param name="count" type="unsigned long" dir="in">
11217 <desc>
11218 Number of samples to retain in performance data history. Older samples
11219 get discarded.
11220 </desc>
11221 </param>
11222 <param name="affectedMetrics" type="IPerformanceMetric" dir="return" safearray="yes">
11223 <desc>
11224 Array of metrics that have been modified by the call to this method.
11225 </desc>
11226 </param>
11227 </method>
11228
11229 <method name="enableMetrics">
11230 <desc>
11231 Turns on collecting specified base metrics. Returns an array of
11232 <link to="IPerformanceMetric" /> describing the metrics have been
11233 affected.
11234 <note>
11235 @c Null or empty metric name array means all metrics. @c Null or empty
11236 object array means all existing objects. If metric name array contains
11237 a single element and object array contains many, the single metric
11238 name array element is applied to each object array element to form
11239 metric/object pairs.
11240 </note>
11241 </desc>
11242 <param name="metricNames" type="wstring" dir="in" safearray="yes">
11243 <desc>
11244 Metric name filter. Comma-separated list of metrics with wildcard
11245 support.
11246 </desc>
11247 </param>
11248 <param name="objects" type="$unknown" dir="in" safearray="yes">
11249 <desc>
11250 Set of objects to enable metrics for.
11251 </desc>
11252 </param>
11253 <param name="affectedMetrics" type="IPerformanceMetric" dir="return" safearray="yes">
11254 <desc>
11255 Array of metrics that have been modified by the call to this method.
11256 </desc>
11257 </param>
11258 </method>
11259
11260 <method name="disableMetrics">
11261 <desc>
11262 Turns off collecting specified base metrics. Returns an array of
11263 <link to="IPerformanceMetric" /> describing the metrics have been
11264 affected.
11265 <note>
11266 @c Null or empty metric name array means all metrics. @c Null or empty
11267 object array means all existing objects. If metric name array contains
11268 a single element and object array contains many, the single metric
11269 name array element is applied to each object array element to form
11270 metric/object pairs.
11271 </note>
11272 </desc>
11273 <param name="metricNames" type="wstring" dir="in" safearray="yes">
11274 <desc>
11275 Metric name filter. Comma-separated list of metrics with wildcard
11276 support.
11277 </desc>
11278 </param>
11279 <param name="objects" type="$unknown" dir="in" safearray="yes">
11280 <desc>
11281 Set of objects to disable metrics for.
11282 </desc>
11283 </param>
11284 <param name="affectedMetrics" type="IPerformanceMetric" dir="return" safearray="yes">
11285 <desc>
11286 Array of metrics that have been modified by the call to this method.
11287 </desc>
11288 </param>
11289 </method>
11290
11291 <method name="queryMetricsData">
11292 <desc>
11293 Queries collected metrics data for a set of objects.
11294
11295 The data itself and related metric information are returned in seven
11296 parallel and one flattened array of arrays. Elements of
11297 <tt>returnMetricNames, returnObjects, returnUnits, returnScales,
11298 returnSequenceNumbers, returnDataIndices and returnDataLengths</tt> with
11299 the same index describe one set of values corresponding to a single
11300 metric.
11301
11302 The <tt>returnData</tt> parameter is a flattened array of arrays. Each
11303 start and length of a sub-array is indicated by
11304 <tt>returnDataIndices</tt> and <tt>returnDataLengths</tt>. The first
11305 value for metric <tt>metricNames[i]</tt> is at
11306 <tt>returnData[returnIndices[i]]</tt>.
11307
11308 <note>
11309 @c Null or empty metric name array means all metrics. @c Null or empty
11310 object array means all existing objects. If metric name array contains
11311 a single element and object array contains many, the single metric
11312 name array element is applied to each object array element to form
11313 metric/object pairs.
11314 </note>
11315 <note>
11316 Data collection continues behind the scenes after call to @c
11317 queryMetricsData. The return data can be seen as the snapshot of
11318 the current state at the time of @c queryMetricsData call. The
11319 internally kept metric values are not cleared by the call. This makes
11320 possible querying different subsets of metrics or aggregates with
11321 subsequent calls. If periodic querying is needed it is highly
11322 suggested to query the values with @c interval*count period to avoid
11323 confusion. This way a completely new set of data values will be
11324 provided by each query.
11325 </note>
11326 </desc>
11327 <param name="metricNames" type="wstring" dir="in" safearray="yes">
11328 <desc>
11329 Metric name filter. Comma-separated list of metrics with wildcard
11330 support.
11331 </desc>
11332 </param>
11333 <param name="objects" type="$unknown" dir="in" safearray="yes">
11334 <desc>
11335 Set of objects to query metrics for.
11336 </desc>
11337 </param>
11338 <param name="returnMetricNames" type="wstring" dir="out" safearray="yes">
11339 <desc>
11340 Names of metrics returned in @c returnData.
11341 </desc>
11342 </param>
11343 <param name="returnObjects" type="$unknown" dir="out" safearray="yes">
11344 <desc>
11345 Objects associated with metrics returned in @c returnData.
11346 </desc>
11347 </param>
11348 <param name="returnUnits" type="wstring" dir="out" safearray="yes">
11349 <desc>
11350 Units of measurement for each returned metric.
11351 </desc>
11352 </param>
11353 <param name="returnScales" type="unsigned long" dir="out" safearray="yes">
11354 <desc>
11355 Divisor that should be applied to return values in order to get
11356 floating point values. For example:
11357 <tt>(double)returnData[returnDataIndices[0]+i] / returnScales[0]</tt>
11358 will retrieve the floating point value of i-th sample of the first
11359 metric.
11360 </desc>
11361 </param>
11362 <param name="returnSequenceNumbers" type="unsigned long" dir="out" safearray="yes">
11363 <desc>
11364 Sequence numbers of the first elements of value sequences of particular metrics
11365 returned in @c returnData. For aggregate metrics it is the sequence number of
11366 the sample the aggregate started calculation from.
11367 </desc>
11368 </param>
11369 <param name="returnDataIndices" type="unsigned long" dir="out" safearray="yes">
11370 <desc>
11371 Indices of the first elements of value sequences of particular metrics
11372 returned in @c returnData.
11373 </desc>
11374 </param>
11375 <param name="returnDataLengths" type="unsigned long" dir="out" safearray="yes">
11376 <desc>
11377 Lengths of value sequences of particular metrics.
11378 </desc>
11379 </param>
11380 <param name="returnData" type="long" dir="return" safearray="yes">
11381 <desc>
11382 Flattened array of all metric data containing sequences of values for
11383 each metric.
11384 </desc>
11385 </param>
11386 </method>
11387
11388 </interface>
11389
11390 <module name="VBoxSVC" context="LocalServer">
11391 <class name="VirtualBox" uuid="B1A7A4F2-47B9-4A1E-82B2-07CCD5323C3F"
11392 namespace="virtualbox.org">
11393 <interface name="IVirtualBox" default="yes"/>
11394 </class>
11395 </module>
11396
11397 <module name="VBoxC" context="InprocServer" threadingModel="Free">
11398 <class name="Session" uuid="3C02F46D-C9D2-4f11-A384-53F0CF917214"
11399 namespace="virtualbox.org">
11400 <interface name="ISession" default="yes"/>
11401 </class>
11402 </module>
11403
11404</library>
11405
11406</idl>
11407<!-- vim: set shiftwidth=2 tabstop=2 expandtab: -->
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette