VirtualBox

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

Last change on this file since 7449 was 7442, checked in by vboxsync, 17 years ago

Main: Applied SATA changes from #2406. Increased XML settings version format from 1.2 to 1.3.pre.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 353.1 KB
Line 
1<?xml version="1.0" ?>
2
3<!--
4 * :tabSize=2:indentSize=2:noTabs=true:
5 * :folding=explicit:collapseFolds=1:
6 *
7 * Master declaration for VirtualBox's Main API, represented
8 * by COM/XPCOM and web service interfaces.
9 *
10 * From this document, the build system generates several files
11 * via XSLT that are then used during the build process.
12 *
13 * Below is the list of XSL templates that operate on this file and
14 * output files they generate. These XSL templates must be updated
15 * whenever the schema of this file changes:
16 *
17 * 1. src/VBox/Main/idl/midl.xsl =>
18 * out/<platform>/bin/sdk/idl/VirtualBox.idl
19 * (MS COM interface definition file for Main API)
20 *
21 * 2. src/VBox/Main/idl/xpidl.xsl =>
22 * out/<platform>/bin/sdk/idl/VirtualBox_XPCOM.idl
23 * (XPCOM interface definition file for Main API)
24 *
25 * 3. src/VBox/Main/idl/doxygen.xsl =>
26 * out/<platform>/obj/src/VBox/Main/VirtualBox.idl
27 * (pseudo-IDL for Doxygen to generate the official Main API
28 * documentation)
29 *
30 * 4. src/VBox/Main/webservice/*.xsl =>
31 * a bunch of WSDL and C++ files
32 * (VirtualBox web service sources and SOAP mappers;
33 * see src/VBox/Main/webservice/Makefile.kmk for details)
34 *
35 * 5. src/VBox/Frontends/VirtualBox/include/COMWrappers.xsl =>
36 * out/<platform>/obj/src/VBox/Frontends/VirtualBox/VirtualBox/include/COMWrappers.h
37 * (smart Qt-based C++ wrapper classes for COM interfaces
38 * of the Main API)
39 *
40 * 6. src/VBox/Installer/win32/VirtualBox_TypeLib.xsl =>
41 * out/<platform>/obj/src/VBox/Installer/win32/VirtualBox_TypeLib.wxi
42 * (Main API TypeLib block for the WiX installer)
43 *
44 Copyright (C) 2006-2007 innotek GmbH
45
46 This file is part of VirtualBox Open Source Edition (OSE), as
47 available from http://www.virtualbox.org. This file is free software;
48 you can redistribute it and/or modify it under the terms of the GNU
49 General Public License (GPL) as published by the Free Software
50 Foundation, in version 2 as it comes in the "COPYING" file of the
51 VirtualBox OSE distribution. VirtualBox OSE is distributed in the
52 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
53-->
54
55<idl>
56
57<if target="midl">
58 <cpp line="enum {"/>
59 <cpp line=" kTypeLibraryMajorVersion = 1,"/>
60 <cpp line=" kTypeLibraryMinorVersion = 0"/>
61 <cpp line="};"/>
62</if>
63
64<if target="xpidl">
65 <!-- NS_IMPL_THREADSAFE_ISUPPORTSxx_CI macros are placed here, for convenience -->
66 <cpp>
67// currenty, nsISupportsImpl.h lacks the below-like macros
68#ifndef NS_IMPL_THREADSAFE_ISUPPORTS1_CI
69#define NS_IMPL_THREADSAFE_ISUPPORTS1_CI(_class, _interface) \
70 NS_IMPL_THREADSAFE_ADDREF(_class) \
71 NS_IMPL_THREADSAFE_RELEASE(_class) \
72 NS_IMPL_QUERY_INTERFACE1_CI(_class, _interface) \
73 NS_IMPL_CI_INTERFACE_GETTER1(_class, _interface)
74#endif
75#ifndef NS_IMPL_THREADSAFE_ISUPPORTS2_CI
76#define NS_IMPL_THREADSAFE_ISUPPORTS2_CI(_class, _i1, _i2) \
77 NS_IMPL_THREADSAFE_ADDREF(_class) \
78 NS_IMPL_THREADSAFE_RELEASE(_class) \
79 NS_IMPL_QUERY_INTERFACE2_CI(_class, _i1, _i2) \
80 NS_IMPL_CI_INTERFACE_GETTER2(_class, _i1, _i2)
81#endif
82 </cpp>
83</if>
84
85<library
86 name="VirtualBox"
87 uuid="46137EEC-703B-4fe5-AFD4-7C9BBBBA0259"
88 version="1.3"
89 desc="innotek VirtualBox Type Library"
90 appUuid="819B4D85-9CEE-493C-B6FC-64FFE759B3C9"
91 supportsErrorInfo="yes"
92>
93
94 <!--
95 // all common enums
96 /////////////////////////////////////////////////////////////////////////
97 -->
98
99 <enum
100 name="TSBool"
101 uuid="523ff64d-842a-4b1a-80e7-c311b028cb3a"
102 >
103 <desc>
104 Boolean variable having a third state, default.
105 </desc>
106
107 <const name="False" value="0"/>
108 <const name="True" value="1"/>
109 <const name="Default" value="2"/>
110 </enum>
111
112 <enum
113 name="MachineState"
114 uuid="73bf04d0-7c4f-4684-9abf-d65a9ad74343"
115 >
116 <desc>
117 Virtual machine execution state. This enumeration represents possible
118 values of the <link to="IMachine::state"/> attribute.
119 </desc>
120
121 <const name="Null" value="0">
122 <desc><tt>null</tt> value. Never used by the API.</desc>
123 </const>
124 <const name="PoweredOff" value="1">
125 <desc>
126 The machine is not running.
127 </desc>
128 </const>
129 <const name="Saved" value="2">
130 <desc>
131 The machine is not currently running, but the execution state
132 of the machine has been saved to an external file when it
133 was running.
134 <note>
135 No any machine settings can be altered when the machine
136 is in this state.
137 </note>
138 </desc>
139 </const>
140 <const name="Aborted" value="3">
141 <desc>
142 A process that run the machine has abnormally terminated.
143 Other than that, this value is equivalent to #PoweredOff.
144 </desc>
145 </const>
146 <const name="Running" value="4">
147 <desc>
148 The machine is currently being executed.
149 <note>
150 This value can be used in comparison expressions:
151 all state values below it describe a virtual machine that is
152 not currently being executed (i.e., it is completely out of
153 action).
154 </note>
155 <note>
156 For whoever decides to touch this enum: In order to keep the
157 aforementioned comparisons valid, this state must immediately
158 preceed the Paused state.
159 </note>
160 </desc>
161 </const>
162 <const name="Paused" value="5">
163 <desc>
164 The execution of the machine has been paused.
165 <note>
166 This value can be used in comparison expressions: all state values
167 above it represent unstable states of the running virtual
168 machine. Unless explicitly stated otherwise, no machine settings can
169 be altered when it is in one of the unstable sates.
170 </note>
171 <note>
172 For whoever decides to touch this enum: In order to keep the
173 aforementioned comparisons valid, this state must immediately
174 follow the Running state.
175 </note>
176 </desc>
177 </const>
178 <const name="Stuck" value="6">
179 <desc>
180 The execution of the machine has reached the Guru Meditaion
181 condition. This condition indicates an internal VMM failure which may
182 happen as a result of either an unhandled low-level virtual hardware
183 exception or one of the recompiler exceptions (such as
184 the <i>too-many-traps</i> condition).
185 </desc>
186 </const>
187 <const name="Starting" value="7">
188 <desc>
189 The machine is being started after
190 <link to="IConsole::powerUp">powering it on</link> from a
191 zero execution state.
192 </desc>
193 </const>
194 <const name="Stopping" value="8">
195 <desc>
196 The machine is being normally stopped
197 (after explicitly <link to="IConsole::powerDown">powering it off</link>,
198 or after the guest OS has initiated a shutdown sequence).
199 </desc>
200 </const>
201 <const name="Saving" value="9">
202 <desc>
203 The machine is saving its execution state to a file as a
204 result of calling <link to="IConsole::saveState"/> or an online
205 snapshot of the machine is being taken using
206 <link to="IConsole::takeSnapshot"/>.
207 </desc>
208 </const>
209 <const name="Restoring" value="10">
210 <desc>
211 The execution state of the machine is being restored from a file
212 after <link to="IConsole::powerUp">powering it on</link> from
213 a saved execution state.
214 </desc>
215 </const>
216 <const name="Discarding" value="11">
217 <desc>
218 A snapshot of the machine is being discarded after calling
219 <link to="IConsole::discardSnapshot"/> or its current state is
220 being discarded after <link to="IConsole::discardCurrentState"/>.
221 </desc>
222 </const>
223 </enum>
224
225 <enum
226 name="SessionState"
227 uuid="CF2700C0-EA4B-47ae-9725-7810114B94D8"
228 >
229 <desc>
230 Session state. This enumeration represents possible values of
231 <link to="IMachine::sessionState"/> and <link to="ISession::state"/>
232 attributes. Idividual value descriptions contain the appropriate
233 meaning for every case.
234 </desc>
235
236 <const name="Null" value="0">
237 <desc><tt>null</tt> value. Never used by the API.</desc>
238 </const>
239 <const name="Closed" value="1">
240 <desc>
241 The machine has no open sessions (<link to="IMachine::sessionState"/>);
242 the session is closed (<link to="ISession::state"/>)
243 </desc>
244 </const>
245 <const name="Open" value="2">
246 <desc>
247 The machine has an open direct session (<link to="IMachine::sessionState"/>);
248 the session is open (<link to="ISession::state"/>)
249 </desc>
250 </const>
251 <const name="Spawning" value="3">
252 <desc>
253 A new (direct) session is being opened for the machine
254 as a result of <link to="IVirtualBox::openRemoteSession()"/>
255 call (<link to="IMachine::sessionState"/>);
256 the session is currently being opened
257 as a result of <link to="IVirtualBox::openRemoteSession()"/>
258 call (<link to="ISession::state"/>)
259 </desc>
260 </const>
261 <const name="Closing" value="4">
262 <desc>
263 The direct session is being closed (<link to="IMachine::sessionState"/>);
264 the session is being closed (<link to="ISession::state"/>)
265 </desc>
266 </const>
267 </enum>
268
269 <enum
270 name="SessionType"
271 uuid="A13C02CB-0C2C-421E-8317-AC0E8AAA153A"
272 >
273 <desc>
274 Session type. This enumeration represents possible values of the
275 <link to="ISession::type"/> attribute.
276 </desc>
277
278 <const name="Null" value="0">
279 <desc><tt>null</tt> value. Never used by the API.</desc>
280 </const>
281 <const name="Direct" value="1">
282 <desc>
283 Direct session
284 (opened by <link to="IVirtualBox::openSession()"/>)
285 </desc>
286 </const>
287 <const name="Remote" value="2">
288 <desc>
289 Remote session
290 (opened by <link to="IVirtualBox::openRemoteSession()"/>)
291 </desc>
292 </const>
293 <const name="Existing" value="3">
294 <desc>
295 Existing session
296 (opened by <link to="IVirtualBox::openExistingSession()"/>)
297 </desc>
298 </const>
299 </enum>
300
301 <enum
302 name="DeviceType"
303 uuid="6d9420f7-0b56-4636-99f9-7346f1b01e57"
304 >
305 <desc>
306 Device type.
307 </desc>
308 <const name="Null" value="0">
309 <desc>
310 <tt>null</tt> value which may also mean "no device".
311 <note>
312 This value is not allowed for
313 <link to="IConsole::getDeviceActivity"/>
314 </note>
315 </desc>
316 </const>
317 <const name="Floppy" value="1">
318 <desc>Floppy device.</desc>
319 </const>
320 <const name="DVD" value="2">
321 <desc>CD/DVD-ROM device.</desc>
322 </const>
323 <const name="HardDisk" value="3">
324 <desc>Hard disk device.</desc>
325 </const>
326 <const name="Network" value="4">
327 <desc>Network device.</desc>
328 </const>
329 <const name="USB" value="5">
330 <desc>USB device.</desc>
331 </const>
332 <const name="SharedFolder" value="6">
333 <desc>Shared folder device.</desc>
334 </const>
335 </enum>
336
337 <enum
338 name="DeviceActivity"
339 uuid="6FC8AEAA-130A-4eb5-8954-3F921422D707"
340 >
341 <desc>
342 Device activity for <link to="IConsole::getDeviceActivity"/>.
343 </desc>
344
345 <const name="Null" value="0"/>
346 <const name="Idle" value="1"/>
347 <const name="Reading" value="2"/>
348 <const name="Writing" value="3"/>
349 </enum>
350
351 <enum
352 name="ResourceUsage"
353 uuid="FC56E4B6-B195-48e2-A5E1-A667B0D9F809"
354 >
355 <desc>
356 Usage type constants for
357 <link to="IVirtualBox::getDVDImageUsage"/> and
358 <link to="IVirtualBox::getFloppyImageUsage"/>.
359 </desc>
360
361 <const name="Null" value="0">
362 <desc><tt>null</tt> value. Never used by the API.</desc>
363 </const>
364 <const name="Permanent" value="1">
365 <desc>
366 Scopes the VMs that use the resource permanently
367 (the information about this usage is stored in the VM
368 settings file).
369 </desc>
370 </const>
371 <const name="Temporary" value="2">
372 <desc>
373 Scopes the VMs that are temporarily using the resource
374 (the information about the usage is not yet saved in the VM
375 settings file). Temporary usage can take place only in the
376 context of an open session.
377 </desc>
378 </const>
379 <const name="All" value="3">
380 <desc>
381 Combines Permanent and Temporary.
382 </desc>
383 </const>
384 </enum>
385
386 <enum
387 name="StorageBus"
388 uuid="715984a5-093c-43bb-aa42-a16ed16828dd"
389 >
390 <desc>Interface bus type for storage devices.</desc>
391
392 <const name="Null" value="0">
393 <desc><tt>null</tt> value. Never used by the API.</desc>
394 </const>
395
396 <const name="IDE" value="1"/>
397 <const name="SATA" value="2"/>
398 </enum>
399
400 <enum
401 name="ClipboardMode"
402 uuid="33364716-4008-4701-8f14-be0fa3d62950"
403 >
404 <desc>
405 Host-Guest clipboard interchange mode.
406 </desc>
407
408 <const name="Disabled" value="0"/>
409 <const name="HostToGuest" value="1"/>
410 <const name="GuestToHost" value="2"/>
411 <const name="Bidirectional" value="3"/>
412 </enum>
413
414 <enum
415 name="Scope"
416 uuid="7c91096e-499e-4eca-9f9b-9001438d7855"
417 >
418 <desc>
419 Scope of the operation.
420
421 A generic enumeration used in various methods to define the action or
422 argument scope.
423 </desc>
424
425 <const name="Global" value="0"/>
426 <const name="Machine" value="1"/>
427 <const name="Session" value="2"/>
428 </enum>
429
430 <enum
431 name="GuestStatisticType"
432 uuid="aa7c1d71-aafe-47a8-9608-27d2d337cf55"
433 >
434 <desc>
435 Statistics type for <link to="IGuest::getStatistic"/>.
436 </desc>
437
438 <const name="CPULoad_Idle" value="0">
439 <desc>
440 Idle CPU load (0-100%) for last interval.
441 </desc>
442 </const>
443 <const name="CPULoad_Kernel" value="1">
444 <desc>
445 Kernel CPU load (0-100%) for last interval.
446 </desc>
447 </const>
448 <const name="CPULoad_User" value="2">
449 <desc>
450 User CPU load (0-100%) for last interval.
451 </desc>
452 </const>
453 <const name="Threads" value="3">
454 <desc>
455 Total number of threads in the system.
456 </desc>
457 </const>
458 <const name="Processes" value="4">
459 <desc>
460 Total number of processes in the system.
461 </desc>
462 </const>
463 <const name="Handles" value="5">
464 <desc>
465 Total number of handles in the system.
466 </desc>
467 </const>
468 <const name="MemoryLoad" value="6">
469 <desc>
470 Memory load (0-100%).
471 </desc>
472 </const>
473 <const name="PhysMemTotal" value="7">
474 <desc>
475 Total physical memory in megabytes.
476 </desc>
477 </const>
478 <const name="PhysMemAvailable" value="8">
479 <desc>
480 Free physical memory in megabytes.
481 </desc>
482 </const>
483 <const name="PhysMemBalloon" value="9">
484 <desc>
485 Ballooned physical memory in megabytes.
486 </desc>
487 </const>
488 <const name="MemCommitTotal" value="10">
489 <desc>
490 Total amount of memory in the committed state in megabytes.
491 </desc>
492 </const>
493 <const name="MemKernelTotal" value="11">
494 <desc>
495 Total amount of memory used by the guest OS's kernel in megabytes.
496 </desc>
497 </const>
498 <const name="MemKernelPaged" value="12">
499 <desc>
500 Total amount of paged memory used by the guest OS's kernel in megabytes.
501 </desc>
502 </const>
503 <const name="MemKernelNonpaged" value="13">
504 <desc>
505 Total amount of nonpaged memory used by the guest OS's kernel in megabytes.
506 </desc>
507 </const>
508 <const name="MemSystemCache" value="14">
509 <desc>
510 Total amount of memory used by the guest OS's system cache in megabytes.
511 </desc>
512 </const>
513 <const name="PageFileSize" value="15">
514 <desc>
515 Pagefile size in megabytes.
516 </desc>
517 </const>
518 <const name="SampleNumber" value="16">
519 <desc>
520 Statistics sample number
521 </desc>
522 </const>
523 <const name="MaxVal" value="17"/>
524 </enum>
525
526 <enum
527 name="BIOSBootMenuMode"
528 uuid="ae4fb9f7-29d2-45b4-b2c7-d579603135d5"
529 >
530 <desc>
531 BIOS boot menu mode.
532 </desc>
533
534 <const name="Disabled" value="0"/>
535 <const name="MenuOnly" value="1"/>
536 <const name="MessageAndMenu" value="2"/>
537 </enum>
538
539 <enum
540 name="IDEControllerType"
541 uuid="445330e3-202a-4dab-854f-ce22e6cb9715"
542 >
543 <desc>
544 IDE controller type.
545 </desc>
546
547 <const name="Null" value="0">
548 <desc><tt>null</tt> value. Never used by the API.</desc>
549 </const>
550 <const name="PIIX3" value="1"/>
551 <const name="PIIX4" value="2"/>
552 </enum>
553
554 <enum
555 name="DriveState"
556 uuid="cb7233b7-c519-42a5-8310-1830953cacbc"
557 >
558 <const name="Null" value="0">
559 <desc><tt>null</tt> value. Never used by the API.</desc>
560 </const>
561 <const name="NotMounted" value="1"/>
562 <const name="ImageMounted" value="2"/>
563 <const name="HostDriveCaptured" value="3"/>
564 </enum>
565
566 <!--
567 // IVirtualBoxErrorInfo
568 /////////////////////////////////////////////////////////////////////////
569 -->
570
571 <interface
572 name="IVirtualBoxErrorInfo" extends="$errorinfo"
573 uuid="e98b5376-8eb4-4eea-812a-3964bf3bb26f"
574 supportsErrorInfo="no"
575 wsmap="suppress"
576 >
577 <desc>
578 The IVirtualBoxErrorInfo interface represents extended error information.
579
580 Extended error information can be set by VirtualBox components after
581 unsuccessful or partially successful method invocation. This information
582 can be retrievefd by the calling party as an IVirtualBoxErrorInfo object
583 and then shown to the client in addition to the plain 32-bit result code.
584
585 In MS COM, this interface extends the IErrorInfo interface,
586 in XPCOM, it extends the nsIException interface. In both cases,
587 it provides a set of common attributes to retrieve error
588 information.
589
590 Sometimes invocation of some component's method may involve methods of
591 other components that may also fail (independently of this method's
592 failure), or a series of non-fatal errors may precede a fatal error that
593 causes method failure. In cases like that, it may be desirable to preserve
594 information about all errors happened during method invocation and deliver
595 it to the caller. The <link to="#next"/> attribute is intended
596 specifically for this purpose and allows to represent a chain of errors
597 through a single IVirtualBoxErrorInfo object set after method invocation.
598
599 Note that errors are stored to a chain in the reverse order, i.e. the
600 initial error object you query right after method invocation is the last
601 error set by the callee, the object it points to in the @a next attribute
602 is the previous error and so on, up to the first error (which is the last
603 in the chain).
604 </desc>
605
606 <attribute name="resultCode" type="result" readonly="yes">
607 <desc>
608 Result code of the error.
609 Usually, it will be the same as the result code returned
610 by the method that provided this error information, but not
611 always. For example, on Win32, CoCreateInstance() will most
612 likely return E_NOINTERFACE upon unsuccessful component
613 instantiation attempt, but not the value the component factory
614 returned.
615 <note>
616 In MS COM, there is no equivalent.
617 In XPCOM, it is the same as nsIException::result.
618 </note>
619 </desc>
620 </attribute>
621
622 <attribute name="interfaceID" type="uuid" readonly="yes">
623 <desc>
624 UUID of the interface that defined the error.
625 <note>
626 In MS COM, it is the same as IErrorInfo::GetGUID.
627 In XPCOM, there is no equivalent.
628 </note>
629 </desc>
630 </attribute>
631
632 <attribute name="component" type="wstring" readonly="yes">
633 <desc>
634 Name of the component that generated the error.
635 <note>
636 In MS COM, it is the same as IErrorInfo::GetSource.
637 In XPCOM, there is no equivalent.
638 </note>
639 </desc>
640 </attribute>
641
642 <attribute name="text" type="wstring" readonly="yes">
643 <desc>
644 Text description of the error.
645 <note>
646 In MS COM, it is the same as IErrorInfo::GetDescription.
647 In XPCOM, it is the same as nsIException::message.
648 </note>
649 </desc>
650 </attribute>
651
652 <attribute name="next" type="IVirtualBoxErrorInfo" readonly="yes">
653 <desc>
654 Next error object if there is any, or @c null otherwise.
655 <note>
656 In MS COM, there is no equivalent.
657 In XPCOM, it is the same as nsIException::inner.
658 </note>
659 </desc>
660 </attribute>
661
662 </interface>
663
664
665 <!--
666 // IVirtualBox
667 /////////////////////////////////////////////////////////////////////////
668 -->
669
670 <interface
671 name="IVirtualBoxCallback" extends="$unknown"
672 uuid="ee95ffc2-b6c6-4ce8-9e9e-ceadbb5019fe"
673 wsmap="suppress"
674 >
675 <method name="onMachineStateChange">
676 <desc>
677 The execution state of the given machine has changed.
678 <see>IMachine::state</see>
679 </desc>
680 <param name="machineId" type="uuid" dir="in">
681 <desc>ID of the machine this event relates to.</desc>
682 </param>
683 <param name="state" type="MachineState" dir="in">
684 <desc>New execution state.</desc>
685 </param>
686 </method>
687
688 <method name="onMachineDataChange">
689 <desc>
690 Any of the settings of the given machine has changed.
691 </desc>
692 <param name="machineId" type="uuid" dir="in">
693 <desc>ID of the machine this event relates to.</desc>
694 </param>
695 </method>
696
697 <method name="onExtraDataCanChange">
698 <desc>
699 Notification when someone tries to change extra data for
700 either the given machine or (if null) global extra data.
701 This gives the chance to veto against changes.
702 </desc>
703 <param name="machineId" type="uuid" dir="in">
704 <desc>
705 ID of the machine this event relates to
706 (null ID for global extra data change requests).
707 </desc>
708 </param>
709 <param name="key" type="wstring" dir="in">
710 <desc>
711 Extra data key for the attempted write.
712 </desc>
713 </param>
714 <param name="value" type="wstring" dir="in">
715 <desc>
716 Extra data value for the given key.
717 </desc>
718 </param>
719 <param name="error" type="wstring" dir="out">
720 <desc>
721 Optional error message describing the reason of the
722 veto (ignored if this notification returns @c true).
723 </desc>
724 </param>
725 <param name="allowChange" type="boolean" dir="return">
726 <desc>
727 Flag to indicate whether the callee agrees (@ true)
728 or vetoes against the change (@ false).
729 </desc>
730 </param>
731 </method>
732
733 <method name="onExtraDataChange">
734 <desc>
735 Notification when machine specific or global extra data
736 has changed.
737 </desc>
738 <param name="machineId" type="uuid" dir="in">
739 <desc>
740 ID of the machine this event relates to.
741 Null for global extra data changes.
742 </desc>
743 </param>
744 <param name="key" type="wstring" dir="in">
745 <desc>
746 Extra data key that has changed.
747 </desc>
748 </param>
749 <param name="value" type="wstring" dir="in">
750 <desc>
751 Extra data value for the given key.
752 </desc>
753 </param>
754 </method>
755
756 <method name="onMediaRegistered">
757 <desc>
758 The given media was registered or unregistered
759 within this VirtualBox installation.
760
761 The @a mediaType parameter describes what type of
762 media the specified @a mediaId refers to. Possible
763 values are:
764
765 - <link to="DeviceType::HardDisk"/>: the media is a hard disk
766 that, if registered, can be obtained using the
767 <link to="IVirtualBox::getHardDisk"/> call.
768 - <link to="DeviceType::DVD"/>: the media is a CD/DVD image
769 that, if registered, can be obtained using the
770 <link to="IVirtualBox::getDVDImage"/> call.
771 - <link to="DeviceType::Floppy"/>: the media is a Floppy image
772 that, if registered, can be obtained using the
773 <link to="IVirtualBox::getFloppyImage"/> call.
774
775 Note that if this is a deregistration notification,
776 there is no way to access the object representing the
777 unregistered media. It is supposed that the
778 application will do required cleanup based on the @a
779 mediaId value.
780 </desc>
781 <param name="mediaId" type="uuid" dir="in">
782 <desc>ID of the media this event relates to.</desc>
783 </param>
784 <param name="mediaType" type="DeviceType" dir="in">
785 <desc>Type of the media this event relates to.</desc>
786 </param>
787 <param name="registered" type="boolean" dir="in">
788 <desc>
789 If true, the media was registered, otherwise it was
790 unregistered.
791 </desc>
792 </param>
793 </method>
794
795 <method name="onMachineRegistered">
796 <desc>
797 The given machine was registered or unregistered
798 within this VirtualBox installation.
799 </desc>
800 <param name="machineId" type="uuid" dir="in">
801 <desc>ID of the machine this event relates to.</desc>
802 </param>
803 <param name="registered" type="boolean" dir="in">
804 <desc>
805 If true, the machine was registered, otherwise it was
806 unregistered.
807 </desc>
808 </param>
809 </method>
810
811 <method name="onSessionStateChange">
812 <desc>
813 The state of the session for the given machine was changed.
814 <see>IMachine::sessionState</see>
815 </desc>
816 <param name="machineId" type="uuid" dir="in">
817 <desc>ID of the machine this event relates to.</desc>
818 </param>
819 <param name="state" type="SessionState" dir="in">
820 <desc>New session state.</desc>
821 </param>
822 </method>
823
824 <method name="onSnapshotTaken">
825 <desc>
826 A new snapshot of the machine has been taken.
827 <see>ISnapshot</see>
828 </desc>
829 <param name="machineId" type="uuid" dir="in">
830 <desc>ID of the machine this event relates to.</desc>
831 </param>
832 <param name="snapshotId" type="uuid" dir="in">
833 <desc>ID of the new snapshot.</desc>
834 </param>
835 </method>
836
837 <method name="onSnapshotDiscarded">
838 <desc>
839 Snapshot of the given machine has been discarded.
840
841 <note>
842 This notification is delivered <b>after</b> the snapshot
843 object has been uninitialized on the server (so that any
844 attempt to call its methods will return an error).
845 </note>
846
847 <see>ISnapshot</see>
848 </desc>
849 <param name="machineId" type="uuid" dir="in">
850 <desc>ID of the machine this event relates to.</desc>
851 </param>
852 <param name="snapshotId" type="uuid" dir="in">
853 <desc>
854 ID of the discarded snapshot. <tt>null</tt> means the
855 current machine state has been discarded (restored from
856 the current snapshot).
857 </desc>
858 </param>
859 </method>
860
861 <method name="onSnapshotChange">
862 <desc>
863 Snapshot properties (name and/or description) have been changed.
864 <see>ISnapshot</see>
865 </desc>
866 <param name="machineId" type="uuid" dir="in">
867 <desc>ID of the machine this event relates to.</desc>
868 </param>
869 <param name="snapshotId" type="uuid" dir="in">
870 <desc>ID of the changed snapshot.</desc>
871 </param>
872 </method>
873
874 </interface>
875
876 <interface
877 name="IVirtualBox" extends="$dispatched"
878 uuid="2d3b9ea7-25f5-4f07-a8e1-7dd7e0dcf667"
879 wsmap="managed"
880 >
881 <desc>
882 The IVirtualBox interface represents the main interface exposed by the
883 product that provides virtual machine management.
884
885 An instance of IVirtualBox is required for the product to do anything
886 useful. Even though the interface does not expose this, internally,
887 IVirtualBox is implemented as a singleton and actually lives in the
888 process of the VirtualBox server (VBoxSVC.exe). This makes sure that
889 IVirtualBox can track the state of all virtual machines on a particular
890 host, regardless of which frontend started them.
891
892 To enumerate all the virtual machines on the host, use the
893 <link to="IVirtualBox::machines"/> attribute.
894 </desc>
895
896 <attribute name="version" type="wstring" readonly="yes">
897 <desc>
898 A string representing the version number of the product. The
899 format is 3 integer numbers divided by dots (e.g. 1.0.1). The
900 last number represents the build number and will frequently change.
901 </desc>
902 </attribute>
903
904 <attribute name="homeFolder" type="wstring" readonly="yes">
905 <desc>
906 Full path to the directory where the global settings file,
907 <tt>VirtualBox.xml</tt>, is stored.
908
909 In this version of VirtualBox, the value of this property is
910 always <tt>&lt;user_dir&gt;/.VirtualBox</tt> (where
911 <tt>&lt;user_dir&gt;</tt> is the path to the user directory,
912 as determined by the host OS), and cannot be changed.
913
914 This path is also used as the base to resolve relative paths in
915 places where relative paths are allowed (unless otherwise
916 expressly indicated).
917 </desc>
918 </attribute>
919
920 <attribute name="settingsFilePath" type="wstring" readonly="yes">
921 <desc>
922 Full name of the global settings file.
923 The value of this property corresponds to the value of
924 <link to="#homeFolder"/> plus <tt>/VirtualBox.xml</tt>.
925 </desc>
926 </attribute>
927
928 <attribute name="settingsFileVersion" type="wstring" readonly="yes">
929 <desc>
930 Current version of the format of the global VirtualBox settings file
931 (<tt>VirtualBox.xml</tt>).
932
933 The version string has the following format:
934 <pre>
935 x.y-platform
936 </pre>
937 where <tt>x</tt> and <tt>y</tt> are the major and the minor format
938 versions, and <tt>platform</tt> is the platform identifier.
939
940 The current version usually matches the value of the
941 <link to="#settingsFormatVersion"/> attribute unless the
942 settings file was created by an older version of VirtualBox and there
943 was a change of the settings file format since then.
944
945 Note that VirtualBox automatically converts settings files from older
946 versions to the most recent version when reading them (usually at
947 VirtualBox startup) but it doesn't save the changes back until
948 you call a method that implicitly saves settings (such as
949 <link to="#setExtraData()"/>) or call <link to="#saveSettings()"/>
950 explicitly. Therefore, if the value of this attribute differs from the
951 value of <link to="#settingsFormatVersion"/>, then it
952 means that the settings file was converted but the result of the
953 conversion is not yet saved to disk.
954
955 The above feature may be used by interactive front-ends to inform users
956 about the settings file format change and offer them to explicitly save
957 all converted settings files (the global and VM-specific ones),
958 optionally create bacup copies of the old settings files before saving,
959 etc.
960
961 <see>settingsFormatVersion, saveSettingsWithBackup()</see>
962 </desc>
963 </attribute>
964
965 <attribute name="settingsFormatVersion" type="wstring" readonly="yes">
966 <desc>
967 Most recent version of the settings file format.
968
969 The version string has the following format:
970 <pre>
971 x.y-platform
972 </pre>
973 where <tt>x</tt> and <tt>y</tt> are the major and the minor format
974 versions, and <tt>platform</tt> is the platform identifier.
975
976 VirtualBox uses this version of the format when saving settings files
977 (either as a result of method calls that require to save settings or as
978 a result of an explicit call to <link to="#saveSettings()"/>).
979
980 <see>settingsFileVersion</see>
981 </desc>
982 </attribute>
983
984 <attribute name="host" type="IHost" readonly="yes">
985 <desc>Associated host object.</desc>
986 </attribute>
987
988 <attribute name="systemProperties" type="ISystemProperties" readonly="yes">
989 <desc>Associated system information object.</desc>
990 </attribute>
991
992 <attribute name="machines" type="IMachineCollection" readonly="yes">
993 <desc>
994 Collection of machine objects registered within this VirtualBox
995 instance.
996 </desc>
997 </attribute>
998
999 <attribute name="machines2" type="IMachine" readonly="yes" safearray="yes">
1000 <desc>
1001 Array of machine objects registered within this VirtualBox instance.
1002 </desc>
1003 </attribute>
1004
1005 <attribute name="hardDisks" type="IHardDiskCollection" readonly="yes">
1006 <desc>
1007 Collection of hard disk objects registered within this VirtualBox
1008 instance.
1009
1010 This collection contains only "top-level" (basic or independent) hard
1011 disk images, but not differencing ones. All differencing images of the
1012 given top-level image (i.e. all its children) can be enumerated using
1013 <link to="IHardDisk::children"/>.
1014 </desc>
1015 </attribute>
1016
1017 <attribute name="DVDImages" type="IDVDImageCollection" readonly="yes"/>
1018
1019 <attribute name="FloppyImages" type="IFloppyImageCollection" readonly="yes"/>
1020
1021 <attribute name="progressOperations" type="IProgressCollection" readonly="yes"/>
1022
1023 <attribute name="guestOSTypes" type="IGuestOSTypeCollection" readonly="yes"/>
1024
1025 <attribute name="sharedFolders" type="ISharedFolderCollection" readonly="yes">
1026 <desc>
1027 Collection of global shared folders. Global shared folders are
1028 available to all virtual machines.
1029
1030 New shared folders are added to the collection using
1031 <link to="#createSharedFolder"/>. Existing shared folders can be
1032 removed using <link to="#removeSharedFolder"/>.
1033
1034 <note>
1035 In the current version of the product, global shared folders are not
1036 implemented and therefore this collection is always empty.
1037 </note>
1038 </desc>
1039 </attribute>
1040
1041 <method name="createMachine">
1042 <desc>
1043 Creates a new virtual machine.
1044
1045 The new machine will have "empty" default settings and will not
1046 yet be registered. The typical sequence to create a virtual machine
1047 is therefore something like this:
1048
1049 <ol>
1050 <li>Call this method (IVirtualBox::createMachine) to have a new
1051 machine created. The machine object returned is "mutable", i.e.
1052 automatically locked for the current session, as if
1053 <link to="#openSession" /> had been called on it.</li>
1054
1055 <li>Assign meaningful settings to the new machine by calling the
1056 respective methods.</li>
1057
1058 <li>Call <link to="IMachine::saveSettings" /> to have the settings written
1059 to the machine's XML settings file. The configuration of the newly
1060 created machine will not be saved to disk (and the settings subfolder
1061 and file, as described below, will not be created) until this method
1062 is called.</li>
1063
1064 <li>Call <link to="#registerMachine" /> to have the
1065 machine show up in the list of machines registered with VirtualBox.</li>
1066 </ol>
1067
1068 Every machine has a <i>settings file</i> that is used to store
1069 the machine configuration. This file is stored in the directory
1070 called <i>machine settings subfolder</i>. Unless specified otherwise,
1071 both the subfolder and the settings file will have a name that
1072 corresponds to the name of the virtual machine. You can specify
1073 where to create the machine settings subfolder using the @a
1074 baseFolder argument. The base folder can be absolute (full path)
1075 or relative to the <link to="IVirtualBox::homeFolder">
1076 VirtualBox home directory</link>.
1077
1078 If a null or empty string is given as the base folder (which is
1079 recommended), the <link to="ISystemProperties::defaultMachineFolder">
1080 default machine settings folder</link> will be used as the base
1081 folder to create the machine settings subfolder and file. In
1082 any case, the full path to the settings file will look like:
1083 <pre>
1084 &lt;base_folder&gt;/&lt;machine_name&gt;/&lt;machine_name&gt;.xml
1085 </pre>
1086
1087 Optionally the UUID of the machine can be predefined. If this is
1088 not desired (i.e. a new UUID should be generated), pass just an
1089 empty or null UUID.
1090
1091 You should also specify a valid name for the machine.
1092 See the <link to="IMachine::name"/> property
1093 description for more details about the machine name.
1094
1095 The created machine remains
1096 unregistered until you call <link to="#registerMachine()"/>.
1097
1098 <note>
1099 There is no way to change the name of the settings file or
1100 subfolder of the created machine directly.
1101 </note>
1102 </desc>
1103 <param name="baseFolder" type="wstring" dir="in">
1104 <desc>
1105 Name of the folder where to create the machine settings
1106 subfolder containing the settings file.
1107 </desc>
1108 </param>
1109 <param name="name" type="wstring" dir="in">
1110 <desc>Machine name.</desc>
1111 </param>
1112 <param name="id" type="uuid" dir="in">
1113 <desc>
1114 UUID of the newly created VM, when non-null or non-empty.
1115 Otherwise a UUID is automatically generated.
1116 </desc>
1117 </param>
1118 <param name="machine" type="IMachine" dir="return">
1119 <desc>Created machine object.</desc>
1120 </param>
1121 </method>
1122
1123 <method name="createLegacyMachine">
1124 <desc>
1125 Creates a new virtual machine in "legacy" mode, using the
1126 specified settings file to store machine settings.
1127
1128 As opposed to machines created by <link to="#createMachine()"/>,
1129 the settings file of the machine created in "legacy" mode
1130 is not automatically renamed when the machine name is
1131 changed -- it will always remain the same as specified in this
1132 method call.
1133
1134 The specified settings file name can be absolute
1135 (full path) or relative to the <link to="IVirtualBox::homeFolder">
1136 VirtualBox home directory</link>. If the file name doesn't
1137 contain an extension, the default extension (.xml) will be
1138 appended.
1139
1140 Optionally the UUID of the machine can be predefined. If this is
1141 not desired (i.e. a new UUID should be generated), pass just an
1142 empty or null UUID.
1143
1144 Note that the configuration of the newly created machine is not
1145 saved to disk (and therefore no settings file is created)
1146 until <link to="IMachine::saveSettings()"/> is called. If the
1147 specified settings file already exists,
1148 <link to="IMachine::saveSettings()"/> will return an error.
1149
1150 You should also specify a valid name for the machine.
1151 See the <link to="IMachine::name"/> property
1152 description for more details about the machine name.
1153
1154 The created machine remains
1155 unregistered until you call <link to="#registerMachine()"/>.
1156
1157 @deprecated This method may be removed later. It is better
1158 to use <link to="IVirtualBox::createMachine()"/>.
1159
1160 <note>
1161 There is no way to change the name of the settings file
1162 of the created machine.
1163 </note>
1164 </desc>
1165 <param name="settingsFile" type="wstring" dir="in">
1166 <desc>
1167 Name of the file where to store machine settings.
1168 </desc>
1169 </param>
1170 <param name="name" type="wstring" dir="in">
1171 <desc>Machine name.</desc>
1172 </param>
1173 <param name="id" type="uuid" dir="in">
1174 <desc>
1175 UUID of the newly created VM, when non-null or non-empty.
1176 Otherwise a UUID is automatically generated.
1177 </desc>
1178 </param>
1179 <param name="machine" type="IMachine" dir="return">
1180 <desc>Created machine object.</desc>
1181 </param>
1182 </method>
1183
1184 <method name="openMachine">
1185 <desc>
1186 Opens a virtual machine from the existing settings file.
1187 The opened machine remains unregistered until you call
1188 <link to="#registerMachine()"/>.
1189
1190 The specified settings file name can be absolute
1191 (full path) or relative to the <link to="IVirtualBox::homeFolder">
1192 VirtualBox home directory</link>. This file must exist
1193 and must be a valid machine settings file whose contents
1194 will be used to construct the machine object.
1195
1196 @deprecated Will be removed soon.
1197 </desc>
1198 <param name="settingsFile" type="wstring" dir="in">
1199 <desc>
1200 Name of the machine settings file.
1201 </desc>
1202 </param>
1203 <param name="machine" type="IMachine" dir="return">
1204 <desc>Opened machine object.</desc>
1205 </param>
1206 <note>
1207 <link to="IMachine::settingsModified"/> will return
1208 false for the created machine, until any of machine settigs
1209 are changed.
1210 </note>
1211 </method>
1212
1213 <method name="registerMachine">
1214 <desc>
1215
1216 Registers the machine previously created using
1217 <link to="#createMachine()"/> or opened using
1218 <link to="#openMachine()"/> within this VirtualBox installation. After
1219 successful method invocation, the
1220 <link to="IVirtualBoxCallback::onMachineRegistered"/> signal is sent
1221 to all registered callbacks.
1222
1223 <note>
1224 This method implicitly calls <link to="IMachine::saveSettings"/>
1225 to save all current machine settings before registering it.
1226 </note>
1227
1228 </desc>
1229 <param name="machine" type="IMachine" dir="in"/>
1230 </method>
1231
1232 <method name="getMachine">
1233 <desc>
1234 Attempts to find a virtual machine given its UUID.
1235 To look up a machine by name, use <link to="IVirtualBox::findMachine" /> instead.
1236 </desc>
1237 <param name="id" type="uuid" dir="in"/>
1238 <param name="machine" type="IMachine" dir="return"/>
1239 </method>
1240
1241 <method name="findMachine">
1242 <desc>
1243 Attempts to find a virtual machine given its name.
1244 To look up a machine by UUID, use <link to="IVirtualBox::getMachine" /> instead.
1245 </desc>
1246 <param name="name" type="wstring" dir="in"/>
1247 <param name="machine" type="IMachine" dir="return"/>
1248 </method>
1249
1250 <method name="unregisterMachine">
1251 <desc>
1252
1253 Unregisters the machine previously registered using
1254 <link to="#registerMachine"/>. After successful method invocation, the
1255 <link to="IVirtualBoxCallback::onMachineRegistered"/> signal is sent
1256 to all registered callbacks.
1257
1258 <note>
1259 The specified machine must not be in the Saved state, have an open
1260 (or a spawning) direct session associated with it, have snapshots or
1261 have hard disks attached.
1262 </note>
1263
1264 <note>
1265 This method implicitly calls <link to="IMachine::saveSettings"/> to
1266 save all current machine settings before unregistering it.
1267 </note>
1268
1269 <note>
1270 If the given machine is inaccessible (see
1271 <link to="IMachine::accessible"/>), it will be unregistered and
1272 fully uninitialized right afterwards. As a result, the returned
1273 machine object will be unusable and an attempt to call
1274 <b>any</b> method will return the "Object not ready" error.
1275 </note>
1276
1277 </desc>
1278 <param name="id" type="uuid" dir="in">
1279 <desc>UUID of the machine to unregister.</desc>
1280 </param>
1281 <param name="machine" type="IMachine" dir="return">
1282 <desc>Unregistered machine object.</desc>
1283 </param>
1284 </method>
1285
1286 <method name="createHardDisk">
1287 <desc>
1288
1289 Creates a new unregistered hard disk that will use the given
1290 storage type.
1291
1292 Most properties of the created hard disk object are
1293 uninitialized. Valid values must be assigned to them (and probalby
1294 some actions performed) to make the actual usage of this hard disk
1295 (<link to="#registerHardDisk()">register</link>, attach to a virtual
1296 machine, etc.). See the description of <link to="IHardDisk"/> and
1297 descriptions of storage type specific interfaces for more information.
1298
1299 <note>
1300 For hard disks using
1301 the <link
1302 to="HardDiskStorageType::VirtualDiskImage">VirtualDiskImage</link>
1303 storage type, an image file is not actually created until you call
1304 <link to="IVirtualDiskImage::createDynamicImage()"/> or
1305 <link to="IVirtualDiskImage::createFixedImage()"/>.
1306 </note>
1307
1308 </desc>
1309
1310 <param name="storageType" type="HardDiskStorageType" dir="in">
1311 <desc>Storage type of the hard disk image to create.</desc>
1312 </param>
1313 <param name="hardDisk" type="IHardDisk" dir="return">
1314 <desc>Created hard disk object of the given storage type.</desc>
1315 </param>
1316
1317 </method>
1318
1319 <method name="openHardDisk">
1320 <desc>
1321
1322 Opens a hard disk from an existing location.
1323
1324 This method tries to guess the
1325 <link to="HardDiskStorageType">hard disk storage type</link> from the
1326 format of the location string and from the contents of the resource the
1327 location points to. Currently, a <i>file path</i> is the only
1328 supported format for the location string which must point to either a
1329 VDI file or to a VMDK file. On success, an IHardDisk object will be
1330 returned that also implements the corresponding interface
1331 (IVirtualDiskImage or IVMDKImage, respectively). The
1332 <link to="IHardDisk::storageType"/> property may also be used to
1333 determine the storage type of the returned object (instead of trying
1334 to query one of these interfaces).
1335
1336 <note>
1337 The specified file path can be absolute (full path) or relative to
1338 the <link to="IVirtualBox::homeFolder">VirtualBox home
1339 directory</link>. If only a file name without any path is given,
1340 the <link to="ISystemProperties::defaultVDIFolder"> default VDI
1341 folder</link> will be used as a path to the image file.
1342 </note>
1343
1344 The opened hard disk remains unregistered
1345 until <link to="#registerHardDisk()"/> is called.
1346
1347 </desc>
1348
1349 <param name="location" type="wstring" dir="in">
1350 <desc>
1351 Location of the resource that contains a valid hard disk.
1352 </desc>
1353 </param>
1354 <param name="hardDisk" type="IHardDisk" dir="return">
1355 <desc>Opened hard disk object.</desc>
1356 </param>
1357 </method>
1358
1359 <method name="openVirtualDiskImage">
1360 <desc>
1361
1362 Opens a hard disk from an existing Virtual Disk Image file.
1363 The opened hard disk remains unregistered
1364 until <link to="#registerHardDisk()"/> is called.
1365
1366 @deprecated Use <link to="IVirtualBox::openHardDisk()"/> instead.
1367
1368 <note>Opening differencing images is not supported.</note>
1369
1370 <note>The specified file path can be absolute (full path) or
1371 relative to the <link to="IVirtualBox::homeFolder"> VirtualBox
1372 home directory</link>. If only a file name without any path is
1373 given, the <link to="ISystemProperties::defaultVDIFolder">
1374 default VDI folder</link> will be used as a path to the image
1375 file.</note>
1376
1377 </desc>
1378
1379 <param name="filePath" type="wstring" dir="in">
1380 <desc>
1381 Name of the file that contains a valid Virtual Disk Image.
1382 </desc>
1383 </param>
1384 <param name="image" type="IVirtualDiskImage" dir="return">
1385 <desc>Opened hard disk object.</desc>
1386 </param>
1387 </method>
1388
1389 <method name="registerHardDisk">
1390 <desc>
1391
1392 Registers the given hard disk within this VirtualBox
1393 installation. The hard disk must not be registered, must be
1394 <link to="IHardDisk::accessible"/> and must not be a
1395 differencing hard disk, otherwise the registration will fail.
1396
1397 </desc>
1398 <param name="hardDisk" type="IHardDisk" dir="in">
1399 <desc>Hard disk object to register.</desc>
1400 </param>
1401 </method>
1402
1403 <method name="getHardDisk" const="yes">
1404 <desc>
1405 Returns the registered hard disk with the given UUID.
1406 </desc>
1407 <param name="id" type="uuid" dir="in">
1408 <desc>UUID of the hard disk to look for.</desc>
1409 </param>
1410 <param name="hardDisk" type="IHardDisk" dir="return">
1411 <desc>Found hard disk object.</desc>
1412 </param>
1413 </method>
1414
1415 <method name="findHardDisk">
1416 <desc>
1417
1418 Returns a registered hard disk that uses the given location to
1419 store data. The search is done by comparing the
1420 value of the @a location argument to the
1421 <link to="IHardDisk::location"/> attribute of each registered
1422 hard disk.
1423
1424 For locations repesented by file paths (such as VDI and VMDK
1425 images), the specified location can be either an absolute file
1426 path or a path relative to
1427 the <link to="IVirtualBox::homeFolder"> VirtualBox home
1428 directory</link>. If only a file name without any path is
1429 given, the <link to="ISystemProperties::defaultVDIFolder">
1430 default VDI folder</link> will be used as a path to construct
1431 the absolute image file name to search for. Note that on host
1432 systems with case sensitive filesystems, a case sensitive
1433 comparison is performed, otherwise the case of symbols in the
1434 file path is ignored.
1435
1436 </desc>
1437 <param name="location" type="wstring" dir="in">
1438 <desc>Hard disk location specification to search for.</desc>
1439 </param>
1440 <param name="hardDisk" type="IHardDisk" dir="return">
1441 <desc>Found hard disk object.</desc>
1442 </param>
1443 </method>
1444
1445 <method name="findVirtualDiskImage">
1446 <desc>
1447
1448 Returns a registered hard disk that uses the given image file.
1449
1450 @deprecated Use <link to="IVirtualBox::findHardDisk()"/> instead.
1451
1452 <note>The specified file path can be absolute (full path) or
1453 relative to the <link to="IVirtualBox::homeFolder"> VirtualBox
1454 home directory</link>. If only a file name without any path is
1455 given, the <link to="ISystemProperties::defaultVDIFolder">
1456 default VDI folder</link> will be used as a path to the image
1457 file.</note>
1458
1459 <note>On host systems with case sensitive filesystems, a case
1460 sensitive comparison is performed, otherwise the case of symbols
1461 in the file path is ignored.</note>
1462
1463 </desc>
1464 <param name="filePath" type="wstring" dir="in">
1465 <desc>Virtual Disk Image file path to look for.</desc>
1466 </param>
1467 <param name="image" type="IVirtualDiskImage" dir="return">
1468 <desc>Found hard disk object.</desc>
1469 </param>
1470 </method>
1471
1472 <method name="unregisterHardDisk">
1473 <desc>
1474 Unregisters a hard disk previously registered using
1475 <link to="#registerHardDisk()"/>.
1476 <note>
1477 The specified hard disk must not be attached to any of
1478 the existing virtual machines and must not have children
1479 (differencing) hard disks.
1480 </note>
1481 </desc>
1482 <param name="id" type="uuid" dir="in">
1483 <desc>UUID of the hard disk to unregister.</desc>
1484 </param>
1485 <param name="hardDisk" type="IHardDisk" dir="return">
1486 <desc>Unregistered hard disk object.</desc>
1487 </param>
1488 </method>
1489
1490 <method name="openDVDImage">
1491 <desc>
1492 Opens the CD/DVD image contained in the specified file of
1493 the supported format and assigns it the given UUID. The opened
1494 image remains unregistered
1495 until <link to="#registerDVDImage()"/> is called.
1496 </desc>
1497 <param name="filePath" type="wstring" dir="in">
1498 <desc>
1499 Full name of the file that contains a valid
1500 CD/DVD image. Currently, only ISO images are supported.
1501 <note>
1502 The specified file name can be absolute or relative
1503 to the <link to="IVirtualBox::homeFolder">
1504 VirtualBox home directory</link>.
1505 </note>
1506 </desc>
1507 </param>
1508 <param name="id" type="uuid" dir="in">
1509 <desc>
1510 UUID to assign to the given image file within this
1511 VirtualBox installation. If an empty (null) UUID is
1512 specified, the system will randomly generate an UUID.
1513 </desc>
1514 </param>
1515 <param name="image" type="IDVDImage" dir="return">
1516 <desc>Opened CD/DVD image object.</desc>
1517 </param>
1518 </method>
1519
1520 <method name="registerDVDImage">
1521 <desc>
1522 Registers a CD/DVD image within this VirtualBox
1523 installation. The image must not be registered and must not
1524 be associated with the same image file as any of the already
1525 registered images, otherwise the registration will fail.
1526 </desc>
1527 <param name="image" type="IDVDImage" dir="in">
1528 <desc>CD/DVD image object to register.</desc>
1529 </param>
1530 </method>
1531
1532 <method name="getDVDImage">
1533 <desc>
1534 Returns a registered CD/DVD image with the given UUID.
1535 </desc>
1536 <param name="id" type="uuid" dir="in">
1537 <desc>UUID of the image to look for.</desc>
1538 </param>
1539 <param name="image" type="IDVDImage" dir="return">
1540 <desc>Found CD/DVD image object.</desc>
1541 </param>
1542 </method>
1543
1544 <method name="findDVDImage">
1545 <desc>
1546 Returns a registered CD/DVD image with the given image file.
1547 <note>
1548 On host systems with case sensitive filesystems, a case
1549 sensitive comparison is performed, otherwise the case of
1550 symbols in the file path is ignored.
1551 </note>
1552 </desc>
1553 <param name="filePath" type="wstring" dir="in">
1554 <desc>CD/DVD image file path to look for.</desc>
1555 </param>
1556 <param name="image" type="IDVDImage" dir="return">
1557 <desc>Found CD/DVD image object.</desc>
1558 </param>
1559 </method>
1560
1561 <method name="getDVDImageUsage">
1562 <desc>
1563 Returns the list of of UUIDs of all virtual machines that use
1564 the given CD/DVD image.
1565 </desc>
1566 <param name="id" type="uuid" dir="in">
1567 <desc>UUID of the image to get the usage information for.</desc>
1568 </param>
1569 <param name="usage" type="ResourceUsage" dir="in">
1570 <desc>Type of the usage (permanent, temporary or all).</desc>
1571 </param>
1572 <param name="machineIDs" type="wstring" dir="return">
1573 <desc>
1574 List of UUIDs of all machines that use the given image
1575 in the way specified by the usage parameter.
1576 The list is returned as a string containing UUIDs separated
1577 by spaces. A null string means that the image is not used.
1578 <note>
1579 When the usage type is <link to="ResourceUsage::All"/> and the image
1580 is used by the VM both permanently and temporarily, the VM's UUID
1581 will be present only once in the list.
1582 </note>
1583 </desc>
1584 </param>
1585 </method>
1586
1587 <method name="unregisterDVDImage">
1588 <desc>
1589 Unregisters the CD/DVD image previously registered using
1590 <link to="#registerDVDImage()"/>.
1591 <note>
1592 The specified image must not be mounted to any of
1593 the existing virtual machines.
1594 </note>
1595 </desc>
1596 <param name="id" type="uuid" dir="in">
1597 <desc>UUID of the CD/DVD image to unregister.</desc>
1598 </param>
1599 <param name="image" type="IDVDImage" dir="return">
1600 <desc>Unregistered image object.</desc>
1601 </param>
1602 </method>
1603
1604 <method name="openFloppyImage">
1605 <desc>
1606 Opens a floppy image contained in the specified file of
1607 the supported format and assigns it the given UUID. The opened
1608 image remains unregistered
1609 until <link to="#registerFloppyImage()"/> is called.
1610 </desc>
1611 <param name="filePath" type="wstring" dir="in">
1612 <desc>
1613 Full name of the file that contains a valid
1614 floppy image.
1615 <note>
1616 The specified file name can be absolute or relative
1617 to the <link to="IVirtualBox::homeFolder">
1618 VirtualBox home directory</link>.
1619 </note>
1620 </desc>
1621 </param>
1622 <param name="id" type="uuid" dir="in">
1623 <desc>
1624 UUID to assign to the given image file within this
1625 VirtualBox installation. If an empty (null) UUID is
1626 specified, the system will randomly generate an UUID.
1627 </desc>
1628 </param>
1629 <param name="image" type="IFloppyImage" dir="return">
1630 <desc>Opened CD/DVD image object.</desc>
1631 </param>
1632 </method>
1633
1634 <method name="registerFloppyImage">
1635 <desc>
1636 Registers a floppy image within this VirtualBox
1637 installation. The image must not be registered and must not
1638 be associated with the same image file as any of the already
1639 registered images, otherwise the registration will fail.
1640 </desc>
1641 <param name="image" type="IFloppyImage" dir="in">
1642 <desc>Floppy image object to register.</desc>
1643 </param>
1644 </method>
1645
1646 <method name="getFloppyImage">
1647 <desc>
1648 Returns a registered floppy image with the given UUID.
1649 </desc>
1650 <param name="id" type="uuid" dir="in">
1651 <desc>UUID of the image to look for.</desc>
1652 </param>
1653 <param name="image" type="IFloppyImage" dir="return">
1654 <desc>Found floppy image object.</desc>
1655 </param>
1656 </method>
1657
1658 <method name="findFloppyImage">
1659 <desc>
1660 Returns a registered floppy image with the given image file.
1661 <note>
1662 On host systems with case sensitive filesystems, a case
1663 sensitive comparison is performed, otherwise the case of
1664 symbols in the file path is ignored.
1665 </note>
1666 </desc>
1667 <param name="filePath" type="wstring" dir="in">
1668 <desc>Floppy image file path to look for.</desc>
1669 </param>
1670 <param name="image" type="IFloppyImage" dir="return">
1671 <desc>Found floppy image object.</desc>
1672 </param>
1673 </method>
1674
1675 <method name="getFloppyImageUsage">
1676 <desc>
1677 Returns the list of of UUIDs of all virtual machines that use
1678 the given floppy image.
1679 </desc>
1680 <param name="id" type="uuid" dir="in">
1681 <desc>UUID of the image to get the usage information for.</desc>
1682 </param>
1683 <param name="usage" type="ResourceUsage" dir="in">
1684 <desc>Type of the usage (permanent, temporary or all).</desc>
1685 </param>
1686 <param name="machineIDs" type="wstring" dir="return">
1687 <desc>
1688 List of UUIDs of all machines that use the given image
1689 in the way specified by the usage parameter.
1690 The list is returned as a string containing UUIDs separated
1691 by spaces. A null string means that the image is not used.
1692 <note>
1693 When the usage type is <link to="ResourceUsage::All"/> and the image
1694 is used by the VM both permanently and temporarily, the VM's UUID
1695 will be present only once in the list.
1696 </note>
1697 </desc>
1698 </param>
1699 </method>
1700
1701 <method name="unregisterFloppyImage">
1702 <desc>
1703 Unregisters the floppy image previously registered using
1704 <link to="#registerFloppyImage()"/>.
1705 <note>
1706 The specified image must not be mounted to any of
1707 the existing virtual machines.
1708 </note>
1709 </desc>
1710 <param name="id" type="uuid" dir="in">
1711 <desc>UUID of the floppy image to unregister.</desc>
1712 </param>
1713 <param name="image" type="IFloppyImage" dir="return">
1714 <desc>Unregistered image object.</desc>
1715 </param>
1716 </method>
1717
1718 <method name="getGuestOSType">
1719 <param name="id" type="wstring" dir="in"/>
1720 <param name="type" type="IGuestOSType" dir="return"/>
1721 </method>
1722
1723 <method name="createSharedFolder">
1724 <desc>
1725 Creates a new global shared folder by associating the given logical
1726 name with the given host path, adds it to the collection of shared
1727 folders and starts sharing it. Refer to the description of
1728 <link to="ISharedFolder"/> to read more about logical names.
1729 </desc>
1730 <param name="name" type="wstring" dir="in">
1731 <desc>Unique logical name of the shared folder.</desc>
1732 </param>
1733 <param name="hostPath" type="wstring" dir="in">
1734 <desc>Full path to the shared folder in the host file system.</desc>
1735 </param>
1736 <param name="writable" type="boolean" dir="in">
1737 <desc>Whether the share is writable or readonly</desc>
1738 </param>
1739 </method>
1740
1741 <method name="removeSharedFolder">
1742 <desc>
1743 Removes the global shared folder with the given name previously
1744 created by <link to="#createSharedFolder"/> from the collection of
1745 shared folders and stops sharing it.
1746 </desc>
1747 <param name="name" type="wstring" dir="in">
1748 <desc>Logical name of the shared folder to remove.</desc>
1749 </param>
1750 </method>
1751
1752 <method name="getNextExtraDataKey">
1753 <desc>
1754 Returns the global extra data key name following the supplied key.
1755
1756 An error is returned if the supplied @a key does not exist. @c NULL is
1757 returned in @a nextKey if the supplied key is the last key. When
1758 supplying @c NULL for the @a key, the first key item is returned in @a
1759 nextKey (if there is any). @a nextValue is an optional parameter and
1760 if supplied, the next key's value is returned in it.
1761 </desc>
1762 <param name="key" type="wstring" dir="in">
1763 <desc>Name of the data key to follow.</desc>
1764 </param>
1765 <param name="nextKey" type="wstring" dir="out">
1766 <desc>Name of the next data key.</desc>
1767 </param>
1768 <param name="nextValue" type="wstring" dir="out">
1769 <desc>Value of the next data key.</desc>
1770 </param>
1771 </method>
1772
1773 <method name="getExtraData">
1774 <desc>
1775 Returns associated global extra data.
1776
1777 If the reuqested data @a key does not exist, this function will
1778 succeed and return @c NULL in the @a value argument.
1779 </desc>
1780 <param name="key" type="wstring" dir="in">
1781 <desc>Name of the data key to get.</desc>
1782 </param>
1783 <param name="value" type="wstring" dir="return">
1784 <desc>Value of the requested data key.</desc>
1785 </param>
1786 </method>
1787
1788 <method name="setExtraData">
1789 <desc>
1790 Sets associated global extra data.
1791
1792 If you pass @c NULL as a key @a vaule, the given @a key will be
1793 deleted.
1794
1795 <note>
1796 Before performing the actual data change, this method will ask all
1797 registered callbacks using the
1798 <link to="IVirtualBoxCallback::onExtraDataCanChange()"/>
1799 notification for a permission. If one of the callbacks refuses the
1800 new value, the change will not be performed.
1801 </note>
1802 <note>
1803 On success, the
1804 <link to="IVirtualBoxCallback::onExtraDataChange()"/> notification
1805 is called to inform all registered callbacks about a successful data
1806 change.
1807 </note>
1808 </desc>
1809 <param name="key" type="wstring" dir="in">
1810 <desc>Name of the data key to set.</desc>
1811 </param>
1812 <param name="value" type="wstring" dir="in">
1813 <desc>Value to assign to the key.</desc>
1814 </param>
1815 </method>
1816
1817 <method name="openSession">
1818 <desc>
1819 Opens a new direct session with the given virtual machine.
1820
1821 Within the direct session context, it is possible to change
1822 all VM settings, as well as to execute the VM in the process
1823 space of the session object. There can be only one direct
1824 session open at a time for every virtual machine. In VirtualBox
1825 terminology, the machine becomes "mutable" after a session has
1826 been opened.
1827
1828 Upon successful return, the session object can be used to
1829 get access to the machine and to the VM console.
1830
1831 Note that the "mutable" machine object, on which you may want
1832 to invoke IMachine methods to change its settings, will be a
1833 different object from the immutable IMachine objects returned
1834 by various IVirtualBox methods. To obtain a mutable
1835 IMachine object, upon which you can invoke settings methods,
1836 use the "machine" attribute of the ISession object which represents
1837 your open session.
1838
1839 In other words, to change settings on a machine, the following
1840 sequence is typically performed:
1841
1842 <ol>
1843 <li>Call this method (openSession) to have a machine locked for
1844 the current session.</li>
1845
1846 <li>Obtain a mutable IMachine object from ISession::machine.</li>
1847
1848 <li>Change the settings of the machine.</li>
1849
1850 <li>Call IMachine::saveSettings.</li>
1851
1852 <li>Close the session by calling <link to="#close" />.</li>
1853 </ol>
1854 </desc>
1855 <param name="session" type="ISession" dir="in">
1856 <desc>
1857 Session object that will represent the opened session after
1858 successful method invocation. This object must not represent
1859 the already open session.
1860 <note>
1861 This session will be automatically closed if the
1862 VirtualBox server is terminated for some reason.
1863 </note>
1864 </desc>
1865 </param>
1866 <param name="machineId" type="uuid" dir="in">
1867 <desc>ID of the virtual machine to open a session with.</desc>
1868 </param>
1869 </method>
1870
1871 <method name="openRemoteSession">
1872 <desc>
1873 Opens a new remote session with the given virtual
1874 machine.
1875
1876 Opening a remote session causes the VirtualBox server to start a new
1877 process that opens a direct session with the given VM. The remote
1878 session provides some level of control over the VM execution to the
1879 caller (using the IConsole interface); however, within the remote
1880 session context, not all VM settings are available for modification.
1881
1882 This operation can take some time, so the progress object
1883 is returned to let the caller be informed when the session is
1884 actually open. Until then, the remote session object remains in
1885 the closed state and accessing the machine or its console through
1886 it is invalid.
1887
1888 Currently supported session types (values of the @a type
1889 argument) are:
1890 <ul>
1891 <li><tt>gui</tt>: VirtualBox Qt GUI session</li>
1892 <li><tt>vrdp</tt>: VirtualBox VRDP Server session</li>
1893 </ul>
1894
1895 The @a environment argument is a string containing definitions of
1896 environment variables in the following format:
1897 @code
1898 NAME[=VALUE]\n
1899 NAME[=VALUE]\n
1900 ...
1901 @endcode
1902 where <tt>\\n</tt> is the new line character. These environment
1903 variables will be appended to the environment of the VirtualBox server
1904 process. If an environment variable exists both in the server process
1905 and in this list, the value from this list takes precedence over the
1906 server's variable. If the value of the environment variable is
1907 omitted, this variable will be removed from the resulting environment.
1908 If the environment string is @c null, the server environment is
1909 inherited by the started process as is.
1910
1911 <note>
1912 It is an error to open a remote session with the machine
1913 that already has an open direct session or waits until the
1914 previous request to open the remote session is completed
1915 (see <link to="IMachine::sessionState"/>).
1916 </note>
1917
1918 <note>
1919 The opened @a session will be automatically closed when
1920 the corresponding direct session dies or gets closed.
1921 </note>
1922
1923 <see>openExistingSession</see>
1924 </desc>
1925 <param name="session" type="ISession" dir="in">
1926 <desc>
1927 Session object that will represent the opened remote session
1928 after successful method invocation (this object must not
1929 represent an already open session).
1930 </desc>
1931 </param>
1932 <param name="machineId" type="uuid" dir="in">
1933 <desc>ID of the virtual machine to open a session with.</desc>
1934 </param>
1935 <param name="type" type="wstring" dir="in">
1936 <desc>
1937 Type of the remote session (case sensitive).
1938 </desc>
1939 </param>
1940 <param name="environment" type="wstring" dir="in">
1941 <desc>
1942 Environment to pass to the opened session (may be @c null).
1943 </desc>
1944 </param>
1945 <param name="progress" type="IProgress" dir="return">
1946 <desc>Progress object to track the operation completion.</desc>
1947 </param>
1948 </method>
1949
1950 <method name="openExistingSession">
1951 <desc>
1952 Opens a new remote session with the virtual machine for
1953 which a direct session is already open.
1954
1955 The remote session provides some level of control over the VM
1956 execution (using the IConsole interface) to the caller; however,
1957 within the remote session context, not all VM settings are available
1958 for modification.
1959
1960 As opposed to <link to="#openRemoteSession()"/>, the number of
1961 remote sessions opened this way is not limited by the API
1962
1963 <note>
1964 It is an error to open a remote session with the machine that
1965 doesn't have an open direct session.
1966 </note>
1967
1968 <see>openRemoteSession</see>
1969 </desc>
1970 <param name="session" type="ISession" dir="in">
1971 <desc>
1972 Session object that will represent the open remote session
1973 after successful method invocation. This object must not
1974 represent an already open session.
1975 <note>
1976 This session will be automatically closed when the peer
1977 (direct) session dies or gets closed.
1978 </note>
1979 </desc>
1980 </param>
1981 <param name="machineId" type="uuid" dir="in">
1982 <desc>ID of the virtual machine to open a session with.</desc>
1983 </param>
1984 </method>
1985
1986 <method name="registerCallback">
1987 <desc>
1988 Registers a new global VirtualBox callback. The methods of the given
1989 callback object will be called by VirtualBox when an appropriate
1990 event occurs.
1991 </desc>
1992 <param name="callback" type="IVirtualBoxCallback" dir="in">
1993 <desc>Callback object to register.</desc>
1994 </param>
1995 </method>
1996
1997 <method name="unregisterCallback">
1998 <desc>
1999 Unregisters the previously registered global VirtualBox callback.
2000 </desc>
2001 <param name="callback" type="IVirtualBoxCallback" dir="in">
2002 <desc>Callback object to unregister.</desc>
2003 </param>
2004 </method>
2005
2006 <method name="waitForPropertyChange">
2007 <desc>
2008 Blocks the caller until any of the properties represented by the @a
2009 what argument changes the value or until the given timeout interval
2010 expires.
2011
2012 The @a what argument is a comma separated list of propertiy masks that
2013 describe properties the caller is interested in. The property mask is
2014 a string in the following format:
2015
2016 @code
2017 [[group.]subgroup.]name
2018 @endcode
2019
2020 where @c name is the property name and @c group, @c subgroup are zero
2021 or or more property group specifiers. Each element (group or name) in
2022 the property mask may be either a latin string or an asterisk symbol
2023 (@c "*") which is used to match any string for the given element. A
2024 property mask that doesn't contain asterisk symbols represents a
2025 single fully qualified property name.
2026
2027 Groups in the fully qualified property name go from more generic (the
2028 left-most part) to more specific (the right-most part). The first
2029 element is usually a name of the object the property belongs to. The
2030 second element may be either a property name, or a child object name,
2031 or an index if the preceeding element names an object which is one of
2032 many objects of the same type. This way, property names form a
2033 hierarchy of properties. Here are some examples of property names:
2034
2035 <table>
2036 <tr>
2037 <td><tt>VirtualBox.version</tt></td>
2038 <td><link to="IVirtualBox::version"/> property</td>
2039 </tr>
2040 <tr>
2041 <td><tt>Machine.&lt;UUID&gt;.name</tt></td>
2042 <td><link to="IMachine::name"/> property of the machine with the
2043 given UUID</td>
2044 </tr>
2045 </table>
2046
2047 Most property names directly correspond to the properties of objects
2048 (components) provided by the VirtualBox library and may be used to
2049 track changes to these properties. However, there may be
2050 pseudo-property names that don't correspond to any existing object's
2051 property directly, as well as there may be object properties that
2052 don't have a corresponding property name that is understood by this
2053 method, and therefore changes to such properties cannot be
2054 tracked. See individual object's property descrcriptions to get a
2055 fully qualified property name that can be used with this method (if
2056 any).
2057
2058 There is a special property mask @c "*" (i.e. a string consisting of a
2059 single asterisk symbol) that can be used to match all properties.
2060 Below are more examples of property masks:
2061
2062 <table>
2063 <tr>
2064 <td><tt>VirtualBox.*</tt></td>
2065 <td>Track all properties of the VirtualBox object</td>
2066 </tr>
2067 <tr>
2068 <td><tt>Machine.*.name</tt></td>
2069 <td>Track changes to the <link to="IMachine::name"/> property of
2070 all registered virtual machines</td>
2071 </tr>
2072 </table>
2073
2074 </desc>
2075 <param name="what" type="wstring" dir="in">
2076 <desc>Comma separated list of property masks.</desc>
2077 </param>
2078 <param name="timeout" type="unsigned long" dir="in">
2079 <desc>
2080 Wait timeout in milliseconds.
2081 Specify -1 for an indefinite wait.
2082 </desc>
2083 </param>
2084 <param name="changed" type="wstring" dir="out">
2085 <desc>
2086 Comma separated list of properties that have been changed and caused
2087 this method to return to the caller.
2088 </desc>
2089 </param>
2090 <param name="values" type="wstring" dir="out">
2091 <desc>Reserved, not currently used.</desc>
2092 </param>
2093 </method>
2094
2095 <method name="saveSettings">
2096 <desc>
2097 Saves the global settings to the global settings file
2098 (<link to="#settingsFilePath"/>).
2099
2100 This method is only useful for explicitly saving the global settings
2101 file after it has been auto-converted from the old format to the most
2102 recent format (see <link to="#settingsFileVersion"/> for details).
2103 Normally, the global settings file is implicitly saved when a global
2104 setting is changed.
2105 </desc>
2106 </method>
2107
2108 <method name="saveSettingsWithBackup">
2109 <desc>
2110 Creates a backup copy of the global settings file
2111 (<link to="#settingsFilePath"/>) in case of auto-conversion, and then
2112 calls <link to="#saveSettings()"/>.
2113
2114 Note that the backup copy is created <b>only</b> if the settings file
2115 auto-conversion took place (see <link to="#settingsFileVersion"/> for
2116 details). Otherwise, this call is fully equivalent to
2117 <link to="#saveSettings()"/> and no backup copying is done.
2118
2119 The backup copy is created in the same directory where the original
2120 settings file is located. It is given the following file name:
2121 <pre>
2122 original.xml.x.y-platform.bak
2123 </pre>
2124 where <tt>original.xml</tt> is the original settings file name
2125 (excluding path), and <tt>x.y-platform</tt> is the version of the old
2126 format of the settings file (before auto-conversion).
2127
2128 If the given backup file already exists, this method will try to add the
2129 <tt>.N</tt> suffix to the backup file name (where <tt>N</tt> counts from
2130 0 to 9) and copy it again until it succeeds. If all suffixes are
2131 occupied, or if any other copy error occurs, this method will return a
2132 failure.
2133
2134 If the copy operation succeeds, the @a bakFileName return argument will
2135 receive a full path to the created backup file (for informational
2136 purposes). Note that this will happen even if the subsequent
2137 <link to="#saveSettings()"/> call performed by this method after the
2138 copy operation, fails.
2139
2140 <note>
2141 The VirtualBox API never calls this method. It is intended purely for
2142 the purposes of creating backup copies of the settings files by
2143 front-ends before saving the results of the automatically performed
2144 settings conversion to disk.
2145 </note>
2146
2147 <see>settingsFileVersion</see>
2148 </desc>
2149 <param name="bakFileName" type="wstring" dir="return">
2150 <desc>Full path to the created backup copy.</desc>
2151 </param>
2152 </method>
2153
2154 </interface>
2155
2156 <!--
2157 // IMachine
2158 /////////////////////////////////////////////////////////////////////////
2159 -->
2160
2161 <enumerator
2162 name="IMachineEnumerator" type="IMachine"
2163 uuid="1b554149-be0a-4465-9252-9ff8f420af55"
2164 />
2165
2166 <collection
2167 name="IMachineCollection" type="IMachine" enumerator="IMachineEnumerator"
2168 uuid="FD443EC1-3007-4F5B-9282-D72760A66916"
2169 readonly="yes"
2170 />
2171
2172 <interface
2173 name="IInternalMachineControl" extends="$unknown"
2174 uuid="1063893c-4c38-4304-aee9-73e072c181cc"
2175 internal="yes"
2176 wsmap="suppress"
2177 >
2178 <method name="updateState">
2179 <desc>
2180 Updates the VM state.
2181 <note>
2182 This operation will also update the settings file with
2183 the correct information about the saved state file
2184 and delete this file from disk when appropriate.
2185 </note>
2186 </desc>
2187 <param name="state" type="MachineState" dir="in"/>
2188 </method>
2189
2190 <method name="getIPCId">
2191 <param name="id" type="wstring" dir="return"/>
2192 </method>
2193
2194 <method name="runUSBDeviceFilters">
2195 <desc>
2196 Asks the server to run USB devices filters of the associated
2197 machine against the given USB device and tell if there is
2198 a match.
2199 <note>
2200 Intended to be used only for remote USB devices. Local
2201 ones don't require to call this method (this is done
2202 implicitly by the Host and USBProxyService).
2203 </note>
2204 </desc>
2205 <param name="device" type="IUSBDevice" dir="in"/>
2206 <param name="matched" type="boolean" dir="out"/>
2207 <param name="maskedInterfaces" type="unsigned long" dir="out"/>
2208 </method>
2209
2210 <method name="captureUSBDevice">
2211 <desc>
2212 Requests a capture of the given host USB device.
2213 When the request is completed, the VM process will
2214 get a <link to="IInternalSessionControl::onUSBDeviceAttach"/>
2215 notification.
2216 </desc>
2217 <param name="id" type="uuid" dir="in"/>
2218 </method>
2219
2220 <method name="detachUSBDevice">
2221 <desc>
2222 Notification that a VM is going to detach (done = false) or has
2223 already detached (done = true) the given USB device.
2224 When the done = true request is completed, the VM process will
2225 get a <link to="IInternalSessionControl::onUSBDeviceDetach"/>
2226 notification.
2227 <note>
2228 In the done = true case, the server must run its own filters
2229 and filters of all VMs but this one on the detached device
2230 as if it were just attached to the host computer.
2231 </note>
2232 </desc>
2233 <param name="id" type="uuid" dir="in"/>
2234 <param name="done" type="boolean" dir="in"/>
2235 </method>
2236
2237 <method name="autoCaptureUSBDevices">
2238 <desc>
2239 Requests a capture all matching USB devices attached to the host.
2240 When the request is completed, the VM process will
2241 get a <link to="IInternalSessionControl::onUSBDeviceAttach"/>
2242 notification per every captured device.
2243 </desc>
2244 </method>
2245
2246 <method name="detachAllUSBDevices">
2247 <desc>
2248 Notification that a VM that is being powered down. The done
2249 parameter indicates whether which stage of the power down
2250 we're at. When done = false the VM is announcing its
2251 intentions, while when done = true the VM is reporting
2252 what it has done.
2253 <note>
2254 In the done = true case, the server must run its own filters
2255 and filters of all VMs but this one on all detach devices as
2256 if they were just attached to the host computer.
2257 </note>
2258 </desc>
2259 <param name="done" type="boolean" dir="in"/>
2260 </method>
2261
2262 <method name="onSessionEnd">
2263 <desc>
2264 Triggered by the given session object when the session is about
2265 to close normally.
2266 </desc>
2267 <param name="session" type="ISession" dir="in">
2268 <desc>Session that is being closed</desc>
2269 </param>
2270 <param name="progress" type="IProgress" dir="return">
2271 <desc>
2272 Used to wait until the corresponding machine is actually
2273 deassociated from the given session on the server.
2274 Returned only when this session is a direct one.
2275 </desc>
2276 </param>
2277 </method>
2278
2279 <method name="beginSavingState">
2280 <desc>
2281 Called by the VM process to inform the server it wants to
2282 save the current state and stop the VM execution.
2283 </desc>
2284 <param name="progress" type="IProgress" dir="in">
2285 <desc>
2286 Progress object created by the VM process to wait until
2287 the state is saved.
2288 </desc>
2289 </param>
2290 <param name="stateFilePath" type="wstring" dir="out">
2291 <desc>
2292 File path the VM process must save the execution state to.
2293 </desc>
2294 </param>
2295 </method>
2296
2297 <method name="endSavingState">
2298 <desc>
2299 Called by the VM process to inform the server that saving
2300 the state previously requested by #beginSavingState is either
2301 successfully finished or there was a failure.
2302 </desc>
2303
2304 <param name="success" type="boolean" dir="in">
2305 <desc><tt>true</tt> to indicate success and <tt>false</tt> otherwise</desc>
2306 </param>
2307 </method>
2308
2309 <method name="adoptSavedState">
2310 <desc>
2311 Gets called by IConsole::adoptSavedState.
2312 </desc>
2313 <param name="savedStateFile" type="wstring" dir="in">
2314 <desc>Path to the saved state file to adopt.</desc>
2315 </param>
2316 </method>
2317
2318 <method name="beginTakingSnapshot">
2319 <desc>
2320 Called by the VM process to inform the server it wants to
2321 take a snapshot.
2322 </desc>
2323 <param name="initiator" type="IConsole" dir="in">
2324 <desc>The console object that initiated this call.</desc>
2325 </param>
2326 <param name="name" type="wstring" dir="in">
2327 <desc>Snapshot name</desc>
2328 </param>
2329 <param name="description" type="wstring" dir="in">
2330 <desc>Snapshot description</desc>
2331 </param>
2332 <param name="progress" type="IProgress" dir="in">
2333 <desc>
2334 Progress object created by the VM process to wait until
2335 the state is saved (only for online snapshots).
2336 </desc>
2337 </param>
2338 <param name="stateFilePath" type="wstring" dir="out">
2339 <desc>
2340 File path the VM process must save the execution state to.
2341 </desc>
2342 </param>
2343 <param name="serverProgress" type="IProgress" dir="out">
2344 <desc>
2345 Progress object created by the server process to wait until
2346 the snapshot is taken (VDI diff creation, etc.).
2347 </desc>
2348 </param>
2349 </method>
2350
2351 <method name="endTakingSnapshot">
2352 <desc>
2353 Called by the VM process to inform the server that the snapshot
2354 previously requested by #beginTakingSnapshot is either
2355 successfully taken or there was a failure.
2356 </desc>
2357
2358 <param name="success" type="boolean" dir="in">
2359 <desc><tt>true</tt> to indicate success and <tt>false</tt> otherwise</desc>
2360 </param>
2361 </method>
2362
2363 <method name="discardSnapshot">
2364 <desc>
2365 Gets called by IConsole::discardSnapshot.
2366 </desc>
2367 <param name="initiator" type="IConsole" dir="in">
2368 <desc>The console object that initiated this call.</desc>
2369 </param>
2370 <param name="id" type="uuid" dir="in">
2371 <desc>UUID of the snapshot to discard.</desc>
2372 </param>
2373 <param name="machineState" type="MachineState" dir="out">
2374 <desc>New machine state after this operation is started.</desc>
2375 </param>
2376 <param name="progress" type="IProgress" dir="return">
2377 <desc>Progress object to track the operation completion.</desc>
2378 </param>
2379 </method>
2380
2381 <method name="discardCurrentState">
2382 <desc>
2383 Gets called by IConsole::discardCurrentState.
2384 </desc>
2385 <param name="initiator" type="IConsole" dir="in">
2386 <desc>The console object that initiated this call.</desc>
2387 </param>
2388 <param name="machineState" type="MachineState" dir="out">
2389 <desc>New machine state after this operation is started.</desc>
2390 </param>
2391 <param name="progress" type="IProgress" dir="return">
2392 <desc>Progress object to track the operation completion.</desc>
2393 </param>
2394 </method>
2395
2396 <method name="discardCurrentSnapshotAndState">
2397 <desc>
2398 Gets called by IConsole::discardCurrentSnapshotAndState.
2399 </desc>
2400 <param name="initiator" type="IConsole" dir="in">
2401 <desc>The console object that initiated this call.</desc>
2402 </param>
2403 <param name="machineState" type="MachineState" dir="out">
2404 <desc>New machine state after this operation is started.</desc>
2405 </param>
2406 <param name="progress" type="IProgress" dir="return">
2407 <desc>Progress object to track the operation completion.</desc>
2408 </param>
2409 </method>
2410
2411 </interface>
2412
2413 <interface
2414 name="IBIOSSettings" extends="$unknown"
2415 uuid="38b54279-dc35-4f5e-a431-835b867c6b5e"
2416 wsmap="struct"
2417 >
2418 <desc>
2419 The IBIOSSettings interface represents BIOS settings of the virtual
2420 machine. Used in <link to="IMachine::BIOSSettings" />.
2421 </desc>
2422 <attribute name="logoFadeIn" type="boolean">
2423 <desc>Fade in flag for BIOS logo animation.</desc>
2424 </attribute>
2425
2426 <attribute name="logoFadeOut" type="boolean">
2427 <desc>Fade out flag for BIOS logo animation.</desc>
2428 </attribute>
2429
2430 <attribute name="logoDisplayTime" type="unsigned long">
2431 <desc>BIOS logo display time in milliseconds (0 = default).</desc>
2432 </attribute>
2433
2434 <attribute name="logoImagePath" type="wstring">
2435 <desc>Local file system path for external BIOS image.</desc>
2436 </attribute>
2437
2438 <attribute name="bootMenuMode" type="BIOSBootMenuMode">
2439 <desc>Mode of the BIOS boot device menu.</desc>
2440 </attribute>
2441
2442 <attribute name="ACPIEnabled" type="boolean">
2443 <desc>ACPI support flag.</desc>
2444 </attribute>
2445
2446 <attribute name="IOAPICEnabled" type="boolean">
2447 <desc>
2448 IO APIC support flag. If set, VirtualBox will provide an IO APIC
2449 and support IRQs above 15.
2450 </desc>
2451 </attribute>
2452
2453 <attribute name="timeOffset" type="long long">
2454 <desc>
2455 Offset in milliseconds from the host system time. This allows for
2456 guests running with a different system date/time than the host.
2457 It is equivalent to setting the system date/time in the BIOS other
2458 than it's not an absolute value but a relative one. Guest Additions
2459 time synchronization also honors this offset.
2460 </desc>
2461 </attribute>
2462
2463 <attribute name="PXEDebugEnabled" type="boolean">
2464 <desc>
2465 PXE debug logging flag. If set, VirtualBox will write extensive
2466 PXE trace information to the release log.
2467 </desc>
2468 </attribute>
2469
2470 <attribute name="IDEControllerType" type="IDEControllerType">
2471 <desc>
2472 Type of the virtual IDE controller. Depending on this value,
2473 VirtualBox will provide different virtual IDE hardware
2474 devices to the guest.
2475 </desc>
2476 </attribute>
2477
2478 </interface>
2479
2480 <interface
2481 name="IMachine" extends="$unknown"
2482 uuid="4f6b4977-95fd-40b1-8391-fc165c040635"
2483 wsmap="managed"
2484 >
2485 <desc>
2486 The IMachine interface represents a virtual machine, or guest, created
2487 in VirtualBox.
2488
2489 This interface is used in two contexts. First of all, a collection of
2490 objects implementing this interface is stored in the
2491 <link to="IVirtualBox::machines"/> attribute which lists all the virtual
2492 machines that are currently registered with this VirtualBox
2493 installation. Also, once a session has been opened for the given virtual
2494 machine (e.g. the virtual machine is running), the machine object
2495 associated with the open session can be queried from the session object;
2496 see <link to="ISession"/> for details.
2497
2498 The main role of this interface is to expose the settings of the virtual
2499 machine and provide methods to change various aspects of the virtual
2500 machine's configuration. For machine objects stored in the
2501 <link to="IVirtualBox::machines"/> collection, all attributes are
2502 read-only unless explicitely stated otherwise in individual attribute
2503 and method descriptions. In order to change a machine setting, a session
2504 for this machine must be opened using one of
2505 <link to="IVirtualBox::openSession"/>,
2506 <link to="IVirtualBox::openRemoteSession"/> or
2507 <link to="IVirtualBox::openExistingSession"/> methdods. After the
2508 session has been successfully opened, a mutable machine object needs to
2509 be queried from the session object and then the desired settings changes
2510 can be applied to the returned object using IMachine attributes and
2511 methods. See the ISession interface description for more information
2512 about sessions.
2513
2514 Note that the IMachine interface does not provide methods to control
2515 virtual machine execution (such as start the machine, or power it
2516 down) -- these methods are grouped in a separate IConsole
2517 interface. Refer to the IConsole interface description to get more
2518 information about this topic.
2519
2520 <see>ISession, IConsole</see>
2521 </desc>
2522
2523 <attribute name="parent" type="IVirtualBox" readonly="yes">
2524 <desc>Associated parent obect.</desc>
2525 </attribute>
2526
2527 <attribute name="accessible" type="boolean" readonly="yes">
2528 <desc>
2529 Whether this virtual machine is currently accessible or not.
2530
2531 The machine is considered to be inaccessible when:
2532 <ul>
2533 <li>It is a registered virtual machine, and
2534 </li>
2535 <li>Its settings file is inaccessible (for example, it is
2536 located on a network share that is not accessible during
2537 VirtualBox startup, or becomes inaccessible later, or if
2538 the settings file can be read but is invalid).
2539 </li>
2540 </ul>
2541
2542 Otherwise, the value of this property is always <tt>true</tt>.
2543
2544 Every time this property is read, the accessibility state of
2545 this machine is re-evaluated. If the returned value is |false|,
2546 the <link to="#accessError"/> property may be used to get the
2547 detailed error information describing the reason of
2548 inaccessibility.
2549
2550 When the machine is inaccessible, only the following properties
2551 can be used on it:
2552 <ul>
2553 <li><link to="#parent"/></li>
2554 <li><link to="#id"/></li>
2555 <li><link to="#settingsFilePath"/></li>
2556 <li><link to="#accessible"/></li>
2557 <li><link to="#accessError"/></li>
2558 </ul>
2559
2560 An attempt to access any other property or method will return
2561 an error.
2562
2563 The only possible action you can perform on an inaccessible
2564 machine is to unregister it using the
2565 <link to="IVirtualBox::unregisterMachine"/> call (or, to check
2566 for the accessibility state once more by querying this
2567 property).
2568
2569 <note>
2570 In the current implementation, once this property returns
2571 <tt>true</tt>, the machine will never become inaccessible
2572 later, even if its settings file cannot be successfully
2573 read/written any more (at least, until the VirtualBox
2574 server is restarted). This limitation may be removed in
2575 future releases.
2576 </note>
2577 </desc>
2578 </attribute>
2579
2580 <attribute name="accessError" type="IVirtualBoxErrorInfo" readonly="yes">
2581 <desc>
2582 Error information describing the reason of machine
2583 inaccessibility.
2584
2585 Reading this property is only valid after the last call to
2586 <link to="#accessible"/> returned <tt>false</tt> (i.e. the
2587 machine is currently unaccessible). Otherwise, a null
2588 IVirtualBoxErrorInfo object will be returned.
2589 </desc>
2590 </attribute>
2591
2592 <attribute name="name" type="wstring">
2593 <desc>
2594 Name of the virtual machine.
2595
2596 Besides being used for human-readable identification purposes
2597 everywhere in VirtualBox, the virtual machine name is also used
2598 as a name of the machine's settings file and as a name of the
2599 subdirectory this settings file resides in. Thus, every time you
2600 change the value of this property, the settings file will be
2601 renamed once you call <link to="#saveSettings()"/> to confirm the
2602 change. The containing subdirectory will be also renamed, but
2603 only if it has exactly the same name as the settings file
2604 itself prior to changing this property (for backward compatibility
2605 with previous API releases). The above implies the following
2606 limitations:
2607 <ul>
2608 <li>The machine name cannot be empty.</li>
2609 <li>The machine name can contain only characters that are valid
2610 file name characters according to the rules of the file
2611 system used to store VirtualBox configuration.</li>
2612 <li>You cannot have two or more machines with the same name
2613 if they use the same subdirectory for storing the machine
2614 settings files.</li>
2615 <li>You cannot change the name of the machine if it is running,
2616 or if any file in the directory containing the settings file
2617 is being used by another running machine or by any other
2618 process in the host operating system at a time when
2619 <link to="#saveSettings()"/> is called.
2620 </li>
2621 </ul>
2622 If any of the above limitations are hit, <link to="#saveSettings()"/>
2623 will return an appropriate error message explaining the exact
2624 reason and the changes you made to this machine will not be
2625 saved.
2626 <note>
2627 For "legacy" machines created using the
2628 <link to="IVirtualBox::createLegacyMachine()"/> call,
2629 the above naming limitations do not apply because the
2630 machine name does not affect the settings file name.
2631 The settings file name remains the same as it was specified
2632 during machine creation and never changes.
2633 </note>
2634 </desc>
2635 </attribute>
2636
2637 <attribute name="description" type="wstring">
2638 <desc>
2639 Description of the virtual machine.
2640
2641 The description attribute can contain any text and is
2642 typically used to describe the hardware and software
2643 configuration of the virtual machine in detail (i.e. network
2644 settings, versions of the installed software and so on).
2645 </desc>
2646 </attribute>
2647
2648 <attribute name="id" type="uuid" readonly="yes">
2649 <desc>UUID of the virtual machine.</desc>
2650 </attribute>
2651
2652 <attribute name="OSTypeId" type="wstring">
2653 <desc>
2654 User-defined identifier of the Guest OS type.
2655 You may use <link to="IVirtualBox::getGuestOSType"/> to obtain
2656 an IGuestOSType object representing details about the given
2657 Guest OS type.
2658 <note>
2659 This value may differ from the value returned by
2660 <link to="IGuest::OSTypeId"/> if Guest Additions are
2661 installed to the guest OS.
2662 </note>
2663 </desc>
2664 </attribute>
2665
2666 <attribute name="memorySize" type="unsigned long">
2667 <desc>System memory size in megabytes.</desc>
2668 </attribute>
2669
2670 <attribute name="memoryBalloonSize" type="unsigned long">
2671 <desc>Initial memory balloon size in megabytes.</desc>
2672 </attribute>
2673
2674 <attribute name="statisticsUpdateInterval" type="unsigned long">
2675 <desc>Initial interval to update guest statistics in seconds.</desc>
2676 </attribute>
2677
2678 <attribute name="VRAMSize" type="unsigned long">
2679 <desc>Video memory size in megabytes.</desc>
2680 </attribute>
2681
2682 <attribute name="MonitorCount" type="unsigned long">
2683 <desc>
2684 Number of virtual monitors.
2685 <note>
2686 Only effective on Windows XP and later guests with
2687 Guest Additions installed.
2688 </note>
2689 </desc>
2690 </attribute>
2691
2692 <attribute name="BIOSSettings" type="IBIOSSettings" readonly="yes">
2693 <desc>Object containing all BIOS settings.</desc>
2694 </attribute>
2695
2696 <attribute name="HWVirtExEnabled" type="TSBool">
2697 <desc>
2698 This setting determines whether VirtualBox will try to make use of
2699 the host CPU's hardware virtualization extensions such as Intel VT-x
2700 and AMD-V. Note that in case such extensions are not available,
2701 they will not be used.
2702 </desc>
2703 </attribute>
2704
2705 <attribute name="snapshotFolder" type="wstring">
2706 <desc>
2707 Full path to the directory used to store snapshot data
2708 (difrerencing hard disks and saved state files) of this machine.
2709
2710 The initial value of this property is
2711 <tt>&lt;</tt><link to="#settingsFilePath">
2712 path_to_settings_file</link><tt>&gt;/&lt;</tt>
2713 <link to="#id">machine_uuid</link>
2714 <tt>&gt;</tt>.
2715
2716 Currently, it is an error to try to change this property on
2717 a machine that has snapshots (because this would require to
2718 move possibly large files to a different location).
2719 A separate method will be available for this purpose later.
2720
2721 <note>
2722 Setting this property to <tt>null</tt> will restore the
2723 initial value.
2724 </note>
2725 <note>
2726 When setting this property, the specified path can be
2727 absolute (full path) or relative to the directory where the
2728 <link to="#settingsFilePath">machine settings file</link>
2729 is located. When reading this property, a full path is
2730 always returned.
2731 </note>
2732 <note>
2733 The specified path may not exist, it will be created
2734 when necessary.
2735 </note>
2736 </desc>
2737 </attribute>
2738
2739 <attribute name="VRDPServer" type="IVRDPServer" readonly="yes">
2740 <desc>VRDP server object.</desc>
2741 </attribute>
2742
2743 <attribute name="hardDiskAttachments" type="IHardDiskAttachmentCollection" readonly="yes">
2744 <desc>Collection of hard disks attached to the machine.</desc>
2745 </attribute>
2746
2747 <attribute name="DVDDrive" type="IDVDDrive" readonly="yes">
2748 <desc>Associated DVD drive object.</desc>
2749 </attribute>
2750
2751 <attribute name="FloppyDrive" type="IFloppyDrive" readonly="yes">
2752 <desc>Associated floppy drive object.</desc>
2753 </attribute>
2754
2755 <attribute name="USBController" type="IUSBController" readonly="yes">
2756 <desc>
2757 Associated USB controller object.
2758
2759 <note>
2760 This method may set a @ref com_warnings "warning result code".
2761 </note>
2762 <note>
2763 If USB functionality is not avaliable in the given edition of
2764 VirtualBox, this method will set the result code to @c E_NOTIMPL.
2765 </note>
2766 </desc>
2767 </attribute>
2768
2769 <attribute name="audioAdapter" type="IAudioAdapter" readonly="yes">
2770 <desc>Associated audio adapter, always present.</desc>
2771 </attribute>
2772
2773 <attribute name="SATAController" type="ISATAController" readonly="yes">
2774 <desc>
2775 Associated SATA controller object.
2776 </desc>
2777 </attribute>
2778
2779 <attribute name="settingsFilePath" type="wstring" readonly="yes">
2780 <desc>
2781 Full name of the file containing machine settings data.
2782 </desc>
2783 </attribute>
2784
2785 <attribute name="settingsFileVersion" type="wstring" readonly="yes">
2786 <desc>
2787 Current version of the format of the settings file of this machine
2788 (<link to="#settingsFilePath"/>).
2789
2790 The version string has the following format:
2791 <pre>
2792 x.y-platform
2793 </pre>
2794 where <tt>x</tt> and <tt>y</tt> are the major and the minor format
2795 versions, and <tt>platform</tt> is the platform identifier.
2796
2797 The current version usually matches the value of the
2798 <link to="IVirtualBox::settingsFormatVersion"/> attribute unless the
2799 settings file was created by an older version of VirtualBox and there
2800 was a change of the settings file format since then.
2801
2802 Note that VirtualBox automatically converts settings files from older
2803 versions to the most recent version when reading them (usually at
2804 VirtualBox startup) but it doesn't save the changes back until
2805 you call a method that implicitly saves settings (such as
2806 <link to="#setExtraData()"/>) or call <link to="#saveSettings()"/>
2807 explicitly. Therefore, if the value of this attribute differs from the
2808 value of <link to="IVirtualBox::settingsFormatVersion"/>, then it
2809 means that the settings file was converted but the result of the
2810 conversion is not yet saved to disk.
2811
2812 The above feature may be used by interactive front-ends to inform users
2813 about the settings file format change and offer them to explicitly save
2814 all converted settings files (the global and VM-specific ones),
2815 optionally create bacup copies of the old settings files before saving,
2816 etc.
2817
2818 <see>IVirtualBox::settingsFormatVersion, saveSettingsWithBackup()</see>
2819 </desc>
2820 </attribute>
2821
2822 <attribute name="settingsModified" type="boolean" readonly="yes">
2823 <desc>
2824 Whether the settings of this machine have been modified
2825 (but neither yet saved nor discarded).
2826 <note>
2827 Reading this property is only valid on instances returned
2828 by <link to="ISession::machine"/> and on new machines
2829 created by <link to="IVirtualBox::createMachine"/> or opened
2830 by <link to="IVirtualBox::openMachine"/> but not
2831 yet registered, or on unregistered machines after calling
2832 <link to="IVirtualBox::unregisterMachine"/>. For all other
2833 cases, the settigs can never be modified.
2834 </note>
2835 <note>
2836 For newly created unregistered machines, the value of this
2837 property is always TRUE until <link to="#saveSettings()"/>
2838 is called (no matter if any machine settings have been
2839 changed after the creation or not). For opened machines
2840 the value is set to FALSE (and then follows to normal rules).
2841 </note>
2842 </desc>
2843 </attribute>
2844
2845 <attribute name="sessionState" type="SessionState" readonly="yes">
2846 <desc>Current session state for this machine.</desc>
2847 </attribute>
2848
2849 <attribute name="sessionType" type="wstring" readonly="yes">
2850 <desc>
2851 Type of the session. If <link to="#sessionState"/> is
2852 SessionSpawning or SessionOpen, this attribute contains the
2853 same value as passed to the
2854 <link to="IVirtualBox::openRemoteSession()"/> method in the @a
2855 type parameter. If the session was opened directly using
2856 <link to="IVirtualBox::openSession()"/>, or if
2857 <link to="#sessionState"/> is SessionClosed, the value of this
2858 attribute is @c null.
2859 </desc>
2860 </attribute>
2861
2862 <attribute name="sessionPid" type="unsigned long" readonly="yes">
2863 <desc>
2864 Identifier of the session process. This attribute contains the
2865 platform-dependent identifier of the process that has opened a
2866 direct session for this machine using the
2867 <link to="IVirtualBox::openSession()"/> call. The returned value
2868 is only valid if <link to="#sessionState"/> is SessionOpen or
2869 SessionClosing (i.e. a session is currently open or being
2870 closed) by the time this property is read.
2871 </desc>
2872 </attribute>
2873
2874 <attribute name="state" type="MachineState" readonly="yes">
2875 <desc>Current execution state of this machine.</desc>
2876 </attribute>
2877
2878 <attribute name="lastStateChange" type="long long" readonly="yes">
2879 <desc>
2880 Time stamp of the last execution state change,
2881 in milliseconds since 1970-01-01 UTC.
2882 </desc>
2883 </attribute>
2884
2885 <attribute name="stateFilePath" type="wstring" readonly="yes">
2886 <desc>
2887 Full path to the file that stores the execution state of
2888 the machine when it is in the <link to="MachineState::Saved"/>
2889 state.
2890 <note>
2891 When the machine is not in the Saved state, this attribute
2892 <tt>null</tt>.
2893 </note>
2894 </desc>
2895 </attribute>
2896
2897 <attribute name="logFolder" type="wstring" readonly="yes">
2898 <desc>
2899 Full path to the folder that stores a set of rotated log files
2900 recorded during machine execution. The most recent log file is
2901 named <tt>VBox.log</tt>, the previous log file is
2902 named <tt>VBox.log.1</tt> and so on (upto <tt>VBox.log.3</tt>
2903 in the current version).
2904 </desc>
2905 </attribute>
2906
2907 <attribute name="currentSnapshot" type="ISnapshot" readonly="yes">
2908 <desc>
2909 Current snapshot of this machine.
2910 <note>
2911 A <tt>null</tt> object is returned if the machine doesn't
2912 have snapshots.
2913 </note>
2914 <see><link to="ISnapshot"/></see>
2915 </desc>
2916 </attribute>
2917
2918 <attribute name="snapshotCount" type="unsigned long" readonly="yes">
2919 <desc>
2920 Number of snapshots taken on this machine. Zero means the
2921 machine doesn't have any snapshots.
2922 </desc>
2923 </attribute>
2924
2925 <attribute name="currentStateModified" type="boolean" readonly="yes">
2926 <desc>
2927 Returns <tt>true</tt> if the current state of the machine is not
2928 identical to the state stored in the current snapshot.
2929
2930 The current state is identical to the current snapshot right
2931 after one of the following calls are made:
2932 <ul>
2933 <li><link to="IConsole::discardCurrentState"/> or
2934 <link to="IConsole::discardCurrentSnapshotAndState"/>
2935 </li>
2936 <li><link to="IConsole::takeSnapshot"/> (issued on a
2937 powered off or saved machine, for which
2938 <link to="#settingsModified"/> returns <tt>false</tt>)
2939 </li>
2940 <li><link to="IMachine::setCurrentSnapshot"/>
2941 </li>
2942 </ul>
2943
2944 The current state remains identical until one of the following
2945 happens:
2946 <ul>
2947 <li>settings of the machine are changed</li>
2948 <li>the saved state is discarded</li>
2949 <li>the current snapshot is discarded</li>
2950 <li>an attempt to execute the machine is made</li>
2951 </ul>
2952
2953 <note>
2954 For machines that don't have snapshots, this property is
2955 always <tt>false</tt>.
2956 </note>
2957 </desc>
2958 </attribute>
2959
2960 <attribute name="sharedFolders" type="ISharedFolderCollection" readonly="yes">
2961 <desc>
2962 Collection of shared folders for this machine (permanent shared
2963 folders). These folders are shared automatically at machine startup
2964 and available only to the guest OS installed within this machine.
2965
2966 New shared folders are added to the collection using
2967 <link to="#createSharedFolder"/>. Existing shared folders can be
2968 removed using <link to="#removeSharedFolder"/>.
2969 </desc>
2970 </attribute>
2971
2972 <attribute name="clipboardMode" type="ClipboardMode">
2973 <desc>
2974 Synchronization mode between the host OS clipboard
2975 and the guest OS clipboard.
2976 </desc>
2977 </attribute>
2978
2979 <method name="setBootOrder">
2980 <desc>
2981 Puts the given device to the specified position in
2982 the boot order.
2983
2984 To indicate that no device is associated with the given position,
2985 <link to="DeviceType::Null"/> should be used.
2986
2987 @todo setHardDiskBootOrder(), setNetworkBootOrder()
2988 </desc>
2989 <param name="position" type="unsigned long" dir="in">
2990 <desc>
2991 Position in the boot order (<tt>1</tt> to the total number of
2992 devices the machine can boot from, as returned by
2993 <link to="ISystemProperties::maxBootPosition"/>).
2994 </desc>
2995 </param>
2996 <param name="device" type="DeviceType" dir="in">
2997 <desc>
2998 The type of the device used to boot at the given position.
2999 </desc>
3000 </param>
3001 </method>
3002
3003 <method name="getBootOrder" const="yes">
3004 <desc>
3005 Returns the device type that occupies the specified
3006 position in the boot order.
3007
3008 @todo [remove?]
3009 If the machine can have more than one device of the returned type
3010 (such as hard disks), then a separate method should be used to
3011 retrieve the individual device that occupies the given position.
3012
3013 If here are no devices at the given position, then
3014 <link to="DeviceType::Null"/> is returned.
3015
3016 @todo getHardDiskBootOrder(), getNetworkBootOrder()
3017 </desc>
3018 <param name="order" type="unsigned long" dir="in">
3019 <desc>
3020 Position in the boot order (<tt>1</tt> to the total number of
3021 devices the machine can boot from, as returned by
3022 <link to="ISystemProperties::maxBootPosition"/>).
3023 </desc>
3024 </param>
3025 <param name="device" type="DeviceType" dir="return">
3026 <desc>
3027 Device at the given position.
3028 </desc>
3029 </param>
3030 </method>
3031
3032 <method name="attachHardDisk">
3033 <desc>
3034
3035 Attaches a virtual hard disk identified by the given UUID to the
3036 given device slot of the given channel on the given bus. The
3037 specified device slot must not have another disk attached and the
3038 given hard disk must not be already attached to this machine.
3039
3040 See <link to="IHardDisk"/> for detailed information about
3041 attaching hard disks.
3042
3043 <note>You cannot attach a hard disk to a running machine. Also,
3044 you cannot attach a hard disk to a newly created machine until
3045 it is registered.</note>
3046
3047 <note>Attaching a hard disk to a machine creates a <i>lazy</i>
3048 attachment. In particular, no differeincing images are
3049 actually created until <link to="#saveSettings()"/> is called to
3050 commit all changed settings.</note>
3051
3052 </desc>
3053 <param name="id" type="uuid" dir="in">
3054 <desc>UUID of the hard disk to attach.</desc>
3055 </param>
3056 <param name="bus" type="StorageBus" dir="in">
3057 <desc>Controller to attach the hard disk to.</desc>
3058 </param>
3059 <param name="channel" type="long" dir="in">
3060 <desc>Device slot to attach the hard disk to.</desc>
3061 </param>
3062 <param name="device" type="long" dir="in">
3063 <desc>Device slot to attach the hard disk to.</desc>
3064 </param>
3065 </method>
3066
3067 <method name="getHardDisk" const="yes">
3068 <desc>
3069 Returns the hard disk attached to the
3070 given controller under the specified device number.
3071 </desc>
3072 <param name="bus" type="StorageBus" dir="in"/>
3073 <param name="channel" type="long" dir="in"/>
3074 <param name="device" type="long" dir="in"/>
3075 <param name="hardDisk" type="IHardDisk" dir="return"/>
3076 </method>
3077
3078 <method name="detachHardDisk">
3079 <desc>
3080
3081 Detaches the hard disk drive attached to the given device slot
3082 of the given controller.
3083
3084 See <link to="IHardDisk"/> for detailed information about
3085 attaching hard disks.
3086
3087 <note>You cannot detach a hard disk from a running
3088 machine.</note>
3089
3090 <note>
3091 Detaching a hard disk from a machine creates a <i>lazy</i>
3092 detachment. In particular, if the detached hard disk is a
3093 differencing hard disk, it is not actually deleted until
3094 <link to="#saveSettings()"/> is called to commit all changed settings.
3095 Keep in mind, that doing <link to="#saveSettings()"/> will
3096 <b>physically delete</b> all detached differencing hard disks,
3097 so be careful.
3098 </note>
3099
3100 </desc>
3101 <param name="bus" type="StorageBus" dir="in">
3102 <desc>Bus to dettach the hard disk from.</desc>
3103 </param>
3104 <param name="channel" type="long" dir="in">
3105 <desc>Channel number to dettach the hard disk from.</desc>
3106 </param>
3107 <param name="device" type="long" dir="in">
3108 <desc>Device slot number to dettach the hard disk from.</desc>
3109 </param>
3110 </method>
3111
3112 <method name="getNetworkAdapter" const="yes">
3113 <desc>
3114 Returns the network adapter associated with the given slot.
3115 Slots are numbered sequentially, starting with zero. The total
3116 number of adapters per every machine is defined by the
3117 <link to="ISystemProperties::networkAdapterCount"/> property,
3118 so the maximum slot number is one less than that property's value.
3119 </desc>
3120 <param name="slot" type="unsigned long" dir="in"/>
3121 <param name="adapter" type="INetworkAdapter" dir="return"/>
3122 </method>
3123
3124 <method name="getSerialPort" const="yes">
3125 <desc>
3126 Returns the serial port associated with the given slot.
3127 Slots are numbered sequentially, starting with zero. The total
3128 number of serial ports per every machine is defined by the
3129 <link to="ISystemProperties::serialPortCount"/> property,
3130 so the maximum slot number is one less than that property's value.
3131 </desc>
3132 <param name="slot" type="unsigned long" dir="in"/>
3133 <param name="port" type="ISerialPort" dir="return"/>
3134 </method>
3135
3136 <method name="getParallelPort" const="yes">
3137 <desc>
3138 Returns the parallel port associated with the given slot.
3139 Slots are numbered sequentially, starting with zero. The total
3140 number of parallel ports per every machine is defined by the
3141 <link to="ISystemProperties::parallelPortCount"/> property,
3142 so the maximum slot number is one less than that property's value.
3143 </desc>
3144 <param name="slot" type="unsigned long" dir="in"/>
3145 <param name="port" type="IParallelPort" dir="return"/>
3146 </method>
3147
3148 <method name="getNextExtraDataKey">
3149 <desc>
3150 Returns the machine-specific extra data key name following the
3151 supplied key.
3152
3153 An error is returned if the supplied @a key does not exist. @c NULL is
3154 returned in @a nextKey if the supplied key is the last key. When
3155 supplying @c NULL for the @a key, the first key item is returned in @a
3156 nextKey (if there is any). @a nextValue is an optional parameter and
3157 if supplied, the next key's value is returned in it.
3158 </desc>
3159 <param name="key" type="wstring" dir="in">
3160 <desc>Name of the data key to follow.</desc>
3161 </param>
3162 <param name="nextKey" type="wstring" dir="out">
3163 <desc>Name of the next data key.</desc>
3164 </param>
3165 <param name="nextValue" type="wstring" dir="out">
3166 <desc>Value of the next data key.</desc>
3167 </param>
3168 </method>
3169
3170 <method name="getExtraData">
3171 <desc>
3172 Returns associated machine-specific extra data.
3173
3174 If the reuqested data @a key does not exist, this function will
3175 succeed and return @c NULL in the @a value argument.
3176 </desc>
3177 <param name="key" type="wstring" dir="in">
3178 <desc>Name of the data key to get.</desc>
3179 </param>
3180 <param name="value" type="wstring" dir="return">
3181 <desc>Value of the requested data key.</desc>
3182 </param>
3183 </method>
3184
3185 <method name="setExtraData">
3186 <desc>
3187 Sets associated machine-specific extra data.
3188
3189 If you pass @c NULL as a key @a vaule, the given @a key will be
3190 deleted.
3191
3192 <note>
3193 Before performing the actual data change, this method will ask all
3194 registered callbacks using the
3195 <link to="IVirtualBoxCallback::onExtraDataCanChange()"/>
3196 notification for a permission. If one of the callbacks refuses the
3197 new value, the change will not be performed.
3198 </note>
3199 <note>
3200 On success, the
3201 <link to="IVirtualBoxCallback::onExtraDataChange()"/> notification
3202 is called to inform all registered callbacks about a successful data
3203 change.
3204 </note>
3205 <note>
3206 This method can be called outside the machine session and therefore
3207 it's a caller's responsibility to handle possible race conditions
3208 when several clients change the same key at the same time.
3209 </note>
3210 </desc>
3211 <param name="key" type="wstring" dir="in">
3212 <desc>Name of the data key to set.</desc>
3213 </param>
3214 <param name="value" type="wstring" dir="in">
3215 <desc>Value to assign to the key.</desc>
3216 </param>
3217 </method>
3218
3219 <method name="saveSettings">
3220 <desc>
3221 Saves any changes to machine settings made since the session
3222 has been opened or a new machine has been created, or since the
3223 last call to <link to="#saveSettings()"/> or <link to="#discardSettings()"/>.
3224 For registered machines, new settings become visible to all
3225 other VirtualBox clients after successful invocation of this
3226 method.
3227 <note>
3228 The method sends <link to="IVirtualBoxCallback::onMachineDataChange()"/>
3229 notification event after the configuration has been successfully
3230 saved (only for registered machines).
3231 </note>
3232 <note>
3233 Calling this method is only valid on instances returned
3234 by <link to="ISession::machine"/> and on new machines
3235 created by <link to="IVirtualBox::createMachine"/> but not
3236 yet registered, or on unregistered machines after calling
3237 <link to="IVirtualBox::unregisterMachine"/>.
3238 </note>
3239 </desc>
3240 </method>
3241
3242 <method name="saveSettingsWithBackup">
3243 <desc>
3244 Creates a backup copy of the machine settings file (<link
3245 to="#settingsFilePath"/>) in case of auto-conversion, and then calls
3246 <link to="#saveSettings()"/>.
3247
3248 Note that the backup copy is created <b>only</b> if the settings file
3249 auto-conversion took place (see <link to="#settingsFileVersion"/> for
3250 details). Otherwise, this call is fully equivalent to
3251 <link to="#saveSettings()"/> and no backup copying is done.
3252
3253 The backup copy is created in the same directory where the original
3254 settings file is located. It is given the following file name:
3255 <pre>
3256 original.xml.x.y-platform.bak
3257 </pre>
3258 where <tt>original.xml</tt> is the original settings file name
3259 (excluding path), and <tt>x.y-platform</tt> is the version of the old
3260 format of the settings file (before auto-conversion).
3261
3262 If the given backup file already exists, this method will try to add the
3263 <tt>.N</tt> suffix to the backup file name (where <tt>N</tt> counts from
3264 0 to 9) and copy it again until it succeeds. If all suffixes are
3265 occupied, or if any other copy error occurs, this method will return a
3266 failure.
3267
3268 If the copy operation succeeds, the @a bakFileName return argument will
3269 receive a full path to the created backup file (for informational
3270 purposes). Note that this will happen even if the subsequent
3271 <link to="#saveSettings()"/> call performed by this method after the
3272 copy operation, fails.
3273
3274 <note>
3275 The VirtualBox API never calls this method. It is intended purely for
3276 the purposes of creating backup copies of the settings files by
3277 front-ends before saving the results of the automatically performed
3278 settings conversion to disk.
3279 </note>
3280
3281 <see>settingsFileVersion</see>
3282 </desc>
3283 <param name="bakFileName" type="wstring" dir="return">
3284 <desc>Full path to the created backup copy.</desc>
3285 </param>
3286 </method>
3287
3288 <method name="discardSettings">
3289 <desc>
3290 Discards any changes to the machine settings made since the session
3291 has been opened or since the last call to <link to="#saveSettings()"/>
3292 or <link to="#discardSettings"/>.
3293 <note>
3294 Calling this method is only valid on instances returned
3295 by <link to="ISession::machine"/> and on new machines
3296 created by <link to="IVirtualBox::createMachine"/> or
3297 opened by <link to="IVirtualBox::openMachine"/> but not
3298 yet registered, or on unregistered machines after calling
3299 <link to="IVirtualBox::unregisterMachine"/>.
3300 </note>
3301 </desc>
3302 </method>
3303
3304 <method name="deleteSettings">
3305 <desc>
3306 Deletes the settings file of this machine from disk.
3307 The machine must not be registered in order for this operation
3308 to succeed.
3309 <note>
3310 <link to="#settingsModified"/> will return TRUE after this
3311 method successfully returns.
3312 </note>
3313 <note>
3314 Calling this method is only valid on instances returned
3315 by <link to="ISession::machine"/> and on new machines
3316 created by <link to="IVirtualBox::createMachine"/> or
3317 opened by <link to="IVirtualBox::openMachine"/> but not
3318 yet registered, or on unregistered machines after calling
3319 <link to="IVirtualBox::unregisterMachine"/>.
3320 </note>
3321 <note>
3322 The deleted machine settings file can be restored (saved again)
3323 by calling <link to="#saveSettings()"/>.
3324 </note>
3325 </desc>
3326 </method>
3327
3328 <method name="getSnapshot">
3329 <desc>
3330 Returns a snapshot of this machine with the given UUID.
3331 A <tt>null</tt> UUID can be used to obtain the first snapshot
3332 taken on this machine. This is useful if you want to traverse
3333 the whole tree of snapshots starting from the root.
3334 </desc>
3335 <param name="id" type="uuid" dir="in">
3336 <desc>UUID of the snapshot to get</desc>
3337 </param>
3338 <param name="snapshot" type="ISnapshot" dir="return">
3339 <desc>Snapshot object with the given UUID.</desc>
3340 </param>
3341 </method>
3342
3343 <method name="findSnapshot">
3344 <desc>
3345 Returns a snapshot of this machine with the given name.
3346 </desc>
3347 <param name="name" type="wstring" dir="in">
3348 <desc>Name of the snapshot to find</desc>
3349 </param>
3350 <param name="snapshot" type="ISnapshot" dir="return">
3351 <desc>Snapshot object with the given name.</desc>
3352 </param>
3353 </method>
3354
3355 <method name="setCurrentSnapshot">
3356 <desc>
3357 Sets the current snapshot of this machine.
3358 <note>
3359 In the current implementation, this operation is not
3360 implemented.
3361 </note>
3362 </desc>
3363 <param name="id" type="uuid" dir="in">
3364 <desc>UUID of the snapshot to set as the current snapshot.</desc>
3365 </param>
3366 </method>
3367
3368 <method name="createSharedFolder">
3369 <desc>
3370 Creates a new permanent shared folder by associating the given logical
3371 name with the given host path, adds it to the collection of shared
3372 folders and starts sharing it. Refer to the description of
3373 <link to="ISharedFolder"/> to read more about logical names.
3374 </desc>
3375 <param name="name" type="wstring" dir="in">
3376 <desc>Unique logical name of the shared folder.</desc>
3377 </param>
3378 <param name="hostPath" type="wstring" dir="in">
3379 <desc>Full path to the shared folder in the host file system.</desc>
3380 </param>
3381 <param name="writable" type="boolean" dir="in">
3382 <desc>Whether the share is writable or readonly</desc>
3383 </param>
3384 </method>
3385
3386 <method name="removeSharedFolder">
3387 <desc>
3388 Removes the permanent shared folder with the given name previously
3389 created by <link to="#createSharedFolder"/> from the collection of
3390 shared folders and stops sharing it.
3391 </desc>
3392 <param name="name" type="wstring" dir="in">
3393 <desc>Logical name of the shared folder to remove.</desc>
3394 </param>
3395 </method>
3396
3397 <method name="canShowConsoleWindow">
3398 <desc>
3399 Returns @c true if the VM console process can activate the
3400 console window and bring it to foreground on the desktop of
3401 the host PC.
3402 <note>
3403 This method will fail if a session for this machine is not
3404 currently open.
3405 </note>
3406 </desc>
3407 <param name="canShow" type="boolean" dir="return">
3408 <desc>
3409 @c true if the console window can be shown and @c
3410 false otherwise.
3411 </desc>
3412 </param>
3413 </method>
3414
3415 <method name="showConsoleWindow">
3416 <desc>
3417 Activates the console window and brings it to foreground on
3418 the desktop of the host PC. Many modern window managers on
3419 many platforms implement some sort of focus stealing
3420 prevention logic, so that it may be impossible to activate
3421 a window without the help of the currently active
3422 application. In this case, this method will return a non-zero
3423 identifier that represents the top-level window of the VM
3424 console process. The caller, if it represents a currently
3425 active process, is responsible to use this identifier (in a
3426 platform-dependent manner) to perform actual window
3427 activation.
3428 <note>
3429 This method will fail if a session for this machine is not
3430 currently open.
3431 </note>
3432 </desc>
3433 <param name="winId" type="unsigned long long" dir="return">
3434 <desc>
3435 Platform-dependent identifier of the top-level VM console
3436 window, or zero if this method has performed all actions
3437 necessary to implement the <i>show window</i> semantics for
3438 the given platform and/or VirtualBox front-end.
3439 </desc>
3440 </param>
3441 </method>
3442
3443 </interface>
3444
3445 <!--
3446 // IConsole
3447 /////////////////////////////////////////////////////////////////////////
3448 -->
3449
3450 <interface
3451 name="IConsoleCallback" extends="$unknown"
3452 uuid="13dfbef3-b74d-487d-bada-2304529aefa6"
3453 wsmap="suppress"
3454 >
3455
3456 <method name="onMousePointerShapeChange">
3457 <desc>
3458 Notification when the guest mouse pointer shape has
3459 changed. The new shape data is given.
3460 </desc>
3461 <param name="visible" type="boolean" dir="in">
3462 <desc>
3463 Flag whether the pointer is visible.
3464 </desc>
3465 </param>
3466 <param name="alpha" type="boolean" dir="in">
3467 <desc>
3468 Flag whether the pointer has an alpha channel.
3469 </desc>
3470 </param>
3471 <param name="xHot" type="unsigned long" dir="in">
3472 <desc>
3473 The pointer hot spot x coordinate.
3474 </desc>
3475 </param>
3476 <param name="yHot" type="unsigned long" dir="in">
3477 <desc>
3478 The pointer hot spot y coordinate.
3479 </desc>
3480 </param>
3481 <param name="width" type="unsigned long" dir="in">
3482 <desc>
3483 Width of the pointer shape in pixels.
3484 </desc>
3485 </param>
3486 <param name="height" type="unsigned long" dir="in">
3487 <desc>
3488 Height of the pointer shape in pixels.
3489 </desc>
3490 </param>
3491 <param name="shape" type="octet" mod="ptr" dir="in">
3492 <desc>
3493 Address of the shape buffer.
3494
3495 The buffer contains 1 bpp (bits per pixel) AND mask followed by 32 bpp XOR (color) mask.
3496
3497 For pointers without alpha channel the XOR mask pixels are 32 bit values: (lsb)BGR0(msb).
3498 For pointers with alpha channel the XOR mask consists of (lsb)BGRA(msb) 32 bit values.
3499
3500 AND mask presents for pointers with alpha channel, so if the callback does not
3501 support alpha, the pointer could be displayed as a normal color pointer.
3502
3503 The AND mask is 1 bpp bitmap with byte aligned scanlines. Size of AND mask,
3504 therefore, is <tt>cbAnd = (width + 7) / 8 * height</tt>. The padding bits at the
3505 end of any scanline are undefined.
3506
3507 The XOR mask follows the AND mask on the next 4 bytes aligned offset:
3508 <tt>uint8_t *pXor = pAnd + (cbAnd + 3) &amp; ~3</tt>
3509 Bytes in the gap between the AND and the XOR mask are undefined.
3510 XOR mask scanlines have no gap between them and size of XOR mask is:
3511 <tt>cXor = width * 4 * height</tt>.
3512
3513 <note>
3514 If 'shape' is equal to 0, only pointer visibility is being changed.
3515 </note>
3516 </desc>
3517 </param>
3518 </method>
3519
3520 <method name="onMouseCapabilityChange">
3521 <desc>
3522 Notification when the mouse capabilities reported by the
3523 guest have changed. The new capabilities are passed.
3524 </desc>
3525 <param name="supportsAbsolute" type="boolean" dir="in"/>
3526 <param name="needsHostCursor" type="boolean" dir="in"/>
3527 </method>
3528
3529 <method name="onKeyboardLedsChange">
3530 <desc>
3531 Notification when the guest OS executes the KBD_CMD_SET_LEDS command
3532 to alter the state of the keyboard LEDs.
3533 </desc>
3534 <param name="numLock" type="boolean" dir="in"/>
3535 <param name="capsLock" type="boolean" dir="in"/>
3536 <param name="scrollLock" type="boolean" dir="in"/>
3537 </method>
3538
3539 <method name="onStateChange">
3540 <desc>
3541 Notification when the execution state of the machine has changed.
3542 The new state will be given.
3543 </desc>
3544 <param name="state" type="MachineState" dir="in"/>
3545 </method>
3546
3547 <method name="onAdditionsStateChange">
3548 <desc>
3549 Notification when a Guest Additions property changes.
3550 Interested callees should query IGuest attributes to
3551 find out what has changed.
3552 </desc>
3553 </method>
3554
3555 <method name="onDVDDriveChange">
3556 <desc>
3557 Notification when a property of the
3558 virtual <link to="IMachine::DVDDrive">DVD drive</link> changes.
3559 Interested callees should use IDVDDrive methods to find out what has
3560 changed.
3561 </desc>
3562 </method>
3563
3564 <method name="onFloppyDriveChange">
3565 <desc>
3566 Notification when a property of the
3567 virtual <link to="IMachine::FloppyDrive">floppy drive</link> changes.
3568 Interested callees should use IFloppyDrive methods to find out what
3569 has changed.
3570 </desc>
3571 </method>
3572
3573 <method name="onNetworkAdapterChange">
3574 <desc>
3575 Notification when a property of one of the
3576 virtual <link to="IMachine::getNetworkAdapter">network adapters</link>
3577 changes. Interested callees should use INetworkAdapter methods and
3578 attributes to find out what has changed.
3579 </desc>
3580 <param name="networkAdapter" type="INetworkAdapter" dir="in">
3581 <desc>Network adapter that is subject to change.</desc>
3582 </param>
3583 </method>
3584
3585 <method name="onSerialPortChange">
3586 <desc>
3587 Notification when a property of one of the
3588 virtual <link to="IMachine::getSerialPort">serial ports</link> changes.
3589 Interested callees should use ISerialPort methods and attributes
3590 to find out what has changed.
3591 </desc>
3592 <param name="serialPort" type="ISerialPort" dir="in">
3593 <desc>Serial port that is subject to change.</desc>
3594 </param>
3595 </method>
3596
3597 <method name="onParallelPortChange">
3598 <desc>
3599 Notification when a property of one of the
3600 virtual <link to="IMachine::getParallelPort">parallel ports</link>
3601 changes. Interested callees should use ISerialPort methods and
3602 attributes to find out what has changed.
3603 </desc>
3604 <param name="parallelPort" type="IParallelPort" dir="in">
3605 <desc>Parallel port that is subject to change.</desc>
3606 </param>
3607 </method>
3608
3609 <method name="onVRDPServerChange">
3610 <desc>
3611 Notification when a property of the
3612 <link to="IMachine::VRDPServer">VRDP server</link> changes.
3613 Interested callees should use IVRDPServer methods and attributes to
3614 find out what has changed.
3615 </desc>
3616 </method>
3617
3618 <method name="onUSBControllerChange">
3619 <desc>
3620 Notification when a property of the virtual
3621 <link to="IMachine::USBController">USB controller</link> changes.
3622 Interested callees should use IUSBController methods and attributes to
3623 find out what has changed.
3624 </desc>
3625 </method>
3626
3627 <method name="onUSBDeviceStateChange">
3628 <desc>
3629 Notification when a USB device is attached to or detached from
3630 the virtual USB controller.
3631
3632 This notification is sent as a result of the indirect
3633 request to attach the device because it matches one of the
3634 machine USB filters, or as a result of the direct request
3635 issued by <link to="IConsole::attachUSBDevice"/> or
3636 <link to="IConsole::detachUSBDevice"/>.
3637
3638 This notification is sent in case of both a succeeded and a
3639 failed request completion. When the request succeeds, the @a
3640 error parameter is @c null, and the given device has been
3641 already added to (when @a attached is @c true) or removed from
3642 (when @a attached is @c false) the collection represented by
3643 <link to="IConsole::USBDevices"/>. On failure, the collection
3644 doesn't change and the @a error perameter represents the error
3645 message describing the failure.
3646
3647 </desc>
3648 <param name="device" type="IUSBDevice" dir="in">
3649 <desc>Device that is subject to state change.</desc>
3650 </param>
3651 <param name="attached" type="boolean" dir="in">
3652 <desc>
3653 <tt>true</tt> if the device was attached
3654 and <tt>false</tt> otherwise.
3655 </desc>
3656 </param>
3657 <param name="error" type="IVirtualBoxErrorInfo" dir="in">
3658 <desc>
3659 <tt>null</tt> on success or an error message object on
3660 failure.
3661 </desc>
3662 </param>
3663 </method>
3664
3665 <method name="onSharedFolderChange">
3666 <desc>
3667 Notification when a shared folder is added or removed.
3668 The @a scope argument defines one of three scopes:
3669 <link to="IVirtualBox::sharedFolders">global shared folders</link>
3670 (<link to="Scope::Global">Global</link>),
3671 <link to="IMachine::sharedFolders">permanent shared folders</link> of
3672 the machine (<link to="Scope::Machine">Machine</link>) or <link
3673 to="IConsole::sharedFolders">transient shared folders</link> of the
3674 machine (<link to="Scope::Session">Session</link>). Interested callees
3675 should use query the corresponding collections to find out what has
3676 changed.
3677 </desc>
3678 <param name="scope" type="Scope" dir="in">
3679 <desc>Sope of the notification.</desc>
3680 </param>
3681 </method>
3682
3683 <method name="onRuntimeError">
3684 <desc>
3685 Notification when an error happens during the virtual
3686 machine execution.
3687
3688 There are three kinds of runtime errors:
3689 <ul>
3690 <li><i>fatal</i></li>
3691 <li><i>non-fatal with retry</i></li>
3692 <li><i>non-fatal warnings</i></li>
3693 </ul>
3694
3695 <b>Fatal</b> errors are indicated by the @a fatal parameter set
3696 to <tt>true</tt>. In case of fatal errors, the virtual machine
3697 execution is always paused before calling this notification, and
3698 the notification handler is supposed either to immediately save
3699 the virtual machine state using <link to="IConsole::saveState()"/>
3700 or power it off using <link to="IConsole::powerDown()"/>.
3701 Resuming the execution can lead to unpredictable results.
3702
3703 <b>Non-fatal</b> errors and warnings are indicated by the
3704 @a fatal parameter set to <tt>false</tt>. If the virtual machine
3705 is in the Paused state by the time the error notification is
3706 received, it means that the user can <i>try to resume</i> the machine
3707 execution after attempting to solve the probem that caused the
3708 error. In this case, the notification handler is supposed
3709 to show an appropriate message to the user (depending on the
3710 value of the @a id parameter) that offers several actions such
3711 as <i>Retry</i>, <i>Save</i> or <i>Power Off</i>. If the user
3712 wants to retry, the notification handler should continue
3713 the machine execution using the <link to="IConsole::resume()"/>
3714 call. If the machine execution is not Paused during this
3715 notification, then it means this notification is a <i>warning</i>
3716 (for example, about a fatal condition that can happen very soon);
3717 no immediate action is required from the user, the machine
3718 continues its normal execution.
3719
3720 Note that in either case the notification handler
3721 <b>must not</b> perform any action directly on a thread
3722 where this notification is called. Everything it is allowed to
3723 do is to post a message to another thread that will then talk
3724 to the user and take the corresponding action.
3725
3726 Currently, the following error identificators are known:
3727 <ul>
3728 <li><tt>"HostMemoryLow"</tt></li>
3729 <li><tt>"HostAudioNotResponding"</tt></li>
3730 <li><tt>"VDIStorageFull"</tt></li>
3731 </ul>
3732
3733 <note>
3734 This notification is not designed to be implemented by
3735 more than one callback at a time. If you have multiple
3736 IConsoleCallback instances registered on the given
3737 IConsole object, make sure you simply do nothing but
3738 return @c S_OK from all but one of them that does actual
3739 user notification and performs necessary actions.
3740 </note>
3741
3742 </desc>
3743 <param name="fatal" type="boolean" dir="in">
3744 <desc>Whether the error is fatal or not</desc>
3745 </param>
3746 <param name="id" type="wstring" dir="in">
3747 <desc>Error identificator</desc>
3748 </param>
3749 <param name="message" type="wstring" dir="in">
3750 <desc>Optional error message</desc>
3751 </param>
3752 </method>
3753
3754 <method name="onCanShowWindow">
3755 <desc>
3756 Notification when a call to
3757 <link to="IMachine::canShowConsoleWindow()"/> is made by a
3758 front-end to check if a subsequent call to
3759 <link to="IMachine::showConsoleWindow()"/> can succeed.
3760
3761 The callee should give an answer appropriate to the current
3762 machine state in the @a canShow argument. This answer must
3763 remain valid at least until the next
3764 <link to="IConsole::state">machine state</link> change.
3765
3766 <note>
3767 This notification is not designed to be implemented by
3768 more than one callback at a time. If you have multiple
3769 IConsoleCallback instances registered on the given
3770 IConsole object, make sure you simply do nothing but
3771 return @c true and @c S_OK from all but one of them that
3772 actually manages console window activation.
3773 </note>
3774 </desc>
3775 <param name="canShow" type="boolean" dir="return">
3776 <desc>
3777 @c true if the console window can be shown and @c
3778 false otherwise.
3779 </desc>
3780 </param>
3781 </method>
3782
3783 <method name="onShowWindow">
3784 <desc>
3785 Notification when a call to
3786 <link to="IMachine::showConsoleWindow()"/>
3787 requests the console window to be activated and brought to
3788 foreground on the desktop of the host PC.
3789
3790 This notification should cause the VM console process to
3791 perform the requested action as described above. If it is
3792 impossible to do it at a time of this notification, this
3793 method should return a failure.
3794
3795 Note that many modern window managers on many platforms
3796 implement some sort of focus stealing prevention logic, so
3797 that it may be impossible to activate a window without the
3798 help of the currently active application (which is supposedly
3799 an initiator of this notification). In this case, this method
3800 must return a non-zero identifier that represents the
3801 top-level window of the VM console process. The caller, if it
3802 represents a currently active process, is responsible to use
3803 this identifier (in a platform-dependent manner) to perform
3804 actual window activation.
3805
3806 This method must set @a winId to zero if it has performed all
3807 actions necessary to complete the request and the console
3808 window is now active and in foreground, to indicate that no
3809 further action is required on the caller's side.
3810
3811 <note>
3812 This notification is not designed to be implemented by
3813 more than one callback at a time. If you have multiple
3814 IConsoleCallback instances registered on the given
3815 IConsole object, make sure you simply do nothing but
3816 return@c S_OK from all but one of them that actually
3817 manages console window activation.
3818 </note>
3819 </desc>
3820 <param name="winId" type="unsigned long long" dir="return">
3821 <desc>
3822 Platform-dependent identifier of the top-level VM console
3823 window, or zero if this method has performed all actions
3824 necessary to implement the <i>show window</i> semantics for
3825 the given platform and/or this VirtualBox front-end.
3826 </desc>
3827 </param>
3828 </method>
3829
3830 </interface>
3831
3832 <interface
3833 name="IRemoteDisplayInfo" extends="$unknown"
3834 uuid="550104cd-2dfd-4a6c-857d-f6f8e088e62c"
3835 wsmap="struct"
3836 >
3837 <attribute name="active" type="boolean" readonly="yes">
3838 <desc>
3839 Whether the remote display connection is active.
3840 </desc>
3841 </attribute>
3842
3843 <attribute name="numberOfClients" type="unsigned long" readonly="yes">
3844 <desc>
3845 How many times a client connected.
3846 </desc>
3847 </attribute>
3848
3849 <attribute name="beginTime" type="long long" readonly="yes">
3850 <desc>
3851 When the last connection was established, in milliseconds since 1970-01-01 UTC.
3852 </desc>
3853 </attribute>
3854
3855 <attribute name="endTime" type="long long" readonly="yes">
3856 <desc>
3857 When the last connection was terminated or the current time, if
3858 connection is still active, in milliseconds since 1970-01-01 UTC.
3859 </desc>
3860 </attribute>
3861
3862 <attribute name="bytesSent" type="unsigned long long" readonly="yes">
3863 <desc>
3864 How many bytes were sent in last or current, if still active, connection.
3865 </desc>
3866 </attribute>
3867
3868 <attribute name="bytesSentTotal" type="unsigned long long" readonly="yes">
3869 <desc>
3870 How many bytes were sent in all connections.
3871 </desc>
3872 </attribute>
3873
3874 <attribute name="bytesReceived" type="unsigned long long" readonly="yes">
3875 <desc>
3876 How many bytes were received in last or current, if still active, connection.
3877 </desc>
3878 </attribute>
3879
3880 <attribute name="bytesReceivedTotal" type="unsigned long long" readonly="yes">
3881 <desc>
3882 How many bytes were received in all connections.
3883 </desc>
3884 </attribute>
3885
3886 <attribute name="user" type="wstring" readonly="yes">
3887 <desc>
3888 Login user name supplied by the client.
3889 </desc>
3890 </attribute>
3891
3892 <attribute name="domain" type="wstring" readonly="yes">
3893 <desc>
3894 Login domain name supplied by the client.
3895 </desc>
3896 </attribute>
3897
3898 <attribute name="clientName" type="wstring" readonly="yes">
3899 <desc>
3900 The client name supplied by the client.
3901 </desc>
3902 </attribute>
3903
3904 <attribute name="clientIP" type="wstring" readonly="yes">
3905 <desc>
3906 The IP address of the client.
3907 </desc>
3908 </attribute>
3909
3910 <attribute name="clientVersion" type="unsigned long" readonly="yes">
3911 <desc>
3912 The client software version number.
3913 </desc>
3914 </attribute>
3915
3916 <attribute name="encryptionStyle" type="unsigned long" readonly="yes">
3917 <desc>
3918 Public key exchange method used when connection was established.
3919 Values: 0 - RDP4 public key exchange scheme.
3920 1 - X509 sertificates were sent to client.
3921 </desc>
3922 </attribute>
3923
3924 </interface>
3925
3926 <interface
3927 name="IConsole" extends="$unknown"
3928 uuid="d5a1cbda-f5d7-4824-9afe-d640c94c7dcf"
3929 wsmap="managed"
3930 >
3931 <desc>
3932 The IConsole interface represents an interface to control virtual
3933 machine execution.
3934
3935 The console object that implements the IConsole interface is obtained
3936 from a session object after the session for the given machine has been
3937 opened using one of <link to="IVirtualBox::openSession"/>,
3938 <link to="IVirtualBox::openRemoteSession"/> or
3939 <link to="IVirtualBox::openExistingSession"/> methdods.
3940
3941 Methods of the IConsole interface allow the caller to query the current
3942 virtual machine execution state, pause the machine or power it down, save
3943 the machine state or take a snapshot, attach and detach removable media
3944 and so on.
3945
3946 <see>ISession</see>
3947 </desc>
3948
3949 <attribute name="machine" type="IMachine" readonly="yes">
3950 <desc>
3951 Machine object this console is sessioned with.
3952 <note>
3953 This is a convenience property, it has the same value as
3954 <link to="ISession::machine"/> of the corresponding session
3955 object.
3956 </note>
3957 </desc>
3958 </attribute>
3959
3960 <attribute name="state" type="MachineState" readonly="yes">
3961 <desc>
3962 Current execution state of the machine.
3963 <note>
3964 This property always returns the same value as the corresponding
3965 property of the IMachine object this console is sessioned with.
3966 For the process that owns (executes) the VM, this is the
3967 preferable way of querying the VM state, because no IPC
3968 calls are made.
3969 </note>
3970 </desc>
3971 </attribute>
3972
3973 <attribute name="guest" type="IGuest" readonly="yes">
3974 <desc>Guest object.</desc>
3975 </attribute>
3976
3977 <attribute name="keyboard" type="IKeyboard" readonly="yes">
3978 <desc>
3979 Virtual keyboard object.
3980 <note>
3981 If the machine is not running, any attempt to use
3982 the returned object will result in an error.
3983 </note>
3984 </desc>
3985 </attribute>
3986
3987 <attribute name="mouse" type="IMouse" readonly="yes">
3988 <desc>
3989 Virtual mouse object.
3990 <note>
3991 If the machine is not running, any attempt to use
3992 the returned object will result in an error.
3993 </note>
3994 </desc>
3995 </attribute>
3996
3997 <attribute name="display" type="IDisplay" readonly="yes">
3998 <desc>Virtual display object.
3999 <note>
4000 If the machine is not running, any attempt to use
4001 the returned object will result in an error.
4002 </note>
4003 </desc>
4004 </attribute>
4005
4006 <attribute name="debugger" type="IMachineDebugger" readonly="yes">
4007 <desc>Debugging interface.</desc>
4008 </attribute>
4009
4010 <attribute name="USBDevices" type="IUSBDeviceCollection" readonly="yes">
4011 <desc>
4012 Collection of USB devices currently attached to the virtual
4013 USB controller.
4014 <note>
4015 The collection is empty if the machine is not running.
4016 </note>
4017 </desc>
4018 </attribute>
4019
4020 <attribute name="remoteUSBDevices" type="IHostUSBDeviceCollection" readonly="yes">
4021 <desc>
4022 List of USB devices currently attached to the remote VRDP client.
4023 Once a new device is physically attached to the remote host computer,
4024 it appears in this list and remains there until detached.
4025 </desc>
4026 </attribute>
4027
4028 <attribute name="sharedFolders" type="ISharedFolderCollection" readonly="yes">
4029 <desc>
4030 Collection of shared folders for the current session. These folders
4031 are called transient shared folders because they are available to the
4032 guest OS running inside the associated virtual machine only for the
4033 duration of the session (as opposed to
4034 <link to="IMachine::sharedFolders"/> which represent permanent shared
4035 folders). When the session is closed (e.g. the machine is powered down),
4036 these folders are automatically discarded.
4037
4038 New shared folders are added to the collection using
4039 <link to="#createSharedFolder"/>. Existing shared folders can be
4040 removed using <link to="#removeSharedFolder"/>.
4041 </desc>
4042 </attribute>
4043
4044 <attribute name="remoteDisplayInfo" type="IRemoteDisplayInfo" readonly="yes">
4045 <desc>
4046 Interface that provides information on Remote Display (VRDP) connection.
4047 </desc>
4048 </attribute>
4049
4050 <method name="powerUp">
4051 <desc>
4052 Starts the virtual machine execution using the current machine
4053 state (i.e. its current execution state, current settings and
4054 current hard disks).
4055
4056 If the machine is powered off or aborted, the execution will
4057 start from the beginning (as if the real hardware were just
4058 powered on).
4059
4060 If the machine is in the <link to="MachineState::Saved"/> state,
4061 it will continue its execution the point where the state has
4062 beem saved.
4063
4064 <see>#saveState</see>
4065 </desc>
4066 <param name="progress" type="IProgress" dir="return">
4067 <desc>Progress object to track the operation completion.</desc>
4068 </param>
4069 </method>
4070
4071 <method name="powerDown">
4072 <desc>
4073 Stops the virtual machine execution.
4074 After this operation completes, the machine will go to the
4075 PoweredOff state.
4076 </desc>
4077 </method>
4078
4079 <method name="reset">
4080 <desc>Resets the virtual machine.</desc>
4081 </method>
4082
4083 <method name="pause">
4084 <desc>Pauses the virtual machine execution.</desc>
4085 </method>
4086
4087 <method name="resume">
4088 <desc>Resumes the virtual machine execution.</desc>
4089 </method>
4090
4091 <method name="powerButton">
4092 <desc>Send the ACPI power button event to the guest.</desc>
4093 </method>
4094
4095 <method name="sleepButton">
4096 <desc>Send the ACPI sleep button event to the guest.</desc>
4097 </method>
4098
4099 <method name="getPowerButtonHandled">
4100 <desc>Check if the last power button event was handled by guest.</desc>
4101 <param name="handled" type="boolean" dir="return"/>
4102 </method>
4103
4104 <method name="saveState">
4105 <desc>
4106 Saves the current execution state of a running virtual machine
4107 and stops its executiuon.
4108
4109 After this operation completes, the machine will go to the
4110 Saved state. Next time it is powered up, this state will
4111 be restored and the machine will continue its execution from
4112 the place where it was saved.
4113
4114 This operation differs from taking a snapshot to the effect
4115 that it doesn't create new differencing hard disks. Also, once
4116 the machine is powered up from the state saved using this method,
4117 the saved state is deleted, so it will be impossible to return
4118 to this state later.
4119
4120 <note>
4121 On success, this method implicitly calls
4122 <link to="IMachine::saveSettings()"/> to save all current machine
4123 settings (including runtime changes to the DVD drive, etc.).
4124 Together with the impossibility to change any VM settings when it is
4125 in the Saved state, this guarantees the adequate hardware
4126 configuration of the machine when it is restored from the saved
4127 state file.
4128 </note>
4129
4130 <note>
4131 The machine must be in the Running or Paused state, otherwise
4132 the operation will fail.
4133 </note>
4134
4135 <see><link to="#takeSnapshot"/></see>
4136 </desc>
4137 <param name="progress" type="IProgress" dir="return">
4138 <desc>Progress object to track the operation completion.</desc>
4139 </param>
4140 </method>
4141
4142 <method name="adoptSavedState">
4143 <desc>
4144 Associates the given saved state file to the virtual machine.
4145
4146 On success, the machine will go to the Saved state. Next time it is
4147 powered up, it will be restored from the adopted saved state and
4148 continue execution from the place where the saved state file was
4149 created.
4150
4151 The specified saved state file path may be full or relative to the
4152 folder the VM normally saves the state to (usually,
4153 <link to="IMachine::snapshotFolder"/>).
4154
4155 <note>
4156 It's a caller's responsibility to make sure the given saved state
4157 file is compatible with the settings of this virtual machine that
4158 represent its virtual hardware (memory size, hard disk configuration
4159 etc.). If there is a mismatch, the behavior of the virtual machine
4160 is undefined.
4161 </note>
4162 </desc>
4163 <param name="savedStateFile" type="wstring" dir="in">
4164 <desc>Path to the saved state file to adopt.</desc>
4165 </param>
4166 </method>
4167
4168 <method name="discardSavedState">
4169 <desc>
4170 Discards (deletes) the saved state of the virtual machine
4171 previously created by <link to="#saveState"/>. Next time the
4172 machine is powered up, a clean boot will occur.
4173 <note>
4174 This operation is equivalent to resetting or powering off
4175 the machine without doing a proper shutdown in the guest OS.
4176 </note>
4177 </desc>
4178 </method>
4179
4180 <method name="getDeviceActivity">
4181 <desc>
4182 Gets the current activity type of a given device or device group.
4183 </desc>
4184 <param name="type" type="DeviceType" dir="in"/>
4185 <param name="activity" type="DeviceActivity" dir="return"/>
4186 </method>
4187
4188 <method name="attachUSBDevice">
4189 <desc>
4190 Attaches a host USB device with the given UUID to the
4191 USB controller of the virtual machine.
4192
4193 The device needs to be in one of the following states:
4194 <link to="USBDeviceState::Busy">Busy</link>,
4195 <link to="USBDeviceState::Available">Available</link> or
4196 <link to="USBDeviceState::Held">Held</link>,
4197 otherwise an error is immediately returned.
4198
4199 When the device state is
4200 <link to="USBDeviceState::Busy">Busy</link>, an error may also
4201 be returned if the host computer refuses to release it for some reason.
4202
4203 <see>IUSBController::deviceFilters, USBDeviceState</see>
4204 </desc>
4205 <param name="id" type="uuid" dir="in">
4206 <desc>UUID of the host USB device to attach.</desc>
4207 </param>
4208 </method>
4209
4210 <method name="detachUSBDevice">
4211 <desc>
4212 Detaches an USB device with the given UUID from the USB controller
4213 oif the virtual machine.
4214
4215 After this method succeeds, the VirtualBox server reinitiates
4216 all USB filters as if the device were just physically attached
4217 to the host, but filters of this machine are ignored to avoid
4218 a possible automatic reattachment.
4219
4220 <see>IUSBController::deviceFilters, USBDeviceState</see>
4221 </desc>
4222 <param name="id" type="uuid" dir="in">
4223 <desc>UUID of the USB device to detach.</desc>
4224 </param>
4225 <param name="device" type="IUSBDevice" dir="return">
4226 <desc>Detached USB device.</desc>
4227 </param>
4228 </method>
4229
4230 <method name="createSharedFolder">
4231 <desc>
4232 Creates a transient new shared folder by associating the given logical
4233 name with the given host path, adds it to the collection of shared
4234 folders and starts sharing it. Refer to the description of
4235 <link to="ISharedFolder"/> to read more about logical names.
4236 </desc>
4237 <param name="name" type="wstring" dir="in">
4238 <desc>Unique logical name of the shared folder.</desc>
4239 </param>
4240 <param name="hostPath" type="wstring" dir="in">
4241 <desc>Full path to the shared folder in the host file system.</desc>
4242 </param>
4243 <param name="writable" type="boolean" dir="in">
4244 <desc>Whether the share is writable or readonly</desc>
4245 </param>
4246 </method>
4247
4248 <method name="removeSharedFolder">
4249 <desc>
4250 Removes a transient shared folder with the given name previously
4251 created by <link to="#createSharedFolder"/> from the collection of
4252 shared folders and stops sharing it.
4253 </desc>
4254 <param name="name" type="wstring" dir="in">
4255 <desc>Logical name of the shared folder to remove.</desc>
4256 </param>
4257 </method>
4258
4259 <method name="takeSnapshot">
4260 <desc>
4261 Saves the current execution state and all settings of the
4262 machine and creates differencing images for all
4263 normal (non-independent) hard disks.
4264
4265 This method can be called for a PoweredOff, Saved, Running or
4266 Paused virtual machine. When the machine is PoweredOff, an
4267 offline <link to="ISnapshot">snapshot</link> is created,
4268 in all other cases -- an online snapshot.
4269
4270 The taken snapshot is always based on the
4271 <link to="IMachine::currentSnapshot">current
4272 snapshot</link> of the associated virtual machine and becomes
4273 a new current snapshot.
4274
4275 <note>
4276 This method implicitly calls <link to="IMachine::saveSettings()"/> to
4277 save all current machine settings before taking an offline snapshot.
4278 </note>
4279
4280 <see>ISnapshot, <link to="#saveState"/></see>
4281 </desc>
4282 <param name="name" type="wstring" dir="in">
4283 <desc>Short name for the snapshot.</desc>
4284 </param>
4285 <param name="description" type="wstring" dir="in">
4286 <desc>Optional description of the snapshot.</desc>
4287 </param>
4288 <param name="progress" type="IProgress" dir="return">
4289 <desc>Progress object to track the operation completion.</desc>
4290 </param>
4291 </method>
4292
4293 <method name="discardSnapshot">
4294 <desc>
4295
4296 Starts discarding the specified snapshot. The execution state
4297 and settings of the associated machine stored in the snapshot
4298 will be deleted. The contents of all differencing hard disks of
4299 this snapshot will be merged with the contents of their
4300 dependent child hard disks to keep the, disks valid (in other
4301 words, all changes represented by hard disks being discarded
4302 will be propagated to their child hard disks). After that, this
4303 snapshot's differencing hard disks will be deleted. The parent
4304 of this snapshot will become a new parent for all its child
4305 snapshots.
4306
4307 If the discarded snapshot is the current one, its parent
4308 snapshot will become a new current snapshot. The current machine
4309 state is not directly affected in this case, except that
4310 currently attached differencing hard disks based on hard disks
4311 of the discarded snapshot will be also merged as described
4312 above.
4313
4314 If the discarded snapshot is the first one (the root snapshot)
4315 and it has exactly one child snapshot, this child snapshot will
4316 become the first snapshot after discarding. If there are no
4317 children at all (i.e. the first snapshot is the only snapshot of
4318 the machine), both the current and the first snapshot of the
4319 machine will be set to null. In all other cases, the first
4320 snapshot cannot be discarded.
4321
4322 You cannot discard the snapshot if it
4323 stores <link to="HardDiskType::Normal">normal</link> (non-differencing)
4324 hard disks that have differencing hard disks based on them. Snapshots of
4325 such kind can be discarded only when every normal hard disk has either
4326 no children at all or exactly one child. In the former case, the normal
4327 hard disk simply becomes unused (i.e. not attached to any VM). In the
4328 latter case, it receives all the changes strored in the child hard disk,
4329 and then it replaces the child hard disk in the configuration of the
4330 corresponding snapshot or machine.
4331
4332 Also, you cannot discard the snapshot if it stores hard disks
4333 (of any type) having differencing child hard disks that belong
4334 to other machines. Such snapshots can be only discarded after
4335 you discard all snapshots of other machines containing "foreign"
4336 child disks, or detach these "foreign" child disks from machines
4337 they are attached to.
4338
4339 One particular example of the snapshot storing normal hard disks
4340 is the first snapshot of a virtual machine that had normal hard
4341 disks attached when taking the snapshot. Be careful when
4342 discarding such snapshots because this implicitly commits
4343 changes (made since the snapshot being discarded has been taken)
4344 to normal hard disks (as described above), which may be not what
4345 you want.
4346
4347 The virtual machine is put to
4348 the <link to="MachineState::Discarding">Discarding</link> state until
4349 the discard operation is completed.
4350
4351 <note>
4352 The machine must not be running, otherwise the operation
4353 will fail.
4354 </note>
4355
4356 <note>
4357 Child hard disks of all normal hard disks of the discarded snapshot
4358 must be <link to="IHardDisk::accessible">accessible</link> for this
4359 operation to succeed. In particular, this means that all virtual
4360 machines, whose hard disks are directly or indirectly based on the
4361 hard disks of discarded snapshot, must be powered off.
4362 </note>
4363 <note>
4364 Merging hard disk contents can be very time and disk space
4365 consuming, if these disks are big in size and have many
4366 children. However, if the snapshot being discarded is the last
4367 (head) snapshot on the branch, the operation will be rather
4368 quick.
4369 </note>
4370 <note>
4371 Note that discarding the current snapshot
4372 will imlicitly call <link to="IMachine::saveSettings()"/> to
4373 make all current machine settings permanent.
4374 </note>
4375 </desc>
4376 <param name="id" type="uuid" dir="in">
4377 <desc>UUID of the snapshot to discard.</desc>
4378 </param>
4379 <param name="progress" type="IProgress" dir="return">
4380 <desc>Progress object to track the operation completion.</desc>
4381 </param>
4382 </method>
4383
4384 <method name="discardCurrentState">
4385 <desc>
4386 This operation is similar to <link to="#discardSnapshot()"/> but
4387 affects the current machine state. This means that the state stored in
4388 the current snapshot will become a new current state, and all current
4389 settings of the machine and changes stored in differencing hard disks
4390 will be lost.
4391
4392 After this operation is successfully completed, new empty differencing
4393 hard disks are created for all normal hard disks of the machine.
4394
4395 If the current snapshot of the machine is an online snapshot, the
4396 machine will go to the <link to="MachineState::Saved"> saved
4397 state</link>, so that the next time it is powered on, the execution
4398 state will be restored from the current snapshot.
4399
4400 <note>
4401 The machine must not be running, otherwise the operation will fail.
4402 </note>
4403
4404 <note>
4405 If the machine state is <link to="MachineState::Saved">Saved</link>
4406 prior to this operation, the saved state file will be implicitly
4407 discarded (as if <link to="IConsole::discardSavedState()"/> were
4408 called).
4409 </note>
4410
4411 </desc>
4412 <param name="progress" type="IProgress" dir="return">
4413 <desc>Progress object to track the operation completion.</desc>
4414 </param>
4415 </method>
4416
4417 <method name="discardCurrentSnapshotAndState">
4418 <desc>
4419
4420 This method is equivalent to
4421 doing <link to="#discardSnapshot">discardSnapshot</link>
4422 (<link
4423 to="IMachine::currentSnapshot">currentSnapshot</link>.<link
4424 to="ISnapshot::id">id()</link>, ...) followed by
4425 <link to="#discardCurrentState()"/>.
4426
4427 As a result, the machine will be fully restored from the
4428 snapshot preceeding the current snapshot, while both the current
4429 snapshot and the current machine state will be discarded.
4430
4431 If the current snapshot is the first snapshot of the machine (i.e. it
4432 has the only snapshot), the current machine state will be
4433 discarded <b>before</b> discarding the snapshot. In other words, the
4434 machine will be restored from its last snapshot, before discarding
4435 it. This differs from performing a single
4436 <link to="#discardSnapshot()"/> call (note that no
4437 <link to="#discardCurrentState()"/> will be possible after it) to the
4438 effect that the latter will preserve the current state instead of
4439 discarding it.
4440
4441 Unless explicitly mentioned otherwise, all remarks and
4442 limitations of the above two methods also apply to this method.
4443
4444 <note>
4445 The machine must not be running, otherwise the operation
4446 will fail.
4447 </note>
4448
4449 <note>
4450 If the machine state is <link to="MachineState::Saved">Saved</link>
4451 prior to this operation, the saved state file will be implicitly
4452 discarded (as if <link to="IConsole::discardSavedState()"/> were
4453 called).</note>
4454
4455 <note>
4456 This method is more efficient than calling two above
4457 methods separately: it requires less IPC calls and provides
4458 a single progress object.
4459 </note>
4460
4461 </desc>
4462 <param name="progress" type="IProgress" dir="return">
4463 <desc>Progress object to track the operation completion.</desc>
4464 </param>
4465 </method>
4466
4467 <method name="registerCallback">
4468 <desc>
4469 Registers a new console callback on this instance. The methods of the
4470 callback interface will be called by this instance when the appropriate
4471 event occurs.
4472 </desc>
4473 <param name="callback" type="IConsoleCallback" dir="in"/>
4474 </method>
4475
4476 <method name="unregisterCallback">
4477 <desc>
4478 Unregisters the console callback previously registered using
4479 <link to="#registerCallback"/>.
4480 </desc>
4481 <param name="callback" type="IConsoleCallback" dir="in"/>
4482 </method>
4483
4484 </interface>
4485
4486 <!--
4487 // IHost
4488 /////////////////////////////////////////////////////////////////////////
4489 -->
4490
4491 <interface
4492 name="IHostDVDDrive" extends="$unknown"
4493 uuid="21f86694-202d-4ce4-8b05-a63ff82dbf4c"
4494 wsmap="managed"
4495 >
4496 <desc>
4497 The IHostDVDDrive interface represents the physical CD/DVD drive
4498 hardware on the host. Used indirectly in <link to="IHost::DVDDrives"/>.
4499 </desc>
4500
4501 <attribute name="name" type="wstring" readonly="yes">
4502 <desc>
4503 Returns the platform-specific device identifier.
4504 On DOS-like platforms, it is a drive name (e.g. R:).
4505 On Unix-like platforms, it is a device name (e.g. /dev/hdc).
4506 </desc>
4507 </attribute>
4508 <attribute name="description" type="wstring" readonly="yes">
4509 <desc>
4510 Returns a human readable description for the drive. This
4511 description usually contains the product and vendor name. A
4512 @c null string is returned if the description is not available.
4513 </desc>
4514 </attribute>
4515 <attribute name="udi" type="wstring" readonly="yes">
4516 <desc>
4517 Returns the unique device identifier for the drive. This
4518 attribute is reserved for future use instead of
4519 <link to="#name"/>. Currently it is not used and may return
4520 @c null on some platforms.
4521 </desc>
4522 </attribute>
4523
4524 </interface>
4525
4526 <enumerator
4527 name="IHostDVDDriveEnumerator" type="IHostDVDDrive"
4528 uuid="1ed7cfaf-c363-40df-aa4e-89c1afb7d96b"
4529 />
4530
4531 <collection
4532 name="IHostDVDDriveCollection" type="IHostDVDDrive"
4533 enumerator="IHostDVDDriveEnumerator"
4534 uuid="1909c533-1a1e-445f-a4e1-a267cffc30ed"
4535 readonly="yes"
4536 >
4537 <method name="findByName">
4538 <desc>
4539 Searches this collection for a host drive with the given name.
4540 <note>
4541 The method returns an error if the given name does not
4542 correspond to any host drive in the collection.
4543 </note>
4544 </desc>
4545 <param name="name" type="wstring" dir="in">
4546 <desc>Name of the host drive to search for</desc>
4547 </param>
4548 <param name="drive" type="IHostDVDDrive" dir="return">
4549 <desc>Found host drive object</desc>
4550 </param>
4551 </method>
4552 </collection>
4553
4554 <interface
4555 name="IHostFloppyDrive" extends="$unknown"
4556 uuid="b6a4d1a9-4221-43c3-bd52-021a5daa9ed2"
4557 wsmap="managed"
4558 >
4559 <desc>
4560 The IHostFloppyDrive interface represents the physical floppy drive
4561 hardware on the host. Used indirectly in <link to="IHost::floppyDrives"/>.
4562 </desc>
4563 <attribute name="name" type="wstring" readonly="yes">
4564 <desc>
4565 Returns the platform-specific device identifier.
4566 On DOS-like platforms, it is a drive name (e.g. A:).
4567 On Unix-like platforms, it is a device name (e.g. /dev/fd0).
4568 </desc>
4569 </attribute>
4570 <attribute name="description" type="wstring" readonly="yes">
4571 <desc>
4572 Returns a human readable description for the drive. This
4573 description usually contains the product and vendor name. A
4574 @c null string is returned if the description is not available.
4575 </desc>
4576 </attribute>
4577 <attribute name="udi" type="wstring" readonly="yes">
4578 <desc>
4579 Returns the unique device identifier for the drive. This
4580 attribute is reserved for future use instead of
4581 <link to="#name"/>. Currently it is not used and may return
4582 @c null on some platforms.
4583 </desc>
4584 </attribute>
4585 </interface>
4586
4587 <enumerator
4588 name="IHostFloppyDriveEnumerator" type="IHostFloppyDrive"
4589 uuid="ce04c924-4f54-432a-9dec-11fddc3ea875"
4590 />
4591
4592 <collection
4593 name="IHostFloppyDriveCollection" type="IHostFloppyDrive"
4594 enumerator="IHostFloppyDriveEnumerator"
4595 uuid="fd84bb86-c59a-4037-a557-755ff263a460"
4596 readonly="yes"
4597 >
4598 <method name="findByName">
4599 <desc>
4600 Searches this collection for a host drive with the given name.
4601 <note>
4602 The method returns an error if the given name does not
4603 correspond to any host drive in the collection.
4604 </note>
4605 </desc>
4606 <param name="name" type="wstring" dir="in">
4607 <desc>Name of the host drive to search for</desc>
4608 </param>
4609 <param name="drive" type="IHostFloppyDrive" dir="return">
4610 <desc>Found host drive object</desc>
4611 </param>
4612 </method>
4613 </collection>
4614
4615<if target="midl">
4616 <interface
4617 name="IHostNetworkInterface" extends="$unknown"
4618 uuid="F4512D7C-B074-4e97-99B8-6D2BD27C3F5A"
4619 wsmap="managed"
4620 >
4621 <attribute name="name" type="wstring" readonly="yes">
4622 <desc>Returns the host network interface name.</desc>
4623 </attribute>
4624
4625 <attribute name="id" type="uuid" readonly="yes">
4626 <desc>Returns the interface UUID.</desc>
4627 </attribute>
4628 </interface>
4629
4630 <enumerator
4631 name="IHostNetworkInterfaceEnumerator" type="IHostNetworkInterface"
4632 uuid="7B52FEF7-56E8-4aec-92F5-15E6D11EC630"
4633 />
4634
4635 <collection
4636 name="IHostNetworkInterfaceCollection" type="IHostNetworkInterface"
4637 enumerator="IHostNetworkInterfaceEnumerator"
4638 uuid="BF1D41F2-B97B-4314-A0FB-D4823AF42FB5"
4639 readonly="yes"
4640 >
4641 <method name="findByName">
4642 <desc>
4643 Searches this collection for a host network interface with the given name.
4644 <note>
4645 The method returns an error if the given name does not
4646 correspond to any host network interface in the collection.
4647 </note>
4648 </desc>
4649 <param name="name" type="wstring" dir="in">
4650 <desc>Name of the host network interface to search for.</desc>
4651 </param>
4652 <param name="networkInterface" type="IHostNetworkInterface" dir="return">
4653 <desc>Found host network interface object.</desc>
4654 </param>
4655 </method>
4656 <method name="findById">
4657 <desc>
4658 Searches this collection for a host network interface with the given GUID.
4659 <note>
4660 The method returns an error if the given GUID does not
4661 correspond to any host network interface in the collection.
4662 </note>
4663 </desc>
4664 <param name="id" type="uuid" dir="in">
4665 <desc>GUID of the host network interface to search for.</desc>
4666 </param>
4667 <param name="networkInterface" type="IHostNetworkInterface" dir="return">
4668 <desc>Found host network interface object.</desc>
4669 </param>
4670 </method>
4671 </collection>
4672</if>
4673
4674 <interface
4675 name="IHost" extends="$unknown"
4676 uuid="81729c26-1aec-46f5-b7c0-cc7364738fdb"
4677 wsmap="managed"
4678 >
4679 <desc>
4680 The IHost interface represents the physical machine that this VirtualBox
4681 installation runs on.
4682
4683 An object implementing this interface is returned by the
4684 <link to="IVirtualBox::host" /> attribute. This interface contains
4685 read-only information about the host's physical hardware (such as what
4686 processors, and disks are available, what the host operating system is,
4687 and so on) and also allows for manipulating some of the host's hardware,
4688 such as global USB device filters and host interface networking.
4689
4690 </desc>
4691 <attribute name="DVDDrives" type="IHostDVDDriveCollection" readonly="yes">
4692 <desc>List of DVD drives available on the host.</desc>
4693 </attribute>
4694
4695 <attribute name="floppyDrives" type="IHostFloppyDriveCollection" readonly="yes">
4696 <desc>List of floppy drives available on the host.</desc>
4697 </attribute>
4698
4699 <attribute name="USBDevices" type="IHostUSBDeviceCollection" readonly="yes">
4700 <desc>
4701 List of USB devices currently attached to the host.
4702 Once a new device is physically attached to the host computer,
4703 it appears in this list and remains there until detached.
4704
4705 <note>
4706 This method may set a @ref com_warnings "warning result code".
4707 </note>
4708 <note>
4709 If USB functionality is not avaliable in the given edition of
4710 VirtualBox, this method will set the result code to @c E_NOTIMPL.
4711 </note>
4712 </desc>
4713 </attribute>
4714
4715 <attribute name="USBDeviceFilters" type="IHostUSBDeviceFilterCollection" readonly="yes">
4716 <desc>
4717 List of USB device filters in action.
4718 When a new device is physically attached to the host computer,
4719 filters from this list are applied to it (in order they are stored
4720 in the list). The first matched filter will determine the
4721 <link to="IHostUSBDeviceFilter::action">action</link>
4722 performed on the device.
4723
4724 Unless the device is ignored by these filters, filters of all
4725 currently running virtual machines
4726 (<link to="IUSBController::deviceFilters"/>) are applied to it.
4727
4728 <note>
4729 This method may set a @ref com_warnings "warning result code".
4730 </note>
4731 <note>
4732 If USB functionality is not avaliable in the given edition of
4733 VirtualBox, this method will set the result code to @c E_NOTIMPL.
4734 </note>
4735
4736 <see>IHostUSBDeviceFilter, USBDeviceState</see>
4737 </desc>
4738 </attribute>
4739
4740<if target="midl">
4741 <attribute name="networkInterfaces" type="IHostNetworkInterfaceCollection" readonly="yes">
4742 <desc>List of host network interfaces currently defined on the host.</desc>
4743 </attribute>
4744</if>
4745
4746 <attribute name="processorCount" type="unsigned long" readonly="yes">
4747 <desc>Number of (logical) CPUs installed in the host system.</desc>
4748 </attribute>
4749
4750 <attribute name="processorSpeed" type="unsigned long" readonly="yes">
4751 <desc>(Approximate) speed of the host CPU in Megahertz.</desc>
4752 </attribute>
4753
4754 <attribute name="processorDescription" type="wstring" readonly="yes">
4755 <desc>Description string of the host CPU.</desc>
4756 </attribute>
4757
4758 <attribute name="memorySize" type="unsigned long" readonly="yes">
4759 <desc>Amount of system memory in megabytes installed in the host system.</desc>
4760 </attribute>
4761
4762 <attribute name="memoryAvailable" type="unsigned long" readonly="yes">
4763 <desc>Available system memory in the host system.</desc>
4764 </attribute>
4765
4766 <attribute name="operatingSystem" type="wstring" readonly="yes">
4767 <desc>Name of the host system's operating system.</desc>
4768 </attribute>
4769
4770 <attribute name="OSVersion" type="wstring" readonly="yes">
4771 <desc>Host operating system's version string.</desc>
4772 </attribute>
4773
4774 <attribute name="UTCTime" type="long long" readonly="yes">
4775 <desc>Returns the current host time in milliseconds since 1970-01-01 UTC.</desc>
4776 </attribute>
4777
4778<if target="midl">
4779 <method name="createHostNetworkInterface">
4780 <desc>
4781 Creates a new adapter for Host Interface Networking.
4782 </desc>
4783 <param name="name" type="wstring" dir="in">
4784 <desc>
4785 Adapter name.
4786 </desc>
4787 </param>
4788 <param name="hostInterface" type="IHostNetworkInterface" dir="out">
4789 <desc>
4790 Created host interface object.
4791 </desc>
4792 </param>
4793 <param name="progress" type="IProgress" dir="return">
4794 <desc>
4795 Progress object to track the operation completion.
4796 </desc>
4797 </param>
4798 </method>
4799 <method name="removeHostNetworkInterface">
4800 <desc>
4801 Removes the given host network interface.
4802 </desc>
4803 <param name="id" type="uuid" dir="in">
4804 <desc>
4805 Adapter GUID.
4806 </desc>
4807 </param>
4808 <param name="hostInterface" type="IHostNetworkInterface" dir="out">
4809 <desc>
4810 Removed host interface object.
4811 </desc>
4812 </param>
4813 <param name="progress" type="IProgress" dir="return">
4814 <desc>
4815 Progress object to track the operation completion.
4816 </desc>
4817 </param>
4818 </method>
4819</if>
4820
4821 <method name="createUSBDeviceFilter">
4822 <desc>
4823 Creates a new USB device filter. All attributes except
4824 the filter name are set to <tt>null</tt> (any match),
4825 <i>active</i> is <tt>false</tt> (the filter is not active).
4826
4827 The created filter can be added to the list of filters using
4828 <link to="#insertUSBDeviceFilter()"/>.
4829
4830 <see>#USBDeviceFilters</see>
4831 </desc>
4832 <param name="name" type="wstring" dir="in">
4833 <desc>
4834 Filter name. See <link to="IHostUSBDeviceFilter::name"/>
4835 for more info.
4836 </desc>
4837 </param>
4838 <param name="filter" type="IHostUSBDeviceFilter" dir="return">
4839 <desc>Created filter object.</desc>
4840 </param>
4841 </method>
4842
4843 <method name="insertUSBDeviceFilter">
4844 <desc>
4845 Inserts the given USB device to the specified position
4846 in the list of filters.
4847
4848 Positions are numbered starting from <tt>0</tt>. If the specified
4849 position is equal to or greater than the number of elements in
4850 the list, the filter is added to the end of the collection.
4851
4852 <note>
4853 Duplicates are not allowed, so an attempt to insert a
4854 filter that is already in the list, will return an
4855 error.
4856 </note>
4857 <note>
4858 This method may set a @ref com_warnings "warning result code".
4859 </note>
4860 <note>
4861 If USB functionality is not avaliable in the given edition of
4862 VirtualBox, this method will set the result code to @c E_NOTIMPL.
4863 </note>
4864
4865 <see>#USBDeviceFilters</see>
4866 </desc>
4867 <param name="position" type="unsigned long" dir="in">
4868 <desc>Position to insert the filter to.</desc>
4869 </param>
4870 <param name="filter" type="IHostUSBDeviceFilter" dir="in">
4871 <desc>USB device filter to insert.</desc>
4872 </param>
4873 </method>
4874
4875 <method name="removeUSBDeviceFilter">
4876 <desc>
4877 Removes a USB device filter from the specified position in the
4878 list of filters.
4879
4880 Positions are numbered starting from <tt>0</tt>. Specifying a
4881 position equal to or greater than the number of elements in
4882 the list will produce an error.
4883
4884 <note>
4885 This method may set a @ref com_warnings "warning result code".
4886 </note>
4887 <note>
4888 If USB functionality is not avaliable in the given edition of
4889 VirtualBox, this method will set the result code to @c E_NOTIMPL.
4890 </note>
4891
4892 <see>#USBDeviceFilters</see>
4893 </desc>
4894 <param name="position" type="unsigned long" dir="in">
4895 <desc>Position to remove the filter from.</desc>
4896 </param>
4897 <param name="filter" type="IHostUSBDeviceFilter" dir="return">
4898 <desc>Removed USB device filter.</desc>
4899 </param>
4900 </method>
4901
4902 </interface>
4903
4904 <!--
4905 // ISystemProperties
4906 /////////////////////////////////////////////////////////////////////////
4907 -->
4908
4909 <interface
4910 name="ISystemProperties"
4911 extends="$unknown"
4912 uuid="12c2e31e-247f-4d51-82e5-5b9d4a6c7d5b"
4913 wsmap="struct"
4914 >
4915 <desc>
4916 The ISystemProperties interface represents global properties
4917 of the given VirtualBox installation.
4918
4919 These properties define limits and default values for various
4920 attributes and parameters.
4921
4922 Most of the properties are read-only, but some can be changed by
4923 a user.
4924 </desc>
4925
4926 <attribute name="minGuestRAM" type="unsigned long" readonly="yes">
4927 <desc>Minium guest system memory in Megabytes.</desc>
4928 </attribute>
4929
4930 <attribute name="maxGuestRAM" type="unsigned long" readonly="yes">
4931 <desc>Maximum guest system memory in Megabytes.</desc>
4932 </attribute>
4933
4934 <attribute name="minGuestVRAM" type="unsigned long" readonly="yes">
4935 <desc>Minimum guest video memory in Megabytes.</desc>
4936 </attribute>
4937
4938 <attribute name="maxGuestVRAM" type="unsigned long" readonly="yes">
4939 <desc>Maximum guest video memory in Megabytes.</desc>
4940 </attribute>
4941
4942 <attribute name="maxVDISize" type="unsigned long long" readonly="yes">
4943 <desc>Maximum size of a virtual disk image in Megabytes.</desc>
4944 </attribute>
4945
4946 <attribute name="networkAdapterCount" type="unsigned long" readonly="yes">
4947 <desc>
4948 Number of network adapters associated with every
4949 <link to="IMachine"/> instance.
4950 </desc>
4951 </attribute>
4952
4953 <attribute name="serialPortCount" type="unsigned long" readonly="yes">
4954 <desc>
4955 Number of serial ports associated with every
4956 <link to="IMachine"/> instance.
4957 </desc>
4958 </attribute>
4959
4960 <attribute name="parallelPortCount" type="unsigned long" readonly="yes">
4961 <desc>
4962 Number of parallel ports associated with every
4963 <link to="IMachine"/> instance.
4964 </desc>
4965 </attribute>
4966
4967 <attribute name="maxBootPosition" type="unsigned long" readonly="yes">
4968 <desc>
4969 Maximum device position in the boot order. This value corresponds
4970 to the total number of devices a machine can boot from, to make it
4971 possible to include all possible devices to the boot list.
4972 <see><link to="IMachine::setBootOrder()"/></see>
4973 </desc>
4974 </attribute>
4975
4976 <attribute name="defaultVDIFolder" type="wstring">
4977 <desc>
4978 Full path to the default directory used to create new or open
4979 existing virtual disk images when an image file name contains no
4980 path.
4981
4982 The initial value of this property is
4983 <tt>&lt;</tt><link to="IVirtualBox::homeFolder">
4984 VirtualBox_home</link><tt>&gt;/VDI</tt>.
4985
4986 <note>
4987 Setting this property to <tt>null</tt> will restore the
4988 initial value.
4989 </note>
4990 <note>
4991 When settings this property, the specified path can be
4992 absolute (full path) or relative
4993 to the <link to="IVirtualBox::homeFolder">
4994 VirtualBox home directory</link>.
4995 When reading this property, a full path is
4996 always returned.
4997 </note>
4998 <note>
4999 The specified path may not exist, it will be created
5000 when necessary.
5001 </note>
5002
5003 <see>
5004 <link to="IVirtualBox::createHardDisk()"/>,
5005 <link to="IVirtualBox::openVirtualDiskImage()"/>
5006 </see>
5007 </desc>
5008 </attribute>
5009
5010 <attribute name="defaultMachineFolder" type="wstring">
5011 <desc>
5012 Full path to the default directory used to create new or open
5013 existing machines when a settings file name contains no
5014 path.
5015
5016 The initial value of this property is
5017 <tt>&lt;</tt><link to="IVirtualBox::homeFolder">
5018 VirtualBox_home</link><tt>&gt;/Machines</tt>.
5019
5020 <note>
5021 Setting this property to <tt>null</tt> will restore the
5022 initial value.
5023 </note>
5024 <note>
5025 When settings this property, the specified path can be
5026 absolute (full path) or relative
5027 to the <link to="IVirtualBox::homeFolder">
5028 VirtualBox home directory</link>.
5029 When reading this property, a full path is
5030 always returned.
5031 </note>
5032 <note>
5033 The specified path may not exist, it will be created
5034 when necessary.
5035 </note>
5036
5037 <see>
5038 <link to="IVirtualBox::createMachine()"/>,
5039 <link to="IVirtualBox::openMachine()"/>
5040 </see>
5041 </desc>
5042 </attribute>
5043
5044 <attribute name="remoteDisplayAuthLibrary" type="wstring">
5045 <desc>
5046 Library that provides authentication for VRDP clients. The library
5047 is used if a virtual machine's authentication type is set to "external"
5048 in the VM RemoteDisplay configuration.
5049
5050 The system library extension (".DLL" or ".so") must be omitted.
5051 A full path can be specified; if not, then the library must reside on the
5052 system's default library path.
5053
5054 The default value of this property is <tt>VRDPAuth</tt>. There is a library
5055 of that name in one of the default VirtualBox library directories.
5056
5057 For details about VirtualBox authentication libraries and how to implement
5058 them, please refer to the VirtualBox manual.
5059
5060 <note>
5061 Setting this property to <tt>null</tt> will restore the
5062 initial value.
5063 </note>
5064 </desc>
5065 </attribute>
5066
5067 <attribute name="webServiceAuthLibrary" type="wstring">
5068 <desc>
5069 Library that provides authentication for webservice clients. The library
5070 is used if a virtual machine's authentication type is set to "external"
5071 in the VM RemoteDisplay configuration and will be called from
5072 within the <link to="IWebsessionManager::logon" /> implementation.
5073
5074 As opposed to <link to="ISystemProperties::remoteDisplayAuthLibrary" />,
5075 there is no per-VM setting for this, as the webservice is a global
5076 resource (if it is running). Only for this setting (for the webservice),
5077 setting this value to a literal "null" string disables authentication,
5078 meaning that <link to="IWebsessionManager::logon" /> will always succeed,
5079 no matter what user name and password are supplied.
5080
5081 The initial value of this property is <tt>VRDPAuth</tt>,
5082 meaning that the webservice will use the same authentication
5083 library that is used by default for VBoxVRDP (again, see
5084 <link to="ISystemProperties::remoteDisplayAuthLibrary" />).
5085 The format and calling convetion of authentication libraries
5086 is the same for the webservice as it is for VBoxVRDP.
5087
5088 </desc>
5089 </attribute>
5090
5091 <attribute name="HWVirtExEnabled" type="boolean">
5092 <desc>
5093 This specifies the default value for hardware virtualization
5094 extensions. If enabled, virtual machines will make use of
5095 hardware virtualization extensions such as Intel VT-x and
5096 AMD-V by default. This value can be overridden by each VM
5097 using their <link to="IMachine::HWVirtExEnabled" /> property.
5098 </desc>
5099 </attribute>
5100
5101 <attribute name="LogHistoryCount" type="unsigned long">
5102 <desc>
5103 This value specifies how many old release log files are kept.
5104 </desc>
5105 </attribute>
5106 </interface>
5107
5108 <!--
5109 // IGuest
5110 /////////////////////////////////////////////////////////////////////////
5111 -->
5112
5113 <interface
5114 name="IGuestOSType" extends="$unknown"
5115 uuid="da94f478-1f37-4726-b750-2235950dc2fe"
5116 wsmap="struct"
5117 >
5118 <attribute name="id" type="wstring" readonly="yes">
5119 <desc>Guest OS identifier string.</desc>
5120 </attribute>
5121
5122 <attribute name="description" type="wstring" readonly="yes">
5123 <desc>Human readable description of the guest OS.</desc>
5124 </attribute>
5125
5126 <attribute name="recommendedRAM" type="unsigned long" readonly="yes">
5127 <desc>Recommended RAM size in Megabytes.</desc>
5128 </attribute>
5129
5130 <attribute name="recommendedVRAM" type="unsigned long" readonly="yes">
5131 <desc>Recommended video RAM size in Megabytes.</desc>
5132 </attribute>
5133
5134 <attribute name="recommendedHDD" type="unsigned long" readonly="yes">
5135 <desc>Recommended hard disk size in Megabytes.</desc>
5136 </attribute>
5137 </interface>
5138
5139
5140 <enumerator
5141 name="IGuestOSTypeEnumerator" type="IGuestOSType"
5142 uuid="a3335e02-4669-4e3c-80c7-c4dc7056a07c"
5143 />
5144
5145 <collection
5146 name="IGuestOSTypeCollection" type="IGuestOSType" enumerator="IGuestOSTypeEnumerator"
5147 uuid="a5e36749-a610-498b-9f29-2e36c1042d65"
5148 readonly="yes"
5149 />
5150
5151 <interface
5152 name="IGuest" extends="$unknown"
5153 uuid="d8556fca-81bc-12af-fca3-365528fa38ca"
5154
5155 wsmap="suppress"
5156 >
5157 <desc>
5158 The IGuest interface represents information about the operating system
5159 running inside the virtual machine. Used in
5160 <link to="IConsole::guest"/>.
5161
5162 IGuest provides information about the guest operating system, whether
5163 Guest Additions are installed and other OS-specific virtual machine
5164 properties.
5165 </desc>
5166
5167 <attribute name="OSTypeId" type="wstring" readonly="yes">
5168 <desc>
5169 Identifier of the Guest OS type as reported by the Guest
5170 Additions.
5171 You may use <link to="IVirtualBox::getGuestOSType"/> to obtain
5172 an IGuestOSType object representing details about the given
5173 Guest OS type.
5174 <note>
5175 If Guest Additions are not installed, this value will be
5176 the same as <link to="IMachine::OSTypeId"/>.
5177 </note>
5178 </desc>
5179 </attribute>
5180
5181 <attribute name="additionsActive" type="boolean" readonly="yes">
5182 <desc>
5183 Flag whether the Guest Additions are installed and active
5184 in which case their version will be returned by the
5185 <link to="#additionsVersion"/> property.
5186 </desc>
5187 </attribute>
5188
5189 <attribute name="additionsVersion" type="wstring" readonly="yes">
5190 <desc>
5191 Version of the Guest Additions (3 decimal numbers separated
5192 by dots) or empty when the Additions are not installed. The
5193 Additions may also report a version but yet not be active as
5194 the version might be refused by VirtualBox (incompatible) or
5195 other failures occured.
5196 </desc>
5197 </attribute>
5198
5199 <attribute name="supportsSeamless" type="boolean" readonly="yes">
5200 <desc>
5201 Flag whether seamless guest display rendering (seamless desktop
5202 integration) is supported.
5203 </desc>
5204 </attribute>
5205
5206 <attribute name="supportsGraphics" type="boolean" readonly="yes">
5207 <desc>
5208 Flag whether the guest is in graphics mode. If it is not, then
5209 seamless rendering will not work, resize hints are not immediately
5210 acted on and guest display resizes are probably not initiated by
5211 the guest additions.
5212 </desc>
5213 </attribute>
5214
5215 <attribute name="memoryBalloonSize" type="unsigned long">
5216 <desc>Guest system memory balloon size in megabytes.</desc>
5217 </attribute>
5218
5219 <attribute name="statisticsUpdateInterval" type="unsigned long">
5220 <desc>Interval to update guest statistics in seconds.</desc>
5221 </attribute>
5222
5223 <method name="setCredentials">
5224 <desc>
5225 Store login credentials that can be queried by guest operating
5226 systems with Additions installed. The credentials are transient
5227 to the session and the guest may also choose to erase them. Note
5228 that the caller cannot determine whether the guest operating system
5229 has queried or made use of the credentials.
5230 </desc>
5231 <param name="userName" type="wstring" dir="in">
5232 <desc>User name string, can be empty</desc>
5233 </param>
5234 <param name="password" type="wstring" dir="in">
5235 <desc>Password string, can be empty</desc>
5236 </param>
5237 <param name="domain" type="wstring" dir="in">
5238 <desc>Domain name (guest logon scheme specific), can be emtpy</desc>
5239 </param>
5240 <param name="allowInteractiveLogon" type="boolean" dir="in">
5241 <desc>
5242 Flag whether the guest should alternatively allow the user to
5243 interactively specify different credentials. This flag might
5244 not be supported by all versions of the Additions.
5245 </desc>
5246 </param>
5247 </method>
5248
5249 <method name="getStatistic">
5250 <desc>
5251 Query specified guest statistics as reported by the VirtualBox Additions.
5252 </desc>
5253 <param name="cpuId" type="unsigned long" dir="in">
5254 <desc>Virtual CPU id; not relevant for all statistic types</desc>
5255 </param>
5256 <param name="statistic" type="GuestStatisticType" dir="in">
5257 <desc>Statistic type.</desc>
5258 </param>
5259 <param name="statVal" type="unsigned long" dir="out">
5260 <desc>Statistics value</desc>
5261 </param>
5262 </method>
5263
5264 </interface>
5265
5266
5267 <!--
5268 // IProgress
5269 /////////////////////////////////////////////////////////////////////////
5270 -->
5271
5272 <enumerator
5273 name="IProgressEnumerator" type="IProgress"
5274 uuid="e0380522-4ef1-48f4-856c-e455177ccb2d"
5275 />
5276
5277 <collection
5278 name="IProgressCollection" type="IProgress" enumerator="IProgressEnumerator"
5279 uuid="78B76A7C-F0F2-467c-9F0E-F089A54EE957"
5280 readonly="yes"
5281 />
5282
5283 <interface
5284 name="IProgress" extends="$unknown"
5285 uuid="10CC03A1-717E-429b-992D-C67B56175A51"
5286 wsmap="managed"
5287 >
5288 <desc>
5289 The IProgress interface represents a task progress object that allows
5290 to wait for the completion of some asynchronous task.
5291
5292 The task consists of one or more operations that run sequentially,
5293 one after one. There is an individual percent of completion of the
5294 current operation and the percent of completion of the task as a
5295 whole. Similarly, you can wait for the completion of a particular
5296 operation or for the completion of the whole task.
5297
5298 Every operation is identified by a number (starting from 0)
5299 and has a separate description.
5300 </desc>
5301
5302 <attribute name="id" type="uuid" readonly="yes">
5303 <desc>ID of the task.</desc>
5304 </attribute>
5305
5306 <attribute name="description" type="wstring" readonly="yes">
5307 <desc>Description of the task.</desc>
5308 </attribute>
5309
5310 <attribute name="initiator" type="$unknown" readonly="yes">
5311 <desc>Initiator of the task.</desc>
5312 </attribute>
5313
5314 <attribute name="cancelable" type="boolean" readonly="yes">
5315 <desc>Whether the task can be interrupted.</desc>
5316 </attribute>
5317
5318 <attribute name="percent" type="long" readonly="yes">
5319 <desc>
5320 Current task progress value in percent.
5321 This value depends on how many operations are already complete.
5322 </desc>
5323 </attribute>
5324
5325 <attribute name="completed" type="boolean" readonly="yes">
5326 <desc>Whether the task has been completed.</desc>
5327 </attribute>
5328
5329 <attribute name="canceled" type="boolean" readonly="yes">
5330 <desc>Whether the task has been canceled.</desc>
5331 </attribute>
5332
5333 <attribute name="resultCode" type="result" readonly="yes">
5334 <desc>
5335 Result code of the progress task.
5336 Valid only if <link to="#completed"/> is true.
5337 </desc>
5338 </attribute>
5339
5340 <attribute name="errorInfo" type="IVirtualBoxErrorInfo" readonly="yes">
5341 <desc>
5342 Extended information about the unsuccessful result of the
5343 progress operation. May be NULL when no extended information
5344 is available.
5345 Valid only if <link to="#completed"/> is true and
5346 <link to="#resultCode"/> indicates a failure.
5347 </desc>
5348 </attribute>
5349
5350 <attribute name="operationCount" type="unsigned long" readonly="yes">
5351 <desc>
5352 Number of operations this task is divided into.
5353 Every task consists of at least one operation.
5354 </desc>
5355 </attribute>
5356
5357 <attribute name="operation" type="unsigned long" readonly="yes">
5358 <desc>Number of the operation being currently executed.</desc>
5359 </attribute>
5360
5361 <attribute name="operationDescription" type="wstring" readonly="yes">
5362 <desc>
5363 Description of the operation being currently executed.
5364 </desc>
5365 </attribute>
5366
5367 <attribute name="operationPercent" type="long" readonly="yes">
5368 <desc>Current operation progress value in percent.</desc>
5369 </attribute>
5370
5371 <method name="waitForCompletion">
5372 <desc>
5373 Waits until the task is done (including all operations) with a
5374 given timeout.
5375 </desc>
5376 <param name="timeout" type="long" dir="in">
5377 <desc>
5378 Timeout value in milliseconds.
5379 Specify -1 for an indefinite wait.
5380 </desc>
5381 </param>
5382 </method>
5383
5384 <method name="waitForOperationCompletion">
5385 <desc>
5386 Waits until the given operation is done with a given timeout.
5387 </desc>
5388 <param name="operation" type="unsigned long" dir="in">
5389 <desc>
5390 Number of the operation to wait for.
5391 Must be less than <link to="#operationCount"/>.
5392 </desc>
5393 </param>
5394 <param name="timeout" type="long" dir="in">
5395 <desc>
5396 Timeout value in milliseconds.
5397 Specify -1 for an indefinite wait.
5398 </desc>
5399 </param>
5400 </method>
5401
5402 <method name="cancel">
5403 <desc>
5404 Cancels the task.
5405 <note>
5406 If <link to="#cancelable"/> is <tt>false</tt>, then
5407 this method will fail.
5408 </note>
5409 </desc>
5410 </method>
5411
5412 </interface>
5413
5414
5415 <!--
5416 // ISnapshot
5417 /////////////////////////////////////////////////////////////////////////
5418 -->
5419
5420 <enumerator
5421 name="ISnapshotEnumerator" type="ISnapshot"
5422 uuid="25cfa2a4-1f1d-4f05-9658-b7a5894ef1a3"
5423 />
5424
5425 <collection
5426 name="ISnapshotCollection" type="ISnapshot"
5427 enumerator="ISnapshotEnumerator"
5428 uuid="23852e3c-94cd-4801-ab05-ed35675b3894"
5429 readonly="yes"
5430 />
5431
5432 <interface
5433 name="ISnapshot" extends="$unknown"
5434 uuid="9f1bbf79-13b0-4da2-abba-4a992c65c083"
5435 wsmap="managed"
5436 >
5437 <desc>
5438 The ISnapshot interface represents a snapshot of the virtual
5439 machine.
5440
5441 The <i>snapshot</i> stores all the information about a virtual
5442 machine necessary to bring it to exactly the same state as it was at
5443 the time of taking the snapshot. The snapshot includes:
5444
5445 <ul>
5446 <li>all settings of the virtual machine (i.e. its hardware
5447 configuration: RAM size, attached hard disks, etc.)
5448 </li>
5449 <li>the execution state of the virtual machine (memory contents,
5450 CPU state, etc.).
5451 </li>
5452 </ul>
5453
5454 Snapshots can be <i>offline</i> (taken when the VM is powered off)
5455 or <i>online</i> (taken when the VM is running). The execution
5456 state of the offline snapshot is called a <i>zero execution state</i>
5457 (it doesn't actually contain any information about memory contents
5458 or the CPU state, assuming that all hardware is just powered off).
5459
5460 <h3>Snapshot branches</h3>
5461
5462 Snapshots can be chained. Chained snapshots form a branch where
5463 every next snapshot is based on the previous one. This chaining is
5464 mostly related to hard disk branching (see <link to="IHardDisk"/>
5465 description). This means that every time a new snapshot is created,
5466 a new differencing hard disk is implicitly created for all normal
5467 hard disks attached to the given virtual machine. This allows to
5468 fully restore hard disk contents when the machine is later reverted
5469 to a particular snapshot.
5470
5471 In the current implelemtation, multiple snapshot branches within one
5472 virtual machine are not allowed. Every machine has a signle branch,
5473 and <link to="IConsole::takeSnapshot()"/> operation adds a new
5474 snapshot to the top of that branch.
5475
5476 Existings snapshots can be discarded using
5477 <link to="IConsole::discardSnapshot()"/>.
5478
5479 <h3>Current snapshot</h3>
5480
5481 Every virtual machine has a current snapshot, identified by
5482 <link to="IMachine::currentSnapshot"/>. This snapshot is used as
5483 a base for the <i>current machine state</i> (see below), to the effect
5484 that all normal hard disks of the machine and its execution
5485 state are based on this snapshot.
5486
5487 In the current implementation, the current snapshot is always the
5488 last taken snapshot (i.e. the head snapshot on the branch) and it
5489 cannot be changed.
5490
5491 The current snapshot is <tt>null</tt> if the machine doesn't have
5492 snapshots at all; in this case the current machine state is just
5493 current settings of this machine plus its current execution state.
5494
5495 <h3>Current machine state</h3>
5496
5497 The current machine state is what represened by IMachine instances got
5498 directly from IVirtualBox
5499 using <link
5500 to="IVirtualBox::getMachine()">getMachine()</link>, <link
5501 to="IVirtualBox::findMachine()">findMachine()</link>, etc. (as opposed
5502 to instances returned by <link to="ISnapshot::machine"/>). This state
5503 is always used when the machine is <link to="IConsole::powerUp"> powered
5504 on</link>.
5505
5506 The current machine state also includes the current execution state.
5507 If the machine is being currently executed
5508 (<link to="IMachine::state"/> is <link to="MachineState::Running"/>
5509 and above), its execution state is just what's happening now.
5510 If it is powered off (<link to="MachineState::PoweredOff"/> or
5511 <link to="MachineState::Aborted"/>), it has a zero execution state.
5512 If the machine is saved (<link to="MachineState::Saved"/>), its
5513 execution state is what saved in the execution state file
5514 (<link to="IMachine::stateFilePath"/>).
5515
5516 If the machine is in the saved state, then, next time it is powered
5517 on, its execution state will be fully restored from the saved state
5518 file and the execution will continue from the point where the state
5519 was saved.
5520
5521 Similarly to snapshots, the current machine state can be discarded
5522 using <link to="IConsole::discardCurrentState()"/>.
5523
5524 <h3>Taking and discarding snapshots</h3>
5525
5526 The table below briefly explains the meaning of every snapshot
5527 operation:
5528
5529 <table>
5530 <tr><th>Operation</th><th>Meaning</th><th>Remarks</th></tr>
5531
5532 <tr><td><link to="IConsole::takeSnapshot()"/></td>
5533
5534 <td>Save the current state of the virtual machine, including all
5535 settings, contents of normal hard disks and the current modifications
5536 to immutable hard disks (for online snapshots)</td>
5537
5538 <td>The current state is not changed (the machine will continue
5539 execution if it is being executed when the snapshot is
5540 taken)</td></tr>
5541
5542 <tr><td><link to="IConsole::discardSnapshot()"/></td>
5543
5544 <td>Forget the state of the virtual machine stored in the snapshot:
5545 dismiss all saved settings and delete the saved execution state (for
5546 online snapshots)</td>
5547
5548 <td>Other snapshots (including child snapshots, if any) and the
5549 current state are not directly affected</td></tr>
5550
5551 <tr><td><link to="IConsole::discardCurrentState()"/></td>
5552
5553 <td>Restore the current state of the virtual machine from the state
5554 stored in the current snapshot, including all settings and hard disk
5555 contents</td>
5556
5557 <td>The current state of the machine existed prior to this operation
5558 is lost</td></tr>
5559
5560 <tr><td><link to="IConsole::discardCurrentSnapshotAndState()"/></td>
5561
5562 <td>Completely revert the virtual machine to the state it was in
5563 before the current snapshot has been taken</td>
5564
5565 <td>The current state, as well as the current snapshot, are
5566 lost</td></tr>
5567
5568 </table>
5569
5570 </desc>
5571
5572 <attribute name="id" type="uuid" readonly="yes">
5573 <desc>UUID of the snapshot.</desc>
5574 </attribute>
5575
5576 <attribute name="name" type="wstring">
5577 <desc>Short name of the snapshot.</desc>
5578 </attribute>
5579
5580 <attribute name="description" type="wstring">
5581 <desc>Optional description of the snapshot.</desc>
5582 </attribute>
5583
5584 <attribute name="timeStamp" type="long long" readonly="yes">
5585 <desc>
5586 Time stamp of the snapshot, in milliseconds since 1970-01-01 UTC.
5587 </desc>
5588 </attribute>
5589
5590 <attribute name="online" type="boolean" readonly="yes">
5591 <desc>
5592 <tt>true</tt> if this snapshot is an online snapshot and
5593 <tt>false</tt> otherwise.
5594
5595 <note>
5596 When this attribute is <tt>true</tt>, the
5597 <link to="IMachine::stateFilePath"/> attribute of the
5598 <link to="#machine"/> object associated with this snapshot
5599 will point to the saved state file. Otherwise, it will be
5600 <tt>null</tt>.
5601 </note>
5602 </desc>
5603 </attribute>
5604
5605 <attribute name="machine" type="IMachine" readonly="yes">
5606 <desc>
5607 Virtual machine this snapshot is taken on. This object
5608 stores all settings the machine had when taking this snapshot.
5609 <note>
5610 The returned machine object is immutable, i.e. no
5611 any settings can be changed.
5612 </note>
5613 </desc>
5614 </attribute>
5615
5616 <attribute name="parent" type="ISnapshot" readonly="yes">
5617 <desc>
5618 Parent snapshot (a snapshot this one is based on).
5619 <note>
5620 It's not an error to read this attribute on a snapshot
5621 that doesn't have a parent -- a null object will be
5622 returned to indicate this.
5623 </note>
5624 </desc>
5625 </attribute>
5626
5627 <attribute name="children" type="ISnapshotCollection" readonly="yes">
5628 <desc>
5629 Child snapshots (all snapshots having this one as a parent).
5630 <note>
5631 In the current implementation, there can be only one
5632 child snapshot, or no children at all, meaning this is the
5633 last (head) snapshot.
5634 </note>
5635 </desc>
5636 </attribute>
5637
5638 </interface>
5639
5640 <!--
5641 // IHardDisk
5642 /////////////////////////////////////////////////////////////////////////
5643 -->
5644
5645 <enum
5646 name="HardDiskStorageType"
5647 uuid="48138584-ad99-479d-a36f-eb82a7663685"
5648 >
5649 <desc>
5650 Virtual hard disk storage type.
5651 <see>IHardDisk</see>
5652 </desc>
5653
5654 <const name="VirtualDiskImage" value="0">
5655 <desc>
5656 Virtual Disk Image, VDI (a regular file in the file
5657 system of the host OS, see <link to="IVirtualDiskImage"/>)
5658 </desc>
5659 </const>
5660 <const name="ISCSIHardDisk" value="1">
5661 <desc>
5662 iSCSI Remote Disk (a disk accessed via the Internet
5663 SCSI protocol over a TCP/IP network, see
5664 <link to="IISCSIHardDisk"/>)
5665 </desc>
5666 </const>
5667 <const name="VMDKImage" value="2">
5668 <desc>
5669 VMware Virtual Machine Disk image (a regular file in the file
5670 system of the host OS, see <link to="IVMDKImage"/>)
5671 </desc>
5672 </const>
5673 <const name="CustomHardDisk" value="3">
5674 <desc>
5675 Disk formats supported through plugins (see
5676 <link to="ICustomHardDisk"/>)
5677 </desc>
5678 </const>
5679 <const name="VHDImage" value="4">
5680 <desc>
5681 Virtual PC Virtual Machine Disk image (a regular file in the file
5682 system of the host OS, see <link to="IVHDImage"/>)
5683 </desc>
5684 </const>
5685 </enum>
5686
5687 <enum
5688 name="HardDiskType"
5689 uuid="a348fafd-a64e-4643-ba65-eb3896bd7e0a"
5690 >
5691 <desc>
5692 Virtual hard disk type.
5693 <see>IHardDisk</see>
5694 </desc>
5695
5696 <const name="Normal" value="0">
5697 <desc>
5698 Normal hard disk (attached directly or indirectly, preserved
5699 when taking snapshots).
5700 </desc>
5701 </const>
5702 <const name="Immutable" value="1">
5703 <desc>
5704 Immutable hard disk (attached indirectly, changes are wiped out
5705 after powering off the virtual machine).
5706 </desc>
5707 </const>
5708 <const name="Writethrough" value="2">
5709 <desc>
5710 Write through hard disk (attached directly, ignored when
5711 taking snapshots).
5712 </desc>
5713 </const>
5714 </enum>
5715
5716 <interface
5717 name="IHardDiskAttachment" extends="$unknown"
5718 uuid="c0ffe596-21c6-4797-8d8a-b47b66881e7a"
5719 wsmap="struct"
5720 >
5721 <attribute name="hardDisk" type="IHardDisk" readonly="yes">
5722 <desc>Harddisk object this attachment is about.</desc>
5723 </attribute>
5724
5725 <attribute name="bus" type="StorageBus" readonly="yes">
5726 <desc>Disk controller ID of this attachment.</desc>
5727 </attribute>
5728
5729 <attribute name="channel" type="long" readonly="yes">
5730 <desc>Channel number of the attachment.</desc>
5731 </attribute>
5732
5733 <attribute name="device" type="long" readonly="yes">
5734 <desc>Device slot number of the attachment.</desc>
5735 </attribute>
5736
5737 </interface>
5738
5739 <enumerator
5740 name="IHardDiskAttachmentEnumerator" type="IHardDiskAttachment"
5741 uuid="9955e486-2f0b-432a-99e4-0ebbd338875e"
5742 />
5743
5744 <collection
5745 name="IHardDiskAttachmentCollection" type="IHardDiskAttachment"
5746 enumerator="IHardDiskAttachmentEnumerator"
5747 uuid="8f727842-bb77-45d4-92de-4ec14bf613c9"
5748 readonly="yes"
5749 />
5750
5751 <enumerator
5752 name="IHardDiskEnumerator" type="IHardDisk"
5753 uuid="b976f97b-cdb8-47e3-9860-084031cbd533"
5754 />
5755
5756 <collection
5757 name="IHardDiskCollection" type="IHardDisk"
5758 enumerator="IHardDiskEnumerator"
5759 uuid="43EAC2BC-5C61-40fa-BC38-46DE2C7DB6BB"
5760 readonly="yes"
5761 />
5762
5763 <interface
5764 name="IHardDisk" extends="$unknown"
5765 uuid="FD443EC1-000F-4F5B-9282-D72760A66916"
5766 wsmap="managed"
5767 >
5768 <desc>
5769 The IHardDisk interface represents a virtual hard disk drive
5770 used by virtual machines.
5771
5772 The virtual hard disk drive virtualizes the hard disk hardware and
5773 looks like a regular hard disk inside the virtual machine and
5774 the guest OS.
5775
5776 <h3>Storage Types</h3>
5777
5778 The <link to="HardDiskStorageType">storage type</link> of the
5779 virtual hard disk determines where and how it stores its data
5780 (sectors). Currently, the following storage types are supported:
5781
5782 <ul>
5783
5784 <li>
5785 <i>Virtual Disk Image (VDI)</i>, a regular file in the file system
5786 of the host OS (represented by the <link to="IVirtualDiskImage"/>
5787 interface). This file has a special format optimized so that unused
5788 sectors of data occupy much less space than on a physical hard disk.
5789 </li>
5790
5791 <li>
5792 <i>iSCSI Remote Disk</i>, a disk accessed via the Internet SCSI
5793 protocol over a TCP/IP network link (represented by the
5794 <link to="IISCSIHardDisk"/> interface).
5795 </li>
5796
5797 <li>
5798 <i>VMware VMDK image</i>, a regular file in the file system of the
5799 host OS (represented by the <link to="IVMDKImage"/> interface).
5800 Note that the regular file may be just a descriptor referring to
5801 further files, so don't make assumptions about the OS representation
5802 of a VMDK image.
5803 </li>
5804
5805 <li>
5806 <i>Custom HardDisk</i>, a disk accessed via a plugin which is loaded
5807 when the disk is accessed (represented by the
5808 <link to="ICustomHardDisk"/> interface).
5809 </li>
5810
5811 <li>
5812 <i>Virtual PC VHD Image</i>, a regular file in the file system of the
5813 host OS (represented by the <link to="IVHDImage"/> interface).
5814 </li>
5815
5816 </ul>
5817
5818 The storage type of the particular hard disk object is indicated by
5819 the <link to="#storageType"/> property.
5820
5821 Each storage type is represented by its own interface (as shown
5822 above), that allows to query and set properties and perform
5823 operations specific to that storage type. When an IHardDisk object
5824 reports it uses some particular storage type, it also guaranteed to
5825 support the corresponding interface which you can query. And vice
5826 versa, every object that supports a storage-specific interface, also
5827 supports IHardDisk.
5828
5829 <h3>Virtual Hard Disk Types</h3>
5830
5831 The <link to="HardDiskType">type</link> of the virtual hard disk
5832 determines how it is attached to the virtual machine when you call
5833 <link to="IMachine::attachHardDisk()"/> and what happens to it when
5834 a <link to="ISnapshot">snapshot</link> of the virtual machine is
5835 taken.
5836
5837 There are three types of virtual hard disks:
5838
5839 <ul>
5840 <li><i>Normal</i></li>
5841 <li><i>Immutable</i></li>
5842 <li><i>Writethrough</i></li>
5843 </ul>
5844
5845 The virtual disk type is indicated by the <link to="#type"/>
5846 property. Each of the above types is described in detail further
5847 down.
5848
5849 There is also a forth, "hidden" virtual disk type:
5850 <i>Differencing</i>. It is "hidden" because you cannot directly
5851 create hard disks of this type -- they are automatically created by
5852 VirtualBox when necessary.
5853
5854 <b>Differencing Hard Disks</b>
5855
5856 Unlike disks of other types (that are similar to real hard disks),
5857 the differencing hard disk does not store the full range of data
5858 sectors. Instead, it stores only a subset of sectors of some other
5859 disk that were changed since the differencing hard disk has been
5860 created. Thus, every differencing hard disk has a parent hard disk
5861 it is linked to, and represents the difference between the initial
5862 and the current hard disk state. A differencing hard disk can be
5863 linked to another differencing hard disk -- this way, differencing
5864 hard disks can form a branch of changes. More over, a given virtual
5865 hard disk can have more than one differencing hard disk linked to
5866 it.
5867
5868 A disk the differencing hard disk is linked to (or, in other words,
5869 based on) is called a <i>parent</i> hard disk and is accessible through
5870 the <link to="#parent"/> property. Similarly, all existing differencing
5871 hard disks for a given parent hard disk are called its <i>child</i> hard
5872 disks (and accessible through the <link to="#children"/> property).
5873
5874 All differencing hard disks use Virtual Disk Image files to store
5875 changed sectors. They have the <link to="#type"/> property set to
5876 Normal, but can be easily distinguished from normal hard disks using
5877 the <link to="#parent"/> property: all differencing hard disks have
5878 a parent, while all normal hard disks don't.
5879
5880 When the virtual machine makes an attempt to read a sector that is
5881 missing in a differencing hard disk, its parent is accessed to
5882 resolve the sector in question. This process continues until the
5883 sector is found, or until the root hard disk is encountered, which
5884 always contains all sectors. As a consequence,
5885
5886 <ul>
5887
5888 <li>
5889 The virtual hard disk geometry seen by the guest OS is
5890 always defined by the root hard disk.
5891 </li>
5892
5893 <li>
5894 All hard disks on a branch, up to the root, must be
5895 <link to="#accessible"/> for a given differencing hard disk in order
5896 to let it function properly when the virtual machine is
5897 running.
5898 </li>
5899
5900 </ul>
5901
5902 Differencing hard disks can be implicitly created by VirtualBox in
5903 the following cases:
5904
5905 <ul>
5906
5907 <li>
5908 When a hard disk is <i>indirectly</i> attached to the virtual
5909 machine using <link to="IMachine::attachHardDisk()"/>. In this
5910 case, all disk writes performed by the guest OS will go to the
5911 created diffferencing hard disk, as opposed to the
5912 <i>direct</i> attachment, where all changes are written to the
5913 attached hard disk itself.
5914 </li>
5915
5916 <li>
5917 When a <link to="ISnapshot">snapshot</link> of the virtual machine
5918 is taken. After that, disk writes to hard disks the differencing
5919 ones have been created for, will be directed to those differencing
5920 hard disks, to preserve the contents of the original disks.
5921 </li>
5922
5923 </ul>
5924
5925 Whether to create a differencing hard disk or not depends on the
5926 type of the hard disk attached to the virtual machine. This is
5927 explained below.
5928
5929 Note that in the current implementation, only the
5930 <link to="VirtualDiskImage"/> storage type is used to
5931 represent differencing hard disks. In other words, all
5932 differencing hard disks are <link to="IVirtualDiskImage"/>
5933 objects.
5934
5935 <b>Normal Hard Disks</b>
5936
5937 Normal hard disks are the most commonly used virtual hard disk. A
5938 normal hard disk is attached to the machine directly if it is not
5939 already attached to some other machine. Otherwise, an attempt to
5940 make an indirect attachment through a differencing hard disk will be
5941 made. This attempt will fail if the hard disk is attached to a
5942 virtual machine without snapshots (because it's impossible to create
5943 a differencing hard disk based on a hard disk that is subject to
5944 change).
5945
5946 When an indirect attachment takes place, in the simplest case, where
5947 the machine the hard disk is being attached to doesn't have
5948 snapshots, the differencing hard disk will be based on the normal
5949 hard disk being attached. Otherwise, the first (i.e. the most
5950 recent) descendant of the given normal hard disk found in the
5951 current snapshot branch (starting from the current snapshot and
5952 going up to the root) will be actually used as a base.
5953
5954 Note that when you detach an indirectly attached hard disk from the
5955 machine, the created differencing hard disk image is simply
5956 <b>deleted</b>, so <b>all changes are lost</b>. If you attach the
5957 same disk again, a clean differencing disk will be created based on
5958 the most recent child, as described above.
5959
5960 When taking a snapshot, the contents of all normal hard disks (and
5961 all differencing disks whose roots are normal hard disks) currently
5962 attached to the virtual machine is preserved by creating
5963 differencing hard disks based on them.
5964
5965 <b>Immutable Hard Disks</b>
5966
5967 Immutable hard disks can be used to provide a sort of read-only
5968 access. An immutable hard disk is always attached indirectly. The
5969 created differencing hard disk is automatically wiped out (recreated
5970 from scratch) every time you power off the virtual machine. Thus,
5971 the contents of the immutable disk remains unchanged between runs.
5972
5973 Detaching an immutable hard disk deletes the differencing disk
5974 created for it, with the same effect as in case with normal hard
5975 disks.
5976
5977 When taking a snapshot, the differencing part of the immutable
5978 hard disk is cloned (i.e. copied to a separate Virtual Disk Image
5979 file) without any changes. This is necessary to preserve the exact
5980 virtual machine state when you create an online snapshot.
5981
5982 <b>Writethrough Hard Disks</b>
5983
5984 Hard disks of this type are always attached directly. This means
5985 that every given writethrough hard disk can be attached only to one
5986 virtual machine at a time.
5987
5988 It is impossible to take a snapshot of a virtual machine with the
5989 writethrough hard disk attached, because taking a snapshot implies
5990 saving the execution state and preserving the contents of all hard
5991 disks, but writethrough hard disks cannot be preserved. Preserving
5992 hard disk contents is necessary to ensure the guest OS stored in the
5993 snapshot will get the same hard disk state when restored, which is
5994 especially important when it has open file handles or when there are
5995 cached files and directories stored in memory.
5996
5997 <h3>Creating, Opening and Registering Hard Disks</h3>
5998
5999 Non-differencing hard disks are either created from scratch using
6000 <link to="IVirtualBox::createHardDisk()"/> or opened from a VDI file
6001 using <link to="IVirtualBox::openVirtualDiskImage()"/> (only for hard
6002 disks using the VirtualDiskImage storage type). Once a hard disk is
6003 created or opened, it needs to be registered using
6004 <link to="IVirtualBox::registerHardDisk()"/> to make it available for
6005 attaching to virtual machines. See the documentation of individual
6006 interfaces for various storage types to get more information.
6007
6008 Differencing hard disks are never created explicitly and cannot
6009 be registered or unregistered; they are automatically registered
6010 upon creation and deregistered when deleted.
6011
6012 <h3>More about Indirect Hard Disk Attachments</h3>
6013
6014 Normally, when you attach a hard disk to the virtual machine, and then
6015 query the corresponding attachment using
6016 <link to="IMachine::getHardDisk()"/> or
6017 <link to="IMachine::hardDiskAttachments"/> you will get the same hard
6018 disk object, whose UUID you passed earlier to
6019 <link to="IMachine::attachHardDisk()"/>. However, when an indirect
6020 attachment takes place, calling <link to="IMachine::getHardDisk()"/>
6021 will return a differencing hard disk object, that is either based on the
6022 attached hard disk or on another differencing hard disk, the attached
6023 hard disk is eventually a root for (as described above). In both cases
6024 the returned hard disk object is the object the virtual machine actually
6025 uses to perform disk writes to.
6026
6027 Regardless of whether the attachment is direct or indirect, the
6028 <link to="#machineId"/> property of the attached disk will contain an
6029 UUID of the machine object <link to="IMachine::attachHardDisk()"/>
6030 has been called on.
6031
6032 Note that both <link to="IMachine::attachHardDisk()"/> and
6033 <link to="IMachine::detachHardDisk()"/> are <i>lazy</i> operations. In
6034 particular, this means that when an indirect attachment is made,
6035 differencing hard disks are not created until machine settings are
6036 committed using <link to="IMachine::saveSettings()"/>. Similarly, when a
6037 differencing hard disk is detached, it is not deleted until
6038 <link to="IMachine::saveSettings()"/> is called. Calling
6039 <link to="IMachine::discardSettings()"/> cancels all lazy attachments or
6040 detachments made since the last commit and effectively restores the
6041 previous set of hard disks.
6042
6043 <h3>Hard Disk Accessibility</h3>
6044
6045 The <link to="#accessible"/> attribute of the hard disk object
6046 defines the accessibility state of the respective hard disk storage
6047 (for example, the VDI file for IVirtualDiskImage objects). If the
6048 value of this attribute is <tt>false</tt> then some hard disk
6049 attributes may contain invalid or outdated values (for example, the
6050 virtual or the actual hard disk size) until a new accessibility
6051 check is done that returns <tt>true</tt> (see the attribute
6052 description for more details).
6053
6054 <note>
6055 Because of the possible slowness of the accessibility check,
6056 it is not implicitly performed upon the VirtualBox server startup
6057 (to prevent the application freeze). In partcular, this means that
6058 if you try to read hard disk properties that depend on the
6059 accessibility state without first reading the value of the
6060 <link to="#accessible"/> attribute and ensuring it's value is
6061 <tt>true</tt>, you will get wrong (zero) values.
6062 </note>
6063
6064 </desc>
6065
6066 <attribute name="id" type="uuid" readonly="yes">
6067 <desc>
6068
6069 UUID of the hard disk. For newly created hard disk objects,
6070 this value is a randomly generated UUID.
6071
6072 </desc>
6073 </attribute>
6074
6075 <attribute name="description" type="wstring">
6076 <desc>
6077
6078 Optional description of the hard disk. For a newly created hard
6079 disk, this value is <tt>null</tt>.
6080
6081 <note>For some storage types, reading this property is
6082 meaningless when <link to="#accessible"/> is <tt>false</tt>.
6083 Also, you cannot assign it a new value in this case.</note>
6084
6085 </desc>
6086 </attribute>
6087
6088 <attribute name="storageType" type="HardDiskStorageType" readonly="yes">
6089 <desc>
6090
6091 Storage type of this hard disk.
6092
6093 Storage type is defined when you open or create a new hard disk
6094 object.
6095
6096 </desc>
6097 </attribute>
6098
6099 <attribute name="location" type="wstring" readonly="yes">
6100 <desc>
6101
6102 Storage location of this hard disk. The returned string serves
6103 for informational purposes only. To access detailed information
6104 about the storage, query the appropriate storage-specific
6105 interface.
6106
6107 </desc>
6108 </attribute>
6109
6110 <attribute name="type" type="HardDiskType">
6111 <desc>
6112
6113 Type (behavior) of this hard disk. For a newly created or opened hard
6114 disk, this value is <link to="HardDiskType::Normal"/>.
6115
6116 <note>
6117 In the current implementation, this property can be
6118 changed only on an unregistered hard disk object. This may be
6119 changed later.
6120 </note>
6121
6122 </desc>
6123 </attribute>
6124
6125 <attribute name="parent" type="IHardDisk" readonly="yes">
6126 <desc>
6127
6128 Parent of this hard disk (a hard disk this one is directly based
6129 on).
6130
6131 Only differencing hard disks have parents, so a <tt>null</tt>
6132 object is returned for a hard disk of any other type.
6133 </desc>
6134 </attribute>
6135
6136 <attribute name="children" type="IHardDiskCollection" readonly="yes">
6137 <desc>
6138
6139 Children of this hard disk (all differencing hard disks for
6140 those this one is a parent). An empty collection is returned, if
6141 this hard disk doesn't have any children.
6142
6143 </desc>
6144 </attribute>
6145
6146 <attribute name="root" type="IHardDisk" readonly="yes">
6147 <desc>
6148
6149 Root hard disk of this hard disk. If this hard disk is a
6150 differencing hard disk, its root hard disk is the first disk on
6151 the branch. For all other types of hard disks, this property
6152 returns the hard disk object itself (i.e. the same object you
6153 read this property on).
6154
6155 </desc>
6156 </attribute>
6157
6158 <attribute name="accessible" type="boolean" readonly="yes">
6159 <desc>
6160
6161 Whether the hard disk storage is currently accessible or not.
6162 The storage, for example, can be unaccessible if it doesn't exist
6163 or if it is placed on a network resource that is not available
6164 by the time this attribute is read.
6165
6166 In the current implementation, the value of this property is
6167 also <tt>false</tt> if this hard disk is attached to a running
6168 virtual machine.
6169
6170 The accessibility check is performed automatically every time
6171 this attribute is read. You should keep it in mind that this check
6172 may be slow and can block the calling thread for a long time (for
6173 example, if the network resourse where the hard disk storage is
6174 located is down).
6175
6176 The following attributes of the hard disk object are considered
6177 to be invalid when this attribute is <tt>false</tt>:
6178 <ul>
6179 <li><link to="#size"/></li>
6180 <li><link to="#actualSize"/></li>
6181 </ul>
6182 Individual hard disk storage type interfaces may define
6183 additional attributes that depend on the accessibility state.
6184 </desc>
6185 </attribute>
6186
6187 <attribute name="allAccessible" type="boolean" readonly="yes">
6188 <desc>
6189
6190 Whether the whole hard disk branch, starting from this image and
6191 going through its ancestors up to the root, is accessible or
6192 not.
6193
6194 This property makes sense only for differencing hard disks. For
6195 all other types of hard disks it returns the same value as
6196 <link to="#accessible"/>.
6197
6198 </desc>
6199 </attribute>
6200
6201 <attribute name="lastAccessError" type="wstring" readonly="yes">
6202 <desc>
6203
6204 String describing the reason of inaccessibility of this hard
6205 disk after the last call to <link to="#accessible"/> that
6206 returned <tt>false</tt>. A <tt>null</tt> value of this property
6207 means that the last accessibility check returned <tt>true</tt>.
6208
6209 </desc>
6210 </attribute>
6211
6212 <attribute name="size" type="unsigned long long" readonly="yes">
6213 <desc>
6214
6215 Logical size of this hard disk (in megabytes), as reported to the
6216 guest OS running inside the vurtual machine this disk is
6217 attached to. The logical size is defined when the hard disk is
6218 created.
6219
6220 <note>Reading this property on a differencing hard disk will
6221 return the size of its root hard disk.</note>
6222
6223 <note>Reading this property is meaningless when
6224 <link to="#accessible"/> is <tt>false</tt></note>
6225
6226 </desc>
6227 </attribute>
6228
6229 <attribute name="actualSize" type="unsigned long long" readonly="yes">
6230 <desc>
6231
6232 Physical size of the storage used to store hard disk data (in
6233 bytes). This size is usually less than the logical size of the
6234 hard disk, depending on the storage type and on the size
6235 optimization method used for that storage.
6236
6237 <note>Reading this property is meaningless when
6238 <link to="#accessible"/> is <tt>false</tt></note>
6239
6240 </desc>
6241 </attribute>
6242
6243 <attribute name="machineId" type="uuid" readonly="yes">
6244 <desc>
6245
6246 UUID of the machine this hard disk is attached to (or a
6247 <tt>null</tt> UUID if it is not attached).
6248
6249 <note>Immutable hard disks are never attached directly, so this
6250 attribute is always <tt>null</tt> in this case.</note>
6251
6252 </desc>
6253 </attribute>
6254
6255 <attribute name="snapshotId" type="uuid" readonly="yes">
6256 <desc>
6257
6258 UUID of the <link to="ISnapshot">snapshot</link> this hard disk
6259 is associated with (or <tt>null</tt> UUID if it is not
6260 associated with any snapshot).
6261
6262 <note>
6263 This attribute is always <tt>null</tt> if <link to="#machineId"/>
6264 is <tt>null</tt>.
6265 </note>
6266
6267 <note>
6268 Writethrough hard disks are always attached directly and cannot be
6269 involved when taking snapshots, so this attribute is meaningless and
6270 therefore always <tt>null</tt>.
6271 </note>
6272
6273 </desc>
6274 </attribute>
6275
6276 <method name="cloneToImage">
6277
6278 <desc>
6279
6280 Starts creating a clone of this hard disk. The cloned hard disk
6281 will use the specified Virtual Disk Image file as a storage and
6282 will contain exactly the same sector data as the hard disk being
6283 cloned, except that a new UUID for the clone will be randomly
6284 generated.
6285
6286 The specified image file path can be absolute (full path) or
6287 relative to the <link to="IVirtualBox::homeFolder"> VirtualBox
6288 home directory</link>. If only a file name without any path is
6289 given, the <link to="ISystemProperties::defaultVDIFolder">
6290 default VDI folder</link> will be used as a path to the image
6291 file.
6292
6293 It is an error to use the object returned in the @a image
6294 parameter until the returned @a progress object reports success.
6295
6296 <note>In the current implementation, only non-differencing hard
6297 disks can be cloned.</note>
6298
6299 </desc>
6300
6301 <param name="filePath" type="wstring" dir="in">
6302 <desc>Path to a file where to store the cloned hard disk.</desc>
6303 </param>
6304 <param name="image" type="IVirtualDiskImage" dir="out">
6305 <desc>Cloned hard disk object.</desc>
6306 </param>
6307 <param name="progress" type="IProgress" dir="return">
6308 <desc>Progress object to track the operation completion.</desc>
6309 </param>
6310
6311 </method>
6312
6313 </interface>
6314
6315 <!--
6316 // IVirtualDiskImage
6317 /////////////////////////////////////////////////////////////////////////
6318 -->
6319
6320 <interface
6321 name="IVirtualDiskImage" extends="$unknown"
6322 uuid="a8265b5a-0d20-4a46-a02f-65693a4e8239"
6323 wsmap="managed"
6324 >
6325
6326 <desc>
6327 The IVirtualDiskImage interface represent a specific type of
6328 <link to="IHardDisk" /> that uses VDI image files.
6329
6330 The Virtual Disk Image (VDI) format is VirtualBox's native format for
6331 hard disk containers.
6332
6333 Objects that support this interface also support the
6334 <link to="IHardDisk"/> interface.
6335
6336 Hard disks using virtual disk images can be either opened using
6337 <link to="IVirtualBox::openHardDisk()"/> or created from
6338 scratch using <link to="IVirtualBox::createHardDisk()"/>.
6339
6340 When a new hard disk object is created from scratch, an image file for it
6341 is not automatically created. To do it, you need to specify a
6342 valid <link to="#filePath">file path</link>, and call
6343 <link to="#createFixedImage()"/> or <link to="#createDynamicImage()"/>.
6344 When it is done, the hard disk object can be registered by calling
6345 <link to="IVirtualBox::registerHardDisk()"/> and then
6346 <link to="IMachine::attachHardDisk()">attached</link> to
6347 virtual machines.
6348
6349 The <link to="IHardDisk::description">description</link> of the
6350 Virtual Disk Image is stored in the image file. For this reason,
6351 changing the value of this property requires the hard disk to be
6352 <link to="IHardDisk::accessible">accessible</link>. The description
6353 of a registered hard disk can be changed only if a virtual machine
6354 using it is not running.
6355
6356 </desc>
6357
6358 <attribute name="filePath" type="wstring">
6359 <desc>
6360
6361 Full file name of the virtual disk image of this hard disk. For
6362 newly created hard disk objects, this value is <tt>null</tt>.
6363
6364 When assigning a new path, it can be absolute (full path) or relative
6365 to the <link to="IVirtualBox::homeFolder"> VirtualBox home
6366 directory</link>. If only a file name without any path is given,
6367 the <link to="ISystemProperties::defaultVDIFolder"> default VDI
6368 folder</link> will be used as a path to the image file.
6369
6370 When reading this propery, a full path is always returned.
6371
6372 <note>
6373 This property cannot be changed when <link to="#created"/>
6374 returns <tt>true</tt>.
6375 </note>
6376
6377 </desc>
6378 </attribute>
6379
6380 <attribute name="created" type="boolean" readonly="yes">
6381 <desc>
6382
6383 Whether the virual disk image is created or not. For newly
6384 created hard disk objects or after a successful invocation of
6385 <link to="#deleteImage()"/>, this value is <tt>false</tt> until
6386 <link to="#createFixedImage()"/> or <link
6387 to="#createDynamicImage()"/> is called.
6388
6389 </desc>
6390 </attribute>
6391
6392 <method name="createDynamicImage">
6393
6394 <desc>
6395
6396 Starts creating a dymically expanding hard disk image in the
6397 background. The previous image associated with this object, if
6398 any, must be deleted using <link to="#deleteImage"/>, otherwise
6399 the operation will fail.
6400
6401 <note>After the returned progress object reports that the
6402 operation is complete, this hard disk object can be
6403 <link to="IVirtualBox::registerHardDisk()">registered</link>
6404 within this VirtualBox installation.</note>
6405
6406 </desc>
6407
6408 <param name="size" type="unsigned long long" dir="in">
6409 <desc>Maximum logical size of the hard disk in megabytes.</desc>
6410 </param>
6411 <param name="progress" type="IProgress" dir="return">
6412 <desc>Progress object to track the operation completion.</desc>
6413 </param>
6414
6415 </method>
6416
6417 <method name="createFixedImage">
6418 <desc>
6419
6420 Starts creating a fixed-size hard disk image in the background. The
6421 previous image, if any, must be deleted using
6422 <link to="#deleteImage"/>, otherwise the operation will fail.
6423
6424 <note>
6425 After the returned progress object reports that the
6426 operation is complete, this hard disk object can be
6427 <link to="IVirtualBox::registerHardDisk()">registered</link>
6428 within this VirtualBox installation.
6429 </note>
6430
6431 </desc>
6432
6433 <param name="size" type="unsigned long long" dir="in">
6434 <desc>Logical size of the hard disk in megabytes.</desc>
6435 </param>
6436 <param name="progress" type="IProgress" dir="return">
6437 <desc>Progress object to track the operation completion.</desc>
6438 </param>
6439
6440 </method>
6441
6442 <method name="deleteImage">
6443 <desc>
6444
6445 Deletes the existing hard disk image. The hard disk must not be
6446 registered within this VirtualBox installation, otherwise the
6447 operation will fail.
6448
6449 <note>
6450 After this operation succeeds, it will be impossible to
6451 register the hard disk until the image file is created
6452 again.
6453 </note>
6454
6455 <note>
6456 This operation is valid only for non-differencing hard disks, after
6457 they are unregistered using
6458 <link to="IVirtualBox::unregisterHardDisk()"/>.
6459 </note>
6460
6461 </desc>
6462 </method>
6463
6464 </interface>
6465
6466 <!--
6467 // IISCSIHardDisk
6468 /////////////////////////////////////////////////////////////////////////
6469 -->
6470
6471 <interface
6472 name="IISCSIHardDisk" extends="$unknown"
6473 uuid="003f6ca9-3257-4ef9-99c9-c66ce44576cb"
6474 wsmap="managed"
6475 >
6476
6477 <desc>
6478 THe IISCSIHardDisk interface represents a specific type of
6479 <link to="IHardDisk"/> that uses iSCSI.
6480
6481 The IISCSIHardDisk interface represents <link to="IHardDisk">virtual
6482 hard disks</link> that use the Internet SCSI (iSCSI) protocol to store
6483 hard disk data on remote machines.
6484
6485 Objects that support this interface also support the
6486 <link to="IHardDisk"/> interface.
6487
6488 iSCSI hard disks can be created using
6489 <link to="IVirtualBox::createHardDisk()"/>. When a new hard disk object
6490 is created, all its properties are uninitialized. After you assign some
6491 meaningful values to them, the hard disk object can be registered by
6492 calling <link to="IVirtualBox::registerHardDisk()"/> and
6493 then <link to="IMachine::attachHardDisk()">attached</link> to virtual
6494 machines.
6495
6496 The <link to="IHardDisk::description">description</link>
6497 of the iSCSI hard disk is stored in the VirtualBox
6498 configuration file, so it can be changed (at appropriate
6499 times) even when
6500 <link to="IHardDisk::accessible">accessible</link> returns
6501 <tt>false</tt>. However, the hard disk must not be
6502 attached to a running virtual machine.
6503
6504 <note>
6505 In the current imlementation, the type of all iSCSI hard disks
6506 is <link to="HardDiskType::Writethrough">Writethrough</link>
6507 and cannot be changed.
6508 </note>
6509
6510 </desc>
6511
6512 <attribute name="server" type="wstring">
6513 <desc>
6514
6515 iSCSI Server name (either a host name or an IP address). For
6516 newly created hard disk objects, this value is <tt>null</tt>.
6517
6518 </desc>
6519 </attribute>
6520
6521 <attribute name="port" type="unsigned short">
6522 <desc>
6523
6524 iSCSI Server port. For newly created hard disk objects, this
6525 value is <tt>0</tt>, which means the default port.
6526
6527 </desc>
6528 </attribute>
6529
6530 <attribute name="target" type="wstring">
6531 <desc>
6532
6533 iSCSI target name. For newly created hard disk objects, this
6534 value is <tt>null</tt>.
6535
6536 </desc>
6537 </attribute>
6538
6539 <attribute name="lun" type="unsigned long long">
6540 <desc>
6541
6542 Logical unit number for this iSCSI disk. For newly created hard
6543 disk objects, this value is <tt>0</tt>.
6544
6545 </desc>
6546 </attribute>
6547
6548 <attribute name="userName" type="wstring">
6549 <desc>
6550
6551 User name for accessing this iSCSI disk. For newly created hard
6552 disk objects, this value is <tt>null</tt>.
6553
6554 </desc>
6555 </attribute>
6556
6557 <attribute name="password" type="wstring">
6558 <desc>
6559
6560 User password for accessing this iSCSI disk. For newly created
6561 hard disk objects, this value is <tt>null</tt>.
6562
6563 </desc>
6564 </attribute>
6565
6566 </interface>
6567
6568 <!--
6569 // IVMDKImage
6570 /////////////////////////////////////////////////////////////////////////
6571 -->
6572
6573 <interface
6574 name="IVMDKImage" extends="$unknown"
6575 uuid="178398f5-8559-4fee-979e-420af5b53eef"
6576 wsmap="managed"
6577 >
6578 <desc>
6579 The IVMDKImage interface represents a specific type of
6580 <link to="IHardDisk"/> that uses VMDK image files.
6581
6582 The Virtual Machine Disk (VMDK) format is the industry standard format
6583 for virtual hard disk image files, which VirtualBox supports besides its
6584 own native VDI format.
6585
6586 Objects that support this interface also support the
6587 <link to="IHardDisk"/> interface.
6588
6589 Hard disks using VMDK images can be either opened using
6590 <link to="IVirtualBox::openHardDisk()"/> or created from
6591 scratch using <link to="IVirtualBox::createHardDisk()"/>.
6592
6593 When a new hard disk object is created from scratch, an image file for it
6594 is not automatically created. To do it, you need to specify a
6595 valid <link to="#filePath">file path</link>, and call
6596 <link to="#createFixedImage()"/> or <link to="#createDynamicImage()"/>.
6597 When it is done, the hard disk object can be registered by calling
6598 <link to="IVirtualBox::registerHardDisk()"/> and then
6599 <link to="IMachine::attachHardDisk()">attached</link> to
6600 virtual machines.
6601
6602 The <link to="IHardDisk::description">description</link>
6603 of the VMDK hard disk is stored in the VirtualBox
6604 configuration file, so it can be changed (at appropriate
6605 times) even when
6606 <link to="IHardDisk::accessible">accessible</link> returns
6607 <tt>false</tt>. However, the hard disk must not be
6608 attached to a running virtual machine.
6609
6610 <note>
6611 In the current imlementation, the type of all VMDK hard disks
6612 is <link to="HardDiskType::Writethrough">Writethrough</link> and cannot
6613 be changed.
6614 </note>
6615
6616 </desc>
6617
6618 <attribute name="filePath" type="wstring">
6619 <desc>
6620
6621 Full file name of the VMDK image of this hard disk. For
6622 newly created hard disk objects, this value is <tt>null</tt>.
6623
6624 When assigning a new path, it can be absolute (full path) or relative
6625 to the <link to="IVirtualBox::homeFolder"> VirtualBox home
6626 directory</link>. If only a file name without any path is given,
6627 the <link to="ISystemProperties::defaultVDIFolder"> default VDI
6628 folder</link> will be used as a path to the image file.
6629
6630 When reading this propery, a full path is always returned.
6631
6632 <note>
6633 This property cannot be changed when <link to="#created"/>
6634 returns <tt>true</tt>.
6635 </note>
6636
6637 </desc>
6638 </attribute>
6639
6640 <attribute name="created" type="boolean" readonly="yes">
6641 <desc>
6642
6643 Whether the virual disk image is created or not. For newly created
6644 hard disk objects or after a successful invocation of
6645 <link to="#deleteImage()"/>, this value is <tt>false</tt> until
6646 <link to="#createFixedImage()"/> or <link to="#createDynamicImage()"/>
6647 is called.
6648
6649 </desc>
6650 </attribute>
6651
6652 <method name="createDynamicImage">
6653
6654 <desc>
6655
6656 Starts creating a dymically expanding hard disk image in the
6657 background. The previous image associated with this object, if
6658 any, must be deleted using <link to="#deleteImage"/>, otherwise
6659 the operation will fail.
6660
6661 <note>
6662 After the returned progress object reports that the
6663 operation is complete, this hard disk object can be
6664 <link to="IVirtualBox::registerHardDisk()">registered</link> within
6665 this VirtualBox installation.
6666 </note>
6667
6668 </desc>
6669
6670 <param name="size" type="unsigned long long" dir="in">
6671 <desc>Maximum logical size of the hard disk in megabytes.</desc>
6672 </param>
6673 <param name="progress" type="IProgress" dir="return">
6674 <desc>Progress object to track the operation completion.</desc>
6675 </param>
6676
6677 </method>
6678
6679 <method name="createFixedImage">
6680 <desc>
6681
6682 Starts creating a fixed-size hard disk image in the background. The
6683 previous image, if any, must be deleted using
6684 <link to="#deleteImage"/>, otherwise the operation will fail.
6685
6686 <note>
6687 After the returned progress object reports that the
6688 operation is complete, this hard disk object can be
6689 <link to="IVirtualBox::registerHardDisk()">registered</link> within
6690 this VirtualBox installation.
6691 </note>
6692
6693 </desc>
6694
6695 <param name="size" type="unsigned long long" dir="in">
6696 <desc>Logical size of the hard disk in megabytes.</desc>
6697 </param>
6698 <param name="progress" type="IProgress" dir="return">
6699 <desc>Progress object to track the operation completion.</desc>
6700 </param>
6701
6702 </method>
6703
6704 <method name="deleteImage">
6705 <desc>
6706
6707 Deletes the existing hard disk image. The hard disk must not be
6708 registered within this VirtualBox installation, otherwise the
6709 operation will fail.
6710
6711 <note>
6712 After this operation succeeds, it will be impossible to register the
6713 hard disk until the image file is created again.
6714 </note>
6715
6716 <note>
6717 This operation is valid only for non-differencing hard disks, after
6718 they are unregistered using
6719 <link to="IVirtualBox::unregisterHardDisk()"/>.
6720 </note>
6721
6722 </desc>
6723 </method>
6724
6725 </interface>
6726
6727 <!--
6728 // ICustomHardDisk
6729 /////////////////////////////////////////////////////////////////////////
6730 -->
6731
6732 <interface
6733 name="ICustomHardDisk" extends="$unknown"
6734 uuid="a7b0236d-3ff4-47c0-a4aa-ddc4ddc1141a"
6735 wsmap="managed"
6736 >
6737 <desc>
6738 The ICustomHardDisk interface represents a specific type of
6739 <link to="IHardDisk" /> that is supported through a third-party plugin.
6740
6741 This interface allows to add support for custom hard disk formats to
6742 VirtualBox.
6743
6744 Objects that support this interface also support the
6745 <link to="IHardDisk"/> interface.
6746
6747 Hard disks using custom hard disk formats can be either opened using
6748 <link to="IVirtualBox::openHardDisk()"/> or created from scratch using
6749 <link to="IVirtualBox::createHardDisk()"/>.
6750
6751 When a new hard disk object is created from scratch, an image file for
6752 it is not automatically created. To do it, you need to specify a
6753 valid <link to="#location">location</link>, and call
6754 <link to="#createFixedImage()"/> or <link to="#createDynamicImage()"/>.
6755 When it is done, the hard disk object can be registered by calling
6756 <link to="IVirtualBox::registerHardDisk()"/> and then
6757 <link to="IMachine::attachHardDisk()">attached</link> to
6758 virtual machines.
6759
6760 The <link to="IHardDisk::description">description</link>
6761 of the hard disk is stored in the VirtualBox
6762 configuration file, so it can be changed (at appropriate
6763 times) even when
6764 <link to="IHardDisk::accessible">accessible</link> returns
6765 <tt>false</tt>. However, the hard disk must not be
6766 attached to a running virtual machine.
6767
6768 </desc>
6769
6770 <attribute name="location" type="wstring">
6771 <desc>
6772
6773 Location of this custom hard disk. For
6774 newly created hard disk objects, this value is <tt>null</tt>.
6775
6776 The format of the location string is plugin-dependent. In case if the
6777 plugin uses a regular file in the local file system to store hard disk
6778 data, then the location is a file path and the following rules apply:
6779 <ul>
6780 <li>
6781 when assigning a new path, it must be absolute (full path) or
6782 relative to the <link to="IVirtualBox::homeFolder"> VirtualBox
6783 home directory</link>. If only a file name without any path is
6784 given, the <link to="ISystemProperties::defaultVDIFolder"> default
6785 VDI folder</link> will be used as a path to the image file.
6786 </li>
6787 <li>
6788 When reading this propery, a full path is always returned.
6789 </li>
6790 </ul>
6791
6792 <note>
6793 This property cannot be changed when <link to="#created"/>
6794 returns <tt>true</tt>.
6795 </note>
6796
6797 </desc>
6798 </attribute>
6799
6800 <attribute name="format" type="wstring" readonly="yes">
6801 <desc>
6802
6803 The plugin name of the image file.
6804
6805 </desc>
6806 </attribute>
6807
6808 <attribute name="created" type="boolean" readonly="yes">
6809 <desc>
6810
6811 Whether the virual disk image is created or not. For newly created
6812 hard disk objects or after a successful invocation of
6813 <link to="#deleteImage()"/>, this value is <tt>false</tt> until
6814 <link to="#createFixedImage()"/> or <link to="#createDynamicImage()"/>
6815 is called.
6816
6817 </desc>
6818 </attribute>
6819
6820 <method name="createDynamicImage">
6821
6822 <desc>
6823
6824 Starts creating a dymically expanding hard disk image in the
6825 background. The previous image associated with this object, if
6826 any, must be deleted using <link to="#deleteImage"/>, otherwise
6827 the operation will fail.
6828
6829 <note>
6830 After the returned progress object reports that the
6831 operation is complete, this hard disk object can be
6832 <link to="IVirtualBox::registerHardDisk()">registered</link> within
6833 this VirtualBox installation.
6834 </note>
6835
6836 </desc>
6837
6838 <param name="size" type="unsigned long long" dir="in">
6839 <desc>Maximum logical size of the hard disk in megabytes.</desc>
6840 </param>
6841 <param name="progress" type="IProgress" dir="return">
6842 <desc>Progress object to track the operation completion.</desc>
6843 </param>
6844
6845 </method>
6846
6847 <method name="createFixedImage">
6848 <desc>
6849
6850 Starts creating a fixed-size hard disk image in the background. The
6851 previous image, if any, must be deleted using
6852 <link to="#deleteImage"/>, otherwise the operation will fail.
6853
6854 <note>
6855 After the returned progress object reports that the
6856 operation is complete, this hard disk object can be
6857 <link to="IVirtualBox::registerHardDisk()">registered</link> within
6858 this VirtualBox installation.
6859 </note>
6860
6861 </desc>
6862
6863 <param name="size" type="unsigned long long" dir="in">
6864 <desc>Logical size of the hard disk in megabytes.</desc>
6865 </param>
6866 <param name="progress" type="IProgress" dir="return">
6867 <desc>Progress object to track the operation completion.</desc>
6868 </param>
6869
6870 </method>
6871
6872 <method name="deleteImage">
6873 <desc>
6874
6875 Deletes the existing hard disk image. The hard disk must not be
6876 registered within this VirtualBox installation, otherwise the
6877 operation will fail.
6878
6879 <note>
6880 After this operation succeeds, it will be impossible to register the
6881 hard disk until the image file is created again.
6882 </note>
6883
6884 <note>
6885 This operation is valid only for non-differencing hard disks, after
6886 they are unregistered using
6887 <link to="IVirtualBox::unregisterHardDisk()"/>.
6888 </note>
6889
6890 </desc>
6891 </method>
6892
6893 </interface>
6894
6895 <!--
6896 // IVHDImage
6897 /////////////////////////////////////////////////////////////////////////
6898 -->
6899
6900 <interface
6901 name="IVHDImage" extends="$unknown"
6902 uuid="163b88c3-7552-424a-8205-daf17a004747"
6903 wsmap="managed"
6904 >
6905 <desc>
6906
6907 The IVHDImage interface represents <link to="IHardDisk">virtual hard
6908 disks</link> that use Virtual PC Virtual Machine Disk image files to store
6909 hard disk data.
6910
6911 Hard disks using VHD images can be either opened using
6912 <link to="IVirtualBox::openHardDisk()"/> or created from
6913 scratch using <link to="IVirtualBox::createHardDisk()"/>.
6914
6915 Objects that support this interface also support the
6916 <link to="IHardDisk"/> interface.
6917
6918 When a new hard disk object is created from scatch, an image file for it
6919 is not automatically created. To do it, you need to specify a
6920 valid <link to="#filePath">file path</link>, and call
6921 <link to="#createFixedImage()"/> or <link to="#createDynamicImage()"/>.
6922 When it is done, the hard disk object can be registered by calling
6923 <link to="IVirtualBox::registerHardDisk()"/> and then
6924 <link to="IMachine::attachHardDisk()">attached</link> to
6925 virtual machines.
6926
6927 The <link to="IHardDisk::description">description</link>
6928 of the VHD hard disk is stored in the VirtualBox
6929 configuration file, so it can be changed (at appropriate
6930 times) even when
6931 <link to="IHardDisk::accessible">accessible</link> returns
6932 <tt>false</tt>. However, the hard disk must not be
6933 attached to a running virtual machine.
6934
6935 <note>
6936 In the current imlementation, the type of all VHD hard disks
6937 is <link to="HardDiskType::Writethrough">Writethrough</link> and cannot
6938 be changed.
6939 </note>
6940
6941 </desc>
6942
6943 <attribute name="filePath" type="wstring">
6944 <desc>
6945
6946 Full file name of the VHD image of this hard disk. For
6947 newly created hard disk objects, this value is <tt>null</tt>.
6948
6949 When assigning a new path, it can be absolute (full path) or relative
6950 to the <link to="IVirtualBox::homeFolder"> VirtualBox home
6951 directory</link>. If only a file name without any path is given,
6952 the <link to="ISystemProperties::defaultVDIFolder"> default VDI
6953 folder</link> will be used as a path to the image file.
6954
6955 When reading this propery, a full path is always returned.
6956
6957 <note>
6958 This property cannot be changed when <link to="#created"/>
6959 returns <tt>true</tt>. In this case, the specified file name can be
6960 absolute (full path) or relative to
6961 the <link to="IVirtualBox::homeFolder"> VirtualBox home
6962 directory</link>. If only a file name without any path is given,
6963 the <link to="ISystemProperties::defaultVDIFolder"> default VDI
6964 folder</link> will be used as a path to the image file.
6965 </note>
6966
6967 </desc>
6968 </attribute>
6969
6970 <attribute name="created" type="boolean" readonly="yes">
6971 <desc>
6972
6973 Whether the virual disk image is created or not. For newly created
6974 hard disk objects or after a successful invocation of
6975 <link to="#deleteImage()"/>, this value is <tt>false</tt> until
6976 <link to="#createFixedImage()"/> or <link to="#createDynamicImage()"/>
6977 is called.
6978
6979 </desc>
6980 </attribute>
6981
6982 <method name="createDynamicImage">
6983
6984 <desc>
6985
6986 Starts creating a dymically expanding hard disk image in the
6987 background. The previous image associated with this object, if
6988 any, must be deleted using <link to="#deleteImage"/>, otherwise
6989 the operation will fail.
6990
6991 <note>
6992 After the returned progress object reports that the
6993 operation is complete, this hard disk object can be
6994 <link to="IVirtualBox::registerHardDisk()">registered</link> within
6995 this VirtualBox installation.
6996 </note>
6997
6998 </desc>
6999
7000 <param name="size" type="unsigned long long" dir="in">
7001 <desc>Maximum logical size of the hard disk in megabytes.</desc>
7002 </param>
7003 <param name="progress" type="IProgress" dir="return">
7004 <desc>Progress object to track the operation completion.</desc>
7005 </param>
7006
7007 </method>
7008
7009 <method name="createFixedImage">
7010 <desc>
7011
7012 Starts creating a fixed-size hard disk image in the background. The
7013 previous image, if any, must be deleted using
7014 <link to="#deleteImage"/>, otherwise the operation will fail.
7015
7016 <note>
7017 After the returned progress object reports that the
7018 operation is complete, this hard disk object can be
7019 <link to="IVirtualBox::registerHardDisk()">registered</link> within
7020 this VirtualBox installation.
7021 </note>
7022
7023 </desc>
7024
7025 <param name="size" type="unsigned long long" dir="in">
7026 <desc>Logical size of the hard disk in megabytes.</desc>
7027 </param>
7028 <param name="progress" type="IProgress" dir="return">
7029 <desc>Progress object to track the operation completion.</desc>
7030 </param>
7031
7032 </method>
7033
7034 <method name="deleteImage">
7035 <desc>
7036
7037 Deletes the existing hard disk image. The hard disk must not be
7038 registered within this VirtualBox installation, otherwise the
7039 operation will fail.
7040
7041 <note>
7042 After this operation succeeds, it will be impossible to register the
7043 hard disk until the image file is created again.
7044 </note>
7045
7046 <note>
7047 This operation is valid only for non-differencing hard disks, after
7048 they are unregistered using
7049 <link to="IVirtualBox::unregisterHardDisk()"/>.
7050 </note>
7051
7052 </desc>
7053 </method>
7054
7055 </interface>
7056
7057 <!--
7058 // IDVDImage
7059 /////////////////////////////////////////////////////////////////////////
7060 -->
7061
7062 <enumerator
7063 name="IDVDImageEnumerator" type="IDVDImage"
7064 uuid="9BE77C8D-E1BE-4bf2-A67B-B4DD3D2B0F28"
7065 />
7066
7067 <collection
7068 name="IDVDImageCollection" type="IDVDImage"
7069 enumerator="IDVDImageEnumerator"
7070 uuid="AE7053FA-ADD2-4ea4-AFCF-24D5F8DDED64"
7071 readonly="yes"
7072 >
7073 <method name="findByPath">
7074 <desc>
7075 Searches this collection for a DVD image with the given disk path.
7076 <note>
7077 The method returns an error if the given name does not
7078 correspond to any DVD image in the collection.
7079 </note>
7080 </desc>
7081 <param name="path" type="wstring" dir="in">
7082 <desc>Name of the DVD image's file system location.</desc>
7083 </param>
7084 <param name="image" type="IDVDImage" dir="return">
7085 <desc>Found DVD image object</desc>
7086 </param>
7087 </method>
7088 </collection>
7089
7090 <interface
7091 name="IDVDImage" extends="$unknown"
7092 uuid="140FFF03-E479-4194-8562-ABC4F8171009"
7093 wsmap="managed"
7094 >
7095 <desc>
7096
7097 The IDVDImage interface represents a file containing the image
7098 of the DVD or CD disk.
7099
7100 <h3>Image Accessibility</h3>
7101
7102 The <link to="#accessible"/> attribute of the image object
7103 defines the accessibility state of the image file. If the
7104 value of this attribute is <tt>false</tt> then some image
7105 attributes may contain invalid or outdated values (for example, the
7106 the image file size) until a new accessibility
7107 check is done that returns <tt>true</tt>.
7108
7109 <note>
7110 Because of the possible slowness of the accessibility check,
7111 it is not implicitly performed upon the VirtualBox server startup
7112 (to prevent the application freeze). In partcular, this means that
7113 if you try to read image properties that depend on the
7114 accessibility state without first reading the value of the
7115 <link to="#accessible"/> attribute and ensuring it's value is
7116 <tt>true</tt>, you will get wrong (zero) values.
7117 </note>
7118
7119 </desc>
7120 <attribute name="id" type="uuid" readonly="yes">
7121 <desc>UUID of the CD/DVD image.</desc>
7122 </attribute>
7123
7124 <attribute name="filePath" type="wstring" readonly="yes">
7125 <desc>Full file name of the CD/DVD image.</desc>
7126 </attribute>
7127
7128 <attribute name="accessible" type="boolean" readonly="yes">
7129 <desc>
7130
7131 Whether the CD/DVD image is currently accessible or not.
7132 The image, for example, can be unaccessible if it is placed
7133 on a network share that is not available by the time
7134 this property is read.
7135
7136 The accessibility check is performed automatically every time
7137 this attribute is read. You should keep it in mind that this check
7138 may be slow and can block the calling thread for a long time (for
7139 example, if the network share where the image is located is down).
7140
7141 The following attributes of the image object are considered
7142 to be invalid when this attribute is <tt>false</tt>:
7143 <ul>
7144 <li><link to="#size"/></li>
7145 </ul>
7146
7147 </desc>
7148 </attribute>
7149
7150 <attribute name="size" type="unsigned long long" readonly="yes">
7151 <desc>Size of the ISO image in bytes.</desc>
7152 </attribute>
7153
7154 </interface>
7155
7156
7157 <!--
7158 // IDVDDrive
7159 /////////////////////////////////////////////////////////////////////////
7160 -->
7161
7162 <interface
7163 name="IDVDDrive" extends="$unknown"
7164 uuid="d9bd101a-8079-4fb9-bad1-31bf32482b75"
7165 wsmap="managed"
7166 >
7167 <desc>
7168 The IDVDDrive interface represents the virtual CD/DVD drive of the
7169 virtual machine. Used in <link to="IMachine::DVDDrive"/>.
7170 </desc>
7171 <attribute name="state" type="DriveState" readonly="yes">
7172 <desc>Current drive state.</desc>
7173 </attribute>
7174
7175 <attribute name="passthrough" type="boolean">
7176 <desc>
7177 When a host drive is mounted and passthrough is enabled
7178 the guest will be able to directly send SCSI commands to
7179 the host drive. This enables the guest to use CD/DVD writers
7180 but is potentially dangerous.
7181 </desc>
7182 </attribute>
7183
7184 <method name="mountImage">
7185 <desc>Mounts the specified image.</desc>
7186 <param name="imageId" type="uuid" dir="in"/>
7187 </method>
7188
7189 <method name="captureHostDrive">
7190 <desc>Captures the specified host drive.</desc>
7191 <param name="drive" type="IHostDVDDrive" dir="in"/>
7192 </method>
7193
7194 <method name="unmount">
7195 <desc>Unmounts the currently mounted image/device.</desc>
7196 </method>
7197
7198 <method name="getImage">
7199 <desc>Gets the currently mounted image ID.</desc>
7200 <param name="image" type="IDVDImage" dir="return"/>
7201 </method>
7202
7203 <method name="getHostDrive">
7204 <desc>Gets the currently mounted image ID.</desc>
7205 <param name="drive" type="IHostDVDDrive" dir="return"/>
7206 </method>
7207
7208 </interface>
7209
7210 <!--
7211 // IFloppyImage
7212 /////////////////////////////////////////////////////////////////////////
7213 -->
7214
7215 <enumerator
7216 name="IFloppyImageEnumerator" type="IFloppyImage"
7217 uuid="902C4089-76B7-41f1-91E8-49A261A28A2C"
7218 />
7219
7220 <collection
7221 name="IFloppyImageCollection" type="IFloppyImage"
7222 enumerator="IFloppyImageEnumerator"
7223 uuid="327A8928-8572-446e-AD9A-18FE30E81F3F"
7224 readonly="yes">
7225 <method name="findByPath">
7226 <desc>
7227 Searches this collection for a floppy image with the given disk path.
7228 <note>
7229 The method returns an error if the given name does not
7230 correspond to any floppy image in the collection.
7231 </note>
7232 </desc>
7233 <param name="path" type="wstring" dir="in">
7234 <desc>Name of the floppy image's file system location.</desc>
7235 </param>
7236 <param name="image" type="IFloppyImage" dir="return">
7237 <desc>Found Floppy image object</desc>
7238 </param>
7239 </method>
7240 </collection>
7241
7242 <interface
7243 name="IFloppyImage" extends="$unknown"
7244 uuid="CC696755-EA98-4ffe-9DC5-C003047034AB"
7245 wsmap="managed"
7246 >
7247 <desc>
7248
7249 The IFloppyImage interface represents a file containing the image
7250 of a floppy disk.
7251
7252 <h3>Image Accessibility</h3>
7253
7254 The <link to="#accessible"/> attribute of the image object
7255 defines the accessibility state of the image file. If the
7256 value of this attribute is <tt>false</tt> then some image
7257 attributes may contain invalid or outdated values (for example, the
7258 the image file size) until a new accessibility
7259 check is done that returns <tt>true</tt>.
7260
7261 <note>
7262 Because of the possible slowness of the accessibility check,
7263 it is not implicitly performed upon the VirtualBox server startup
7264 (to prevent the application freeze). In partcular, this means that
7265 if you try to read image properties that depend on the
7266 accessibility state without first reading the value of the
7267 <link to="#accessible"/> attribute and ensuring it's value is
7268 <tt>true</tt>, you will get wrong (zero) values.
7269 </note>
7270
7271 </desc>
7272 <attribute name="id" type="uuid" readonly="yes">
7273 <desc>UUID of the floppy image.</desc>
7274 </attribute>
7275
7276 <attribute name="filePath" type="wstring" readonly="yes">
7277 <desc>Full file name of the floppy image.</desc>
7278 </attribute>
7279
7280 <attribute name="accessible" type="boolean" readonly="yes">
7281 <desc>
7282
7283 Whether the floppy image is currently accessible or not.
7284 The image, for example, can be unaccessible if it is placed
7285 on a network share that is not available by the time
7286 this property is read.
7287
7288 The accessibility check is performed automatically every time
7289 this attribute is read. You should keep it in mind that this check
7290 may be slow and can block the calling thread for a long time (for
7291 example, if the network share where the image is located is down).
7292
7293 The following attributes of the image object are considered
7294 to be invalid when this attribute is <tt>false</tt>:
7295 <ul>
7296 <li><link to="#size"/></li>
7297 </ul>
7298
7299 </desc>
7300 </attribute>
7301
7302 <attribute name="size" type="unsigned long" readonly="yes">
7303 <desc>Size of the floppy image in bytes.</desc>
7304 </attribute>
7305
7306 </interface>
7307
7308
7309 <!--
7310 // IFloppyDrive
7311 /////////////////////////////////////////////////////////////////////////
7312 -->
7313
7314 <interface
7315 name="IFloppyDrive" extends="$unknown"
7316 uuid="E9318F71-78D2-4b00-863C-B7CB0030A2D9"
7317 wsmap="managed"
7318 >
7319 <desc>
7320 The IFloppyDrive interface represents the virtual floppy drive of the
7321 virtual machine. Used in <link to="IMachine::FloppyDrive" />.
7322 </desc>
7323
7324 <attribute name="enabled" type="boolean">
7325 <desc>
7326 Flag whether the floppy drive is enabled. If it is disabled,
7327 the floppy drive will not be reported to the guest.
7328 </desc>
7329 </attribute>
7330
7331 <attribute name="state" type="DriveState" readonly="yes">
7332 <desc>Current drive state.</desc>
7333 </attribute>
7334
7335 <method name="mountImage">
7336 <desc>Mounts the specified image.</desc>
7337 <param name="imageId" type="uuid" dir="in"/>
7338 </method>
7339
7340 <method name="captureHostDrive">
7341 <desc>Captures the specified host drive.</desc>
7342 <param name="drive" type="IHostFloppyDrive" dir="in"/>
7343 </method>
7344
7345 <method name="unmount">
7346 <desc>Unmounts the currently mounted image/device.</desc>
7347 </method>
7348
7349 <method name="getImage">
7350 <desc>Gets the currently mounted image ID.</desc>
7351 <param name="image" type="IFloppyImage" dir="return"/>
7352 </method>
7353
7354 <method name="getHostDrive">
7355 <desc>Gets the currently mounted image ID.</desc>
7356 <param name="drive" type="IHostFloppyDrive" dir="return"/>
7357 </method>
7358
7359 </interface>
7360
7361
7362 <!--
7363 // IKeyboard
7364 /////////////////////////////////////////////////////////////////////////
7365 -->
7366
7367 <interface
7368 name="IKeyboard" extends="$unknown"
7369 uuid="FD443EC1-000A-4F5B-9282-D72760A66916"
7370 wsmap="managed"
7371 >
7372 <desc>
7373 The IKeyboard interface represents the virtual machine's keyboard. Used
7374 in <link to="IConsole::keyboard"/>.
7375
7376 Through this interface, the virtual machine's virtual keyboard can be controlled. One
7377 can send keystrokes to the virtual machine and send the Ctrl-Alt-Del sequence to it.
7378 </desc>
7379 <method name="putScancode">
7380 <desc>Sends a scancode to the keyboard.</desc>
7381 <param name="scancode" type="long" dir="in"/>
7382 </method>
7383
7384 <method name="putScancodes">
7385 <desc>Sends an array of scancode to the keyboard.</desc>
7386 <param name="scancodes" type="long" dir="in" array="count"/>
7387 <param name="count" type="unsigned long" dir="in"/>
7388 <param name="codesStored" type="unsigned long" dir="return"/>
7389 </method>
7390
7391 <method name="putCAD">
7392 <desc>Sends the Ctrl-Alt-Del sequence to the keyboard.</desc>
7393 </method>
7394
7395 </interface>
7396
7397
7398 <!--
7399 // IMouse
7400 /////////////////////////////////////////////////////////////////////////
7401 -->
7402
7403 <enum
7404 name="MouseButtonState"
7405 uuid="03131722-2EC5-4173-9794-0DACA46673EF"
7406 >
7407 <desc>
7408 Mouse button state.
7409 </desc>
7410
7411 <const name="LeftButton" value="0x01"/>
7412 <const name="RightButton" value="0x02"/>
7413 <const name="MiddleButton" value="0x04"/>
7414 <const name="WheelUp" value="0x08"/>
7415 <const name="WheelDown" value="0x10"/>
7416 <const name="MouseStateMask" value="0x1F"/>
7417 </enum>
7418
7419 <interface
7420 name="IMouse" extends="$unknown"
7421 uuid="FD443EC1-0006-4F5B-9282-D72760A66916"
7422 wsmap="managed"
7423 >
7424 <desc>
7425 The IMouse interface represents the virtual machine's mouse. Used in
7426 <link to="IConsole::mouse"/>.
7427
7428 Through this interface, the virtual machine's virtual mouse can be
7429 controlled.
7430 </desc>
7431
7432 <attribute name="absoluteSupported" type="boolean" readonly="yes">
7433 <desc>
7434 Whether the guest OS supports absolute mouse pointer positioning
7435 or not.
7436 <note>
7437 VirtualBox Guest Tools need to be installed to the guest OS
7438 in order to enable absolute mouse positioning support.
7439 You can use the <link to="IConsoleCallback::onMouseCapabilityChange"/>
7440 callback to be instantly informed about changes of this attribute
7441 during virtual machine execution.
7442 </note>
7443 <see><link to="#putMouseEventAbsolute"/></see>
7444 </desc>
7445 </attribute>
7446
7447 <method name="putMouseEvent">
7448 <desc>
7449 Initiates a mouse event using relative pointer movements
7450 along x and y axis.
7451 </desc>
7452
7453 <param name="dx" type="long" dir="in">
7454 <desc>
7455 Amout of pixels the mouse should move to the right.
7456 Negative values move the mouse to the left.
7457 </desc>
7458 </param>
7459 <param name="dy" type="long" dir="in">
7460 <desc>
7461 Amout of pixels the mouse should move downwards.
7462 Negative values move the mouse upwards.
7463 </desc>
7464 </param>
7465 <param name="dz" type="long" dir="in">
7466 <desc>
7467 Amount of mouse wheel moves.
7468 Positive values describe clockwize wheel rotations,
7469 negative values describe counterclockwise rotations.
7470 </desc>
7471 </param>
7472 <param name="buttonState" type="long" dir="in">
7473 <desc>
7474 The current state of mouse buttons. Every bit represents
7475 a mouse button as follows:
7476 <table>
7477 <tr><td>Bit 0 (<tt>0x01</tt>)</td><td>left mouse button</td></tr>
7478 <tr><td>Bit 1 (<tt>0x02</tt>)</td><td>right mouse button</td></tr>
7479 <tr><td>Bit 2 (<tt>0x04</tt>)</td><td>middle mouse button</td></tr>
7480 </table>
7481 A value of <tt>1</tt> means the corresponding button is pressed.
7482 otherwise it is released.
7483 </desc>
7484 </param>
7485 </method>
7486
7487 <method name="putMouseEventAbsolute">
7488 <desc>
7489 Positions the mouse pointer using absolute x and y coordinates.
7490 These coordinates are expressed in pixels and
7491 start from <tt>[1,1]</tt> which corresponds to the top left
7492 corner of the virtual display.
7493
7494 <note>
7495 This method will have effect only if absolute mouse
7496 positioning is supported by the guest OS.
7497 </note>
7498
7499 <see><link to="#absoluteSupported"/></see>
7500 </desc>
7501
7502 <param name="x" type="long" dir="in">
7503 <desc>
7504 X coordinate of the pointer in pixels, starting from <tt>1</tt>.
7505 </desc>
7506 </param>
7507 <param name="y" type="long" dir="in">
7508 <desc>
7509 Y coordinate of the pointer in pixels, starting from <tt>1</tt>.
7510 </desc>
7511 </param>
7512 <param name="dz" type="long" dir="in">
7513 <desc>
7514 Amout of mouse wheel moves.
7515 Positive values describe clockwize wheel rotations,
7516 negative values describe counterclockwise rotations.
7517 </desc>
7518 </param>
7519 <param name="buttonState" type="long" dir="in">
7520 <desc>
7521 The current state of mouse buttons. Every bit represents
7522 a mouse button as follows:
7523 <table>
7524 <tr><td>Bit 0 (<tt>0x01</tt>)</td><td>left mouse button</td></tr>
7525 <tr><td>Bit 1 (<tt>0x02</tt>)</td><td>right mouse button</td></tr>
7526 <tr><td>Bit 2 (<tt>0x04</tt>)</td><td>middle mouse button</td></tr>
7527 </table>
7528 A value of <tt>1</tt> means the corresponding button is pressed.
7529 otherwise it is released.
7530 </desc>
7531 </param>
7532 </method>
7533
7534 </interface>
7535
7536 <!--
7537 // IDisplay
7538 /////////////////////////////////////////////////////////////////////////
7539 -->
7540
7541 <enum
7542 name="FramebufferAccelerationOperation"
7543 uuid="f0e5ebbe-dc8e-4e2d-916e-53baa3844df8"
7544 >
7545 <desc>
7546 Framebuffer acceleration operation.
7547 </desc>
7548
7549 <const name="SolidFillAcceleration" value="1"/>
7550 <const name="ScreenCopyAcceleration" value="2"/>
7551 </enum>
7552
7553 <enum
7554 name="FramebufferPixelFormat"
7555 uuid="6b27d1fc-4f2c-4e9c-a166-01d06540305d"
7556 >
7557 <desc>
7558 Format of the video memory buffer. Constants represented by this enum can
7559 be used to test for particular values of <link
7560 to="IFramebuffer::pixelFormat"/>. See also <link
7561 to="IFramebuffer::requestResize()"/>.
7562
7563 See also www.fourcc.org for more informantion about FOURCC pixel formats.
7564 </desc>
7565
7566 <const name="Opaque" value="0xFFFFFFFF">
7567 <desc>
7568 Unknown buffer format. The user may not assume any particular
7569 format of the buffer.
7570 </desc>
7571 </const>
7572 <const name="FOURCC_RGB" value="0x32424752">
7573 <desc>
7574 Basic RGB format. <link to="IFramebuffer::bitsPerPixel"/> determines
7575 the bit layout.
7576 </desc>
7577 </const>
7578 </enum>
7579
7580 <interface
7581 name="IFramebuffer" extends="$unknown"
7582 uuid="af431304-5b09-40e2-94da-3c3cb03822c1"
7583 wsmap="suppress"
7584 >
7585 <attribute name="address" type="octet" mod="ptr" readonly="yes">
7586 <desc>Address of the start byte of the framebuffer.</desc>
7587 </attribute>
7588
7589 <attribute name="width" type="unsigned long" readonly="yes">
7590 <desc>Framebuffer width, in pixels.</desc>
7591 </attribute>
7592
7593 <attribute name="height" type="unsigned long" readonly="yes">
7594 <desc>Framebuffer height, in pixels.</desc>
7595 </attribute>
7596
7597 <attribute name="bitsPerPixel" type="unsigned long" readonly="yes">
7598 <desc>
7599 Color depth, in bits per pixel. When <link to="#pixelFormat"/> is <link
7600 to="FramebufferPixelFormat::FOURCC_RGB">FOURCC_RGB</link>, valid values
7601 are: 8, 15, 16, 24 and 32.
7602 </desc>
7603 </attribute>
7604
7605 <attribute name="bytesPerLine" type="unsigned long" readonly="yes">
7606 <desc>
7607 Scan line size, in bytes. When <link to="#pixelFormat"/> is <link
7608 to="FramebufferPixelFormat::FOURCC_RGB">FOURCC_RGB</link>, the
7609 size of the scan line must be aligned to 32 bits.
7610 </desc>
7611 </attribute>
7612
7613 <attribute name="pixelFormat" type="unsigned long" readonly="yes">
7614 <desc>
7615 Framebuffer pixel format. It's either one of the values defined by <link
7616 to="FramebufferPixelFormat"/> or a raw FOURCC code.
7617 <note>
7618 This attribute must never return <link
7619 to="PixelFormat::Opaque"/> -- the format of the buffer
7620 <link to="#address"/> points to must be always known.
7621 </note>
7622 </desc>
7623 </attribute>
7624
7625 <attribute name="usesGuestVRAM" type="boolean" readonly="yes">
7626 <desc>
7627 Defines whether this framebuffer uses the virtual video card's memory
7628 buffer (guest VRAM) directly or not. See <link
7629 to="IFramebuffer::requestResize()"/> for more information.
7630 </desc>
7631 </attribute>
7632
7633 <attribute name="heightReduction" type="unsigned long" readonly="yes">
7634 <desc>
7635 Hint from the framebuffer about how much of the standard
7636 screen height it wants to use for itself. This information is
7637 exposed to the guest through the VESA BIOS and VMMDev interface
7638 so that it can use it for determining its video mode table. It
7639 is not guaranteed that the guest respects the value.
7640 </desc>
7641 </attribute>
7642
7643 <attribute name="overlay" type="IFramebufferOverlay" readonly="yes">
7644 <desc>
7645 An alpha-blended overlay which is superposed over the framebuffer.
7646 The initial purpose is to allow the display of icons providing
7647 information about the VM state, including disk activity, in front
7648 ends which do not have other means of doing that. The overlay is
7649 designed to controlled exclusively by IDisplay. It has no locking
7650 of its own, and any changes made to it are not guaranteed to be
7651 visible until the affected portion of IFramebuffer is updated. The
7652 overlay can be created lazily the first time it is requested. This
7653 attribute can also return NULL to signal that the overlay is not
7654 implemented.
7655 </desc>
7656 </attribute>
7657
7658 <method name="lock">
7659 <desc>
7660 Locks the framebuffer.
7661 Gets called by the IDisplay object where this framebuffer is
7662 bound to.
7663 </desc>
7664 </method>
7665
7666 <method name="unlock">
7667 <desc>
7668 Unlocks the framebuffer.
7669 Gets called by the IDisplay object where this framebuffer is
7670 bound to.
7671 </desc>
7672 </method>
7673
7674 <method name="notifyUpdate">
7675 <desc>
7676 Informs about an update.
7677 Gets called by the display object where this buffer is
7678 registered.
7679 </desc>
7680 <param name="x" type="unsigned long" dir="in"/>
7681 <param name="y" type="unsigned long" dir="in"/>
7682 <param name="width" type="unsigned long" dir="in"/>
7683 <param name="height" type="unsigned long" dir="in"/>
7684 <param name="finished" type="boolean" dir="return"/>
7685 </method>
7686
7687 <method name="requestResize">
7688 <desc>
7689 Requests a size and pixel format change.
7690
7691 There are two modes of working with the video buffer of the virtual
7692 machine. The <i>indirect</i> mode implies that the IFramebuffer
7693 implementation allocates a memory buffer for the requested display mode
7694 and provides it to the virtual machine. In <i>direct</i> mode, the
7695 IFramebuffer implementation uses the memory buffer allocated and owned
7696 by the virtual machine. This buffer represents the video memory of the
7697 emulated video adapter (so called <i>guest VRAM</i>). The direct mode is
7698 usually faster because the implementation gets a raw pointer to the
7699 guest VRAM buffer which it can directly use for visualising the contents
7700 of the virtual display, as opposed to the indirect mode where the
7701 contents of guest VRAM are copied to the memory buffer provided by
7702 the implementation every time a display update occurs.
7703
7704 It is important to note that the direct mode is really fast only when
7705 the implementation uses the given guest VRAM buffer directly, for
7706 example, by blitting it to the window representing the virtual machine's
7707 display, which saves at least one copy operation comparing to the
7708 indirect mode. However, using the guest VRAM buffer directly is not
7709 always possible: the format and the color depth of this buffer may be
7710 not supported by the target window, or it may be unknown (opaque) as in
7711 case of text or non-linear multi-plane VGA video modes. In this case,
7712 the indirect mode (that is always available) should be used as a
7713 fallback: when the guest VRAM contents are copied to the
7714 implementation-provided memory buffer, color and format conversion is
7715 done authomatically by the underlying code.
7716
7717 The @a pixelFormat parameter defines whether the direct mode is
7718 available or not. If @a pixelFormat is <link
7719 to="PixelFormat::Opaque"/> then direct access to the guest
7720 VRAM buffer is not available -- the @a VRAM, @a bitsPerPixel and @a
7721 bytesPerLine parameters must be ignored and the implementation must use
7722 the indirect mode (where it provides its own buffer in one of the
7723 supported formats). In all other cases, @a pixelFormat together with @a
7724 bitsPerPixel and @a bytesPerLine define the format of the video memory
7725 buffer pointed to by the @a VRAM parameter and the implementation is
7726 free to choose which mode to use. To indicate that this framebuffer uses
7727 the direct mode, the implementation of the <link to="#usesGuestVRAM"/>
7728 attribute must return <tt>true</tt> and <link to="#address"/> must
7729 return exactly the same address that is passed in the @a VRAM parameter
7730 of this method; otherwise it is assumed that the indirect strategy is
7731 chosen.
7732
7733 The @a width and @a height parameters represent the size of the
7734 requested display mode in both modes. In case of indirect mode, the
7735 provided memory buffer should be big enough to store data of the given
7736 display mode. In case of direct mode, it is guaranteed that the given @a
7737 VRAM buffer contains enough space to represent the display mode of the
7738 given size. Note that this framebuffer's <link to="#width"/> and <link
7739 to="#height"/> attributes must return exactly the same values as
7740 passed to this method after the resize is completed (see below).
7741
7742 The @a finished output parameter determines if the implementation has
7743 finished resizing the framebuffer or not. If, for some reason, the
7744 resize cannot be finished immediately during this call, @a finished
7745 must be set to @c false, and the implementation must call
7746 <link to="IDisplay::resizeCompleted()"/> after it has returned from
7747 this method as soon as possible. If @a finished is @c false, the
7748 machine will not call any framebuffer methods until
7749 <link to="IDisplay::resizeCompleted()"/> is called.
7750
7751 Note that if the direct mode is chosen, the <link to="#bitsPerPixel"/>,
7752 <link to="#bytesPerLine"/> and <link to="#pixelFormat"/> attributes of
7753 this framebuffer must return exactly the same values as specified in the
7754 parameters of this method, after the resize is completed. If the
7755 indirect mode is chosen, these attributes must return values describing
7756 the format of the implementation's own memory buffer <link
7757 to="#address"/> points to. Note also that the <link to="#bitsPerPixel"/>
7758 value must always correlate with <link to="#pixelFormat"/>. Note that
7759 the <link to="#pixelFormat"/> attribute must never return <link
7760 to="PixelFormat::Opaque"/> regardless of the selected mode.
7761
7762 <note>
7763 This method is called by the IDisplay object under the
7764 <link to="#lock()"/> provided by this IFramebuffer
7765 implementation. If this method returns @c false in @a finished, then
7766 this lock is not released until
7767 <link to="IDisplay::resizeCompleted()"/> is called.
7768 </note>
7769 </desc>
7770 <param name="screenId" type="unsigned long" dir="in">
7771 <desc>
7772 Logical screen number. Must be used in the corresponding call to
7773 <link to="IDisplay::resizeCompleted()"/> if this call is made.
7774 </desc>
7775 </param>
7776 <param name="pixelFormat" type="unsigned long" dir="in">
7777 <desc>
7778 Pixel format of the memory buffer pointed to by @a VRAM.
7779 See also <link to="FramebufferPixelFormat"/>.
7780 </desc>
7781 </param>
7782 <param name="VRAM" type="octet" mod="ptr" dir="in">
7783 <desc>Pointer to the virtual video card's VRAM (may be @c null).</desc>
7784 </param>
7785 <param name="bitsPerPixel" type="unsigned long" dir="in">
7786 <desc>Color depth, bits per pixel.</desc>
7787 </param>
7788 <param name="bytesPerLine" type="unsigned long" dir="in">
7789 <desc>Size of one scan line, in bytes.</desc>
7790 </param>
7791 <param name="width" type="unsigned long" dir="in">
7792 <desc>Width of the guest display, in pixels.</desc>
7793 </param>
7794 <param name="height" type="unsigned long" dir="in">
7795 <desc>Height of the guest display, in pixels.</desc>
7796 </param>
7797 <param name="finished" type="boolean" dir="return">
7798 <desc>
7799 Can the VM start using the new framebuffer immediately
7800 after this method returns or it should wait for
7801 <link to="IDisplay::resizeCompleted()"/>.
7802 </desc>
7803 </param>
7804 </method>
7805
7806 <method name="operationSupported">
7807 <desc>
7808 Returns whether the given acceleration operation is supported
7809 by the IFramebuffer implementation. If not, the display object
7810 will not attempt to call the corresponding IFramebuffer entry
7811 point. Even if an operation is indicated to supported, the
7812 IFramebuffer implementation always has the option to return non
7813 supported from the corresponding acceleration method in which
7814 case the operation will be performed by the display engine. This
7815 allows for reduced IFramebuffer implementation complexity where
7816 only common cases are handled.
7817 </desc>
7818 <param name="operation" type="FramebufferAccelerationOperation" dir="in"/>
7819 <param name="supported" type="boolean" dir="return"/>
7820 </method>
7821
7822 <method name="videoModeSupported">
7823 <desc>
7824 Returns whether the framebuffer implementation is willing to
7825 support a given video mode. In case it is not able to render
7826 the video mode (or for some reason not willing), it should
7827 return false. Usually this method is called when the guest
7828 asks the VMM device whether a given video mode is supported
7829 so the information returned is directly exposed to the guest.
7830 It is important that this method returns very quickly.
7831 </desc>
7832 <param name="width" type="unsigned long" dir="in"/>
7833 <param name="height" type="unsigned long" dir="in"/>
7834 <param name="bpp" type="unsigned long" dir="in"/>
7835 <param name="supported" type="boolean" dir="return"/>
7836 </method>
7837
7838 <method name="solidFill">
7839 <desc>
7840 Fills the specified rectangle on screen with a solid color.
7841 </desc>
7842 <param name="x" type="unsigned long" dir="in"/>
7843 <param name="y" type="unsigned long" dir="in"/>
7844 <param name="width" type="unsigned long" dir="in"/>
7845 <param name="height" type="unsigned long" dir="in"/>
7846 <param name="color" type="unsigned long" dir="in"/>
7847 <param name="handled" type="boolean" dir="return"/>
7848 </method>
7849
7850 <method name="copyScreenBits">
7851 <desc>
7852 Copies specified rectangle on the screen.
7853 </desc>
7854 <param name="xDst" type="unsigned long" dir="in"/>
7855 <param name="yDst" type="unsigned long" dir="in"/>
7856 <param name="xSrc" type="unsigned long" dir="in"/>
7857 <param name="ySrc" type="unsigned long" dir="in"/>
7858 <param name="width" type="unsigned long" dir="in"/>
7859 <param name="height" type="unsigned long" dir="in"/>
7860 <param name="handled" type="boolean" dir="return"/>
7861 </method>
7862
7863 <method name="getVisibleRegion">
7864 <desc>
7865 Returns the visible region of this framebuffer.
7866
7867 If the @a rectangles parameter is <tt>NULL</tt> then the value of the
7868 @a count parameter is ignored and the number of elements necessary to
7869 describe the current visible region is returned in @a countCopied.
7870
7871 If @a rectangles is not <tt>NULL</tt> but @a count is less
7872 than the required number of elements to store region data, the method
7873 will report a failure. If @a count is equal or greater than the
7874 required number of elements, then the actual number of elements copied
7875 to the provided array will be returned in @a countCopied.
7876
7877 <note>
7878 The address of the provided array must be in the process space of
7879 this IFramebuffer object.
7880 </note>
7881 </desc>
7882 <param name="rectangles" type="octet" mod="ptr" dir="in">
7883 <desc>Pointer to the <tt>RTRECT</tt> array to receive region data.</desc>
7884 </param>
7885 <param name="count" type="unsigned long" dir="in">
7886 <desc>Number of <tt>RTRECT</tt> elements in the @a rectangles array.</desc>
7887 </param>
7888 <param name="countCopied" type="unsigned long" dir="return">
7889 <desc>Number of elements copied to the @a rectangles array.</desc>
7890 </param>
7891 </method>
7892
7893 <method name="setVisibleRegion">
7894 <desc>
7895 Suggests a new visible region to this framebuffer. This region
7896 represents the area of the VM display which is a union of regions of
7897 all top-level windows of the guest operating system running inside the
7898 VM (if the Guest Additions for this system support this
7899 functionality). This information may be used by the frontends to
7900 implement the seamless desktop integration feature.
7901
7902 <note>
7903 The address of the provided array must be in the process space of
7904 this IFramebuffer object.
7905 </note>
7906 <note>
7907 The IFramebuffer implementation must make a copy of the provided
7908 array of rectangles.
7909 </note>
7910 </desc>
7911 <param name="rectangles" type="octet" mod="ptr" dir="in">
7912 <desc>Pointer to the <tt>RTRECT</tt> array.</desc>
7913 </param>
7914 <param name="count" type="unsigned long" dir="in">
7915 <desc>Number of <tt>RTRECT</tt> elements in the @a rectangles array.</desc>
7916 </param>
7917 </method>
7918
7919 </interface>
7920
7921 <interface
7922 name="IFramebufferOverlay" extends="IFrameBuffer"
7923 uuid="0bcc1c7e-e415-47d2-bfdb-e4c705fb0f47"
7924 wsmap="suppress"
7925 >
7926 <desc>
7927 The IFramebufferOverlay interface represents an alpha blended overlay
7928 for displaying status icons above an IFramebuffer. It is always created
7929 not visible, so that it must be explicitly shown. It only covers a
7930 portion of the IFramebuffer, determined by its width, height and
7931 co-ordinates. It is always in packed pixel little-endian 32bit ARGB (in
7932 that order) format, and may be written to directly. Do re-read the
7933 width though, after setting it, as it may be adjusted (increased) to
7934 make it more suitable for the front end.
7935 </desc>
7936 <attribute name="x" type="unsigned long" readonly="yes">
7937 <desc>X position of the overlay, relative to the framebuffer.</desc>
7938 </attribute>
7939
7940 <attribute name="y" type="unsigned long" readonly="yes">
7941 <desc>Y position of the overlay, relative to the framebuffer.</desc>
7942 </attribute>
7943
7944 <attribute name="visible" type="boolean" readonly="no">
7945 <desc>
7946 Whether the overlay is currently visible.
7947 </desc>
7948 </attribute>
7949
7950 <attribute name="alpha" type="unsigned long" readonly="no">
7951 <desc>
7952 The global alpha value for the overlay. This may or may not be
7953 supported by a given front end.
7954 </desc>
7955 </attribute>
7956
7957 <method name="move">
7958 <desc>
7959 Changes the overlay's position relative to the IFramebuffer.
7960 </desc>
7961 <param name="x" type="unsigned long" dir="in"/>
7962 <param name="y" type="unsigned long" dir="in"/>
7963 </method>
7964
7965 </interface>
7966
7967 <interface
7968 name="IDisplay" extends="$unknown"
7969 uuid="09789f63-4525-48e5-a5e4-1080453b0eab"
7970 wsmap="suppress"
7971 >
7972 <desc>
7973 The IDisplay interface represents the virtual machine's display.
7974
7975 The object implementing this interface is contained in each
7976 <link to="IConsole::display"/> attribute and represents the visual
7977 output of the virtual machine.
7978
7979 The virtual display supports pluggable output targets represented by the
7980 IFramebuffer interface. Examples of the output target are a window on
7981 the host computer or an RDP sessoin's display on a remote computer.
7982 </desc>
7983 <attribute name="width" type="unsigned long" readonly="yes">
7984 <desc>Current display width.</desc>
7985 </attribute>
7986
7987 <attribute name="height" type="unsigned long" readonly="yes">
7988 <desc>Current display height.</desc>
7989 </attribute>
7990
7991 <attribute name="bitsPerPixel" type="unsigned long" readonly="yes">
7992 <desc>
7993 Current guest display color depth. Note that this may differ
7994 from <link to="IFramebuffer::bitsPerPixel"/>.
7995 </desc>
7996 </attribute>
7997
7998 <method name="setupInternalFramebuffer">
7999 <desc>
8000 Prepares an internally managed framebuffer.
8001 </desc>
8002 <param name="depth" type="unsigned long" dir="in"/>
8003 </method>
8004
8005 <method name="lockFramebuffer">
8006 <desc>
8007 Requests access to the internal framebuffer.
8008 </desc>
8009 <param name="address" type="octet" mod="ptr" dir="return"/>
8010 </method>
8011
8012 <method name="unlockFramebuffer">
8013 <desc>
8014 Releases access to the internal framebuffer.
8015 </desc>
8016 </method>
8017
8018 <method name="registerExternalFramebuffer">
8019 <desc>
8020 Registers an external framebuffer.
8021 </desc>
8022 <param name="framebuffer" type="IFramebuffer" dir="in"/>
8023 </method>
8024
8025 <method name="setFramebuffer">
8026 <desc>
8027 Sets the framebuffer for given screen.
8028 </desc>
8029 <param name="screenId" type="unsigned long" dir="in"/>
8030 <param name="framebuffer" type="IFramebuffer" dir="in"/>
8031 </method>
8032
8033 <method name="getFramebuffer">
8034 <desc>
8035 Queries the framebuffer for given screen.
8036 </desc>
8037 <param name="screenId" type="unsigned long" dir="in"/>
8038 <param name="framebuffer" type="IFramebuffer" dir="out"/>
8039 <param name="xOrigin" type="long" dir="out"/>
8040 <param name="yOrigin" type="long" dir="out"/>
8041 </method>
8042
8043 <method name="setVideoModeHint">
8044 <desc>
8045 Asks VirtualBox to request the given video mode from
8046 the guest. This is just a hint and it cannot be guaranteed
8047 that the requested resolution will be used. Guest Additions
8048 are required for the request to be seen by guests. The caller
8049 should issue the request and wait for a resolution change and
8050 after a timeout retry.
8051
8052 Specifying <tt>0</tt> for either @a width, @a height or @a bitsPerPixel
8053 parameters means that the corresponding values should be taken from the
8054 current video mode (i.e. left unchanged).
8055
8056 If the guest OS supports multi-monitor configuration then the @a display
8057 parameter specifies the number of the guest display to send the hint to:
8058 <tt>0</tt> is the primary display, <tt>1</tt> is the first secondary and
8059 so on. If the multi-monitor configuration is not supported, @a display
8060 must be <tt>0</tt>.
8061
8062 </desc>
8063 <param name="width" type="unsigned long" dir="in"/>
8064 <param name="height" type="unsigned long" dir="in"/>
8065 <param name="bitsPerPixel" type="unsigned long" dir="in"/>
8066 <param name="display" type="unsigned long" dir="in"/>
8067 </method>
8068
8069 <method name="setSeamlessMode">
8070 <desc>
8071 Enables or disables seamless guest display rendering (seamless desktop
8072 integration) mode.
8073 <note>
8074 Calling this method has no effect if <link
8075 to="IGuest::supportsSeamless"/> returns <tt>false</tt>.
8076 </note>
8077 </desc>
8078 <param name="enabled" type="boolean" dir="in"/>
8079 </method>
8080
8081 <method name="takeScreenShot">
8082 <desc>
8083 Takes a screen shot of the requested size and copies it to the
8084 32-bpp buffer allocated by the caller.
8085 </desc>
8086 <param name="address" type="octet" mod="ptr" dir="in"/>
8087 <param name="width" type="unsigned long" dir="in"/>
8088 <param name="height" type="unsigned long" dir="in"/>
8089 </method>
8090
8091 <method name="drawToScreen">
8092 <desc>
8093 Draws a 32-bpp image of the specified size from the given buffer
8094 to the given point on the VM display.
8095 </desc>
8096 <param name="address" type="octet" mod="ptr" dir="in"/>
8097 <param name="x" type="unsigned long" dir="in"/>
8098 <param name="y" type="unsigned long" dir="in"/>
8099 <param name="width" type="unsigned long" dir="in"/>
8100 <param name="height" type="unsigned long" dir="in"/>
8101 </method>
8102
8103 <method name="invalidateAndUpdate">
8104 <desc>
8105 Does a full invalidation of the VM display and instructs the VM
8106 to update it.
8107 </desc>
8108 </method>
8109
8110 <method name="resizeCompleted">
8111 <desc>
8112 Signals that a framebuffer has completed the resize operation.
8113 </desc>
8114 <param name="screenId" type="unsigned long" dir="in"/>
8115 </method>
8116
8117 <method name="updateCompleted">
8118 <desc>
8119 Signals that a framebuffer has completed the update operation.
8120 </desc>
8121 </method>
8122
8123 </interface>
8124
8125 <!--
8126 // INetworkAdapter
8127 /////////////////////////////////////////////////////////////////////////
8128 -->
8129
8130 <enum
8131 name="NetworkAttachmentType"
8132 uuid="8730d899-d036-4925-bc63-e58f3486f4bf"
8133 >
8134 <desc>
8135 Network attachment type.
8136 </desc>
8137
8138 <const name="Null" value="0">
8139 <desc><tt>null</tt> value. Also means "not attached".</desc>
8140 </const>
8141 <const name="NAT" value="1"/>
8142 <const name="HostInterface" value="2"/>
8143 <const name="Internal" value="3"/>
8144 </enum>
8145
8146 <enum
8147 name="NetworkAdapterType"
8148 uuid="156b17b9-5d61-4d54-be90-62e37dda848d"
8149 >
8150 <desc>
8151 Network adapter type.
8152 </desc>
8153
8154 <const name="Null" value="0">
8155 <desc><tt>null</tt> value. Never used by the API.</desc>
8156 </const>
8157 <const name="Am79C970A" value="1"/>
8158 <const name="Am79C973" value="2"/>
8159 <const name="I82540EM" value="3"/>
8160 </enum>
8161
8162 <interface
8163 name="INetworkAdapter" extends="$unknown"
8164 uuid="78dfc978-ecb0-44ee-8b20-54549dd4539e"
8165 wsmap="managed"
8166 >
8167 <attribute name="adapterType" type="NetworkAdapterType">
8168 <desc>
8169 Type of the virtual network adapter. Depending on this value,
8170 VirtualBox will provide a different virtual network hardware
8171 to the guest.
8172 </desc>
8173 </attribute>
8174
8175 <attribute name="slot" type="unsigned long" readonly="yes">
8176 <desc>
8177 Slot number this adapter is plugged into. Corresponds to
8178 the value you pass to <link to="IMachine::getNetworkAdapter"/>
8179 to obtain this instance.
8180 </desc>
8181 </attribute>
8182
8183 <attribute name="enabled" type="boolean">
8184 <desc>
8185 Flag whether the network adapter is present in the
8186 guest system. If disabled, the virtual guest hardware will
8187 not contain this network adapter. Can only be changed when
8188 the VM is not running.
8189 </desc>
8190 </attribute>
8191
8192 <attribute name="MACAddress" type="wstring">
8193 <desc>
8194 Ethernet MAC address of the adapter, 12 hexadecimal characters. When setting
8195 it to NULL, VirtualBox will generate a unique MAC address.
8196 </desc>
8197 </attribute>
8198
8199 <attribute name="attachmentType" type="NetworkAttachmentType" readonly="yes"/>
8200
8201 <attribute name="hostInterface" type="wstring">
8202 <desc>
8203 Name of the Host Network Interface that is currently in use. NULL will be returned
8204 if no device has been allocated. On Linux, setting this refers to a permanent TAP
8205 device. However, a file descriptor has precedence over the interface name on Linux.
8206 Note that when VBox allocates a TAP device, this property will not be set, i.e. the
8207 interface name would have to be determined using the file descriptor and /proc/self/fd.
8208 </desc>
8209 </attribute>
8210
8211<if target="xpidl">
8212 <attribute name="TAPFileDescriptor" type="long">
8213 <desc>
8214 File descriptor of the TAP device. It can either be setup by the caller
8215 which has to supply an existing valid file handle allocated in the parent
8216 process of the VM process or allocated by VirtualBox. The value is -1 if it
8217 has not been defined. This property is non persistent, i.e. it will not be
8218 stored in the VM's configuration data and thus has to be set at each startup.
8219 </desc>
8220 </attribute>
8221 <attribute name="TAPSetupApplication" type="wstring">
8222 <desc>
8223 Application to start to configure the TAP device.
8224 It is being passed two parameters, 1) the file handle (as ascii),
8225 2) the TAP device name if it is available.
8226 </desc>
8227 </attribute>
8228 <attribute name="TAPTerminateApplication" type="wstring">
8229 <desc>
8230 Application to start before closing a TAP device.
8231 It is being passed two parameters, 1) the file handle (as ascii),
8232 2) the TAP device name if it is available.
8233 </desc>
8234 </attribute>
8235</if>
8236
8237 <attribute name="internalNetwork" type="wstring">
8238 <desc>
8239 Name of the internal network the VM is attached to.
8240 </desc>
8241 </attribute>
8242
8243 <attribute name="cableConnected" type="boolean">
8244 <desc>
8245 Flag whether the adapter reports the cable as connected or not.
8246 It can be used to report offline situations to a VM.
8247 </desc>
8248 </attribute>
8249
8250 <attribute name="lineSpeed" type="unsigned long">
8251 <desc>
8252 Line speed reported by custom drivers, in units of 1 kbps.
8253 </desc>
8254 </attribute>
8255
8256 <attribute name="traceEnabled" type="boolean">
8257 <desc>
8258 Flag whether network traffic from/to the network card should be traced.
8259 Can only be toggled when the VM is turned off.
8260 </desc>
8261 </attribute>
8262
8263 <attribute name="traceFile" type="wstring">
8264 <desc>
8265 Filename where a network trace will be stored. If not set, VBox-pid.pcap
8266 will be used.
8267 </desc>
8268 </attribute>
8269
8270 <method name="attachToNAT">
8271 <desc>
8272 Attach the network adapter to the Network Address Translation (NAT) interface.
8273 </desc>
8274 </method>
8275
8276 <method name="attachToHostInterface">
8277 <desc>
8278 Attach the network adapter to a host interface. On Linux, the TAP
8279 setup application will be executed if configured and unless a device
8280 name and/or file descriptor has been set, a new TAP interface will be
8281 created.
8282 </desc>
8283 </method>
8284
8285 <method name="attachToInternalNetwork">
8286 <desc>
8287 Attach the network adapter to an internal network.
8288 </desc>
8289 </method>
8290
8291 <method name="detach">
8292 <desc>
8293 Detach the network adapter
8294 </desc>
8295 </method>
8296 </interface>
8297
8298
8299 <!--
8300 // ISerialPort
8301 /////////////////////////////////////////////////////////////////////////
8302 -->
8303
8304 <enum
8305 name="PortMode"
8306 uuid="b266f43c-2e93-46b3-812b-c20e600e867b"
8307 >
8308 <desc>
8309 The PortMode enumeration represents possible communicaton modes for
8310 the virtual serial port device.
8311 </desc>
8312
8313 <const name="Disconnected" value="0">
8314 <desc>Virtual device is not attached to any real host device.</desc>
8315 </const>
8316 <const name="HostPipe" value="1">
8317 <desc>Virtual device is attached to a host pipe.</desc>
8318 </const>
8319 <const name="HostDevice" value="2">
8320 <desc>Virtual device is attached to a host device.</desc>
8321 </const>
8322 </enum>
8323
8324 <interface
8325 name="ISerialPort" extends="$unknown"
8326 uuid="937f6970-5103-4745-b78e-d28dcf1479a8"
8327 wsmap="managed"
8328 >
8329
8330 <desc>
8331 The ISerialPort interface represents the virtual serial port device.
8332
8333 The virtual serial port device acts like an ordinary serial port
8334 inside the virtual machine. This device communicates to the real
8335 serial port hardware in one of two modes: host pipe or host device.
8336
8337 In host pipe mode, the #path attribute specifies the path to the pipe on
8338 the host computer that represents a serial port. The #server attribute
8339 determines if this pipe is created by the virtual machine process at
8340 machine startup or it must already exist before starting machine
8341 execution.
8342
8343 In host device mode, the #path attribute specifies the name of the
8344 serial port device on the host computer.
8345
8346 There is also a third communication mode: the disconnected mode. In this
8347 mode, the guest OS running inside the virtual machine will be able to
8348 detect the serial port, but all port write operations will be discarded
8349 and all port read operations will return no data.
8350
8351 <see>IMachine::getSerialPort</see>
8352 </desc>
8353
8354 <attribute name="slot" type="unsigned long" readonly="yes">
8355 <desc>
8356 Slot number this serial port is plugged into. Corresponds to
8357 the value you pass to <link to="IMachine::getSerialPort"/>
8358 to obtain this instance.
8359 </desc>
8360 </attribute>
8361
8362 <attribute name="enabled" type="boolean">
8363 <desc>
8364 Flag whether the serial port is enabled. If disabled,
8365 the serial port will not be reported to the guest OS.
8366 </desc>
8367 </attribute>
8368
8369 <attribute name="IOBase" type="unsigned long">
8370 <desc>Base I/O address of the serial port.</desc>
8371 </attribute>
8372
8373 <attribute name="IRQ" type="unsigned long">
8374 <desc>IRQ number of the serial port.</desc>
8375 </attribute>
8376
8377 <attribute name="hostMode" type="PortMode">
8378 <desc>How is this port connected to the host.</desc>
8379 </attribute>
8380
8381 <attribute name="server" type="boolean">
8382 <desc>
8383 Flag whether this serial port acts as a server (creates a new pipe on
8384 the host) or as a client (uses the existing pipe). This attribute is
8385 used only when #hostMode is PortMode::HostPipePort.
8386 </desc>
8387 </attribute>
8388
8389 <attribute name="path" type="wstring">
8390 <desc>
8391 Path to the serial port's pipe on the host when #hostMode is
8392 PortMode::HostPipePort, or the host serial device name when #hostMode
8393 is PortMode::HostDevicePort. In either of the above cases, setting a
8394 @c null or an empty string as the attribute's value will result into
8395 an error. Otherwise, the value of this property is ignored.
8396 </desc>
8397 </attribute>
8398
8399 </interface>
8400
8401 <!--
8402 // IParallelPort
8403 /////////////////////////////////////////////////////////////////////////
8404 -->
8405
8406 <interface
8407 name="IParallelPort" extends="$unknown"
8408 uuid="0c925f06-dd10-4b77-8de8-294d738c3214"
8409 wsmap="managed"
8410 >
8411
8412 <desc>
8413 The IParallelPort interface represents the virtual parallel port device.
8414
8415 The virtual parallel port device acts like an ordinary parallel port
8416 inside the virtual machine. This device communicates to the real
8417 parallel port hardware using the name of the parallel device on the host
8418 computer specified in the #path attribute.
8419
8420 Each virtual parallel port device is assigned a base I/O address and an
8421 IRQ number that will be reported to the guest operating system and used
8422 to operate the given parallel port from within the virtual machine.
8423
8424 <see>IMachine::getParallelPort</see>
8425 </desc>
8426
8427 <attribute name="slot" type="unsigned long" readonly="yes">
8428 <desc>
8429 Slot number this parallel port is plugged into. Corresponds to
8430 the value you pass to <link to="IMachine::getParallelPort"/>
8431 to obtain this instance.
8432 </desc>
8433 </attribute>
8434
8435 <attribute name="enabled" type="boolean">
8436 <desc>
8437 Flag whether the parallel port is enabled. If disabled,
8438 the parallel port will not be reported to the guest OS.
8439 </desc>
8440 </attribute>
8441
8442 <attribute name="IOBase" type="unsigned long">
8443 <desc>Base I/O address of the parallel port.</desc>
8444 </attribute>
8445
8446 <attribute name="IRQ" type="unsigned long">
8447 <desc>IRQ number of the parallel port.</desc>
8448 </attribute>
8449
8450 <attribute name="path" type="wstring">
8451 <desc>
8452 Host parallel device name. If this parallel port is enabled, setting a
8453 @c null or an empty string as this attribute's value will result into
8454 an error.
8455 </desc>
8456 </attribute>
8457
8458 </interface>
8459
8460
8461 <!--
8462 // IMachineDebugger
8463 /////////////////////////////////////////////////////////////////////////
8464 -->
8465
8466 <interface
8467 name="IMachineDebugger" extends="$unknown"
8468 uuid="b3a02721-556a-4481-9d47-052a3f8cff90"
8469 wsmap="suppress"
8470 >
8471 <method name="resetStats">
8472 <desc>
8473 Reset VM statistics.
8474 </desc>
8475 <param name="pattern" type="wstring" dir="in">
8476 <desc>The selection pattern. A bit similar to filename globbing.</desc>
8477 </param>
8478 </method>
8479
8480 <method name="dumpStats">
8481 <desc>
8482 Dumps VM statistics.
8483 </desc>
8484 <param name="pattern" type="wstring" dir="in">
8485 <desc>The selection pattern. A bit similar to filename globbing.</desc>
8486 </param>
8487 </method>
8488
8489 <method name="getStats">
8490 <desc>
8491 Get the VM statistics in a XMLish format.
8492 </desc>
8493 <param name="pattern" type="wstring" dir="in">
8494 <desc>The selection pattern. A bit similar to filename globbing.</desc>
8495 </param>
8496 <param name="withDescriptions" type="boolean" dir="in">
8497 <desc>Whether to include the descriptions.</desc>
8498 </param>
8499 <param name="stats" type="wstring" dir="out">
8500 <desc>The XML document containing the statistics.</desc>
8501 </param>
8502 </method>
8503
8504 <attribute name="singlestep" type="boolean">
8505 <desc>Switch for enabling singlestepping.</desc>
8506 </attribute>
8507
8508 <attribute name="recompileUser" type="boolean">
8509 <desc>Switch for forcing code recompilation for user mode code.</desc>
8510 </attribute>
8511
8512 <attribute name="recompileSupervisor" type="boolean">
8513 <desc>Switch for forcing code recompilation for supervisor mode code.</desc>
8514 </attribute>
8515
8516 <attribute name="PATMEnabled" type="boolean">
8517 <desc>Switch for enabling and disabling the PATM component.</desc>
8518 </attribute>
8519
8520 <attribute name="CSAMEnabled" type="boolean">
8521 <desc>Switch for enabling and disabling the CSAM component.</desc>
8522 </attribute>
8523
8524 <attribute name="logEnabled" type="boolean">
8525 <desc>Switch for enabling and disabling logging.</desc>
8526 </attribute>
8527
8528 <attribute name="HWVirtExEnabled" type="boolean" readonly="yes">
8529 <desc>
8530 Flag indicating whether the VM is currently making use of CPU hardware
8531 virtualization extensions
8532 </desc>
8533 </attribute>
8534
8535 <attribute name="virtualTimeRate" type="unsigned long">
8536 <desc>
8537 The rate at which the virtual time runs expressed as a percentage.
8538 The accepted range is 2% to 20000%.
8539 </desc>
8540 </attribute>
8541
8542 <!-- @todo method for setting log flags, groups and destination! -->
8543
8544 <attribute name="VM" type="unsigned long long" readonly="yes">
8545 <desc>
8546 Gets the VM handle. This is only for internal use while
8547 we carve the details of this interface.
8548 </desc>
8549 </attribute>
8550
8551 </interface>
8552
8553 <!--
8554 // IUSBController
8555 /////////////////////////////////////////////////////////////////////////
8556 -->
8557
8558 <interface
8559 name="IUSBController" extends="$unknown"
8560 uuid="f4c2d3dc-f109-4da7-93b1-ec28973ac89f"
8561 wsmap="managed"
8562 >
8563 <attribute name="enabled" type="boolean">
8564 <desc>
8565 Flag whether the USB controller is present in the
8566 guest system. If disabled, the virtual guest hardware will
8567 not contain any USB controller. Can only be changed when
8568 the VM is powered off.
8569 </desc>
8570 </attribute>
8571
8572 <attribute name="enabledEhci" type="boolean">
8573 <desc>
8574 Flag whether the USB EHCI controller is present in the
8575 guest system. If disabled, the virtual guest hardware will
8576 not contain a USB EHCI controller. Can only be changed when
8577 the VM is powered off.
8578 </desc>
8579 </attribute>
8580
8581 <attribute name="USBStandard" type="unsigned short" readonly="yes">
8582 <desc>
8583 USB standard version which the controller implements.
8584 This is a BCD which means that the major version is in the
8585 high byte and minor version is in the low byte.
8586 </desc>
8587 </attribute>
8588
8589 <attribute name="deviceFilters" type="IUSBDeviceFilterCollection" readonly="yes">
8590 <desc>
8591 List of USB device filters associated with the machine.
8592
8593 If the machine is currently running, these filters are activated
8594 every time a new (supported) USB device is attached to the host
8595 computer that was not ignored by global filters
8596 (<link to="IHost::USBDeviceFilters"/>).
8597
8598 These filters are also activated when the machine is powered up.
8599 They are run against a list of all currently available USB
8600 devices (in states
8601 <link to="USBDeviceState::Available">Available</link>,
8602 <link to="USBDeviceState::Busy">Busy</link>,
8603 <link to="USBDeviceState::Held">Held</link>) that were not previously
8604 ignored by global filters.
8605
8606 If at least one filter matches the USB device in question, this
8607 device is automatically captured (attached to) the virtual USB
8608 controller of this machine.
8609
8610 <see>IUSBDeviceFilter, ::IUSBController</see>
8611 </desc>
8612 </attribute>
8613
8614 <method name="createDeviceFilter">
8615 <desc>
8616 Creates a new USB device filter. All attributes except
8617 the filter name are set to <tt>null</tt> (any match),
8618 <i>active</i> is <tt>false</tt> (the filter is not active).
8619
8620 The created filter can then be added to the list of filters using
8621 <link to="#insertDeviceFilter()"/>.
8622
8623 <see>#deviceFilters</see>
8624 </desc>
8625 <param name="name" type="wstring" dir="in">
8626 <desc>
8627 Filter name. See <link to="IUSBDeviceFilter::name"/>
8628 for more info.
8629 </desc>
8630 </param>
8631 <param name="filter" type="IUSBDeviceFilter" dir="return">
8632 <desc>Created filter object.</desc>
8633 </param>
8634 </method>
8635
8636 <method name="insertDeviceFilter">
8637 <desc>
8638 Inserts the given USB device to the specified position
8639 in the list of filters.
8640
8641 Positions are numbered starting from <tt>0</tt>. If the specified
8642 position is equal to or greater than the number of elements in
8643 the list, the filter is added to the end of the collection.
8644
8645 <note>
8646 Duplicates are not allowed, so an attempt to inster a
8647 filter that is already in the collection, will return an
8648 error.
8649 </note>
8650
8651 <see>#deviceFilters</see>
8652 </desc>
8653 <param name="position" type="unsigned long" dir="in">
8654 <desc>Position to insert the filter to.</desc>
8655 </param>
8656 <param name="filter" type="IUSBDeviceFilter" dir="in">
8657 <desc>USB device filter to insert.</desc>
8658 </param>
8659 </method>
8660
8661 <method name="removeDeviceFilter">
8662 <desc>
8663 Removes a USB device filter from the specified position in the
8664 list of filters.
8665
8666 Positions are numbered starting from <tt>0</tt>. Specifying a
8667 position equal to or greater than the number of elements in
8668 the list will produce an error.
8669
8670 <see>#deviceFilters</see>
8671 </desc>
8672 <param name="position" type="unsigned long" dir="in">
8673 <desc>Position to remove the filter from.</desc>
8674 </param>
8675 <param name="filter" type="IUSBDeviceFilter" dir="return">
8676 <desc>Removed USB device filter.</desc>
8677 </param>
8678 </method>
8679
8680 </interface>
8681
8682
8683 <!--
8684 // IUSBDevice
8685 /////////////////////////////////////////////////////////////////////////
8686 -->
8687
8688 <enumerator
8689 name="IUSBDeviceEnumerator" type="IUSBDevice"
8690 uuid="aefe00f7-eb8a-454b-9ea4-fd5ad93c0e99"
8691 />
8692
8693 <collection
8694 name="IUSBDeviceCollection" type="IUSBDevice"
8695 enumerator="IUSBDeviceEnumerator"
8696 uuid="e31f3248-90dd-4ca2-95f0-6b36042d96a2"
8697 readonly="yes"
8698 >
8699 <method name="findById">
8700 <desc>
8701 Searches this collection for a USB device with the given UUID.
8702 <note>
8703 The method returns an error if the given UUID does not
8704 correspond to any USB device in the collection.
8705 </note>
8706 <see>IUSBDevice::id</see>
8707 </desc>
8708 <param name="id" type="uuid" dir="in">
8709 <desc>UUID of the USB device to search for.</desc>
8710 </param>
8711 <param name="device" type="IUSBDevice" dir="return">
8712 <desc>Found USB device object.</desc>
8713 </param>
8714 </method>
8715
8716 <method name="findByAddress">
8717 <desc>
8718 Searches this collection for a USB device with the given
8719 host address.
8720 <note>
8721 The method returns an error if the given address does not
8722 correspond to any USB device in the collection.
8723 </note>
8724 <see>IUSBDevice::address</see>
8725 </desc>
8726 <param name="name" type="wstring" dir="in">
8727 <desc>
8728 Address of the USB device (as assigned by the host) to
8729 search for.
8730 </desc>
8731 </param>
8732 <param name="device" type="IUSBDevice" dir="return">
8733 <desc>Found USB device object.</desc>
8734 </param>
8735 </method>
8736
8737 </collection>
8738
8739 <interface
8740 name="IUSBDevice" extends="$unknown"
8741 uuid="850af07b-9ee8-48c2-b6b0-f6d0acbf63c3"
8742 wsmap="managed"
8743 >
8744 <desc>
8745 The IUSBDevice interface represents a virtual USB device attached to the
8746 virtual machine.
8747
8748 A collection of objects implementing this interface is stored in the
8749 <link to="IConsole::USBDevices"/> attribute which lists all USB devices
8750 attached to a running virtual machine's USB controller.
8751 </desc>
8752
8753 <attribute name="id" type="uuid" readonly="yes">
8754 <desc>
8755 Unique USB device ID. This ID is built from #vendorId,
8756 #productId, #revision and #serialNumber.
8757 </desc>
8758 </attribute>
8759
8760 <attribute name="vendorId" type="unsigned short" readonly="yes">
8761 <desc>Vendor ID.</desc>
8762 </attribute>
8763
8764 <attribute name="productId" type="unsigned short" readonly="yes">
8765 <desc>Product ID.</desc>
8766 </attribute>
8767
8768 <attribute name="revision" type="unsigned short" readonly="yes">
8769 <desc>
8770 Product revision number. This is a packed BCD represented as
8771 unsigned short. The high byte is the integer part and the low
8772 byte is the decimal.
8773 </desc>
8774 </attribute>
8775
8776 <attribute name="manufacturer" type="wstring" readonly="yes">
8777 <desc>Manufacturer string.</desc>
8778 </attribute>
8779
8780 <attribute name="product" type="wstring" readonly="yes">
8781 <desc>Product string.</desc>
8782 </attribute>
8783
8784 <attribute name="serialNumber" type="wstring" readonly="yes">
8785 <desc>Serial number string.</desc>
8786 </attribute>
8787
8788 <attribute name="address" type="wstring" readonly="yes">
8789 <desc>Host specific address of the device.</desc>
8790 </attribute>
8791
8792 <attribute name="port" type="unsigned short" readonly="yes">
8793 <desc>
8794 Host USB port number the device is physically
8795 coonected to.
8796 </desc>
8797 </attribute>
8798
8799 <attribute name="version" type="unsigned short" readonly="yes">
8800 <desc>
8801 The major USB version of the device - 1 or 2.
8802 </desc>
8803 </attribute>
8804
8805 <attribute name="portVersion" type="unsigned short" readonly="yes">
8806 <desc>
8807 The major USB version of the host USB port the device is
8808 physically coonected to - 1 or 2. For devices not connected to
8809 anything this will have the same value as the version attribute.
8810 </desc>
8811 </attribute>
8812
8813 <attribute name="remote" type="boolean" readonly="yes">
8814 <desc>
8815 Whether the device is physically connected to a remote VRDP
8816 client or to a local host machine.
8817 </desc>
8818 </attribute>
8819
8820 </interface>
8821
8822
8823 <!--
8824 // IUSBDeviceFilter
8825 /////////////////////////////////////////////////////////////////////////
8826 -->
8827
8828 <enumerator
8829 name="IUSBDeviceFilterEnumerator" type="IUSBDeviceFilter"
8830 uuid="d5109c61-93e7-4726-926b-0dee1020da56"
8831 />
8832
8833 <collection
8834 name="IUSBDeviceFilterCollection" type="IUSBDeviceFilter"
8835 enumerator="IUSBDeviceFilterEnumerator"
8836 uuid="4fa3fc99-ceb1-4bf5-a9cb-e962d825c1ef"
8837 readonly="yes"
8838 />
8839
8840 <interface
8841 name="IUSBDeviceFilter" extends="$unknown"
8842 uuid="d6831fb4-1a94-4c2c-96ef-8d0d6192066d"
8843 wsmap="managed"
8844 >
8845 <desc>
8846 The IUSBDeviceFilter interface represents an USB device filter used
8847 to perform actions on a group of USB devices.
8848
8849 This type of filters is used by running virtual machines to
8850 automatically capture selected USB devices once they are physically
8851 attached to the host computer.
8852
8853 A USB device is matched to the given device filter if and only if all
8854 attributes of the device match the corresponding attributes of the
8855 filter (that is, attributes are joined together using the logical AND
8856 operation). On the other hand, all together, filters in the list of
8857 filters carry the semantics of the logical OR operation. So if it is
8858 desirable to create a match like "this vendor id OR this product id",
8859 one needs to create two filters and specify "any match" (see below)
8860 for unused attributes.
8861
8862 All filter attributes used for matching are strings. Each string
8863 is an expression representing a set of values of the corresponding
8864 device attribute, that will match the given filter. Currently, the
8865 following filtering expressions are supported:
8866
8867 <ul>
8868 <li><i>Interval filters</i>. Used to specify valid intervals for
8869 integer device attributes (Vendor ID, Product ID and Revision).
8870 The format of the string is:
8871
8872 <tt>int:((m)|([m]-[n]))(,(m)|([m]-[n]))*</tt>
8873
8874 where <tt>m</tt> and <tt>n</tt> are integer numbers, either in octal
8875 (starting from <tt>0</tt>), hexadecimal (starting from <tt>0x</tt>)
8876 or decimal (otherwise) form, so that <tt>m &lt; n</tt>. If <tt>m</tt>
8877 is ommitted before a dash (<tt>-</tt>), the minimum possible integer
8878 is assumed; if <tt>n</tt> is ommitted after a dash, the maximum
8879 possible integer is assummed.
8880 </li>
8881 <li><i>Boolean filters</i>. Used to specify acceptable values for
8882 boolean device attributes. The format of the string is:
8883
8884 <tt>true|false|yes|no|0|1</tt>
8885
8886 </li>
8887 <li><i>Exact match</i>. Used to specify a single value for the given
8888 device attribute. Any string that does't start with <tt>int:</tt>
8889 represents the exact match. String device attributes are compared to
8890 this string including case of symbols. Integer attributes are first
8891 converted to a string (see individual filter attributes) and then
8892 compared ignoring case.
8893
8894 </li>
8895 <li><i>Any match</i>. Any value of the corresponding device attribute
8896 will match the given filter. An empty or <tt>null</tt> string is
8897 used to construct this type of filtering expressions.
8898
8899 </li>
8900 </ul>
8901
8902 <note>
8903 On the Windows host platform, interval filters are not currently
8904 available. Also all string filter attributes
8905 (<link to="#manufacturer"/>, <link to="#product"/>,
8906 <link to="#serialNumber"/>) are ignored, so they behave as
8907 <i>any match</i> no matter what string expression is specified.
8908 </note>
8909
8910 <see>IUSBController::deviceFilters, IHostUSBDeviceFilter</see>
8911 </desc>
8912
8913 <attribute name="name" type="wstring">
8914 <desc>
8915 Visible name for this filter.
8916 This name is used to visually distungish one filter from another,
8917 so it can neither be <tt>null</tt> nor an empty string.
8918 </desc>
8919 </attribute>
8920
8921 <attribute name="active" type="boolean">
8922 <desc>Whether this filter active or has been temporarily disabled.</desc>
8923 </attribute>
8924
8925 <attribute name="vendorId" type="wstring">
8926 <desc>
8927 <link to="IUSBDevice::vendorId">Vendor ID</link> filter.
8928 The string representation for the <i>exact matching</i>
8929 has the form <tt>XXXX</tt>, where <tt>X</tt> is the hex digit
8930 (including leading zeroes).
8931 </desc>
8932 </attribute>
8933
8934 <attribute name="productId" type="wstring">
8935 <desc>
8936 <link to="IUSBDevice::productId">Product ID</link> filter.
8937 The string representation for the <i>exact matching</i>
8938 has the form <tt>XXXX</tt>, where <tt>X</tt> is the hex digit
8939 (including leading zeroes).
8940 </desc>
8941 </attribute>
8942
8943 <attribute name="revision" type="wstring">
8944 <desc>
8945 <link to="IUSBDevice::productId">Product revision number</link>
8946 filter. The string representation for the <i>exact matching</i>
8947 has the form <tt>IIFF</tt>, where <tt>I</tt> is the decimal digit
8948 of the integer part of the revision, and <tt>F</tt> is the
8949 decimal digit of its fractional part (including leading and
8950 trailing zeroes).
8951 Note that for interval filters, it's best to use the hexadecimal
8952 form, because the revision is stored as a 16 bit packed BCD value;
8953 so the expression <tt>int:0x0100-0x0199</tt> will match any
8954 revision from <tt>1.0</tt> to <tt>1.99</tt>.
8955 </desc>
8956 </attribute>
8957
8958 <attribute name="manufacturer" type="wstring">
8959 <desc>
8960 <link to="IUSBDevice::manufacturer">Manufacturer</link> filter.
8961 </desc>
8962 </attribute>
8963
8964 <attribute name="product" type="wstring">
8965 <desc>
8966 <link to="IUSBDevice::product">Product</link> filter.
8967 </desc>
8968 </attribute>
8969
8970 <attribute name="serialNumber" type="wstring">
8971 <desc>
8972 <link to="IUSBDevice::serialNumber">Serial number</link> filter.
8973 </desc>
8974 </attribute>
8975
8976 <attribute name="port" type="wstring">
8977 <desc>
8978 <link to="IUSBDevice::port">Host USB port</link> filter.
8979 </desc>
8980 </attribute>
8981
8982 <attribute name="remote" type="wstring">
8983 <desc>
8984 <link to="IUSBDevice::remote">Remote state</link> filter.
8985 <note>
8986 This filter makes sense only for machine USB filters,
8987 i.e. it is ignored by IHostUSBDeviceFilter objects.
8988 </note>
8989 </desc>
8990 </attribute>
8991
8992 <attribute name="maskedInterfaces" type="unsigned long">
8993 <desc>
8994 This is an advanced option for hiding one or more USB interfaces
8995 from the guest. The value is a bitmask where the bits that are set
8996 means the corresponding USB interface should be hidden, masked off
8997 if you like.
8998 This feature only works on Linux hosts.
8999 </desc>
9000 </attribute>
9001
9002 </interface>
9003
9004
9005 <!--
9006 // IHostUSBDevice
9007 /////////////////////////////////////////////////////////////////////////
9008 -->
9009
9010 <enum
9011 name="USBDeviceState"
9012 uuid="b99a2e65-67fb-4882-82fd-f3e5e8193ab4"
9013 >
9014 <desc>
9015 USB device state. This enumeration represents all possible states
9016 of the USB device physically attached to the host computer regarding
9017 its state on the host computer and availability to guest computers
9018 (all currently running virtual machines).
9019
9020 Once a supported USB device is attached to the host, global USB
9021 filters (<link to="IHost::USBDeviceFilters"/>) are activated. They can
9022 either ignore the device, or put ot to #Held state, or do nothing. Unless
9023 the device is ignored by global filters, filters of all currently running
9024 guests (<link to="IUSBController::deviceFilters"/>) are activated that can
9025 put it to #Captured state.
9026
9027 If the device was ignored by global filters, or didn't match
9028 any filters at all (including guest ones), it is handled by the host
9029 in a normal way. In this case, the device state is determined by
9030 the host and can be one of #Unavailable, #Busy or #Available, depending on
9031 the current device usage.
9032
9033 Besides auto-capturing based on filters, the device can be manually
9034 captured by guests (<link to="IConsole::attachUSBDevice()"/>) if its
9035 state is #Busy, #Available or #Held.
9036
9037 <note>
9038 Due to differences in USB stack implementations in Linux and Win32,
9039 states #Busy and #Available are applicable only to the Linux version of
9040 the product. This also means that (<link
9041 to="IConsole::attachUSBDevice()"/>) can only succeed on Win32 if
9042 the device state is #USBDeviceHeld.
9043 </note>
9044
9045 <see>IHostUSBDevice, IHostUSBDeviceFilter</see>
9046 </desc>
9047
9048 <const name="NotSupported" value="0">
9049 <desc>
9050 Not supported by the VirtualBox server, not available to guests.
9051 </desc>
9052 </const>
9053 <const name="Unavailable" value="1">
9054 <desc>
9055 Being used by the host computer exclusively,
9056 not available to guests.
9057 </desc>
9058 </const>
9059 <const name="Busy" value="2">
9060 <desc>
9061 Being used by the host computer, potentially available to guests.
9062 </desc>
9063 </const>
9064 <const name="Available" value="3">
9065 <desc>
9066 Not used by the host computer, available to guests.
9067 The host computer can also start using the device at any time.
9068 </desc>
9069 </const>
9070 <const name="Held" value="4">
9071 <desc>
9072 Held by the VirtualBox server (ignored by the host computer),
9073 available to guests.
9074 </desc>
9075 </const>
9076 <const name="Captured" value="5">
9077 <desc>
9078 Captured by one of the guest computers, not available
9079 to anybody else.
9080 </desc>
9081 </const>
9082 </enum>
9083
9084 <enumerator
9085 name="IHostUSBDeviceEnumerator" type="IHostUSBDevice"
9086 uuid="a0c55136-939f-4d20-b9d3-4d406f08bfa5"
9087 />
9088
9089 <collection
9090 name="IHostUSBDeviceCollection" type="IHostUSBDevice"
9091 enumerator="IHostUSBDeviceEnumerator"
9092 uuid="f9d3f96d-b027-4994-b589-70bb9ee0d364"
9093 readonly="yes"
9094 >
9095 <method name="findById">
9096 <desc>
9097 Searches this collection for a USB device with the given UUID.
9098 <note>
9099 The method returns an error if the given UUID does not
9100 correspond to any USB device in the collection.
9101 </note>
9102 <see>IHostUSBDevice::id</see>
9103 </desc>
9104 <param name="id" type="uuid" dir="in">
9105 <desc>UUID of the USB device to search for.</desc>
9106 </param>
9107 <param name="device" type="IHostUSBDevice" dir="return">
9108 <desc>Found USB device object.</desc>
9109 </param>
9110 </method>
9111
9112 <method name="findByAddress">
9113 <desc>
9114 Searches this collection for a USB device with the given
9115 host address.
9116 <note>
9117 The method returns an error if the given address does not
9118 correspond to any USB device in the collection.
9119 </note>
9120 <see>IHostUSBDevice::address</see>
9121 </desc>
9122 <param name="name" type="wstring" dir="in">
9123 <desc>
9124 Address of the USB device (as assigned by the host) to
9125 search for.
9126 </desc>
9127 </param>
9128 <param name="device" type="IHostUSBDevice" dir="return">
9129 <desc>Found USB device object.</desc>
9130 </param>
9131 </method>
9132
9133 </collection>
9134
9135 <interface
9136 name="IHostUSBDevice" extends="IUSBDevice"
9137 uuid="173b4b44-d268-4334-a00d-b6521c9a740a"
9138 wsmap="managed"
9139 >
9140 <desc>
9141 The IHostUSBDevice interface represents a physical USB device attached
9142 to the host computer.
9143
9144 Besides properties inherited from IUSBDevice, this interface adds the
9145 <link to="#state"/> property that holds the courrent state of the USB
9146 device.
9147
9148 <see>IHost::USBDevices, IHost::USBDeviceFilters</see>
9149 </desc>
9150
9151 <attribute name="state" type="USBDeviceState" readonly="yes">
9152 <desc>
9153 Current state of the device.
9154 </desc>
9155 </attribute>
9156
9157 <!-- @todo add class, subclass, bandwidth, configs, interfaces endpoints and such later. -->
9158
9159 </interface>
9160
9161
9162 <!--
9163 // IHostUSBDeviceFilter
9164 /////////////////////////////////////////////////////////////////////////
9165 -->
9166
9167 <enum
9168 name="USBDeviceFilterAction"
9169 uuid="cbc30a49-2f4e-43b5-9da6-121320475933"
9170 >
9171 <desc>
9172 Actions for host USB device filters.
9173 <see>IHostUSBDeviceFilter, USBDeviceState</see>
9174 </desc>
9175
9176 <const name="Null" value="0">
9177 <desc><tt>null</tt> value. Never used by the API.</desc>
9178 </const>
9179 <const name="Ignore" value="1">
9180 <desc>Ignore the matched USB device.</desc>
9181 </const>
9182 <const name="Hold" value="2">
9183 <desc>Hold the matched USB device.</desc>
9184 </const>
9185 </enum>
9186
9187 <enumerator
9188 name="IHostUSBDeviceFilterEnumerator" type="IHostUSBDeviceFilter"
9189 uuid="ff735211-903e-4642-9c37-189eb44579fe"
9190 />
9191
9192 <collection
9193 name="IHostUSBDeviceFilterCollection" type="IHostUSBDeviceFilter"
9194 enumerator="IHostUSBDeviceFilterEnumerator"
9195 uuid="1a80458b-87f1-4a74-995d-04e2330119e0"
9196 readonly="yes"
9197 />
9198
9199 <interface
9200 name="IHostUSBDeviceFilter" extends="IUSBDeviceFilter"
9201 uuid="4cc70246-d74a-400f-8222-3900489c0374"
9202 wsmap="managed"
9203 >
9204 <desc>
9205 The IHostUSBDeviceFilter interface represents a global filter for a
9206 physical USB device used by the host computer. Used indirectly in
9207 <link to="IHost::USBDeviceFilters"/>.
9208
9209 Using filters of this type, the host computer determines the initial
9210 state of the USB device after it is physically attached to the
9211 host's USB controller.
9212
9213 <note>
9214 The <link to="#remote"/> attribute is ignored by this type of
9215 filters, because it makes sense only for
9216 <link to="IUSBController::deviceFilters">machine USB filters</link>.
9217 </note>
9218
9219 <see>IHost::USBDeviceFilters</see>
9220 </desc>
9221
9222 <attribute name="action" type="USBDeviceFilterAction">
9223 <desc>
9224 Action performed by the host when an attached USB device
9225 matches this filter.
9226 </desc>
9227 </attribute>
9228
9229 </interface>
9230
9231 <!--
9232 // IAudioAdapter
9233 /////////////////////////////////////////////////////////////////////////
9234 -->
9235
9236 <enum
9237 name="AudioDriverType"
9238 uuid="4bcc3d73-c2fe-40db-b72f-0c2ca9d68496"
9239 >
9240 <desc>
9241 Host audio driver type.
9242 </desc>
9243
9244 <const name="Null" value="0">
9245 <desc><tt>null</tt> value. Also means "dummy audio driver".</desc>
9246 </const>
9247 <const name="WINMM" value="1"/>
9248 <const name="OSS" value="2"/>
9249 <const name="ALSA" value="3"/>
9250 <const name="DSOUND" value="4"/>
9251 <const name="Core" value="5"/>
9252 <const name="MMPM" value="6"/>
9253 <const name="Pulse" value="7"/>
9254 </enum>
9255
9256 <enum
9257 name="AudioControllerType"
9258 uuid="7afd395c-42c3-444e-8788-3ce80292f36c"
9259 >
9260 <desc>
9261 Virtual audio controller type.
9262 </desc>
9263
9264 <const name="AC97" value="0"/>
9265 <const name="SB16" value="1"/>
9266 </enum>
9267
9268 <interface
9269 name="IAudioAdapter" extends="$unknown"
9270 uuid="921873db-5f3f-4b69-91f9-7be9e535a2cb"
9271 wsmap="struct"
9272 >
9273 <desc>
9274 The IAudioAdapter interface represents the virtual audio adapter of
9275 the virtual machine. Used in <link to="IMachine::audioAdapter"/>.
9276 </desc>
9277 <attribute name="enabled" type="boolean">
9278 <desc>
9279 Flag whether the audio adapter is present in the
9280 guest system. If disabled, the virtual guest hardware will
9281 not contain any audio adapter. Can only be changed when
9282 the VM is not running.
9283 </desc>
9284 </attribute>
9285 <attribute name="audioController" type="AudioControllerType">
9286 <desc>
9287 The audio hardware we emulate.
9288 </desc>
9289 </attribute>
9290 <attribute name="audioDriver" type="AudioDriverType">
9291 <desc>
9292 Audio driver the adapter is connected to. This setting
9293 can only be changed when the VM is not running.
9294 </desc>
9295 </attribute>
9296 </interface>
9297
9298 <!--
9299 // IVRDPServer
9300 /////////////////////////////////////////////////////////////////////////
9301 -->
9302
9303 <enum
9304 name="VRDPAuthType"
9305 uuid="3d91887a-b67f-4b33-85bf-2da7ab1ea83a"
9306 >
9307 <desc>
9308 VRDP authentication type.
9309 </desc>
9310
9311 <const name="Null" value="0">
9312 <desc><tt>null</tt> value. Also means "no authentication".</desc>
9313 </const>
9314 <const name="External" value="1"/>
9315 <const name="Guest" value="2"/>
9316 </enum>
9317
9318 <interface
9319 name="IVRDPServer" extends="$unknown"
9320 uuid="ed9d31ae-867f-45fc-b727-6740084d1883"
9321 wsmap="struct"
9322 >
9323 <attribute name="enabled" type="boolean">
9324 <desc>VRDP server status.</desc>
9325 </attribute>
9326
9327 <attribute name="port" type="unsigned long">
9328 <desc>
9329 VRDP server port number.
9330 <note>
9331 Setting the value of this property to <tt>0</tt> will reset the port
9332 number to the default value which is
9333 currently <tt>3389</tt>. Reading this property will always return a
9334 real port number, even after it has been set to <tt>0</tt> (in which
9335 case the default port is returned).
9336 </note>
9337 </desc>
9338 </attribute>
9339
9340 <attribute name="netAddress" type="wstring">
9341 <desc>VRDP server address.</desc>
9342 </attribute>
9343
9344 <attribute name="authType" type="VRDPAuthType">
9345 <desc>VRDP authentication method.</desc>
9346 </attribute>
9347
9348 <attribute name="authTimeout" type="unsigned long">
9349 <desc>Timeout for guest authentication. Milliseconds.</desc>
9350 </attribute>
9351
9352 <attribute name="allowMultiConnection" type="boolean">
9353 <desc>
9354 Flag whether multiple simultaneous connections to the VM are permitted.
9355 Note that this will be replaced by a more powerful mechanism in the future.
9356 </desc>
9357 </attribute>
9358
9359 </interface>
9360
9361
9362 <!--
9363 // ISharedFolder
9364 /////////////////////////////////////////////////////////////////////////
9365 -->
9366
9367 <enumerator
9368 name="ISharedFolderEnumerator" type="ISharedFolder"
9369 uuid="1d420fd8-e7c1-4511-abf4-a504dc6d0cbf"
9370 />
9371
9372 <collection
9373 name="ISharedFolderCollection" type="ISharedFolder"
9374 enumerator="ISharedFolderEnumerator"
9375 uuid="9c7e2282-bb16-4fa7-9138-f383c5e02353"
9376 readonly="yes">
9377
9378 <method name="findByName">
9379 <desc>
9380 Searches this collection for a shared folder with the given logical
9381 name.
9382 <note>
9383 The method returns an error if the given name does not correspond to
9384 any shared folder in the collection.
9385 </note>
9386 </desc>
9387 <param name="name" type="wstring" dir="in">
9388 <desc>Logical name of the shared folder to search for</desc>
9389 </param>
9390 <param name="sharedFolder" type="ISharedFolder" dir="return">
9391 <desc>Found shared folder object</desc>
9392 </param>
9393 </method>
9394
9395 </collection>
9396
9397 <interface
9398 name="ISharedFolder" extends="$unknown"
9399 uuid="8b0c5f70-9139-4f97-a421-64d5e9c335d5"
9400 wsmap="struct"
9401 >
9402 <desc>
9403 The ISharedFolder interface represents a folder in the host computer's
9404 file system accessible from the guest OS running inside a virtual
9405 machine using an associated logical name.
9406
9407 There are three types of shared folders:
9408 <ul>
9409 <li><i>Global</i> (<link to="IVirtualBox::sharedFolders"/>), shared
9410 folders available to all virtual machines.</li>
9411 <li><i>Permanent</i> (<link to="IMachine::sharedFolders"/>),
9412 VM-specific shared folders available to the given virtual machine at
9413 startup.</li>
9414 <li><i>Transient</i> (<link to="IConsole::sharedFolders"/>),
9415 VM-specific shared folders created in the session context (for
9416 example, when the virtual machine is running) and automatically
9417 discarded when the session is closed (the VM is powered off).</li>
9418 </ul>
9419
9420 Logical names of shared folders must be unique within the given scope
9421 (global, permanent or transient). However, they do not need to be unique
9422 across scopes. In this case, the definitioin of the shared folder in a
9423 more specific scope takes precedence over definitions in all other
9424 scopes. The order of precedence is (more specific to more general):
9425 <ol>
9426 <li>Transient definitions</li>
9427 <li>Permanent definitions</li>
9428 <li>Global definitions</li>
9429 </ol>
9430
9431 For example, if MyMachine has a shared folder named
9432 <tt>C_DRIVE</tt> (that points to <tt>C:\\</tt>), then cretaing a
9433 transient shared folder named <tt>C_DRIVE</tt> (that points
9434 to <tt>C:\\\\WINDOWS</tt>) will change the definition
9435 of <tt>C_DRIVE</tt> in the guest OS so
9436 that <tt>\\\\VBOXSVR\\C_DRIVE</tt> will give access
9437 to <tt>C:\\WINDOWS</tt> instead of <tt>C:\\</tt> on the host
9438 PC. Removing the transient shared folder <tt>C_DRIVE</tt> will restore
9439 the prevoious (permanent) definition of <tt>C_DRIVE</tt> that points
9440 to <tt>C:\\</tt> if it still exists.
9441
9442 Note that permanent and transient shared folders of different machines
9443 are in different name spaces, so they don't overlap and don't need to
9444 have unique logical names.
9445
9446 <note>
9447 Global shared folders are not implemented in the current vesion of the
9448 product.
9449 </note>
9450 </desc>
9451
9452 <attribute name="name" type="wstring" readonly="yes">
9453 <desc>Logical name of the shared folder.</desc>
9454 </attribute>
9455
9456 <attribute name="hostPath" type="wstring" readonly="yes">
9457 <desc>Full path to the shared folder in the host file system.</desc>
9458 </attribute>
9459
9460 <attribute name="accessible" type="boolean" readonly="yes">
9461 <desc>
9462 Whether the folder defined by the host path is currently
9463 accessible or not.
9464 For example, the folder can be unaccessible if it is placed
9465 on the network share that is not available by the time
9466 this property is read.
9467 </desc>
9468 </attribute>
9469
9470 <attribute name="writable" type="boolean" readonly="yes">
9471 <desc>
9472 Whether the folder defined by the host path is writable or
9473 not.
9474 </desc>
9475 </attribute>
9476
9477 </interface>
9478
9479 <!--
9480 // ISession
9481 /////////////////////////////////////////////////////////////////////////
9482 -->
9483
9484 <interface
9485 name="IInternalSessionControl" extends="$unknown"
9486 uuid="37838967-2430-4bb1-8acc-1b5b2c383d44"
9487 internal="yes"
9488 wsmap="suppress"
9489 >
9490 <method name="getPID">
9491 <desc>PID of the process that has created this Session object.
9492 </desc>
9493 <param name="pid" type="unsigned long" dir="return"/>
9494 </method>
9495
9496 <method name="getRemoteConsole">
9497 <desc>Returns the console object suitable for remote control.</desc>
9498 <param name="console" type="IConsole" dir="return"/>
9499 </method>
9500
9501 <method name="assignMachine">
9502 <desc>
9503 Assigns the machine object associated with this direct-type
9504 session or informs the session that it will be a remote one
9505 (if machine = NULL).
9506 </desc>
9507 <param name="machine" type="IMachine" dir="in"/>
9508 </method>
9509
9510 <method name="assignRemoteMachine">
9511 <desc>
9512 Assigns the machine and the (remote) console object associated with
9513 this remote-type session.
9514 </desc>
9515 <param name="machine" type="IMachine" dir="in"/>
9516 <param name="console" type="IConsole" dir="in"/>
9517 </method>
9518
9519 <method name="updateMachineState">
9520 <desc>
9521 Updates the machine state in the VM process.
9522 Must be called only in certain cases
9523 (see the method implementation).
9524 </desc>
9525 <param name="aMachineState" type="MachineState" dir="in"/>
9526 </method>
9527
9528 <method name="uninitialize">
9529 <desc>
9530 Uninitializes (closes) this session. Used by VirtualBox to close
9531 the corresponding remote session when the direct session dies
9532 or gets closed.
9533 </desc>
9534 </method>
9535
9536 <method name="onDVDDriveChange">
9537 <desc>
9538 Triggered when settings of the DVD drive object of the
9539 associated virtual machine have changed.
9540 </desc>
9541 </method>
9542
9543 <method name="onFloppyDriveChange">
9544 <desc>
9545 Triggered when settings of the floppy drive object of the
9546 associated virtual machine have changed.
9547 </desc>
9548 </method>
9549
9550 <method name="onNetworkAdapterChange">
9551 <desc>
9552 Triggered when settions of a network adapter of the
9553 associated virtual machine have changed.
9554 </desc>
9555 <param name="networkAdapter" type="INetworkAdapter" dir="in"/>
9556 </method>
9557
9558 <method name="onSerialPortChange">
9559 <desc>
9560 Triggered when settions of a serial port of the
9561 associated virtual machine have changed.
9562 </desc>
9563 <param name="serialPort" type="ISerialPort" dir="in"/>
9564 </method>
9565
9566 <method name="onParallelPortChange">
9567 <desc>
9568 Triggered when settings of a parallel port of the
9569 associated virtual machine have changed.
9570 </desc>
9571 <param name="parallelPort" type="IParallelPort" dir="in"/>
9572 </method>
9573
9574 <method name="onVRDPServerChange">
9575 <desc>
9576 Triggered when settings of the VRDP server object of the
9577 associated virtual machine have changed.
9578 </desc>
9579 </method>
9580
9581 <method name="onUSBControllerChange">
9582 <desc>
9583 Triggered when settings of the USB controller object of the
9584 associated virtual machine have changed.
9585 </desc>
9586 </method>
9587
9588 <method name="onSharedFolderChange">
9589 <desc>
9590 Triggered when a permanent (global or machine) shared folder has been
9591 created or removed.
9592 <note>
9593 We don't pass shared folder parameters in this notification because
9594 the order in which parallel notifications are delivered is not defined,
9595 therefore it could happen that these parameters were outdated by the
9596 time of processing this notification.
9597 </note>
9598 </desc>
9599 <param name="global" type="boolean" dir="in"/>
9600 </method>
9601
9602 <method name="onUSBDeviceAttach">
9603 <desc>
9604 Triggered when a request to capture a USB device (as a result
9605 of matched USB filters or direct call to
9606 <link to="IConsole::attachUSBDevice"/>) has completed.
9607 A @c null @a error object means success, otherwise it
9608 describes a failure.
9609 </desc>
9610 <param name="device" type="IUSBDevice" dir="in"/>
9611 <param name="error" type="IVirtualBoxErrorInfo" dir="in"/>
9612 <param name="maskedInterfaces" type="unsigned long" dir="in"/>
9613 </method>
9614
9615 <method name="onUSBDeviceDetach">
9616 <desc>
9617 Triggered when a request to release the USB device (as a result
9618 of machine termination or direct call to
9619 <link to="IConsole::detachUSBDevice"/>) has completed.
9620 A @c null @a error object means success, otherwise it
9621 </desc>
9622 <param name="id" type="uuid" dir="in"/>
9623 <param name="error" type="IVirtualBoxErrorInfo" dir="in"/>
9624 </method>
9625
9626 <method name="onShowWindow">
9627 <desc>
9628 Called by <link to="IMachine::canShowConsoleWindow()"/> and by
9629 <link to="IMachine::showConsoleWindow()"/> in order to notify
9630 console callbacks
9631 <link to="IConsoleCallback::onCanShowWindow()"/>
9632 and <link to="IConsoleCallback::onShowWindow()"/>.
9633 </desc>
9634 <param name="check" type="boolean" dir="in"/>
9635 <param name="canShow" type="boolean" dir="out"/>
9636 <param name="winId" type="unsigned long long" dir="out"/>
9637 </method>
9638
9639 </interface>
9640
9641 <interface
9642 name="ISession" extends="$dispatched"
9643 uuid="12F4DCDB-12B2-4ec1-B7CD-DDD9F6C5BF4D"
9644 wsmap="managed"
9645 >
9646 <desc>
9647 The ISession interface represents a serialization primitive for virtual
9648 machines.
9649
9650 Within VirtualBox, every time one wishes to manipulate a virtual machine
9651 (for example, change its settings or start execution), an instance of
9652 the ISession interface is required. One first creates a local session
9653 object that implements the ISession interface and then passes the
9654 created object with the method call that opens the given session and
9655 thus initiates the machine manipulation. The session serves several
9656 purposes: it identifies to the inter-process VirtualBox code which
9657 process is currently working with the virtual machine, and it ensures
9658 that there are no incompatible requests from several processes for the
9659 same virtual machine.
9660
9661 How sessions objects are used depends on whether you use the Main API
9662 via COM or via the web service:
9663
9664 <ul>
9665 <li>When using the COM API directly, an object of the Session class from the
9666 VirtualBox type library needs to be created. In regular COM C++ client code,
9667 this can be done by calling <tt>createLocalObject()</tt>, a standard COM API.
9668 This object will then act as a local session object in further calls to open
9669 a session.
9670 </li>
9671
9672 <li>In the webservice, the session manager (IWebsessionManager) instead creates
9673 one session object automatically when <link to="IWebsessionManager::logon" />
9674 is called. A managed object reference to that session object can be retrieved by
9675 calling <link to="IWebsessionManager::getSessionObject" />. This session object
9676 reference can then be used to open sessions.
9677 </li>
9678 </ul>
9679
9680 Sessions are mainly used in two variations:
9681
9682 <ul>
9683 <li>
9684 To start a virtual machine in a separate process, one would call
9685 <link to="IVirtualBox::openRemoteSession"/>, which requires a session
9686 object as its first parameter. This session then identifies the caller
9687 and lets him control the started machine (for example, pause machine
9688 execution or power it down) as well as be notified about machine
9689 execution state changes.
9690 </li>
9691
9692 <li>To alter machine settings, or to start machine execution within the
9693 current process, one needs to open a direct session for the machine first by
9694 calling <link to="IVirtualBox::openSession"/>. While a direct session
9695 is open within one process, no any other process may open another direct
9696 session for the same machine. This prevents the machine from being changed
9697 by other processes while it is running or while the machine is being configured.
9698 </li>
9699 </ul>
9700
9701 One also can attach to an existing direct session alreay opened by
9702 another process (for example, in order to send a control request to the
9703 virtual machine such as the pause or the reset request). This is done by
9704 calling <link to="IVirtualBox::openExistingSession"/>.
9705
9706 <note>
9707 Unless you are trying to write a new VirtualBox front-end that
9708 performs direct machine execution (like the VirtualBox or VBoxSDL
9709 frontends), don't call <link to="IConsole::powerUp"/> in a direct
9710 session opened by <link to="IVirtualBox::openSession"/> and use this
9711 session only to change virtual machine settings. If you simply want to
9712 start virtual machine execution using one of the existing frontends
9713 (for example the VirtualBox GUI frontend), use
9714 <link to="IVirtualBox::openRemoteSession"/>. In the latter case, on
9715 sucess, the machine will be powered up for you by the front-end so you
9716 don't need to call <link to="IConsole::powerUp"/> too.
9717 </note>
9718 </desc>
9719
9720 <attribute name="state" type="SessionState" readonly="yes">
9721 <desc>Current state of this session.</desc>
9722 </attribute>
9723
9724 <attribute name="type" type="SessionType" readonly="yes">
9725 <desc>
9726 Type of this session. The value of this attribute is valid only
9727 if the session is currently open (i.e. its #state is SessionType::SessionOpen),
9728 otherwise an error will be returned.
9729 </desc>
9730 </attribute>
9731
9732 <attribute name="machine" type="IMachine" readonly="yes">
9733 <desc>Machine object associated with this session.</desc>
9734 </attribute>
9735
9736 <attribute name="console" type="IConsole" readonly="yes">
9737 <desc>Console object associated with this session.</desc>
9738 </attribute>
9739
9740 <method name="close">
9741 <desc>
9742 Closes this session.
9743 <note>
9744 If a direct session for a machine opened with
9745 <link to="IVirtualBox::openSession()"/> is not explicitly
9746 closed when the application terminates, the state of the
9747 machine will be set to <link to="MachineState::Aborted"/>
9748 on the server. Generally, it is recommended to close all
9749 open sessions explicitly before terminating the application
9750 (no matter what is the reason of the termination).
9751 </note>
9752 </desc>
9753 </method>
9754
9755 </interface>
9756
9757 <!--
9758 // ISATAController
9759 /////////////////////////////////////////////////////////////////////////
9760 -->
9761
9762 <interface
9763 name="ISATAController" extends="$unknown"
9764 uuid="9a4b868b-1376-4533-8ef5-065b8e8cedff"
9765 wsmap="managed"
9766 >
9767 <attribute name="enabled" type="boolean">
9768 <desc>
9769 Flag whether the SATA controller is present in the
9770 guest system. If disabled, the virtual guest hardware will
9771 not contain any SATA controller. Can only be changed when
9772 the VM is powered off.
9773 </desc>
9774 </attribute>
9775
9776 <method name="GetIDEEmulationPort">
9777 <desc>Gets the corresponding port number which is emulated as an IDE device.</desc>
9778 <param name="devicePosition" type="long" dir="in"/>
9779 <param name="portNumber" type="long" dir="return"/>
9780 </method>
9781
9782 <method name="SetIDEEmulationPort">
9783 <desc>Sets the port number which is emulated as an IDE device.</desc>
9784 <param name="devicePosition" type="long" dir="in"/>
9785 <param name="portNumber" type="long" dir="in"/>
9786 </method>
9787
9788 </interface>
9789
9790<if target="wsdl">
9791
9792 <!--
9793 // IManagedObjectRef
9794 /////////////////////////////////////////////////////////////////////////
9795 -->
9796
9797 <interface
9798 name="IManagedObjectRef" extends="$unknown"
9799 uuid="9474d09d-2313-46de-b568-a42b8718e8ed"
9800 internal="yes"
9801 wsmap="managed"
9802 wscpp="hardcoded"
9803 >
9804 <desc>
9805 Webservice only: Managed object reference.
9806
9807 Only within the webservice, a managed object reference (which is really
9808 an opaque number) allows a webservice client to address an object
9809 that lives in the address space of the webservice server.
9810
9811 Behind each managed object reference, there is a COM object that lives
9812 in the webservice server's address space. The COM object is not freed
9813 until the managed object reference is released, either by an explicit
9814 call to <link to="IManagedObjectRef::release" /> or by logging off from
9815 the webservice (<link to="IWebsessionManager::logoff" />), which releases
9816 all objects created during the webservice session.
9817
9818 Whenever a method call of the VirtualBox API returns a COM object, the
9819 webservice representation of that method will instead return a
9820 managed object reference, which can then be used to invoke methods
9821 on that object.
9822 </desc>
9823
9824 <method name="getInterfaceName">
9825 <desc>
9826 Returns the name of the interface that this managed object represents,
9827 for example, "IMachine", as a string.
9828 </desc>
9829 <param name="return" type="wstring" dir="return"/>
9830 </method>
9831
9832 <method name="release">
9833 <desc>
9834 Releases this managed object reference and frees the resources that
9835 were allocated for it in the webservice server process. After calling
9836 this method, the identifier of the reference can no longer be used.
9837 </desc>
9838 </method>
9839
9840 </interface>
9841
9842 <!--
9843 // IWebsessionManager
9844 /////////////////////////////////////////////////////////////////////////
9845 -->
9846
9847 <interface
9848 name="IWebsessionManager" extends="$unknown"
9849 uuid="dea1b4c7-2de3-418a-850d-7868617f7733"
9850 internal="yes"
9851 wsmap="global"
9852 wscpp="hardcoded"
9853 >
9854 <desc>
9855 Webservice only: Websession manager. This provides essential services
9856 to webservice clients.
9857 </desc>
9858 <method name="logon">
9859 <desc>
9860 Logs a new client onto the webservice and returns a managed object reference to
9861 the IVirtualBox instance, which the client can then use as a basis to further
9862 queries, since all calls to the VirtualBox API are based on the IVirtualBox
9863 interface, in one way or the other.
9864 </desc>
9865 <param name="username" type="wstring" dir="in"/>
9866 <param name="password" type="wstring" dir="in"/>
9867 <param name="return" type="wstring" dir="return"/>
9868 </method>
9869
9870 <method name="getSessionObject">
9871 <desc>
9872 Returns a managed object reference to the internal ISession object that was created
9873 for this web service session when the client logged on.
9874
9875 <see>ISession</see>
9876 </desc>
9877 <param name="refIVirtualBox" type="wstring" dir="in"/>
9878 <param name="return" type="wstring" dir="return"/>
9879 </method>
9880
9881 <method name="logoff">
9882 <desc>
9883 Logs off the client who has previously logged on with <link to="IWebsessionManager::logoff" />
9884 and destroys all resources associated with the session (most importantly, all
9885 managed objects created in the server while the session was active).
9886 </desc>
9887 <param name="refIVirtualBox" type="wstring" dir="in"/>
9888 </method>
9889
9890 </interface>
9891
9892</if>
9893
9894 <module name="VBoxSVC" context="LocalServer">
9895 <class name="VirtualBox" uuid="B1A7A4F2-47B9-4A1E-82B2-07CCD5323C3F"
9896 namespace="virtualbox.org">
9897 <interface name="IVirtualBox" default="yes"/>
9898 </class>
9899 </module>
9900
9901 <module name="VBoxC" context="InprocServer" threadingModel="Free">
9902 <class name="Session" uuid="3C02F46D-C9D2-4f11-A384-53F0CF917214"
9903 namespace="virtualbox.org">
9904 <interface name="ISession" default="yes"/>
9905 </class>
9906 </module>
9907
9908</library>
9909
9910</idl>
Note: See TracBrowser for help on using the repository browser.

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