VirtualBox

source: vbox/trunk/doc/manual/en_US/SDKRef.xml@ 77790

Last change on this file since 77790 was 75389, checked in by vboxsync, 6 years ago

Docs: SDK changelog.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 270.2 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"[
4<!ENTITY % all.entities SYSTEM "all-entities.ent">
5%all.entities;
6]>
7
8<book>
9 <bookinfo>
10 <title>&VBOX_PRODUCT;</title>
11
12 <subtitle>Programming Guide and Reference</subtitle>
13
14 <edition>Version &VBOX_VERSION_STRING;</edition>
15
16 <corpauthor>&VBOX_VENDOR;</corpauthor>
17
18 <address>http://www.virtualbox.org</address>
19
20 <copyright>
21 <year>2004-&VBOX_C_YEAR;</year>
22
23 <holder>&VBOX_VENDOR;</holder>
24 </copyright>
25 </bookinfo>
26
27 <chapter>
28 <title>Introduction</title>
29
30 <para>VirtualBox comes with comprehensive support for third-party
31 developers. This Software Development Kit (SDK) contains all the
32 documentation and interface files that are needed to write code that
33 interacts with VirtualBox.</para>
34
35 <sect1>
36 <title>Modularity: the building blocks of VirtualBox</title>
37
38 <para>VirtualBox is cleanly separated into several layers, which can be
39 visualized like in the picture below:</para>
40
41 <mediaobject>
42 <imageobject>
43 <imagedata align="center" fileref="images/vbox-components.png"
44 width="12cm"/>
45 </imageobject>
46 </mediaobject>
47
48 <para>The orange area represents code that runs in kernel mode, the blue
49 area represents userspace code.</para>
50
51 <para>At the bottom of the stack resides the hypervisor -- the core of
52 the virtualization engine, controlling execution of the virtual machines
53 and making sure they do not conflict with each other or whatever the
54 host computer is doing otherwise.</para>
55
56 <para>On top of the hypervisor, additional internal modules provide
57 extra functionality. For example, the RDP server, which can deliver the
58 graphical output of a VM remotely to an RDP client, is a separate module
59 that is only loosely tacked into the virtual graphics device. Live
60 Migration and Resource Monitor are additional modules currently in the
61 process of being added to VirtualBox.</para>
62
63 <para>What is primarily of interest for purposes of the SDK is the API
64 layer block that sits on top of all the previously mentioned blocks.
65 This API, which we call the <emphasis role="bold">"Main API"</emphasis>,
66 exposes the entire feature set of the virtualization engine below. It is
67 completely documented in this SDK Reference -- see <xref
68 linkend="sdkref_classes"/> and <xref linkend="sdkref_enums"/> -- and
69 available to anyone who wishes to control VirtualBox programmatically.
70 We chose the name "Main API" to differentiate it from other programming
71 interfaces of VirtualBox that may be publicly accessible.</para>
72
73 <para>With the Main API, you can create, configure, start, stop and
74 delete virtual machines, retrieve performance statistics about running
75 VMs, configure the VirtualBox installation in general, and more. In
76 fact, internally, the front-end programs
77 <computeroutput>VirtualBox</computeroutput> and
78 <computeroutput>VBoxManage</computeroutput> use nothing but this API as
79 well -- there are no hidden backdoors into the virtualization engine for
80 our own front-ends. This ensures the entire Main API is both
81 well-documented and well-tested. (The same applies to
82 <computeroutput>VBoxHeadless</computeroutput>, which is not shown in the
83 image.)</para>
84 </sect1>
85
86 <sect1 id="webservice-or-com">
87 <title>Two guises of the same "Main API": the web service or
88 COM/XPCOM</title>
89
90 <para>There are several ways in which the Main API can be called by
91 other code:<orderedlist>
92 <listitem>
93 <para>VirtualBox comes with a <emphasis role="bold">web
94 service</emphasis> that maps nearly the entire Main API. The web
95 service ships in a stand-alone executable
96 (<computeroutput>vboxwebsrv</computeroutput>) that, when running,
97 acts as an HTTP server, accepts SOAP connections and processes
98 them.</para>
99
100 <para>Since the entire web service API is publicly described in a
101 web service description file (in WSDL format), you can write
102 client programs that call the web service in any language with a
103 toolkit that understands WSDL. These days, that includes most
104 programming languages that are available: Java, C++, .NET, PHP,
105 Python, Perl and probably many more.</para>
106
107 <para>All of this is explained in detail in subsequent chapters of
108 this book.</para>
109
110 <para>There are two ways in which you can write client code that
111 uses the web service:<orderedlist>
112 <listitem>
113 <para>For Java as well as Python, the SDK contains
114 easy-to-use classes that allow you to use the web service in
115 an object-oriented, straightforward manner. We shall refer
116 to this as the <emphasis role="bold">"object-oriented web
117 service (OOWS)"</emphasis>.</para>
118
119 <para>The OO bindings for Java are described in <xref
120 linkend="javaapi"/>, those for Python in <xref
121 linkend="glue-python-ws"/>.</para>
122 </listitem>
123
124 <listitem>
125 <para>Alternatively, you can use the web service directly,
126 without the object-oriented client layer. We shall refer to
127 this as the <emphasis role="bold">"raw web
128 service"</emphasis>.</para>
129
130 <para>You will then have neither native object orientation
131 nor full type safety, since web services are neither
132 object-oriented nor stateful. However, in this way, you can
133 write client code even in languages for which we do not ship
134 object-oriented client code; all you need is a programming
135 language with a toolkit that can parse WSDL and generate
136 client wrapper code from it.</para>
137
138 <para>We describe this further in <xref
139 linkend="raw-webservice"/>, with samples for Java and
140 Perl.</para>
141 </listitem>
142 </orderedlist></para>
143 </listitem>
144
145 <listitem>
146 <para>Internally, for portability and easier maintenance, the Main
147 API is implemented using the <emphasis role="bold">Component
148 Object Model (COM), </emphasis> an interprocess mechanism for
149 software components originally introduced by Microsoft for
150 Microsoft Windows. On a Windows host, VirtualBox will use
151 Microsoft COM; on other hosts where COM is not present, it ships
152 with XPCOM, a free software implementation of COM originally
153 created by the Mozilla project for their browsers.</para>
154
155 <para>So, if you are familiar with COM and the C++ programming
156 language (or with any other programming language that can handle
157 COM/XPCOM objects, such as Java, Visual Basic or C#), then you can
158 use the COM/XPCOM API directly. VirtualBox comes with all
159 necessary files and documentation to build fully functional COM
160 applications. For an introduction, please see <xref
161 linkend="api_com"/> below.</para>
162
163 <para>The VirtualBox front-ends (the graphical user interfaces as
164 well as the command line), which are all written in C++, use
165 COM/XPCOM to call the Main API. Technically, the web service is
166 another front-end to this COM API, mapping almost all of it to
167 SOAP clients.</para>
168 </listitem>
169 </orderedlist></para>
170
171 <para>If you wonder which way to choose, here are a few
172 comparisons:<table>
173 <title>Comparison web service vs. COM/XPCOM</title>
174
175 <tgroup cols="2">
176 <tbody>
177 <row>
178 <entry><emphasis role="bold">Web service</emphasis></entry>
179
180 <entry><emphasis role="bold">COM/XPCOM</emphasis></entry>
181 </row>
182
183 <row>
184 <entry><emphasis role="bold">Pro:</emphasis> Easy to use with
185 Java and Python with the object-oriented web service;
186 extensive support even with other languages (C++, .NET, PHP,
187 Perl and others)</entry>
188
189 <entry><emphasis role="bold">Con:</emphasis> Usable from
190 languages where COM bridge available (most languages on
191 Windows platform, Python and C++ on other hosts)</entry>
192 </row>
193
194 <row>
195 <entry><emphasis role="bold">Pro:</emphasis> Client can be on
196 remote machine</entry>
197
198 <entry><emphasis role="bold">Con: </emphasis>Client must be on
199 the same host where virtual machine is executed</entry>
200 </row>
201
202 <row>
203 <entry><emphasis role="bold">Con: </emphasis>Significant
204 overhead due to XML marshalling over the wire for each method
205 call</entry>
206
207 <entry><emphasis role="bold">Pro: </emphasis>Relatively low
208 invocation overhead</entry>
209 </row>
210 </tbody>
211 </tgroup>
212 </table></para>
213
214 <para>In the following chapters, we will describe the different ways in
215 which to program VirtualBox, starting with the method that is easiest to
216 use and then increase complexity as we go along.</para>
217 </sect1>
218
219 <sect1 id="api_soap_intro">
220 <title>About web services in general</title>
221
222 <para>Web services are a particular type of programming interface.
223 Whereas, with "normal" programming, a program calls an application
224 programming interface (API) defined by another program or the operating
225 system and both sides of the interface have to agree on the calling
226 convention and, in most cases, use the same programming language, web
227 services use Internet standards such as HTTP and XML to
228 communicate.<footnote>
229 <para>In some ways, web services promise to deliver the same thing
230 as CORBA and DCOM did years ago. However, while these previous
231 technologies relied on specific binary protocols and thus proved to
232 be difficult to use between diverging platforms, web services
233 circumvent these incompatibilities by using text-only standards like
234 HTTP and XML. On the downside (and, one could say, typical of things
235 related to XML), a lot of standards are involved before a web
236 service can be implemented. Many of the standards invented around
237 XML are used one way or another. As a result, web services are slow
238 and verbose, and the details can be incredibly messy. The relevant
239 standards here are called SOAP and WSDL, where SOAP describes the
240 format of the messages that are exchanged (an XML document wrapped
241 in an HTTP header), and WSDL is an XML format that describes a
242 complete API provided by a web service. WSDL in turn uses XML Schema
243 to describe types, which is not exactly terse either. However, as
244 you will see from the samples provided in this chapter, the
245 VirtualBox web service shields you from these details and is easy to
246 use.</para>
247 </footnote></para>
248
249 <para>In order to successfully use a web service, a number of things are
250 required -- primarily, a web service accepting connections; service
251 descriptions; and then a client that connects to that web service. The
252 connections are governed by the SOAP standard, which describes how
253 messages are to be exchanged between a service and its clients; the
254 service descriptions are governed by WSDL.</para>
255
256 <para>In the case of VirtualBox, this translates into the following
257 three components:<orderedlist>
258 <listitem>
259 <para>The VirtualBox web service (the "server"): this is the
260 <computeroutput>vboxwebsrv</computeroutput> executable shipped
261 with VirtualBox. Once you start this executable (which acts as a
262 HTTP server on a specific TCP/IP port), clients can connect to the
263 web service and thus control a VirtualBox installation.</para>
264 </listitem>
265
266 <listitem>
267 <para>VirtualBox also comes with WSDL files that describe the
268 services provided by the web service. You can find these files in
269 the <computeroutput>sdk/bindings/webservice/</computeroutput>
270 directory. These files are understood by the web service toolkits
271 that are shipped with most programming languages and enable you to
272 easily access a web service even if you don't use our
273 object-oriented client layers. VirtualBox is shipped with
274 pregenerated web service glue code for several languages (Python,
275 Perl, Java).</para>
276 </listitem>
277
278 <listitem>
279 <para>A client that connects to the web service in order to
280 control the VirtualBox installation.</para>
281
282 <para>Unless you play with some of the samples shipped with
283 VirtualBox, this needs to be written by you.</para>
284 </listitem>
285 </orderedlist></para>
286 </sect1>
287
288 <sect1 id="runvboxwebsrv">
289 <title>Running the web service</title>
290
291 <para>The web service ships in an stand-alone executable,
292 <computeroutput>vboxwebsrv</computeroutput>, that, when running, acts as
293 a HTTP server, accepts SOAP connections and processes them -- remotely
294 or from the same machine.<note>
295 <para>The web service executable is not contained with the
296 VirtualBox SDK, but instead ships with the standard VirtualBox
297 binary package for your specific platform. Since the SDK contains
298 only platform-independent text files and documentation, the binaries
299 are instead shipped with the platform-specific packages. For this
300 reason the information how to run it as a service is included in the
301 VirtualBox documentation.</para>
302 </note></para>
303
304 <para>The <computeroutput>vboxwebsrv</computeroutput> program, which
305 implements the web service, is a text-mode (console) program which,
306 after being started, simply runs until it is interrupted with Ctrl-C or
307 a kill command.</para>
308
309 <para>Once the web service is started, it acts as a front-end to the
310 VirtualBox installation of the user account that it is running under. In
311 other words, if the web service is run under the user account of
312 <computeroutput>user1</computeroutput>, it will see and manipulate the
313 virtual machines and other data represented by the VirtualBox data of
314 that user (for example, on a Linux machine, under
315 <computeroutput>/home/user1/.config/VirtualBox</computeroutput>; see the
316 VirtualBox User Manual for details on where this data is stored).</para>
317
318 <sect2 id="vboxwebsrv-ref">
319 <title>Command line options of vboxwebsrv</title>
320
321 <para>The web service supports the following command line
322 options:</para>
323
324 <itemizedlist>
325 <listitem>
326 <para><computeroutput>--help</computeroutput> (or
327 <computeroutput>-h</computeroutput>): print a brief summary of
328 command line options.</para>
329 </listitem>
330
331 <listitem>
332 <para><computeroutput>--background</computeroutput> (or
333 <computeroutput>-b</computeroutput>): run the web service as a
334 background daemon. This option is not supported on Windows
335 hosts.</para>
336 </listitem>
337
338 <listitem>
339 <para><computeroutput>--host</computeroutput> (or
340 <computeroutput>-H</computeroutput>): This specifies the host to
341 bind to and defaults to "localhost".</para>
342 </listitem>
343
344 <listitem>
345 <para><computeroutput>--port</computeroutput> (or
346 <computeroutput>-p</computeroutput>): This specifies which port to
347 bind to on the host and defaults to 18083.</para>
348 </listitem>
349
350 <listitem>
351 <para><computeroutput>--ssl</computeroutput> (or
352 <computeroutput>-s</computeroutput>): This enables SSL
353 support.</para>
354 </listitem>
355
356 <listitem>
357 <para><computeroutput>--keyfile</computeroutput> (or
358 <computeroutput>-K</computeroutput>): This specifies the file name
359 containing the server private key and the certificate. This is a
360 mandatory parameter if SSL is enabled.</para>
361 </listitem>
362
363 <listitem>
364 <para><computeroutput>--passwordfile</computeroutput> (or
365 <computeroutput>-a</computeroutput>): This specifies the file name
366 containing the password for the server private key. If unspecified
367 or an empty string is specified this is interpreted as an empty
368 password (i.e. the private key is not protected by a password). If
369 the file name <computeroutput>-</computeroutput> is specified then
370 then the password is read from the standard input stream, otherwise
371 from the specified file. The user is responsible for appropriate
372 access rights to protect the confidential password.</para>
373 </listitem>
374
375 <listitem>
376 <para><computeroutput>--cacert</computeroutput> (or
377 <computeroutput>-c</computeroutput>): This specifies the file name
378 containing the CA certificate appropriate for the server
379 certificate.</para>
380 </listitem>
381
382 <listitem>
383 <para><computeroutput>--capath</computeroutput> (or
384 <computeroutput>-C</computeroutput>): This specifies the directory
385 containing several CA certificates appropriate for the server
386 certificate.</para>
387 </listitem>
388
389 <listitem>
390 <para><computeroutput>--dhfile</computeroutput> (or
391 <computeroutput>-D</computeroutput>): This specifies the file name
392 containing the DH key. Alternatively it can contain the number of
393 bits of the DH key to generate. If left empty, RSA is used.</para>
394 </listitem>
395
396 <listitem>
397 <para><computeroutput>--randfile</computeroutput> (or
398 <computeroutput>-r</computeroutput>): This specifies the file name
399 containing the seed for the random number generator. If left empty,
400 an operating system specific source of the seed.</para>
401 </listitem>
402
403 <listitem>
404 <para><computeroutput>--timeout</computeroutput> (or
405 <computeroutput>-t</computeroutput>): This specifies the session
406 timeout, in seconds, and defaults to 300 (five minutes). A web
407 service client that has logged on but makes no calls to the web
408 service will automatically be disconnected after the number of
409 seconds specified here, as if it had called the
410 <computeroutput>IWebSessionManager::logoff()</computeroutput>
411 method provided by the web service itself.</para>
412
413 <para>It is normally vital that each web service client call this
414 method, as the web service can accumulate large amounts of memory
415 when running, especially if a web service client does not properly
416 release managed object references. As a result, this timeout value
417 should not be set too high, especially on machines with a high
418 load on the web service, or the web service may eventually deny
419 service.</para>
420 </listitem>
421
422 <listitem>
423 <para><computeroutput>--check-interval</computeroutput> (or
424 <computeroutput>-i</computeroutput>): This specifies the interval
425 in which the web service checks for timed-out clients, in seconds,
426 and defaults to 5. This normally does not need to be
427 changed.</para>
428 </listitem>
429
430 <listitem>
431 <para><computeroutput>--threads</computeroutput> (or
432 <computeroutput>-T</computeroutput>): This specifies the maximum
433 number or worker threads, and defaults to 100. This normally does
434 not need to be changed.</para>
435 </listitem>
436
437 <listitem>
438 <para><computeroutput>--keepalive</computeroutput> (or
439 <computeroutput>-k</computeroutput>): This specifies the maximum
440 number of requests which can be sent in one web service connection,
441 and defaults to 100. This normally does not need to be
442 changed.</para>
443 </listitem>
444
445 <listitem>
446 <para><computeroutput>--authentication</computeroutput> (or
447 <computeroutput>-A</computeroutput>): This specifies the desired
448 web service authentication method. If the parameter is not
449 specified or the empty string is specified it does not change the
450 authentication method, otherwise it is set to the specified value.
451 Using this parameter is a good measure against accidental
452 misconfiguration, as the web service ensures periodically that it
453 isn't changed.</para>
454 </listitem>
455
456 <listitem>
457 <para><computeroutput>--verbose</computeroutput> (or
458 <computeroutput>-v</computeroutput>): Normally, the web service
459 outputs only brief messages to the console each time a request is
460 served. With this option, the web service prints much more detailed
461 data about every request and the COM methods that those requests
462 are mapped to internally, which can be useful for debugging client
463 programs.</para>
464 </listitem>
465
466 <listitem>
467 <para><computeroutput>--pidfile</computeroutput> (or
468 <computeroutput>-P</computeroutput>): Name of the PID file which is
469 created when the daemon was started.</para>
470 </listitem>
471
472 <listitem>
473 <para><computeroutput>--logfile</computeroutput> (or
474 <computeroutput>-F</computeroutput>)
475 <computeroutput>&lt;file&gt;</computeroutput>: If this is
476 specified, the web service not only prints its output to the
477 console, but also writes it to the specified file. The file is
478 created if it does not exist; if it does exist, new output is
479 appended to it. This is useful if you run the web service
480 unattended and need to debug problems after they have
481 occurred.</para>
482 </listitem>
483
484 <listitem>
485 <para><computeroutput>--logrotate</computeroutput> (or
486 <computeroutput>-R</computeroutput>): Number of old log files to
487 keep, defaults to 10. Log rotation is disabled if set to 0.</para>
488 </listitem>
489
490 <listitem>
491 <para><computeroutput>--logsize</computeroutput> (or
492 <computeroutput>-S</computeroutput>): Maximum size of log file in
493 bytes, defaults to 100MB. Log rotation is triggered if the file
494 grows beyond this limit.</para>
495 </listitem>
496
497 <listitem>
498 <para><computeroutput>--loginterval</computeroutput> (or
499 <computeroutput>-I</computeroutput>): Maximum time interval to be
500 put in a log file before rotation is triggered, in seconds, and
501 defaults to one day.</para>
502 </listitem>
503 </itemizedlist>
504 </sect2>
505
506 <sect2 id="websrv_authenticate">
507 <title>Authenticating at web service logon</title>
508
509 <para>As opposed to the COM/XPCOM variant of the Main API, a client
510 that wants to use the web service must first log on by calling the
511 <link linkend="IWebsessionManager__logon">IWebsessionManager::logon()</link>
512 API that is specific to the
513 web service. Logon is necessary for the web service to be stateful;
514 internally, it maintains a session for each client that connects to
515 it.</para>
516
517 <para>The <computeroutput>IWebsessionManager::logon()</computeroutput>
518 API takes a user name and a password as arguments, which the web
519 service then passes to a customizable authentication plugin that
520 performs the actual authentication.</para>
521
522 <para>For testing purposes, it is recommended that you first disable
523 authentication with this command:
524 <screen>VBoxManage setproperty websrvauthlibrary null</screen></para>
525
526 <para><warning>
527 <para>This will cause all logons to succeed, regardless of user
528 name or password. This should of course not be used in a
529 production environment.</para>
530 </warning>Generally, the mechanism by which clients are
531 authenticated is configurable by way of the
532 <computeroutput>VBoxManage</computeroutput> command:</para>
533
534 <para><screen>VBoxManage setproperty websrvauthlibrary default|null|&lt;library&gt;</screen></para>
535
536 <para>This way you can specify any shared object/dynamic link module
537 that conforms with the specifications for VirtualBox external
538 authentication modules as laid out in section <emphasis
539 role="bold">VRDE authentication</emphasis> of the VirtualBox User
540 Manual; the web service uses the same kind of modules as the
541 VirtualBox VRDE server. For technical details on VirtualBox external
542 authentication modules see <xref linkend="vbox-auth"/></para>
543
544 <para>By default, after installation, the web service uses the
545 VBoxAuth module that ships with VirtualBox. This module uses PAM on
546 Linux hosts to authenticate users. Any valid username/password
547 combination is accepted, it does not have to be the username and
548 password of the user running the web service daemon. Unless
549 <computeroutput>vboxwebsrv</computeroutput> runs as root, PAM
550 authentication can fail, because sometimes the file
551 <computeroutput>/etc/shadow</computeroutput>, which is used by PAM, is
552 not readable. On most Linux distribution PAM uses a suid root helper
553 internally, so make sure you test this before deploying it. One can
554 override this behavior by setting the environment variable
555 <computeroutput>VBOX_PAM_ALLOW_INACTIVE</computeroutput> which will
556 suppress failures when unable to read the shadow password file. Please
557 use this variable carefully, and only if you fully understand what
558 you're doing.</para>
559 </sect2>
560 </sect1>
561 </chapter>
562
563 <chapter>
564 <title>Environment-specific notes</title>
565
566 <para>The Main API described in <xref linkend="sdkref_classes"/> and
567 <xref linkend="sdkref_enums"/> is mostly identical in all the supported
568 programming environments which have been briefly mentioned in the
569 introduction of this book. As a result, the Main API's general concepts
570 described in <xref linkend="concepts"/> are the same whether you use the
571 object-oriented web service (OOWS) for JAX-WS or a raw web service
572 connection via, say, Perl, or whether you use C++ COM bindings.</para>
573
574 <para>Some things are different depending on your environment, however.
575 These differences are explained in this chapter.</para>
576
577 <sect1 id="glue">
578 <title>Using the object-oriented web service (OOWS)</title>
579
580 <para>As explained in <xref linkend="webservice-or-com"/>, VirtualBox
581 ships with client-side libraries for Java, Python and PHP that allow you
582 to use the VirtualBox web service in an intuitive, object-oriented way.
583 These libraries shield you from the client-side complications of managed
584 object references and other implementation details that come with the
585 VirtualBox web service. (If you are interested in these complications,
586 have a look at <xref linkend="raw-webservice"/>).</para>
587
588 <para>We recommend that you start your experiments with the VirtualBox
589 web service by using our object-oriented client libraries for JAX-WS, a
590 web service toolkit for Java, which enables you to write code to
591 interact with VirtualBox in the simplest manner possible.</para>
592
593 <para>As "interfaces", "attributes" and "methods" are COM concepts,
594 please read the documentation in <xref linkend="sdkref_classes"/> and
595 <xref linkend="sdkref_enums"/> with the following notes in mind.</para>
596
597 <para>The OOWS bindings attempt to map the Main API as closely as
598 possible to the Java, Python and PHP languages. In other words, objects
599 are objects, interfaces become classes, and you can call methods on
600 objects as you would on local objects.</para>
601
602 <para>The main difference remains with attributes: to read an attribute,
603 call a "getXXX" method, with "XXX" being the attribute name with a
604 capitalized first letter. So when the Main API Reference says that
605 <computeroutput>IMachine</computeroutput> has a "name" attribute (see
606 <link linkend="IMachine__name">IMachine::name</link>), call
607 <computeroutput>getName()</computeroutput> on an IMachine object to
608 obtain a machine's name. Unless the attribute is marked as read-only in
609 the documentation, there will also be a corresponding "set"
610 method.</para>
611
612 <sect2 id="glue-jax-ws">
613 <title>The object-oriented web service for JAX-WS</title>
614
615 <para>JAX-WS is a powerful toolkit by Sun Microsystems to build both
616 server and client code with Java. It is part of Java 6 (JDK 1.6), but
617 can also be obtained separately for Java 5 (JDK 1.5). The VirtualBox
618 SDK comes with precompiled OOWS bindings working with both Java 5 and
619 6.</para>
620
621 <para>The following sections explain how to get the JAX-WS sample code
622 running and explain a few common practices when using the JAX-WS
623 object-oriented web service.</para>
624
625 <sect3>
626 <title>Preparations</title>
627
628 <para>Since JAX-WS is already integrated into Java 6, no additional
629 preparations are needed for Java 6.</para>
630
631 <para>If you are using Java 5 (JDK 1.5.x), you will first need to
632 download and install an external JAX-WS implementation, as Java 5
633 does not support JAX-WS out of the box; for example, you can
634 download one from here: <ulink
635 url="https://jax-ws.dev.java.net/2.1.4/JAXWS2.1.4-20080502.jar">https://jax-ws.dev.java.net/2.1.4/JAXWS2.1.4-20080502.jar</ulink>.
636 Then perform the installation (<computeroutput>java -jar
637 JAXWS2.1.4-20080502.jar</computeroutput>).</para>
638 </sect3>
639
640 <sect3>
641 <title>Getting started: running the sample code</title>
642
643 <para>To run the OOWS for JAX-WS samples that we ship with the SDK,
644 perform the following steps: <orderedlist>
645 <listitem>
646 <para>Open a terminal and change to the directory where the
647 JAX-WS samples reside.<footnote>
648 <para>In
649 <computeroutput>sdk/bindings/glue/java/</computeroutput>.</para>
650 </footnote> Examine the header of
651 <computeroutput>Makefile</computeroutput> to see if the
652 supplied variables (Java compiler, Java executable) and a few
653 other details match your system settings.</para>
654 </listitem>
655
656 <listitem>
657 <para>To start the VirtualBox web service, open a second
658 terminal and change to the directory where the VirtualBox
659 executables are located. Then type:
660 <screen>./vboxwebsrv -v</screen></para>
661
662 <para>The web service now waits for connections and will run
663 until you press Ctrl+C in this second terminal. The -v
664 argument causes it to log all connections to the terminal.
665 (See <xref linkend="runvboxwebsrv"/> for details on how
666 to run the web service.)</para>
667 </listitem>
668
669 <listitem>
670 <para>Back in the first terminal and still in the samples
671 directory, to start a simple client example just type:
672 <screen>make run16</screen></para>
673
674 <para>if you're on a Java 6 system; on a Java 5 system, run
675 <computeroutput>make run15</computeroutput> instead.</para>
676
677 <para>This should work on all Unix-like systems such as Linux
678 and Solaris. For Windows systems, use commands similar to what
679 is used in the Makefile.</para>
680
681 <para>This will compile the
682 <computeroutput>clienttest.java</computeroutput> code on the
683 first call and then execute the resulting
684 <computeroutput>clienttest</computeroutput> class to show the
685 locally installed VMs (see below).</para>
686 </listitem>
687 </orderedlist></para>
688
689 <para>The <computeroutput>clienttest</computeroutput> sample
690 imitates a few typical command line tasks that
691 <computeroutput>VBoxManage</computeroutput>, VirtualBox's regular
692 command-line front-end, would provide (see the VirtualBox User
693 Manual for details). In particular, you can run:<itemizedlist>
694 <listitem>
695 <para><computeroutput>java clienttest show
696 vms</computeroutput>: show the virtual machines that are
697 registered locally.</para>
698 </listitem>
699
700 <listitem>
701 <para><computeroutput>java clienttest list
702 hostinfo</computeroutput>: show various information about the
703 host this VirtualBox installation runs on.</para>
704 </listitem>
705
706 <listitem>
707 <para><computeroutput>java clienttest startvm
708 &lt;vmname|uuid&gt;</computeroutput>: start the given virtual
709 machine.</para>
710 </listitem>
711 </itemizedlist></para>
712
713 <para>The <computeroutput>clienttest.java</computeroutput> sample
714 code illustrates common basic practices how to use the VirtualBox
715 OOWS for JAX-WS, which we will explain in more detail in the
716 following chapters.</para>
717 </sect3>
718
719 <sect3>
720 <title>Logging on to the web service</title>
721
722 <para>Before a web service client can do anything useful, two
723 objects need to be created, as can be seen in the
724 <computeroutput>clienttest</computeroutput> constructor:<orderedlist>
725 <listitem>
726 <para>An instance of
727 <link linkend="IWebsessionManager">IWebsessionManager</link>,
728 which is an interface provided by the web service to manage
729 "web sessions" -- that is, stateful connections to the web
730 service with persistent objects upon which methods can be
731 invoked.</para>
732
733 <para>In the OOWS for JAX-WS, the IWebsessionManager class
734 must be constructed explicitly, and a URL must be provided in
735 the constructor that specifies where the web service (the
736 server) awaits connections. The code in
737 <computeroutput>clienttest.java</computeroutput> connects to
738 "http://localhost:18083/", which is the default.</para>
739
740 <para>The port number, by default 18083, must match the port
741 number given to the
742 <computeroutput>vboxwebsrv</computeroutput> command line; see
743 <xref linkend="vboxwebsrv-ref"/>.</para>
744 </listitem>
745
746 <listitem>
747 <para>After that, the code calls
748 <link linkend="IWebsessionManager__logon">IWebsessionManager::logon()</link>,
749 which is the first call that actually communicates with the
750 server. This authenticates the client with the web service and
751 returns an instance of
752 <link linkend="IVirtualBox">IVirtualBox</link>,
753 the most fundamental interface of the VirtualBox web service,
754 from which all other functionality can be derived.</para>
755
756 <para>If logon doesn't work, please take another look at <xref
757 linkend="websrv_authenticate"/>.</para>
758 </listitem>
759 </orderedlist></para>
760 </sect3>
761
762 <sect3>
763 <title>Object management</title>
764
765 <para>The current OOWS for JAX-WS has certain memory management
766 related limitations. When you no longer need an object, call its
767 <link linkend="IManagedObjectRef__release">IManagedObjectRef::release()</link>
768 method explicitly, which
769 frees appropriate managed reference, as is required by the raw
770 web service; see <xref linkend="managed-object-references"/> for
771 details. This limitation may be reconsidered in a future version of
772 the VirtualBox SDK.</para>
773 </sect3>
774 </sect2>
775
776 <sect2 id="glue-python-ws">
777 <title>The object-oriented web service for Python</title>
778
779 <para>VirtualBox comes with two flavors of a Python API: one for web
780 service, discussed here, and one for the COM/XPCOM API discussed in
781 <xref linkend="pycom"/>. The client code is mostly similar, except
782 for the initialization part, so it is up to the application developer
783 to choose the appropriate technology. Moreover, a common Python glue
784 layer exists, abstracting out concrete platform access details, see
785 <xref linkend="glue-python"/>.</para>
786
787 <para>The minimum supported Python version is 2.6.</para>
788
789 <para>As indicated in <xref linkend="webservice-or-com"/>, the
790 COM/XPCOM API gives better performance without the SOAP overhead, and
791 does not require a web server to be running. On the other hand, the
792 COM/XPCOM Python API requires a suitable Python bridge for your Python
793 installation (VirtualBox ships the most important ones for each
794 platform<footnote>
795 <para>On On Mac OS X only the Python versions bundled with the OS
796 are officially supported. This means 2.6 and 2.7 for 10.9 and later.</para>
797 </footnote>). On Windows, you can use the Main API from Python if the
798 Win32 extensions package for Python<footnote>
799 <para>See <ulink
800 url="http://sourceforge.net/project/showfiles.php?group_id=78018">http://sourceforge.net/project/showfiles.php?group_id=78018</ulink>.</para>
801 </footnote> is installed. Versions of Python Win32 extensions earlier
802 than 2.16 are known to have bugs, leading to issues with VirtualBox
803 Python bindings, so please make sure to use latest available Python
804 and Win32 extensions.</para>
805
806 <para>The VirtualBox OOWS for Python relies on the Python ZSI SOAP
807 implementation (see <ulink
808 url="http://pywebsvcs.sourceforge.net/zsi.html">http://pywebsvcs.sourceforge.net/zsi.html</ulink>),
809 which you will need to install locally before trying the examples.
810 Most Linux distributions come with package for ZSI, such as
811 <computeroutput>python-zsi</computeroutput> in Ubuntu.</para>
812
813 <para>To get started, open a terminal and change to the
814 <computeroutput>bindings/glue/python/sample</computeroutput>
815 directory, which contains an example of a simple interactive shell
816 able to control a VirtualBox instance. The shell is written using the
817 API layer, thereby hiding different implementation details, so it is
818 actually an example of code share among XPCOM, MSCOM and web services.
819 If you are interested in how to interact with the web services layer
820 directly, have a look at
821 <computeroutput>install/vboxapi/__init__.py</computeroutput> which
822 contains the glue layer for all target platforms (i.e. XPCOM, MSCOM
823 and web services).</para>
824
825 <para>To start the shell, perform the following commands:
826 <screen>/opt/VirtualBox/vboxwebsrv -t 0
827 # start web service with object autocollection disabled
828export VBOX_PROGRAM_PATH=/opt/VirtualBox
829 # your VirtualBox installation directory
830export VBOX_SDK_PATH=/home/youruser/vbox-sdk
831 # where you've extracted the SDK
832./vboxshell.py -w </screen>
833 See <xref linkend="vboxshell"/> for more
834 details on the shell's functionality. For you, as a VirtualBox
835 application developer, the vboxshell sample could be interesting as an
836 example of how to write code targeting both local and remote cases
837 (COM/XPCOM and SOAP). The common part of the shell is the same -- the
838 only difference is how it interacts with the invocation layer. You can
839 use the <computeroutput>connect</computeroutput> shell command to
840 connect to remote VirtualBox servers; in this case you can skip
841 starting the local web server.</para>
842 </sect2>
843
844 <sect2>
845 <title>The object-oriented web service for PHP</title>
846
847 <para>VirtualBox also comes with object-oriented web service (OOWS)
848 wrappers for PHP5. These wrappers rely on the PHP SOAP
849 Extension<footnote>
850 <para>See
851 <ulink url="https://www.php.net/soap">https://www.php.net/soap</ulink>.</para>
852 </footnote>, which can be installed by configuring PHP with
853 <computeroutput>--enable-soap</computeroutput>.</para>
854 </sect2>
855 </sect1>
856
857 <sect1 id="raw-webservice">
858 <title>Using the raw web service with any language</title>
859
860 <para>The following examples show you how to use the raw web service,
861 without the object-oriented client-side code that was described in the
862 previous chapter.</para>
863
864 <para>Generally, when reading the documentation in <xref
865 linkend="sdkref_classes"/> and <xref linkend="sdkref_enums"/>, due to
866 the limitations of SOAP and WSDL lined out in <xref
867 linkend="rawws-conventions"/>, please have the following notes in
868 mind:</para>
869
870 <para><orderedlist>
871 <listitem>
872 <para>Any COM method call becomes a <emphasis role="bold">plain
873 function call</emphasis> in the raw web service, with the object
874 as an additional first parameter (before the "real" parameters
875 listed in the documentation). So when the documentation says that
876 the <computeroutput>IVirtualBox</computeroutput> interface
877 supports the <computeroutput>createMachine()</computeroutput>
878 method (see
879 <link linkend="IVirtualBox__createMachine">IVirtualBox::createMachine()</link>),
880 the web service operation is
881 <computeroutput>IVirtualBox_createMachine(...)</computeroutput>,
882 and a managed object reference to an
883 <computeroutput>IVirtualBox</computeroutput> object must be passed
884 as the first argument.</para>
885 </listitem>
886
887 <listitem>
888 <para>For <emphasis role="bold">attributes</emphasis> in
889 interfaces, there will be at least one "get" function; there will
890 also be a "set" function, unless the attribute is "readonly". The
891 attribute name will be appended to the "get" or "set" prefix, with
892 a capitalized first letter. So, the "version" readonly attribute
893 of the <computeroutput>IVirtualBox</computeroutput> interface can
894 be retrieved by calling
895 <computeroutput>IVirtualBox_getVersion(vbox)</computeroutput>,
896 with <computeroutput>vbox</computeroutput> being the VirtualBox
897 object.</para>
898 </listitem>
899
900 <listitem>
901 <para>Whenever the API documentation says that a method (or an
902 attribute getter) returns an <emphasis
903 role="bold">object</emphasis>, it will returned a managed object
904 reference in the web service instead. As said above, managed
905 object references should be released if the web service client
906 does not log off again immediately!</para>
907 </listitem>
908 </orderedlist></para>
909
910 <para></para>
911
912 <sect2 id="webservice-java-sample">
913 <title>Raw web service example for Java with Axis</title>
914
915 <para>Axis is an older web service toolkit created by the Apache
916 foundation. If your distribution does not have it installed, you can
917 get a binary from <ulink
918 url="http://www.apache.org">http://www.apache.org</ulink>. The
919 following examples assume that you have Axis 1.4 installed.</para>
920
921 <para>The VirtualBox SDK ships with an example for Axis that, again,
922 is called <computeroutput>clienttest.java</computeroutput> and that
923 imitates a few of the commands of
924 <computeroutput>VBoxManage</computeroutput> over the wire.</para>
925
926 <para>Then perform the following steps:<orderedlist>
927 <listitem>
928 <para>Create a working directory somewhere. Under your
929 VirtualBox installation directory, find the
930 <computeroutput>sdk/webservice/samples/java/axis/</computeroutput>
931 directory and copy the file
932 <computeroutput>clienttest.java</computeroutput> to your working
933 directory.</para>
934 </listitem>
935
936 <listitem>
937 <para>Open a terminal in your working directory. Execute the
938 following command:
939 <screen>java org.apache.axis.wsdl.WSDL2Java /path/to/vboxwebService.wsdl</screen></para>
940
941 <para>The <computeroutput>vboxwebService.wsdl</computeroutput>
942 file should be located in the
943 <computeroutput>sdk/webservice/</computeroutput>
944 directory.</para>
945
946 <para>If this fails, your Apache Axis may not be located on your
947 system classpath, and you may have to adjust the CLASSPATH
948 environment variable. Something like this:
949 <screen>export CLASSPATH="/path-to-axis-1_4/lib/*":$CLASSPATH</screen></para>
950
951 <para>Use the directory where the Axis JAR files are located.
952 Mind the quotes so that your shell passes the "*" character to
953 the java executable without expanding. Alternatively, add a
954 corresponding <computeroutput>-classpath</computeroutput>
955 argument to the "java" call above.</para>
956
957 <para>If the command executes successfully, you should see an
958 "org" directory with subdirectories containing Java source files
959 in your working directory. These classes represent the
960 interfaces that the VirtualBox web service offers, as described
961 by the WSDL file.</para>
962
963 <para>This is the bit that makes using web services so
964 attractive to client developers: if a language's toolkit
965 understands WSDL, it can generate large amounts of support code
966 automatically. Clients can then easily use this support code and
967 can be done with just a few lines of code.</para>
968 </listitem>
969
970 <listitem>
971 <para>Next, compile the
972 <computeroutput>clienttest.java</computeroutput>
973 source:<screen>javac clienttest.java </screen></para>
974
975 <para>This should yield a "clienttest.class" file.</para>
976 </listitem>
977
978 <listitem>
979 <para>To start the VirtualBox web service, open a second
980 terminal and change to the directory where the VirtualBox
981 executables are located. Then type:
982 <screen>./vboxwebsrv -v</screen></para>
983
984 <para>The web service now waits for connections and will run
985 until you press Ctrl+C in this second terminal. The -v argument
986 causes it to log all connections to the terminal. (See <xref
987 linkend="runvboxwebsrv"/> for details on how to run the
988 web service.)</para>
989 </listitem>
990
991 <listitem>
992 <para>Back in the original terminal where you compiled the Java
993 source, run the resulting binary, which will then connect to the
994 web service:<screen>java clienttest</screen></para>
995
996 <para>The client sample will connect to the web service (on
997 localhost, but the code could be changed to connect remotely if
998 the web service was running on a different machine) and make a
999 number of method calls. It will output the version number of
1000 your VirtualBox installation and a list of all virtual machines
1001 that are currently registered (with a bit of seemingly random
1002 data, which will be explained later).</para>
1003 </listitem>
1004 </orderedlist></para>
1005 </sect2>
1006
1007 <sect2 id="raw-webservice-perl">
1008 <title>Raw web service example for Perl</title>
1009
1010 <para>We also ship a small sample for Perl. It uses the SOAP::Lite
1011 perl module to communicate with the VirtualBox web service.</para>
1012
1013 <para>The
1014 <computeroutput>sdk/bindings/webservice/perl/lib/</computeroutput>
1015 directory contains a pre-generated Perl module that allows for
1016 communicating with the web service from Perl. You can generate such a
1017 module yourself using the "stubmaker" tool that comes with SOAP::Lite,
1018 but since that tool is slow as well as sometimes unreliable, we are
1019 shipping a working module with the SDK for your convenience.</para>
1020
1021 <para>Perform the following steps:<orderedlist>
1022 <listitem>
1023 <para>If SOAP::Lite is not yet installed on your system, you
1024 will need to install the package first. On Debian-based systems,
1025 the package is called
1026 <computeroutput>libsoap-lite-perl</computeroutput>; on Gentoo,
1027 it's <computeroutput>dev-perl/SOAP-Lite</computeroutput>.</para>
1028 </listitem>
1029
1030 <listitem>
1031 <para>Open a terminal in the
1032 <computeroutput>sdk/bindings/webservice/perl/samples/</computeroutput>
1033 directory.</para>
1034 </listitem>
1035
1036 <listitem>
1037 <para>To start the VirtualBox web service, open a second
1038 terminal and change to the directory where the VirtualBox
1039 executables are located. Then type:
1040 <screen>./vboxwebsrv -v</screen></para>
1041
1042 <para>The web service now waits for connections and will run
1043 until you press Ctrl+C in this second terminal. The -v argument
1044 causes it to log all connections to the terminal. (See <xref
1045 linkend="runvboxwebsrv"/> for details on how to run the
1046 web service.)</para>
1047 </listitem>
1048
1049 <listitem>
1050 <para>In the first terminal with the Perl sample, run the
1051 clienttest.pl script:
1052 <screen>perl -I ../lib clienttest.pl</screen></para>
1053 </listitem>
1054 </orderedlist></para>
1055 </sect2>
1056
1057 <sect2>
1058 <title>Programming considerations for the raw web service</title>
1059
1060 <para>If you use the raw web service, you need to keep a number of
1061 things in mind, or you will sooner or later run into issues that are
1062 not immediately obvious. By contrast, the object-oriented client-side
1063 libraries described in <xref linkend="glue"/> take care of these
1064 things automatically and thus greatly simplify using the web
1065 service.</para>
1066
1067 <sect3 id="rawws-conventions">
1068 <title>Fundamental conventions</title>
1069
1070 <para>If you are familiar with other web services, you may find the
1071 VirtualBox web service to behave a bit differently to accommodate
1072 for the fact that VirtualBox web service more or less maps the
1073 VirtualBox Main COM API. The following main differences had to be
1074 taken care of:<itemizedlist>
1075 <listitem>
1076 <para>Web services, as expressed by WSDL, are not
1077 object-oriented. Even worse, they are normally stateless (or,
1078 in web services terminology, "loosely coupled"). Web service
1079 operations are entirely procedural, and one cannot normally
1080 make assumptions about the state of a web service between
1081 function calls.</para>
1082
1083 <para>In particular, this normally means that you cannot work
1084 on objects in one method call that were created by another
1085 call.</para>
1086 </listitem>
1087
1088 <listitem>
1089 <para>By contrast, the VirtualBox Main API, being expressed in
1090 COM, is object-oriented and works entirely on objects, which
1091 are grouped into public interfaces, which in turn have
1092 attributes and methods associated with them.</para>
1093 </listitem>
1094 </itemizedlist> For the VirtualBox web service, this results in
1095 three fundamental conventions:<orderedlist>
1096 <listitem>
1097 <para>All <emphasis role="bold">function names</emphasis> in
1098 the VirtualBox web service consist of an interface name and a
1099 method name, joined together by an underscore. This is because
1100 there are only functions ("operations") in WSDL, but no
1101 classes, interfaces, or methods.</para>
1102
1103 <para>In addition, all calls to the VirtualBox web service
1104 (except for logon, see below) take a <emphasis
1105 role="bold">managed object reference</emphasis> as the first
1106 argument, representing the object upon which the underlying
1107 method is invoked. (Managed object references are explained in
1108 detail below; see <xref
1109 linkend="managed-object-references"/>.)</para>
1110
1111 <para>So, when one would normally code, in the pseudo-code of
1112 an object-oriented language, to invoke a method upon an
1113 object:<screen>IMachine machine;
1114result = machine.getName();</screen></para>
1115
1116 <para>In the VirtualBox web service, this looks something like
1117 this (again, pseudo-code):<screen>IMachineRef machine;
1118result = IMachine_getName(machine);</screen></para>
1119 </listitem>
1120
1121 <listitem>
1122 <para>To make the web service stateful, and objects persistent
1123 between method calls, the VirtualBox web service introduces a
1124 <emphasis role="bold">session manager</emphasis> (by way of the
1125 <link linkend="IWebsessionManager">IWebsessionManager</link>
1126 interface), which manages object references. Any client wishing
1127 to interact with the web service must first log on to the
1128 session manager and in turn receives a managed object reference
1129 to an object that supports the
1130 <link linkend="IVirtualBox">IVirtualBox</link>
1131 interface (the basic interface in the Main API).</para>
1132 </listitem>
1133 </orderedlist></para>
1134
1135 <para>In other words, as opposed to other web services, <emphasis
1136 role="bold">the VirtualBox web service is both object-oriented and
1137 stateful.</emphasis></para>
1138 </sect3>
1139
1140 <sect3>
1141 <title>Example: A typical web service client session</title>
1142
1143 <para>A typical short web service session to retrieve the version
1144 number of the VirtualBox web service (to be precise, the underlying
1145 Main API version number) looks like this:<orderedlist>
1146 <listitem>
1147 <para>A client logs on to the web service by calling
1148 <link linkend="IWebsessionManager__logon">IWebsessionManager::logon()</link>
1149 with a valid user name and password. See
1150 <xref linkend="websrv_authenticate"/>
1151 for details about how authentication works.</para>
1152 </listitem>
1153
1154 <listitem>
1155 <para>On the server side,
1156 <computeroutput>vboxwebsrv</computeroutput> creates a session,
1157 which persists until the client calls
1158 <link linkend="IWebsessionManager__logoff">IWebsessionManager::logoff()</link>
1159 or the session times out after a configurable period of
1160 inactivity (see <xref linkend="vboxwebsrv-ref"/>).</para>
1161
1162 <para>For the new session, the web service creates an instance
1163 of <link linkend="IVirtualBox">IVirtualBox</link>.
1164 This interface is the most central one in the Main API and
1165 allows access to all other interfaces, either through
1166 attributes or method calls. For example, IVirtualBox contains
1167 a list of all virtual machines that are currently registered
1168 (as they would be listed on the left side of the VirtualBox
1169 main program).</para>
1170
1171 <para>The web service then creates a managed object reference
1172 for this instance of IVirtualBox and returns it to the calling
1173 client, which receives it as the return value of the logon
1174 call. Something like this:</para>
1175
1176 <screen>string oVirtualBox;
1177oVirtualBox = webservice.IWebsessionManager_logon("user", "pass");</screen>
1178
1179 <para>(The managed object reference "oVirtualBox" is just a
1180 string consisting of digits and dashes. However, it is a
1181 string with a meaning and will be checked by the web service.
1182 For details, see below. As hinted above,
1183 <link linkend="IWebsessionManager__logon">IWebsessionManager::logon()</link>
1184 is the <emphasis>only</emphasis> operation provided by the web
1185 service which does not take a managed object reference as the
1186 first argument!)</para>
1187 </listitem>
1188
1189 <listitem>
1190 <para>The VirtualBox Main API documentation says that the
1191 <computeroutput>IVirtualBox</computeroutput> interface has a
1192 <link linkend="IVirtualBox__version">version</link>
1193 attribute, which is a string. For each attribute, there is a
1194 "get" and a "set" method in COM, which maps to according
1195 operations in the web service. So, to retrieve the "version"
1196 attribute of this <computeroutput>IVirtualBox</computeroutput>
1197 object, the web service client does this:
1198 <screen>string version;
1199version = webservice.IVirtualBox_getVersion(oVirtualBox);
1200
1201print version;</screen></para>
1202
1203 <para>And it will print
1204 "&VBOX_VERSION_MAJOR;.&VBOX_VERSION_MINOR;.&VBOX_VERSION_BUILD;".</para>
1205 </listitem>
1206
1207 <listitem>
1208 <para>The web service client calls
1209 <link linkend="IWebsessionManager__logoff">IWebsessionManager::logoff()</link>
1210 with the VirtualBox managed object reference. This will clean
1211 up all allocated resources.</para>
1212 </listitem>
1213 </orderedlist></para>
1214 </sect3>
1215
1216 <sect3 id="managed-object-references">
1217 <title>Managed object references</title>
1218
1219 <para>To a web service client, a managed object reference looks like
1220 a string: two 64-bit hex numbers separated by a dash. This string,
1221 however, represents a COM object that "lives" in the web service
1222 process. The two 64-bit numbers encoded in the managed object
1223 reference represent a session ID (which is the same for all objects
1224 in the same web service session, i.e. for all objects after one
1225 logon) and a unique object ID within that session.</para>
1226
1227 <para>Managed object references are created in two
1228 situations:<orderedlist>
1229 <listitem>
1230 <para>When a client logs on, by calling
1231 <link linkend="IWebsessionManager__logon">IWebsessionManager::logon()</link>.</para>
1232
1233 <para>Upon logon, the websession manager creates one instance
1234 of <link linkend="IVirtualBox">IVirtualBox</link>,
1235 which can be used for directly performing calls to its
1236 methods, or used as a parameter for calling some methods of
1237 <link linkend="IWebsessionManager">IWebsessionManager</link>.
1238 Creating Main API session objects is performed using
1239 <link linkend="IWebsessionManager__getSessionObject">IWebsessionManager::getSessionObject()</link>.</para>
1240
1241 <para>(Technically, there is always only one
1242 <link linkend="IVirtualBox">IVirtualBox</link> object, which
1243 is shared between all websessions and clients, as it is a COM
1244 singleton. However, each session receives its own managed
1245 object reference to it.)</para>
1246 </listitem>
1247
1248 <listitem>
1249 <para>Whenever a web service clients invokes an operation
1250 whose COM implementation creates COM objects.</para>
1251
1252 <para>For example,
1253 <link linkend="IVirtualBox__createMachine">IVirtualBox::createMachine()</link>
1254 creates a new instance of
1255 <link linkend="IMachine">IMachine</link>;
1256 the COM object returned by the COM method call is then wrapped
1257 into a managed object reference by the web server, and this
1258 reference is returned to the web service client.</para>
1259 </listitem>
1260 </orderedlist></para>
1261
1262 <para>Internally, in the web service process, each managed object
1263 reference is simply a small data structure, containing a COM pointer
1264 to the "real" COM object, the web session ID and the object ID. This
1265 structure is allocated on creation and stored efficiently in hashes,
1266 so that the web service can look up the COM object quickly whenever
1267 a web service client wishes to make a method call. The random
1268 session ID also ensures that one web service client cannot intercept
1269 the objects of another.</para>
1270
1271 <para>Managed object references are not destroyed automatically and
1272 must be released by explicitly calling
1273 <link linkend="IManagedObjectRef__release">IManagedObjectRef::release()</link>.
1274 This is important, as
1275 otherwise hundreds or thousands of managed object references (and
1276 corresponding COM objects, which can consume much more memory!) can
1277 pile up in the web service process and eventually cause it to deny
1278 service.</para>
1279
1280 <para>To reiterate: The underlying COM object, which the reference
1281 points to, is only freed if the managed object reference is
1282 released. It is therefore vital that web service clients properly
1283 clean up after the managed object references that are returned to
1284 them.</para>
1285
1286 <para>When a web service client calls
1287 <link linkend="IWebsessionManager__logoff">IWebsessionManager::logoff()</link>,
1288 all managed object references created during the session are
1289 automatically freed. For short-lived sessions that do not create a
1290 lot of objects, logging off may therefore be sufficient, although it
1291 is certainly not "best practice".</para>
1292 </sect3>
1293
1294 <sect3>
1295 <title>Some more detail about web service operation</title>
1296
1297 <sect4 id="soap">
1298 <title>SOAP messages</title>
1299
1300 <para>Whenever a client makes a call to a web service, this
1301 involves a complicated procedure internally. These calls are
1302 remote procedure calls. Each such procedure call typically
1303 consists of two "message" being passed, where each message is a
1304 plain-text HTTP request with a standard HTTP header and a special
1305 XML document following. This XML document encodes the name of the
1306 procedure to call and the argument names and values passed to
1307 it.</para>
1308
1309 <para>To give you an idea of what such a message looks like,
1310 assuming that a web service provides a procedure called
1311 "SayHello", which takes a string "name" as an argument and returns
1312 "Hello" with a space and that name appended, the request message
1313 could look like this:</para>
1314
1315 <para><screen>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
1316&lt;SOAP-ENV:Envelope
1317 xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
1318 xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
1319 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1320 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1321 xmlns:test="http://test/"&gt;
1322&lt;SOAP-ENV:Body&gt;
1323 &lt;test:SayHello&gt;
1324 &lt;name&gt;Peter&lt;/name&gt;
1325 &lt;/test:SayHello&gt;
1326 &lt;/SOAP-ENV:Body&gt;
1327&lt;/SOAP-ENV:Envelope&gt;</screen>A similar message -- the "response" message
1328 -- would be sent back from the web service to the client,
1329 containing the return value "Hello Peter".</para>
1330
1331 <para>Most programming languages provide automatic support to
1332 generate such messages whenever code in that programming language
1333 makes such a request. In other words, these programming languages
1334 allow for writing something like this (in pseudo-C++ code):</para>
1335
1336 <para><screen>webServiceClass service("localhost", 18083); // server and port
1337string result = service.SayHello("Peter"); // invoke remote procedure</screen>
1338 and would, for these two pseudo-lines, automatically perform these
1339 steps:</para>
1340
1341 <para><orderedlist>
1342 <listitem>
1343 <para>prepare a connection to a web service running on port
1344 18083 of "localhost";</para>
1345 </listitem>
1346
1347 <listitem>
1348 <para>for the <computeroutput>SayHello()</computeroutput>
1349 function of the web service, generate a SOAP message like in
1350 the above example by encoding all arguments of the remote
1351 procedure call (which could involve all kinds of type
1352 conversions and complex marshalling for arrays and
1353 structures);</para>
1354 </listitem>
1355
1356 <listitem>
1357 <para>connect to the web service via HTTP and send that
1358 message;</para>
1359 </listitem>
1360
1361 <listitem>
1362 <para>wait for the web service to send a response
1363 message;</para>
1364 </listitem>
1365
1366 <listitem>
1367 <para>decode that response message and put the return value
1368 of the remote procedure into the "result" variable.</para>
1369 </listitem>
1370 </orderedlist></para>
1371 </sect4>
1372
1373 <sect4 id="wsdl">
1374 <title>Service descriptions in WSDL</title>
1375
1376 <para>In the above explanations about SOAP, it was left open how
1377 the programming language learns about how to translate function
1378 calls in its own syntax into proper SOAP messages. In other words,
1379 the programming language needs to know what operations the web
1380 service supports and what types of arguments are required for the
1381 operation's data in order to be able to properly serialize and
1382 deserialize the data to and from the web service. For example, if
1383 a web service operation expects a number in "double" floating
1384 point format for a particular parameter, the programming language
1385 cannot send to it a string instead.</para>
1386
1387 <para>For this, the Web Service Definition Language (WSDL) was
1388 invented, another XML substandard that describes exactly what
1389 operations the web service supports and, for each operation, which
1390 parameters and types are needed with each request and response
1391 message. WSDL descriptions can be incredibly verbose, and one of
1392 the few good things that can be said about this standard is that
1393 it is indeed supported by most programming languages.</para>
1394
1395 <para>So, if it is said that a programming language "supports" web
1396 services, this typically means that a programming language has
1397 support for parsing WSDL files and somehow integrating the remote
1398 procedure calls into the native language syntax -- for example,
1399 like in the Java sample shown in <xref
1400 linkend="webservice-java-sample"/>.</para>
1401
1402 <para>For details about how programming languages support web
1403 services, please refer to the documentation that comes with the
1404 individual languages. Here are a few pointers:</para>
1405
1406 <orderedlist>
1407 <listitem>
1408 <para>For <emphasis role="bold">C++, </emphasis> among many
1409 others, the gSOAP toolkit is a good option. Parts of gSOAP are
1410 also used in VirtualBox to implement the VirtualBox web
1411 service.</para>
1412 </listitem>
1413
1414 <listitem>
1415 <para>For <emphasis role="bold">Java, </emphasis> there are
1416 several implementations already described in this document
1417 (see <xref linkend="glue-jax-ws"/> and <xref
1418 linkend="webservice-java-sample"/>).</para>
1419 </listitem>
1420
1421 <listitem>
1422 <para><emphasis role="bold">Perl</emphasis> supports WSDL via
1423 the SOAP::Lite package. This in turn comes with a tool called
1424 <computeroutput>stubmaker.pl</computeroutput> that allows you
1425 to turn any WSDL file into a Perl package that you can import.
1426 (You can also import any WSDL file "live" by having it parsed
1427 every time the script runs, but that can take a while.) You
1428 can then code (again, assuming the above example):
1429 <screen>my $result = servicename-&gt;sayHello("Peter");</screen>
1430 </para>
1431
1432 <para>A sample that uses SOAP::Lite was described in <xref
1433 linkend="raw-webservice-perl"/>.</para>
1434 </listitem>
1435 </orderedlist>
1436 </sect4>
1437 </sect3>
1438 </sect2>
1439 </sect1>
1440
1441 <sect1 id="api_com">
1442 <title>Using COM/XPCOM directly</title>
1443
1444 <para>If you do not require <emphasis>remote</emphasis> procedure calls
1445 such as those offered by the VirtualBox web service, and if you know
1446 Python or C++ as well as COM, you might find it preferable to program
1447 VirtualBox's Main API directly via COM.</para>
1448
1449 <para>COM stands for "Component Object Model" and is a standard
1450 originally introduced by Microsoft in the 1990s for Microsoft Windows.
1451 It allows for organizing software in an object-oriented way and across
1452 processes; code in one process may access objects that live in another
1453 process.</para>
1454
1455 <para>COM has several advantages: it is language-neutral, meaning that
1456 even though all of VirtualBox is internally written in C++, programs
1457 written in other languages could communicate with it. COM also cleanly
1458 separates interface from implementation, so that external programs need
1459 not know anything about the messy and complicated details of VirtualBox
1460 internals.</para>
1461
1462 <para>On a Windows host, all parts of VirtualBox will use the COM
1463 functionality that is native to Windows. On other hosts (including
1464 Linux), VirtualBox comes with a built-in implementation of XPCOM, as
1465 originally created by the Mozilla project, which we have enhanced to
1466 support interprocess communication on a level comparable to Microsoft
1467 COM. Internally, VirtualBox has an abstraction layer that allows the
1468 same VirtualBox code to work both with native COM as well as our XPCOM
1469 implementation.</para>
1470
1471 <sect2 id="pycom">
1472 <title>Python COM API</title>
1473
1474 <para>On Windows, Python scripts can use COM and VirtualBox interfaces
1475 to control almost all aspects of virtual machine execution. As an
1476 example, use the following commands to instantiate the VirtualBox
1477 object and start a VM: <screen>
1478 vbox = win32com.client.Dispatch("VirtualBox.VirtualBox")
1479 session = win32com.client.Dispatch("VirtualBox.Session")
1480 mach = vbox.findMachine("uuid or name of machine to start")
1481 progress = mach.launchVMProcess(session, "gui", "")
1482 progress.waitForCompletion(-1)
1483 </screen> Also, see
1484 <computeroutput>/bindings/glue/python/samples/vboxshell.py</computeroutput>
1485 for more advanced usage scenarious. However, unless you have specific
1486 requirements, we strongly recommend to use the generic glue layer
1487 described in the next section to access MS COM objects.</para>
1488 </sect2>
1489
1490 <sect2 id="glue-python">
1491 <title>Common Python bindings layer</title>
1492
1493 <para>As different wrappers ultimately provide access to the same
1494 underlying API, and to simplify porting and development of Python
1495 application using the VirtualBox Main API, we developed a common glue
1496 layer that abstracts out most platform-specific details from the
1497 application and allows the developer to focus on application logic.
1498 The VirtualBox installer automatically sets up this glue layer for the
1499 system default Python install. See below for details on how to set up
1500 the glue layer if you want to use a different Python
1501 installation.</para>
1502
1503 <para>The minimum supported Python version is 2.6.</para>
1504
1505 <para>In this layer, the class
1506 <computeroutput>VirtualBoxManager</computeroutput> hides most
1507 platform-specific details. It can be used to access both the local
1508 (COM) and the web service based API. The following code can be used by
1509 an application to use the glue layer.</para>
1510
1511 <screen># This code assumes vboxapi.py from VirtualBox distribution
1512# being in PYTHONPATH, or installed system-wide
1513from vboxapi import VirtualBoxManager
1514
1515# This code initializes VirtualBox manager with default style
1516# and parameters
1517virtualBoxManager = VirtualBoxManager(None, None)
1518
1519# Alternatively, one can be more verbose, and initialize
1520# glue with web service backend, and provide authentication
1521# information
1522virtualBoxManager = VirtualBoxManager("WEBSERVICE",
1523 {'url':'http://myhost.com::18083/',
1524 'user':'me',
1525 'password':'secret'}) </screen>
1526
1527 <para>We supply the <computeroutput>VirtualBoxManager</computeroutput>
1528 constructor with 2 arguments: style and parameters. Style defines
1529 which bindings style to use (could be "MSCOM", "XPCOM" or
1530 "WEBSERVICE"), and if set to <computeroutput>None</computeroutput>
1531 defaults to usable platform bindings (MS COM on Windows, XPCOM on
1532 other platforms). The second argument defines parameters, passed to
1533 the platform-specific module, as we do in the second example, where we
1534 pass username and password to be used to authenticate against the web
1535 service.</para>
1536
1537 <para>After obtaining the
1538 <computeroutput>VirtualBoxManager</computeroutput> instance, one can
1539 perform operations on the IVirtualBox class. For example, the
1540 following code will a start virtual machine by name or ID:</para>
1541
1542 <screen>from vboxapi import VirtualBoxManager
1543mgr = VirtualBoxManager(None, None)
1544vbox = mgr.vbox
1545name = "Linux"
1546mach = vbox.findMachine(name)
1547session = mgr.getSessionObject(vbox)
1548progress = mach.launchVMProcess(session, "gui", "")
1549progress.waitForCompletion(-1)
1550mgr.closeMachineSession(session)
1551 </screen>
1552 <para>
1553 Following code will print all registered machines and their log
1554 folders
1555 </para>
1556 <screen>from vboxapi import VirtualBoxManager
1557mgr = VirtualBoxManager(None, None)
1558vbox = mgr.vbox
1559
1560for m in mgr.getArray(vbox, 'machines'):
1561print "Machine '%s' logs in '%s'" %(m.name, m.logFolder)
1562 </screen>
1563
1564 <para>Code above demonstrates cross-platform access to array properties
1565 (certain limitations prevent one from using
1566 <computeroutput>vbox.machines</computeroutput> to access a list of
1567 available virtual machines in case of XPCOM), and a mechanism of
1568 uniform session creation and closing
1569 (<computeroutput>mgr.getSessionObject()</computeroutput>).</para>
1570
1571 <para>In case you want to use the glue layer with a different Python
1572 installation, use these steps in a shell to add the necessary
1573 files:</para>
1574
1575 <screen> # cd VBOX_INSTALL_PATH/sdk/installer
1576 # PYTHON vboxapisetup.py install</screen>
1577 </sect2>
1578
1579 <sect2 id="cppcom">
1580 <title>C++ COM API</title>
1581
1582 <para>C++ is the language that VirtualBox itself is written in, so C++
1583 is the most direct way to use the Main API -- but it is not
1584 necessarily the easiest, as using COM and XPCOM has its own set of
1585 complications.</para>
1586
1587 <para>VirtualBox ships with sample programs that demonstrate how to
1588 use the Main API to implement a number of tasks on your host platform.
1589 These samples can be found in the
1590 <computeroutput>/bindings/xpcom/samples</computeroutput> directory for
1591 Linux, Mac OS X and Solaris and
1592 <computeroutput>/bindings/mscom/samples</computeroutput> for Windows.
1593 The two samples are actually different, because the one for Windows
1594 uses native COM, whereas the other uses our XPCOM implementation, as
1595 described above.</para>
1596
1597 <para>Since COM and XPCOM are conceptually very similar but vary in
1598 the implementation details, we have created a "glue" layer that
1599 shields COM client code from these differences. All VirtualBox uses is
1600 this glue layer, so the same code written once works on both Windows
1601 hosts (with native COM) as well as on other hosts (with our XPCOM
1602 implementation). It is recommended to always use this glue code
1603 instead of using the COM and XPCOM APIs directly, as it is very easy
1604 to make your code completely independent from the platform it is
1605 running on.<!-- A third sample,
1606 <computeroutput>tstVBoxAPIGlue.cpp</computeroutput>, illustrates how to
1607 use the glue layer.
1608--></para>
1609
1610 <para>In order to encapsulate platform differences between Microsoft
1611 COM and XPCOM, the following items should be kept in mind when using
1612 the glue layer:</para>
1613
1614 <para><orderedlist>
1615 <listitem>
1616 <para><emphasis role="bold">Attribute getters and
1617 setters.</emphasis> COM has the notion of "attributes" in
1618 interfaces, which roughly compare to C++ member variables in
1619 classes. The difference is that for each attribute declared in
1620 an interface, COM automatically provides a "get" method to
1621 return the attribute's value. Unless the attribute has been
1622 marked as "readonly", a "set" attribute is also provided.</para>
1623
1624 <para>To illustrate, the IVirtualBox interface has a "version"
1625 attribute, which is read-only and of the "wstring" type (the
1626 standard string type in COM). As a result, you can call the
1627 "get" method for this attribute to retrieve the version number
1628 of VirtualBox.</para>
1629
1630 <para>Unfortunately, the implementation differs between COM and
1631 XPCOM. Microsoft COM names the "get" method like this:
1632 <computeroutput>get_Attribute()</computeroutput>, whereas XPCOM
1633 uses this syntax:
1634 <computeroutput>GetAttribute()</computeroutput> (and accordingly
1635 for "set" methods). To hide these differences, the VirtualBox
1636 glue code provides the
1637 <computeroutput>COMGETTER(attrib)</computeroutput> and
1638 <computeroutput>COMSETTER(attrib)</computeroutput> macros. So,
1639 <computeroutput>COMGETTER(version)()</computeroutput> (note, two
1640 pairs of brackets) expands to
1641 <computeroutput>get_Version()</computeroutput> on Windows and
1642 <computeroutput>GetVersion()</computeroutput> on other
1643 platforms.</para>
1644 </listitem>
1645
1646 <listitem>
1647 <para><emphasis role="bold">Unicode conversions.</emphasis>
1648 While the rest of the modern world has pretty much settled on
1649 encoding strings in UTF-8, COM, unfortunately, uses UCS-16
1650 encoding. This requires a lot of conversions, in particular
1651 between the VirtualBox Main API and the Qt GUI, which, like the
1652 rest of Qt, likes to use UTF-8.</para>
1653
1654 <para>To facilitate these conversions, VirtualBox provides the
1655 <computeroutput>com::Bstr</computeroutput> and
1656 <computeroutput>com::Utf8Str</computeroutput> classes, which
1657 support all kinds of conversions back and forth.</para>
1658 </listitem>
1659
1660 <listitem>
1661 <para><emphasis role="bold">COM autopointers.</emphasis>
1662 Possibly the greatest pain of using COM -- reference counting --
1663 is alleviated by the
1664 <computeroutput>ComPtr&lt;&gt;</computeroutput> template
1665 provided by the <computeroutput>ptr.h</computeroutput> file in
1666 the glue layer.</para>
1667 </listitem>
1668 </orderedlist></para>
1669 </sect2>
1670
1671 <sect2 id="event-queue">
1672 <title>Event queue processing</title>
1673
1674 <para>Both VirtualBox client programs and frontends should
1675 periodically perform processing of the main event queue, and do that
1676 on the application's main thread. In case of a typical GUI Windows/Mac
1677 OS application this happens automatically in the GUI's dispatch loop.
1678 However, for CLI only application, the appropriate actions have to be
1679 taken. For C++ applications, the VirtualBox SDK provided glue method
1680 <screen>
1681 int EventQueue::processEventQueue(uint32_t cMsTimeout)
1682 </screen> can be used for both blocking and non-blocking operations.
1683 For the Python bindings, a common layer provides the method <screen>
1684 VirtualBoxManager.waitForEvents(ms)
1685 </screen> with similar semantics.</para>
1686
1687 <para>Things get somewhat more complicated for situations where an
1688 application using VirtualBox cannot directly control the main event
1689 loop and the main event queue is separated from the event queue of the
1690 programming librarly (for example in case of Qt on Unix platforms). In
1691 such a case, the application developer is advised to use a
1692 platform/toolkit specific event injection mechanism to force event
1693 queue checks either based on periodical timer events delivered to the
1694 main thread, or by using custom platform messages to notify the main
1695 thread when events are available. See the VBoxSDL and Qt (VirtualBox)
1696 frontends as examples.</para>
1697 </sect2>
1698
1699 <sect2 id="vbcom">
1700 <title>Visual Basic and Visual Basic Script (VBS) on Windows
1701 hosts</title>
1702
1703 <para>On Windows hosts, one can control some of the VirtualBox Main
1704 API functionality from VBS scripts, and pretty much everything from
1705 Visual Basic programs.<footnote>
1706 <para>The difference results from the way VBS treats COM
1707 safearrays, which are used to keep lists in the Main API. VBS
1708 expects every array element to be a
1709 <computeroutput>VARIANT</computeroutput>, which is too strict a
1710 limitation for any high performance API. We may lift this
1711 restriction for interface APIs in a future version, or
1712 alternatively provide conversion APIs.</para>
1713 </footnote></para>
1714
1715 <para>VBS is scripting language available in any recent Windows
1716 environment. As an example, the following VBS code will print
1717 VirtualBox version: <screen>
1718 set vb = CreateObject("VirtualBox.VirtualBox")
1719 Wscript.Echo "VirtualBox version " &amp; vb.version
1720 </screen> See
1721 <computeroutput>bindings/mscom/vbs/sample/vboxinfo.vbs</computeroutput>
1722 for the complete sample.</para>
1723
1724 <para>Visual Basic is a popular high level language capable of
1725 accessing COM objects. The following VB code will iterate over all
1726 available virtual machines:<screen>
1727 Dim vb As VirtualBox.IVirtualBox
1728
1729 vb = CreateObject("VirtualBox.VirtualBox")
1730 machines = ""
1731 For Each m In vb.Machines
1732 m = m &amp; " " &amp; m.Name
1733 Next
1734 </screen> See
1735 <computeroutput>bindings/mscom/vb/sample/vboxinfo.vb</computeroutput>
1736 for the complete sample.</para>
1737 </sect2>
1738
1739 <sect2 id="cbinding">
1740 <title>C binding to VirtualBox API</title>
1741
1742 <para>The VirtualBox API originally is designed as object oriented,
1743 using XPCOM or COM as the middleware, which translates natively to C++.
1744 This means that in order to use it from C there needs to be some
1745 helper code to bridge the language differences and reduce the
1746 differences between platforms.</para>
1747
1748 <sect3 id="capi_glue">
1749 <title>Cross-platform C binding to VirtualBox API</title>
1750
1751 <para>Starting with version 4.3, VirtualBox offers a C binding
1752 which allows using the same C client sources for all platforms,
1753 covering Windows, Linux, Mac OS X and Solaris. It is the
1754 preferred way to write API clients, even though the old style
1755 is still available.</para>
1756
1757 </sect3>
1758
1759 <sect3 id="c-gettingstarted">
1760 <title>Getting started</title>
1761
1762 <para>The following sections describe how to use the VirtualBox API
1763 in a C program. The necessary files are included in the SDK, in the
1764 directories <computeroutput>sdk/bindings/c/include</computeroutput>
1765 and <computeroutput>sdk/bindings/c/glue</computeroutput>.</para>
1766
1767 <para>As part of the SDK, a sample program
1768 <computeroutput>tstCAPIGlue.c</computeroutput> is provided in the
1769 directory <computeroutput>sdk/bindings/c/samples</computeroutput>
1770 which demonstrates
1771 using the C binding to initialize the API, get handles for
1772 VirtualBox and Session objects, make calls to list and start virtual
1773 machines, monitor events, and uninitialize resources when done. The
1774 sample program is trying to illustrate all relevant concepts, so it
1775 is a great source of detail information. Among many other generally
1776 useful code sequences it contains a function which shows how to
1777 retrieve error details in C code if they are available from the API
1778 call.</para>
1779
1780 <para>The sample program <computeroutput>tstCAPIGlue</computeroutput>
1781 can be built using the provided
1782 <computeroutput>Makefile</computeroutput> and can be run without
1783 arguments.</para>
1784
1785 <para>It uses the VBoxCAPIGlue library (source code is in directory
1786 <computeroutput>sdk/bindings/c/glue</computeroutput>, to be used in
1787 your API client code) to open the C binding layer during runtime,
1788 which is preferred to other means as it isolates the code which
1789 locates the necessary dynamic library, using a known working way
1790 which works on all platforms. If you encounter problems with this
1791 glue code in <computeroutput>VBoxCAPIGlue.c</computeroutput>, let the
1792 VirtualBox developers know, rather than inventing incompatible
1793 solutions.</para>
1794
1795 <para>The following sections document the important concepts needed
1796 to correctly use the C binding, as it is vital for developing API
1797 client code which manages memory correctly, updates the reference
1798 counters correctly, avoiding crashes and memory leaks. Often API
1799 clients need to handle events, so the C API specifics are also
1800 described below.</para>
1801 </sect3>
1802
1803 <sect3 id="c-initialization">
1804 <title>VirtualBox C API initialization</title>
1805
1806 <para>Just like in C++, the API and the underlying middleware needs
1807 to be initialized before it can be used. The
1808 <computeroutput>VBoxCAPI_v4_3.h</computeroutput> header provides the
1809 interface to the C binding, but you can alternatively and more
1810 conveniently also include
1811 <computeroutput>VBoxCAPIGlue.h</computeroutput>,
1812 as this avoids the VirtualBox version dependent header file name and
1813 makes sure the global variable <code>g_pVBoxFuncs</code> contains a
1814 pointer to the structure which contains the helper function pointers.
1815 Here's how to initialize the C API:<screen>#include "VBoxCAPIGlue.h"
1816...
1817IVirtualBoxClient *vboxclient = NULL;
1818IVirtualBox *vbox = NULL;
1819ISession *session = NULL;
1820HRESULT rc;
1821ULONG revision;
1822
1823/*
1824 * VBoxCGlueInit() loads the necessary dynamic library, handles errors
1825 * (producing an error message hinting what went wrong) and gives you
1826 * the pointer to the function table (g_pVBoxFuncs).
1827 *
1828 * Once you get the function table, then how and which functions
1829 * to use is explained below.
1830 *
1831 * g_pVBoxFuncs-&gt;pfnClientInitialize does all the necessary startup
1832 * action and provides us with pointers to an IVirtualBoxClient instance.
1833 * It should be matched by a call to g_pVBoxFuncs-&gt;pfnClientUninitialize()
1834 * when done.
1835 */
1836
1837if (VBoxCGlueInit())
1838{
1839 fprintf(stderr, "s: FATAL: VBoxCGlueInit failed: %s\n",
1840 argv[0], g_szVBoxErrMsg);
1841 return EXIT_FAILURE;
1842}
1843
1844g_pVBoxFuncs-&gt;pfnClientInitialize(NULL, &amp;vboxclient);
1845if (!vboxclient)
1846{
1847 fprintf(stderr, "%s: FATAL: could not get VirtualBoxClient reference\n",
1848 argv[0]);
1849 return EXIT_FAILURE;
1850}</screen></para>
1851
1852 <para>If <computeroutput>vboxclient</computeroutput> is still
1853 <computeroutput>NULL</computeroutput> this means the initializationi
1854 failed and the VirtualBox C API cannot be used.</para>
1855
1856 <para>It is possible to write C applications using multiple threads
1857 which all use the VirtualBox API, as long as you're initializing
1858 the C API in each thread which your application creates. This is done
1859 with <code>g_pVBoxFuncs->pfnClientThreadInitialize()</code> and
1860 likewise before the thread is terminated the API must be
1861 uninitialized with
1862 <code>g_pVBoxFuncs->pfnClientThreadUninitialize()</code>. You don't
1863 have to use these functions in worker threads created by COM/XPCOM
1864 (which you might observe if your code uses active event handling),
1865 everything is initialized correctly already. On Windows the C
1866 bindings create a marshaller which supports a wide range of COM
1867 threading models, from STA to MTA, so you don't have to worry about
1868 these details unless you plan to use active event handlers. See
1869 the sample code how to get this to work reliably (in other words
1870 think twice if passive event handling isn't the better solution after
1871 you looked at the sample code).</para>
1872 </sect3>
1873
1874 <sect3 id="c-invocation">
1875 <title>C API attribute and method invocation</title>
1876
1877 <para>Method invocation is straightforward. It looks pretty much
1878 like the C++ way, by using a macro which internally accesses the
1879 vtable, and additionally needs to be passed a pointer to the objecti
1880 as the first argument to serve as the
1881 <computeroutput>this</computeroutput> pointer.</para>
1882
1883 <para>Using the C binding, all method invocations return a numeric
1884 result code of type <code>HRESULT</code> (with a few exceptions
1885 which normally are not relevant).</para>
1886
1887 <para>If an interface is specified as returning an object, a pointer
1888 to a pointer to the appropriate object must be passed as the last
1889 argument. The method will then store an object pointer in that
1890 location.</para>
1891
1892 <para>Likewise, attributes (properties) can be queried or set using
1893 method invocations, using specially named methods. For each
1894 attribute there exists a getter method, the name of which is composed
1895 of <computeroutput>get_</computeroutput> followed by the capitalized
1896 attribute name. Unless the attribute is read-only, an analogous
1897 <computeroutput>set_</computeroutput> method exists. Let's apply
1898 these rules to get the <computeroutput>IVirtualBox</computeroutput>
1899 reference, an <computeroutput>ISession</computeroutput> instance
1900 reference and read the
1901 <link linkend="IVirtualBox__revision">IVirtualBox::revision</link>
1902 attribute:
1903 <screen>rc = IVirtualBoxClient_get_VirtualBox(vboxclient, &amp;vbox);
1904if (FAILED(rc) || !vbox)
1905{
1906 PrintErrorInfo(argv[0], "FATAL: could not get VirtualBox reference", rc);
1907 return EXIT_FAILURE;
1908}
1909rc = IVirtualBoxClient_get_Session(vboxclient, &amp;session);
1910if (FAILED(rc) || !session)
1911{
1912 PrintErrorInfo(argv[0], "FATAL: could not get Session reference", rc);
1913 return EXIT_FAILURE;
1914}
1915
1916rc = IVirtualBox_get_Revision(vbox, &amp;revision);
1917if (SUCCEEDED(rc))
1918{
1919 printf("Revision: %u\n", revision);
1920}</screen></para>
1921
1922 <para>The convenience macros for calling a method are named by
1923 prepending the method name with the interface name (using
1924 <code>_</code>as the separator).</para>
1925
1926 <para>So far only attribute getters were illustrated, but generic
1927 method calls are straightforward, too:
1928 <screen>IMachine *machine = NULL;
1929BSTR vmname = ...;
1930...
1931/*
1932 * Calling IMachine::findMachine(...)
1933 */
1934rc = IVirtualBox_FindMachine(vbox, vmname, &amp;machine);</screen></para>
1935
1936 <para>As a more complicated example of a method invocation, let's
1937 call
1938 <link linkend="IMachine__launchVMProcess">IMachine::launchVMProcess</link>
1939 which returns an IProgress object. Note again that the method name is
1940 capitalized:
1941 <screen>IProgress *progress;
1942...
1943rc = IMachine_LaunchVMProcess(
1944 machine, /* this */
1945 session, /* arg 1 */
1946 sessionType, /* arg 2 */
1947 env, /* arg 3 */
1948 &amp;progress /* Out */
1949);</screen></para>
1950
1951 <para>All objects with their methods and attributes are documented
1952 in <xref linkend="sdkref_classes"/>.</para>
1953 </sect3>
1954
1955 <sect3 id="c-string-handling">
1956 <title>String handling</title>
1957
1958 <para>When dealing with strings you have to be aware of a string's
1959 encoding and ownership.</para>
1960
1961 <para>Internally, the API uses UTF-16 encoded strings. A set of
1962 conversion functions is provided to convert other encodings to and
1963 from UTF-16. The type of a UTF-16 character is
1964 <computeroutput>BSTR</computeroutput> (or its constant counterpart
1965 <computeroutput>CBSTR</computeroutput>), which is an array type,
1966 represented by a pointer to the start of the zero-terminated string.
1967 There are functions for converting between UTF-8 and UTF-16 strings
1968 available through <code>g_pVBoxFuncs</code>:
1969 <screen>int (*pfnUtf16ToUtf8)(CBSTR pwszString, char **ppszString);
1970int (*pfnUtf8ToUtf16)(const char *pszString, BSTR *ppwszString);</screen></para>
1971
1972 <para>The ownership of a string determines who is responsible for
1973 releasing resources associated with the string. Whenever the API
1974 creates a string (essentially for output parameters), ownership is
1975 transferred to the caller. To avoid resource leaks, the caller
1976 should release resources once the string is no longer needed.
1977 There are plenty of examples in the sample code.</para>
1978 </sect3>
1979
1980 <sect3 id="c-safearray">
1981 <title>Array handling</title>
1982
1983 <para>Arrays are handled somewhat similarly to strings, with the
1984 additional information of the number of elements in the array. The
1985 exact details of string passing depends on the platform middleware
1986 (COM/XPCOM), and therefore the C binding offers helper functions to
1987 gloss over these differences.</para>
1988
1989 <para>Passing arrays as input parameters to API methods is usually
1990 done by the following sequence, calling a hypothetical
1991 <code>IArrayDemo_PassArray</code> API method:
1992 <screen>static const ULONG aElements[] = { 1, 2, 3, 4 };
1993ULONG cElements = sizeof(aElements) / sizeof(aElements[0]);
1994SAFEARRAY *psa = NULL;
1995psa = g_pVBoxFuncs->pfnSafeArrayCreateVector(VT_I4, 0, cElements);
1996g_pVBoxFuncs->pfnSafeArrayCopyInParamHelper(psa, aElements, sizeof(aElements));
1997IArrayDemo_PassArray(pThis, ComSafeArrayAsInParam(psa));
1998g_pVBoxFuncs->pfnSafeArrayDestroy(psa);</screen></para>
1999
2000 <para>Likewise, getting arrays results from output parameters is done
2001 using helper functions which manage memory allocations as part of
2002 their other functionality:
2003 <screen>SAFEARRAY *psa = g_pVBoxFuncs->pfnSafeArrayOutParamAlloc();
2004ULONG *pData;
2005ULONG cElements;
2006IArrayDemo_ReturnArray(pThis, ComSafeArrayAsOutTypeParam(psa, ULONG));
2007g_pVBoxFuncs->pfnSafeArrayCopyOutParamHelper((void **)&amp;pData, &amp;cElements, VT_I4, psa);
2008g_pVBoxFuncs->pfnSafeArrayDestroy(psa);</screen></para>
2009
2010 <para>This covers the necessary functionality for all array element
2011 types except interface references. These need special helpers to
2012 manage the reference counting correctly. The following code snippet
2013 gets the list of VMs, and passes the first IMachine reference to
2014 another API function (assuming that there is at least one element
2015 in the array, to simplify the example):
2016 <screen>SAFEARRAY psa = g_pVBoxFuncs->pfnSafeArrayOutParamAlloc();
2017IMachine **machines = NULL;
2018ULONG machineCnt = 0;
2019ULONG i;
2020IVirtualBox_get_Machines(virtualBox, ComSafeArrayAsOutIfaceParam(machinesSA, IMachine *));
2021g_pVBoxFuncs->pfnSafeArrayCopyOutIfaceParamHelper((IUnknown ***)&amp;machines, &amp;machineCnt, machinesSA);
2022g_pVBoxFuncs->pfnSafeArrayDestroy(machinesSA);
2023/* Now "machines" contains the IMachine references, and machineCnt the
2024 * number of elements in the array. */
2025...
2026SAFEARRAY *psa = g_pVBoxFuncs->pfnSafeArrayCreateVector(VT_IUNKNOWN, 0, 1);
2027g_pVBoxFuncs->pfnSafeArrayCopyInParamHelper(psa, (void *)&amp;machines[0], sizeof(machines[0]));
2028IVirtualBox_GetMachineStates(ComSafeArrayAsInParam(psa), ...);
2029...
2030g_pVBoxFuncs->pfnSafeArrayDestroy(psa);
2031for (i = 0; i &lt; machineCnt; ++i)
2032{
2033 IMachine *machine = machines[i];
2034 IMachine_Release(machine);
2035}
2036free(machines);</screen></para>
2037
2038 <para>Handling output parameters needs more special effort than
2039 input parameters, thus only for the former there are special helpers,
2040 and the latter is handled through the generic array support.</para>
2041 </sect3>
2042
2043 <sect3 id="c-eventhandling">
2044 <title>Event handling</title>
2045
2046 <para>The VirtualBox API offers two types of event handling, active
2047 and passive, and consequently there is support for both with the
2048 C API binding. Active event handling (based on asynchronous
2049 callback invocation for event delivery) is more difficult, as it
2050 requires the construction of valid C++ objects in C, which is
2051 inherently platform and compiler dependent. Passive event handling
2052 is much simpler, it relies on an event loop, fetching events and
2053 triggering the necessary handlers explicitly in the API client code.
2054 Both approaches depend on an event loop to make sure that events
2055 get delivered in a timely manner, with differences what exactly needs
2056 to be done.</para>
2057
2058 <para>The C API sample contains code for both event handling styles,
2059 and one has to modify the appropriate <code>#define</code> to select
2060 which style is actually used by the compiled program. It allows a
2061 good comparison between the two variants, and the code sequences are
2062 probably worth reusing without much change in other API clients
2063 with only minor adaptions.</para>
2064
2065 <para>Active event handling needs to ensure that the following helper
2066 function is called frequently enough in the primary thread:
2067 <screen>g_pVBoxFuncs->pfnProcessEventQueue(cTimeoutMS);</screen></para>
2068
2069 <para>The actual event handler implementation is quite tedious, as
2070 it has to implement a complete API interface. Especially on Windows
2071 it is a lot of work to implement the complicated
2072 <code>IDispatch</code> interface, requiring to load COM type
2073 information and using it in the <code>IDispatch</code> method
2074 implementation. Overall this is quite tedious compared to passive
2075 event handling.</para>
2076
2077 <para>Passive event handling uses a similar event loop structure,
2078 which requires calling the following function in a loop, and
2079 processing the returned event appropriately:
2080 <screen>rc = IEventSource_GetEvent(pEventSource, pListener, cTimeoutMS, &amp;pEvent);</screen></para>
2081
2082 <para>After processing the event it needs to be marked as processed
2083 with the following method call:
2084 <screen>rc = IEventSource_EventProcessed(pEventSource, pListener, pEvent);</screen></para>
2085
2086 <para>This is vital for vetoable events, as they would be stuck
2087 otherwise, waiting whether the veto comes or not. It does not do any
2088 harm for other event types, and in the end is cheaper than checking
2089 if the event at hand is vetoable or not.</para>
2090
2091 <para>The general event handling concepts are described in the API
2092 specification (see <xref linkend="events"/>), including how to
2093 aggregate multiple event sources for processing in one event loop.
2094 As mentioned, the sample illustrates the practical aspects of how to
2095 use both types of event handling, active and passive, from a C
2096 application. Additional hints are in the comments documenting
2097 the helper methods in
2098 <computeroutput>VBoxCAPI_v4_3.h</computeroutput>. The code complexity
2099 of active event handling (and its inherenly platform/compiler
2100 specific aspects) should be motivation to use passive event handling
2101 whereever possible.</para>
2102 </sect3>
2103
2104 <sect3 id="c-uninitialization">
2105 <title>C API uninitialization</title>
2106
2107 <para>Uninitialization is performed by
2108 <computeroutput>g_pVBoxFuncs-&gt;pfnClientUninitialize().</computeroutput>
2109 If your program can exit from more than one place, it is a good idea
2110 to install this function as an exit handler with Standard C's
2111 <computeroutput>atexit()</computeroutput> just after calling
2112 <computeroutput>g_pVBoxFuncs-&gt;pfnClientInitialize()</computeroutput>
2113 , e.g. <screen>#include &lt;stdlib.h&gt;
2114#include &lt;stdio.h&gt;
2115
2116...
2117
2118/*
2119 * Make sure g_pVBoxFuncs-&gt;pfnClientUninitialize() is called at exit, no
2120 * matter if we return from the initial call to main or call exit()
2121 * somewhere else. Note that atexit registered functions are not
2122 * called upon abnormal termination, i.e. when calling abort() or
2123 * signal().
2124 */
2125
2126if (atexit(g_pVBoxFuncs-&gt;pfnClientUninitialize()) != 0) {
2127 fprintf(stderr, "failed to register g_pVBoxFuncs-&gt;pfnClientUninitialize()\n");
2128 exit(EXIT_FAILURE);
2129}</screen></para>
2130
2131 <para>Another idea would be to write your own <computeroutput>void
2132 myexit(int status)</computeroutput> function, calling
2133 <computeroutput>g_pVBoxFuncs-&gt;pfnClientUninitialize()</computeroutput>
2134 followed by the real <computeroutput>exit()</computeroutput>, and
2135 use it instead of <computeroutput>exit()</computeroutput> throughout
2136 your program and at the end of
2137 <computeroutput>main.</computeroutput></para>
2138
2139 <para>If you expect the program to be terminated by a signal (e.g.
2140 user types CTRL-C sending SIGINT) you might want to install a signal
2141 handler setting a flag noting that a signal was sent and then
2142 calling
2143 <computeroutput>g_pVBoxFuncs-&gt;pfnClientUninitialize()</computeroutput>
2144 later on, <emphasis>not</emphasis> from the handler itself.</para>
2145
2146 <para>That said, if a client program forgets to call
2147 <computeroutput>g_pVBoxFuncs-&gt;pfnClientUninitialize()</computeroutput>
2148 before it terminates, there is a mechanism in place which will
2149 eventually release references held by the client. On Windows it can
2150 take quite a while, in the order of 6-7 minutes.</para>
2151 </sect3>
2152
2153 <sect3 id="c-linking">
2154 <title>Compiling and linking</title>
2155
2156 <para>A program using the C binding has to open the library during
2157 runtime using the help of glue code provided and as shown in the
2158 example <computeroutput>tstCAPIGlue.c</computeroutput>.
2159 Compilation and linking can be achieved with a makefile fragment
2160 similar to:<screen># Where is the SDK directory?
2161PATH_SDK = ../../..
2162CAPI_INC = -I$(PATH_SDK)/bindings/c/include
2163ifeq ($(BUILD_PLATFORM),win)
2164PLATFORM_INC = -I$(PATH_SDK)/bindings/mscom/include
2165PLATFORM_LIB = $(PATH_SDK)/bindings/mscom/lib
2166else
2167PLATFORM_INC = -I$(PATH_SDK)/bindings/xpcom/include
2168PLATFORM_LIB = $(PATH_SDK)/bindings/xpcom/lib
2169endif
2170GLUE_DIR = $(PATH_SDK)/bindings/c/glue
2171GLUE_INC = -I$(GLUE_DIR)
2172
2173# Compile Glue Library
2174VBoxCAPIGlue.o: $(GLUE_DIR)/VBoxCAPIGlue.c
2175 $(CC) $(CFLAGS) $(CAPI_INC) $(PLATFORM_INC) $(GLUE_INC) -o $@ -c $&lt;
2176
2177# Compile interface ID list
2178VirtualBox_i.o: $(PLATFORM_LIB)/VirtualBox_i.c
2179 $(CC) $(CFLAGS) $(CAPI_INC) $(PLATFORM_INC) $(GLUE_INC) -o $@ -c $&lt;
2180
2181# Compile program code
2182program.o: program.c
2183 $(CC) $(CFLAGS) $(CAPI_INC) $(PLATFORM_INC) $(GLUE_INC) -o $@ -c $&lt;
2184
2185# Link program.
2186program: program.o VBoxCAPICGlue.o VirtualBox_i.o
2187 $(CC) -o $@ $^ -ldl -lpthread</screen></para>
2188 </sect3>
2189
2190 <sect3 id="capi_conversion">
2191 <title>Conversion of code using legacy C binding</title>
2192
2193 <para>This section aims to make the task of converting code using
2194 the legacy C binding to the new style a breeze, by pointing out some
2195 key steps.</para>
2196
2197 <para>One necessary change is adjusting your Makefile to reflect the
2198 different include paths. See above. There are now 3 relevant include
2199 directories, and most of it is pointing to the C binding directory.
2200 The XPCOM include directory is still relevant for platforms where
2201 the XPCOM middleware is used, but most of the include files live
2202 elsewhere now, so it's good to have it last. Additionally the
2203 <computeroutput>VirtualBox_i.c</computeroutput> file needs to be
2204 compiled and linked to the program, it contains the IIDs relevant
2205 for the VirtualBox API, making sure they are not replicated endlessly
2206 if the code refers to them frequently.</para>
2207
2208 <para>The C API client code should include
2209 <computeroutput>VBoxCAPIGlue.h</computeroutput> instead of
2210 <computeroutput>VBoxXPCOMCGlue.h</computeroutput> or
2211 <computeroutput>VBoxCAPI_v4_3.h</computeroutput>, as this makes sure
2212 the correct macros and internal translations are selected.</para>
2213
2214 <para>All API method calls (anything mentioning <code>vtbl</code>)
2215 should be rewritten using the convenience macros for calling methods,
2216 as these hide the internal details, are generally easier to use and
2217 shorter to type. You should remove as many as possible
2218 <code>(nsISupports **)</code> or similar typecasts, as the new style
2219 should use the correct type in most places, increasing the type
2220 safety in case of an error in the source code.</para>
2221
2222 <para>To gloss over the platform differences, API client code should
2223 no longer rely on XPCOM specific interface names such as
2224 <code>nsISupports</code>, <code>nsIException</code> and
2225 <code>nsIEventQueue</code>, and replace them by the platform
2226 independent interface names <code>IUnknown</code> and
2227 <code>IErrorInfo</code> for the first two respectively. Event queue
2228 handling should be replaced by using the platform independent way
2229 described in <xref linkend="c-eventhandling"/>.</para>
2230
2231 <para>Finally adjust the string and array handling to use the new
2232 helpers, as these make sure the code works without changes with
2233 both COM and XPCOM, which are significantly different in this area.
2234 The code should be double checked if it uses the correct way to
2235 manage memory, and is freeing it only after the last use.</para>
2236 </sect3>
2237
2238 <sect3 id="xpcom_cbinding">
2239 <title>Legacy C binding to VirtualBox API for XPCOM</title>
2240
2241 <note>
2242 <para>This section applies to Linux, Mac OS X and Solaris
2243 hosts only and describes deprecated use of the API from C.</para>
2244 </note>
2245
2246 <para>Starting with version 2.2, VirtualBox offers a C binding for
2247 its API which works only on platforms using XPCOM. Refer to the
2248 old SDK documentation (included in the SDK packages for version 4.3.6
2249 or earlier), it still applies unchanged. The fundamental concepts are
2250 similar (but the syntactical details are quite different) to the
2251 newer cross-platform C binding which should be used for all new code,
2252 as the support for the old C binding will go away in a major release
2253 after version 4.3.</para>
2254 </sect3>
2255 </sect2>
2256 </sect1>
2257 </chapter>
2258
2259 <chapter id="concepts">
2260 <title>Basic VirtualBox concepts; some examples</title>
2261
2262 <para>The following explains some basic VirtualBox concepts such as the
2263 VirtualBox object, sessions and how virtual machines are manipulated and
2264 launched using the Main API. The coding examples use a pseudo-code style
2265 closely related to the object-oriented web service (OOWS) for JAX-WS.
2266 Depending on which environment you are using, you will need to adjust the
2267 examples.</para>
2268
2269 <sect1>
2270 <title>Obtaining basic machine information. Reading attributes</title>
2271
2272 <para>Any program using the Main API will first need access to the
2273 global VirtualBox object (see
2274 <link linkend="IVirtualBox">IVirtualBox</link>), from which all other
2275 functionality of the API is derived. With the OOWS for JAX-WS, this is
2276 returned from the
2277 <link linkend="IWebsessionManager__logon">IWebsessionManager::logon()</link>
2278 call.</para>
2279
2280 <para>To enumerate virtual machines, one would look at the "machines"
2281 array attribute in the VirtualBox object (see
2282 <link linkend="IVirtualBox__machines">IVirtualBox::machines</link>).
2283 This array contains all virtual machines currently registered with the
2284 host, each of them being an instance of
2285 <link linkend="IMachine">IMachine</link>.
2286 From each such instance, one can query additional information, such as
2287 the UUID, the name, memory, operating system and more by looking at the
2288 attributes; see the attributes list in
2289 <link linkend="IMachine">IMachine</link> documentation.</para>
2290
2291 <para>As mentioned in the preceding chapters, depending on your
2292 programming environment, attributes are mapped to corresponding "get"
2293 and (if the attribute is not read-only) "set" methods. So when the
2294 documentation says that IMachine has a
2295 "<link linkend="IMachine__name">name</link>" attribute, this means you
2296 need to code something
2297 like the following to get the machine's name:
2298 <screen>IMachine machine = ...;
2299String name = machine.getName();</screen>
2300 Boolean attribute getters can sometimes be called
2301 <computeroutput>isAttribute()</computeroutput> due to JAX-WS naming
2302 conventions.</para>
2303 </sect1>
2304
2305 <sect1>
2306 <title>Changing machine settings: Sessions</title>
2307
2308 <para>As said in the previous section, to read a machine's attribute,
2309 one invokes the corresponding "get" method. One would think that to
2310 change settings of a machine, it would suffice to call the corresponding
2311 "set" method -- for example, to set a VM's memory to 1024 MB, one would
2312 call <computeroutput>setMemorySize(1024)</computeroutput>. Try that, and
2313 you will get an error: "The machine is not mutable."</para>
2314
2315 <para>So unfortunately, things are not that easy. VirtualBox is a
2316 complicated environment in which multiple processes compete for possibly
2317 the same resources, especially machine settings. As a result, machines
2318 must be "locked" before they can either be modified or started. This is
2319 to prevent multiple processes from making conflicting changes to a
2320 machine: it should, for example, not be allowed to change the memory
2321 size of a virtual machine while it is running. (You can't add more
2322 memory to a real computer while it is running either, at least not to an
2323 ordinary PC.) Also, two processes must not change settings at the same
2324 time, or start a machine at the same time.</para>
2325
2326 <para>These requirements are implemented in the Main API by way of
2327 "sessions", in particular, the <link linkend="ISession">ISession</link>
2328 interface. Each process which talks to
2329 VirtualBox needs its own instance of ISession. In the web service, you
2330 can request the creation of such an object by calling
2331 <link linkend="IWebsessionManager__getSessionObject">IWebsessionManager::getSessionObject()</link>.
2332 More complex management tasks might need multiple instances of ISession,
2333 and each call returns a new one.</para>
2334
2335 <para>This session object must then be used like a mutex semaphore in
2336 common programming environments. Before you can change machine settings,
2337 you must write-lock the machine by calling
2338 <link linkend="IMachine__lockMachine">IMachine::lockMachine()</link>
2339 with your process's session object.</para>
2340
2341 <para>After the machine has been locked, the
2342 <link linkend="ISession__machine">ISession::machine</link> attribute
2343 contains a copy of the original IMachine object upon which the session
2344 was opened, but this copy is "mutable": you can invoke "set" methods on
2345 it.</para>
2346
2347 <para>When done making the changes to the machine, you must call
2348 <link linkend="IMachine__saveSettings">IMachine::saveSettings()</link>,
2349 which will copy the changes you have made from your "mutable" machine
2350 back to the real machine and write them out to the machine settings XML
2351 file. This will make your changes permanent.</para>
2352
2353 <para>Finally, it is important to always unlock the machine again, by
2354 calling
2355 <link linkend="ISession__unlockMachine">ISession::unlockMachine()</link>.
2356 Otherwise, when the calling process end, the machine will receive the
2357 "aborted" state, which can lead to loss of data.</para>
2358
2359 <para>So, as an example, the sequence to change a machine's memory to
2360 1024 MB is something like this:<screen>IWebsessionManager mgr ...;
2361IVirtualBox vbox = mgr.logon(user, pass);
2362...
2363IMachine machine = ...; // read-only machine
2364ISession session = mgr.getSessionObject();
2365machine.lockMachine(session, LockType.Write); // machine is now locked for writing
2366IMachine mutable = session.getMachine(); // obtain the mutable machine copy
2367mutable.setMemorySize(1024);
2368mutable.saveSettings(); // write settings to XML
2369session.unlockMachine();</screen></para>
2370 </sect1>
2371
2372 <sect1>
2373 <title>Launching virtual machines</title>
2374
2375 <para>To launch a virtual machine, you call
2376 <link linkend="IMachine__launchVMProcess">IMachine::launchVMProcess()</link>.
2377 In doing so, the caller instructs the VirtualBox engine to start a new
2378 process with the virtual machine in it, since to the host, each virtual
2379 machine looks like single process, even if it has hundreds of its own
2380 processes inside. (This new VM process in turn obtains a write lock on
2381 the machine, as described above, to prevent conflicting changes from
2382 other processes; this is why opening another session will fail while the
2383 VM is running.)</para>
2384
2385 <para>Starting a machine looks something like this:
2386 <screen>IWebsessionManager mgr ...;
2387IVirtualBox vbox = mgr.logon(user, pass);
2388...
2389IMachine machine = ...; // read-only machine
2390ISession session = mgr.getSessionObject();
2391IProgress prog = machine.launchVMProcess(session,
2392 "gui", // session type
2393 ""); // possibly environment setting
2394prog.waitForCompletion(10000); // give the process 10 secs
2395if (prog.getResultCode() != 0) // check success
2396 System.out.println("Cannot launch VM!")</screen></para>
2397
2398 <para>The caller's session object can then be used as a sort of remote
2399 control to the VM process that was launched. It contains a "console"
2400 object (see <link linkend="ISession__console">ISession::console</link>)
2401 with which the VM can be paused,
2402 stopped, snapshotted or other things.</para>
2403 </sect1>
2404
2405 <sect1 id="events">
2406 <title>VirtualBox events</title>
2407
2408 <para>In VirtualBox, "events" provide a uniform mechanism to register
2409 for and consume specific events. A VirtualBox client can register an
2410 "event listener" (represented by the
2411 <link linkend="IEventListener">IEventListener</link> interface), which
2412 will then get notified by the server when an event (represented by the
2413 <link linkend="IEvent">IEvent</link> interface) happens.</para>
2414
2415 <para>The IEvent interface is an abstract parent interface for all
2416 events that can occur in VirtualBox. The actual events that the server
2417 sends out are then of one of the specific subclasses, for example
2418 <link linkend="IMachineStateChangedEvent">IMachineStateChangedEvent</link>
2419 or
2420 <link linkend="IMediumChangedEvent">IMediumChangedEvent</link>.</para>
2421
2422 <para>As an example, the VirtualBox GUI waits for machine events and can
2423 thus update its display when the machine state changes or machine
2424 settings are modified, even if this happens in another client. This is
2425 how the GUI can automatically refresh its display even if you manipulate
2426 a machine from another client, for example, from VBoxManage.</para>
2427
2428 <para>To register an event listener to listen to events, use code like
2429 this:<screen>EventSource es = console.getEventSource();
2430IEventListener listener = es.createListener();
2431VBoxEventType aTypes[] = (VBoxEventType.OnMachineStateChanged);
2432 // list of event types to listen for
2433es.registerListener(listener, aTypes, false /* active */);
2434 // register passive listener
2435IEvent ev = es.getEvent(listener, 1000);
2436 // wait up to one second for event to happen
2437if (ev != null)
2438{
2439 // downcast to specific event interface (in this case we have only registered
2440 // for one type, otherwise IEvent::type would tell us)
2441 IMachineStateChangedEvent mcse = IMachineStateChangedEvent.queryInterface(ev);
2442 ... // inspect and do something
2443 es.eventProcessed(listener, ev);
2444}
2445...
2446es.unregisterListener(listener); </screen></para>
2447
2448 <para>A graphical user interface would probably best start its own
2449 thread to wait for events and then process these in a loop.</para>
2450
2451 <para>The events mechanism was introduced with VirtualBox 3.3 and
2452 replaces various callback interfaces which were called for each event in
2453 the interface. The callback mechanism was not compatible with scripting
2454 languages, local Java bindings and remote web services as they do not
2455 support callbacks. The new mechanism with events and event listeners
2456 works with all of these.</para>
2457
2458 <para>To simplify developement of application using events, concept of
2459 event aggregator was introduced. Essentially it's mechanism to aggregate
2460 multiple event sources into single one, and then work with this single
2461 aggregated event source instead of original sources. As an example, one
2462 can evaluate demo recorder in VirtualBox Python shell, shipped with SDK
2463 - it records mouse and keyboard events, represented as separate event
2464 sources. Code is essentially like this:<screen>
2465 listener = console.eventSource.createListener()
2466 agg = console.eventSource.createAggregator([console.keyboard.eventSource, console.mouse.eventSource])
2467 agg.registerListener(listener, [ctx['global'].constants.VBoxEventType_Any], False)
2468 registered = True
2469 end = time.time() + dur
2470 while time.time() &lt; end:
2471 ev = agg.getEvent(listener, 1000)
2472 processEent(ev)
2473 agg.unregisterListener(listener)</screen> Without using aggregators
2474 consumer have to poll on both sources, or start multiple threads to
2475 block on those sources.</para>
2476 </sect1>
2477 </chapter>
2478
2479 <chapter id="vboxshell">
2480 <title>The VirtualBox shell</title>
2481
2482 <para>VirtualBox comes with an extensible shell, which allows you to
2483 control your virtual machines from the command line. It is also a
2484 nontrivial example of how to use the VirtualBox APIs from Python, for all
2485 three COM/XPCOM/WS styles of the API.</para>
2486
2487 <para>You can easily extend this shell with your own commands. Create a
2488 subdirectory named
2489 <computeroutput>.config/VirtualBox/shexts</computeroutput> below your home
2490 directory (respectively <computeroutput>.VirtualBox/shexts</computeroutput>
2491 on a Windows system and
2492 <computeroutput>Library/VirtualBox/shexts</computeroutput> on OS X) and put
2493 a Python file implementing your shell extension commands in this directory.
2494 This file must contain an array named
2495 <computeroutput>commands</computeroutput> containing your command
2496 definitions: <screen>
2497 commands = {
2498 'cmd1': ['Command cmd1 help', cmd1],
2499 'cmd2': ['Command cmd2 help', cmd2]
2500 }
2501 </screen> For example, to create a command for creating hard drive
2502 images, the following code can be used: <screen>
2503 def createHdd(ctx,args):
2504 # Show some meaningful error message on wrong input
2505 if (len(args) &lt; 3):
2506 print "usage: createHdd sizeM location type"
2507 return 0
2508
2509 # Get arguments
2510 size = int(args[1])
2511 loc = args[2]
2512 if len(args) &gt; 3:
2513 format = args[3]
2514 else:
2515 # And provide some meaningful defaults
2516 format = "vdi"
2517
2518 # Call VirtualBox API, using context's fields
2519 hdd = ctx['vb'].createMedium(format, loc, ctx['global'].constants.AccessMode_ReadWrite, \
2520 ctx['global'].constants.DeviceType_HardDisk)
2521 # Access constants using ctx['global'].constants
2522 progress = hdd.createBaseStorage(size, (ctx['global'].constants.MediumVariant_Standard, ))
2523 # use standard progress bar mechanism
2524 ctx['progressBar'](progress)
2525
2526
2527 # Report errors
2528 if not hdd.id:
2529 print "cannot create disk (file %s exist?)" %(loc)
2530 return 0
2531
2532 # Give user some feedback on success too
2533 print "created HDD with id: %s" %(hdd.id)
2534
2535 # 0 means continue execution, other values mean exit from the interpreter
2536 return 0
2537
2538 commands = {
2539 'myCreateHDD': ['Create virtual HDD, createHdd size location type', createHdd]
2540 }
2541 </screen> Just store the above text in the file
2542 <computeroutput>createHdd</computeroutput> (or any other meaningful name)
2543 in <computeroutput>.config/VirtualBox/shexts/</computeroutput>. Start the
2544 VirtualBox shell, or just issue the
2545 <computeroutput>reloadExts</computeroutput> command, if the shell is
2546 already running. Your new command will now be available.</para>
2547 </chapter>
2548
2549 <xi:include href="SDKRef_apiref.xml" xpointer="xpointer(/book/*)"
2550 xmlns:xi="http://www.w3.org/2001/XInclude" />
2551
2552 <chapter id="hgcm">
2553 <title>Host-Guest Communication Manager</title>
2554
2555 <para>The VirtualBox Host-Guest Communication Manager (HGCM) allows a
2556 guest application or a guest driver to call a host shared library. The
2557 following features of VirtualBox are implemented using HGCM: <itemizedlist>
2558 <listitem>
2559 <para>Shared Folders</para>
2560 </listitem>
2561
2562 <listitem>
2563 <para>Shared Clipboard</para>
2564 </listitem>
2565
2566 <listitem>
2567 <para>Guest configuration interface</para>
2568 </listitem>
2569 </itemizedlist></para>
2570
2571 <para>The shared library contains a so called HGCM service. The guest HGCM
2572 clients establish connections to the service to call it. When calling a
2573 HGCM service the client supplies a function code and a number of
2574 parameters for the function.</para>
2575
2576 <sect1>
2577 <title>Virtual hardware implementation</title>
2578
2579 <para>HGCM uses the VMM virtual PCI device to exchange data between the
2580 guest and the host. The guest always acts as an initiator of requests. A
2581 request is constructed in the guest physical memory, which must be
2582 locked by the guest. The physical address is passed to the VMM device
2583 using a 32-bit <computeroutput>out edx, eax</computeroutput>
2584 instruction. The physical memory must be allocated below 4GB by 64-bit
2585 guests.</para>
2586
2587 <para>The host parses the request header and data and queues the request
2588 for a host HGCM service. The guest continues execution and usually waits
2589 on a HGCM event semaphore.</para>
2590
2591 <para>When the request has been processed by the HGCM service, the VMM
2592 device sets the completion flag in the request header, sets the HGCM
2593 event and raises an IRQ for the guest. The IRQ handler signals the HGCM
2594 event semaphore and all HGCM callers check the completion flag in the
2595 corresponding request header. If the flag is set, the request is
2596 considered completed.</para>
2597 </sect1>
2598
2599 <sect1>
2600 <title>Protocol specification</title>
2601
2602 <para>The HGCM protocol definitions are contained in the
2603 <computeroutput>VBox/VBoxGuest.h</computeroutput></para>
2604
2605 <sect2>
2606 <title>Request header</title>
2607
2608 <para>HGCM request structures contains a generic header
2609 (VMMDevHGCMRequestHeader): <table>
2610 <title>HGCM Request Generic Header</title>
2611
2612 <tgroup cols="2">
2613 <tbody>
2614 <row>
2615 <entry><emphasis role="bold">Name</emphasis></entry>
2616
2617 <entry><emphasis role="bold">Description</emphasis></entry>
2618 </row>
2619
2620 <row>
2621 <entry>size</entry>
2622
2623 <entry>Size of the entire request.</entry>
2624 </row>
2625
2626 <row>
2627 <entry>version</entry>
2628
2629 <entry>Version of the header, must be set to
2630 <computeroutput>0x10001</computeroutput>.</entry>
2631 </row>
2632
2633 <row>
2634 <entry>type</entry>
2635
2636 <entry>Type of the request.</entry>
2637 </row>
2638
2639 <row>
2640 <entry>rc</entry>
2641
2642 <entry>HGCM return code, which will be set by the VMM
2643 device.</entry>
2644 </row>
2645
2646 <row>
2647 <entry>reserved1</entry>
2648
2649 <entry>A reserved field 1.</entry>
2650 </row>
2651
2652 <row>
2653 <entry>reserved2</entry>
2654
2655 <entry>A reserved field 2.</entry>
2656 </row>
2657
2658 <row>
2659 <entry>flags</entry>
2660
2661 <entry>HGCM flags, set by the VMM device.</entry>
2662 </row>
2663
2664 <row>
2665 <entry>result</entry>
2666
2667 <entry>The HGCM result code, set by the VMM device.</entry>
2668 </row>
2669 </tbody>
2670 </tgroup>
2671 </table> <note>
2672 <itemizedlist>
2673 <listitem>
2674 <para>All fields are 32-bit.</para>
2675 </listitem>
2676
2677 <listitem>
2678 <para>Fields from <computeroutput>size</computeroutput> to
2679 <computeroutput>reserved2</computeroutput> are a standard VMM
2680 device request header, which is used for other interfaces as
2681 well.</para>
2682 </listitem>
2683 </itemizedlist>
2684 </note></para>
2685
2686 <para>The <emphasis role="bold">type</emphasis> field indicates the
2687 type of the HGCM request: <table>
2688 <title>Request Types</title>
2689
2690 <tgroup cols="2">
2691 <tbody>
2692 <row>
2693 <entry><emphasis role="bold">Name (decimal
2694 value)</emphasis></entry>
2695
2696 <entry><emphasis role="bold">Description</emphasis></entry>
2697 </row>
2698
2699 <row>
2700 <entry>VMMDevReq_HGCMConnect
2701 (<computeroutput>60</computeroutput>)</entry>
2702
2703 <entry>Connect to a HGCM service.</entry>
2704 </row>
2705
2706 <row>
2707 <entry>VMMDevReq_HGCMDisconnect
2708 (<computeroutput>61</computeroutput>)</entry>
2709
2710 <entry>Disconnect from the service.</entry>
2711 </row>
2712
2713 <row>
2714 <entry>VMMDevReq_HGCMCall32
2715 (<computeroutput>62</computeroutput>)</entry>
2716
2717 <entry>Call a HGCM function using the 32-bit
2718 interface.</entry>
2719 </row>
2720
2721 <row>
2722 <entry>VMMDevReq_HGCMCall64
2723 (<computeroutput>63</computeroutput>)</entry>
2724
2725 <entry>Call a HGCM function using the 64-bit
2726 interface.</entry>
2727 </row>
2728
2729 <row>
2730 <entry>VMMDevReq_HGCMCancel
2731 (<computeroutput>64</computeroutput>)</entry>
2732
2733 <entry>Cancel a HGCM request currently being processed by a
2734 host HGCM service.</entry>
2735 </row>
2736 </tbody>
2737 </tgroup>
2738 </table></para>
2739
2740 <para>The <emphasis role="bold">flags</emphasis> field may contain:
2741 <table>
2742 <title>Flags</title>
2743
2744 <tgroup cols="2">
2745 <tbody>
2746 <row>
2747 <entry><emphasis role="bold">Name (hexadecimal
2748 value)</emphasis></entry>
2749
2750 <entry><emphasis role="bold">Description</emphasis></entry>
2751 </row>
2752
2753 <row>
2754 <entry>VBOX_HGCM_REQ_DONE
2755 (<computeroutput>0x00000001</computeroutput>)</entry>
2756
2757 <entry>The request has been processed by the host
2758 service.</entry>
2759 </row>
2760
2761 <row>
2762 <entry>VBOX_HGCM_REQ_CANCELLED
2763 (<computeroutput>0x00000002</computeroutput>)</entry>
2764
2765 <entry>This request was cancelled.</entry>
2766 </row>
2767 </tbody>
2768 </tgroup>
2769 </table></para>
2770 </sect2>
2771
2772 <sect2>
2773 <title>Connect</title>
2774
2775 <para>The connection request must be issued by the guest HGCM client
2776 before it can call the HGCM service (VMMDevHGCMConnect): <table>
2777 <title>Connect request</title>
2778
2779 <tgroup cols="2">
2780 <tbody>
2781 <row>
2782 <entry><emphasis role="bold">Name</emphasis></entry>
2783
2784 <entry><emphasis role="bold">Description</emphasis></entry>
2785 </row>
2786
2787 <row>
2788 <entry>header</entry>
2789
2790 <entry>The generic HGCM request header with type equal to
2791 VMMDevReq_HGCMConnect
2792 (<computeroutput>60</computeroutput>).</entry>
2793 </row>
2794
2795 <row>
2796 <entry>type</entry>
2797
2798 <entry>The type of the service location information (32
2799 bit).</entry>
2800 </row>
2801
2802 <row>
2803 <entry>location</entry>
2804
2805 <entry>The service location information (128 bytes).</entry>
2806 </row>
2807
2808 <row>
2809 <entry>clientId</entry>
2810
2811 <entry>The client identifier assigned to the connecting
2812 client by the HGCM subsystem (32-bit).</entry>
2813 </row>
2814 </tbody>
2815 </tgroup>
2816 </table> The <emphasis role="bold">type</emphasis> field tells the
2817 HGCM how to look for the requested service: <table>
2818 <title>Location Information Types</title>
2819
2820 <tgroup cols="2">
2821 <tbody>
2822 <row>
2823 <entry><emphasis role="bold">Name (hexadecimal
2824 value)</emphasis></entry>
2825
2826 <entry><emphasis role="bold">Description</emphasis></entry>
2827 </row>
2828
2829 <row>
2830 <entry>VMMDevHGCMLoc_LocalHost
2831 (<computeroutput>0x1</computeroutput>)</entry>
2832
2833 <entry>The requested service is a shared library located on
2834 the host and the location information contains the library
2835 name.</entry>
2836 </row>
2837
2838 <row>
2839 <entry>VMMDevHGCMLoc_LocalHost_Existing
2840 (<computeroutput>0x2</computeroutput>)</entry>
2841
2842 <entry>The requested service is a preloaded one and the
2843 location information contains the service name.</entry>
2844 </row>
2845 </tbody>
2846 </tgroup>
2847 </table> <note>
2848 <para>Currently preloaded HGCM services are hard-coded in
2849 VirtualBox: <itemizedlist>
2850 <listitem>
2851 <para>VBoxSharedFolders</para>
2852 </listitem>
2853
2854 <listitem>
2855 <para>VBoxSharedClipboard</para>
2856 </listitem>
2857
2858 <listitem>
2859 <para>VBoxGuestPropSvc</para>
2860 </listitem>
2861
2862 <listitem>
2863 <para>VBoxSharedOpenGL</para>
2864 </listitem>
2865 </itemizedlist></para>
2866 </note> There is no difference between both types of HGCM services,
2867 only the location mechanism is different.</para>
2868
2869 <para>The client identifier is returned by the host and must be used
2870 in all subsequent requests by the client.</para>
2871 </sect2>
2872
2873 <sect2>
2874 <title>Disconnect</title>
2875
2876 <para>This request disconnects the client and makes the client
2877 identifier invalid (VMMDevHGCMDisconnect): <table>
2878 <title>Disconnect request</title>
2879
2880 <tgroup cols="2">
2881 <tbody>
2882 <row>
2883 <entry><emphasis role="bold">Name</emphasis></entry>
2884
2885 <entry><emphasis role="bold">Description</emphasis></entry>
2886 </row>
2887
2888 <row>
2889 <entry>header</entry>
2890
2891 <entry>The generic HGCM request header with type equal to
2892 VMMDevReq_HGCMDisconnect
2893 (<computeroutput>61</computeroutput>).</entry>
2894 </row>
2895
2896 <row>
2897 <entry>clientId</entry>
2898
2899 <entry>The client identifier previously returned by the
2900 connect request (32-bit).</entry>
2901 </row>
2902 </tbody>
2903 </tgroup>
2904 </table></para>
2905 </sect2>
2906
2907 <sect2>
2908 <title>Call32 and Call64</title>
2909
2910 <para>Calls the HGCM service entry point (VMMDevHGCMCall) using 32-bit
2911 or 64-bit addresses: <table>
2912 <title>Call request</title>
2913
2914 <tgroup cols="2">
2915 <tbody>
2916 <row>
2917 <entry><emphasis role="bold">Name</emphasis></entry>
2918
2919 <entry><emphasis role="bold">Description</emphasis></entry>
2920 </row>
2921
2922 <row>
2923 <entry>header</entry>
2924
2925 <entry>The generic HGCM request header with type equal to
2926 either VMMDevReq_HGCMCall32
2927 (<computeroutput>62</computeroutput>) or
2928 VMMDevReq_HGCMCall64
2929 (<computeroutput>63</computeroutput>).</entry>
2930 </row>
2931
2932 <row>
2933 <entry>clientId</entry>
2934
2935 <entry>The client identifier previously returned by the
2936 connect request (32-bit).</entry>
2937 </row>
2938
2939 <row>
2940 <entry>function</entry>
2941
2942 <entry>The function code to be processed by the service (32
2943 bit).</entry>
2944 </row>
2945
2946 <row>
2947 <entry>cParms</entry>
2948
2949 <entry>The number of following parameters (32-bit). This
2950 value is 0 if the function requires no parameters.</entry>
2951 </row>
2952
2953 <row>
2954 <entry>parms</entry>
2955
2956 <entry>An array of parameter description structures
2957 (HGCMFunctionParameter32 or
2958 HGCMFunctionParameter64).</entry>
2959 </row>
2960 </tbody>
2961 </tgroup>
2962 </table></para>
2963
2964 <para>The 32-bit parameter description (HGCMFunctionParameter32)
2965 consists of 32-bit type field and 8 bytes of an opaque value, so 12
2966 bytes in total. The 64-bit variant (HGCMFunctionParameter64) consists
2967 of the type and 12 bytes of a value, so 16 bytes in total.</para>
2968
2969 <para><table>
2970 <title>Parameter types</title>
2971
2972 <tgroup cols="2">
2973 <tbody>
2974 <row>
2975 <entry><emphasis role="bold">Type</emphasis></entry>
2976
2977 <entry><emphasis role="bold">Format of the
2978 value</emphasis></entry>
2979 </row>
2980
2981 <row>
2982 <entry>VMMDevHGCMParmType_32bit (1)</entry>
2983
2984 <entry>A 32-bit value.</entry>
2985 </row>
2986
2987 <row>
2988 <entry>VMMDevHGCMParmType_64bit (2)</entry>
2989
2990 <entry>A 64-bit value.</entry>
2991 </row>
2992
2993 <row>
2994 <entry>VMMDevHGCMParmType_PhysAddr (3)</entry>
2995
2996 <entry>A 32-bit size followed by a 32-bit or 64-bit guest
2997 physical address.</entry>
2998 </row>
2999
3000 <row>
3001 <entry>VMMDevHGCMParmType_LinAddr (4)</entry>
3002
3003 <entry>A 32-bit size followed by a 32-bit or 64-bit guest
3004 linear address. The buffer is used both for guest to host
3005 and for host to guest data.</entry>
3006 </row>
3007
3008 <row>
3009 <entry>VMMDevHGCMParmType_LinAddr_In (5)</entry>
3010
3011 <entry>Same as VMMDevHGCMParmType_LinAddr but the buffer is
3012 used only for host to guest data.</entry>
3013 </row>
3014
3015 <row>
3016 <entry>VMMDevHGCMParmType_LinAddr_Out (6)</entry>
3017
3018 <entry>Same as VMMDevHGCMParmType_LinAddr but the buffer is
3019 used only for guest to host data.</entry>
3020 </row>
3021
3022 <row>
3023 <entry>VMMDevHGCMParmType_LinAddr_Locked (7)</entry>
3024
3025 <entry>Same as VMMDevHGCMParmType_LinAddr but the buffer is
3026 already locked by the guest.</entry>
3027 </row>
3028
3029 <row>
3030 <entry>VMMDevHGCMParmType_LinAddr_Locked_In (1)</entry>
3031
3032 <entry>Same as VMMDevHGCMParmType_LinAddr_In but the buffer
3033 is already locked by the guest.</entry>
3034 </row>
3035
3036 <row>
3037 <entry>VMMDevHGCMParmType_LinAddr_Locked_Out (1)</entry>
3038
3039 <entry>Same as VMMDevHGCMParmType_LinAddr_Out but the buffer
3040 is already locked by the guest.</entry>
3041 </row>
3042 </tbody>
3043 </tgroup>
3044 </table></para>
3045
3046 <para>The</para>
3047 </sect2>
3048
3049 <sect2>
3050 <title>Cancel</title>
3051
3052 <para>This request cancels a call request (VMMDevHGCMCancel): <table>
3053 <title>Cancel request</title>
3054
3055 <tgroup cols="2">
3056 <tbody>
3057 <row>
3058 <entry><emphasis role="bold">Name</emphasis></entry>
3059
3060 <entry><emphasis role="bold">Description</emphasis></entry>
3061 </row>
3062
3063 <row>
3064 <entry>header</entry>
3065
3066 <entry>The generic HGCM request header with type equal to
3067 VMMDevReq_HGCMCancel
3068 (<computeroutput>64</computeroutput>).</entry>
3069 </row>
3070 </tbody>
3071 </tgroup>
3072 </table></para>
3073 </sect2>
3074 </sect1>
3075
3076 <sect1>
3077 <title>Guest software interface</title>
3078
3079 <para>The guest HGCM clients can call HGCM services from both drivers
3080 and applications.</para>
3081
3082 <sect2>
3083 <title>The guest driver interface</title>
3084
3085 <para>The driver interface is implemented in the VirtualBox guest
3086 additions driver (VBoxGuest), which works with the VMM virtual device.
3087 Drivers must use the VBox Guest Library (VBGL), which provides an API
3088 for HGCM clients (<computeroutput>VBox/VBoxGuestLib.h</computeroutput>
3089 and <computeroutput>VBox/VBoxGuest.h</computeroutput>).</para>
3090
3091 <para><screen>
3092DECLR0VBGL(int) VbglR0HGCMConnect(VBGLHGCMHANDLE *pHandle, const char *pszServiceName, HGCMCLIENTID *pidClient);
3093 </screen> Connects to the service: <screen>
3094 VBoxGuestHGCMConnectInfo data;
3095
3096 memset(&amp;data, sizeof(VBoxGuestHGCMConnectInfo));
3097
3098 data.result = VINF_SUCCESS;
3099 data.Loc.type = VMMDevHGCMLoc_LocalHost_Existing;
3100 strcpy (data.Loc.u.host.achName, "VBoxSharedFolders");
3101
3102 rc = VbglHGCMConnect (&amp;handle, "VBoxSharedFolders"&amp;data);
3103
3104 if (RT_SUCCESS (rc))
3105 {
3106 rc = data.result;
3107 }
3108
3109 if (RT_SUCCESS (rc))
3110 {
3111 /* Get the assigned client identifier. */
3112 ulClientID = data.u32ClientID;
3113 }
3114 </screen></para>
3115
3116 <para><screen>
3117DECLVBGL(int) VbglHGCMDisconnect (VBGLHGCMHANDLE handle, VBoxGuestHGCMDisconnectInfo *pData);
3118 </screen> Disconnects from the service. <screen>
3119 VBoxGuestHGCMDisconnectInfo data;
3120
3121 RtlZeroMemory (&amp;data, sizeof (VBoxGuestHGCMDisconnectInfo));
3122
3123 data.result = VINF_SUCCESS;
3124 data.u32ClientID = ulClientID;
3125
3126 rc = VbglHGCMDisconnect (handle, &amp;data);
3127 </screen></para>
3128
3129 <para><screen>
3130DECLVBGL(int) VbglHGCMCall (VBGLHGCMHANDLE handle, VBoxGuestHGCMCallInfo *pData, uint32_t cbData);
3131 </screen> Calls a function in the service. <screen>
3132typedef struct _VBoxSFRead
3133{
3134 VBoxGuestHGCMCallInfo callInfo;
3135
3136 /** pointer, in: SHFLROOT
3137 * Root handle of the mapping which name is queried.
3138 */
3139 HGCMFunctionParameter root;
3140
3141 /** value64, in:
3142 * SHFLHANDLE of object to read from.
3143 */
3144 HGCMFunctionParameter handle;
3145
3146 /** value64, in:
3147 * Offset to read from.
3148 */
3149 HGCMFunctionParameter offset;
3150
3151 /** value64, in/out:
3152 * Bytes to read/How many were read.
3153 */
3154 HGCMFunctionParameter cb;
3155
3156 /** pointer, out:
3157 * Buffer to place data to.
3158 */
3159 HGCMFunctionParameter buffer;
3160
3161} VBoxSFRead;
3162
3163/** Number of parameters */
3164#define SHFL_CPARMS_READ (5)
3165
3166...
3167
3168 VBoxSFRead data;
3169
3170 /* The call information. */
3171 data.callInfo.result = VINF_SUCCESS; /* Will be returned by HGCM. */
3172 data.callInfo.u32ClientID = ulClientID; /* Client identifier. */
3173 data.callInfo.u32Function = SHFL_FN_READ; /* The function code. */
3174 data.callInfo.cParms = SHFL_CPARMS_READ; /* Number of parameters. */
3175
3176 /* Initialize parameters. */
3177 data.root.type = VMMDevHGCMParmType_32bit;
3178 data.root.u.value32 = pMap-&gt;root;
3179
3180 data.handle.type = VMMDevHGCMParmType_64bit;
3181 data.handle.u.value64 = hFile;
3182
3183 data.offset.type = VMMDevHGCMParmType_64bit;
3184 data.offset.u.value64 = offset;
3185
3186 data.cb.type = VMMDevHGCMParmType_32bit;
3187 data.cb.u.value32 = *pcbBuffer;
3188
3189 data.buffer.type = VMMDevHGCMParmType_LinAddr_Out;
3190 data.buffer.u.Pointer.size = *pcbBuffer;
3191 data.buffer.u.Pointer.u.linearAddr = (uintptr_t)pBuffer;
3192
3193 rc = VbglHGCMCall (handle, &amp;data.callInfo, sizeof (data));
3194
3195 if (RT_SUCCESS (rc))
3196 {
3197 rc = data.callInfo.result;
3198 *pcbBuffer = data.cb.u.value32; /* This is returned by the HGCM service. */
3199 }
3200 </screen></para>
3201 </sect2>
3202
3203 <sect2>
3204 <title>Guest application interface</title>
3205
3206 <para>Applications call the VirtualBox Guest Additions driver to
3207 utilize the HGCM interface. There are IOCTL's which correspond to the
3208 <computeroutput>Vbgl*</computeroutput> functions: <itemizedlist>
3209 <listitem>
3210 <para><computeroutput>VBOXGUEST_IOCTL_HGCM_CONNECT</computeroutput></para>
3211 </listitem>
3212
3213 <listitem>
3214 <para><computeroutput>VBOXGUEST_IOCTL_HGCM_DISCONNECT</computeroutput></para>
3215 </listitem>
3216
3217 <listitem>
3218 <para><computeroutput>VBOXGUEST_IOCTL_HGCM_CALL</computeroutput></para>
3219 </listitem>
3220 </itemizedlist></para>
3221
3222 <para>These IOCTL's get the same input buffer as
3223 <computeroutput>VbglHGCM*</computeroutput> functions and the output
3224 buffer has the same format as the input buffer. The same address can
3225 be used as the input and output buffers.</para>
3226
3227 <para>For example see the guest part of shared clipboard, which runs
3228 as an application and uses the HGCM interface.</para>
3229 </sect2>
3230 </sect1>
3231
3232 <sect1>
3233 <title>HGCM Service Implementation</title>
3234
3235 <para>The HGCM service is a shared library with a specific set of entry
3236 points. The library must export the
3237 <computeroutput>VBoxHGCMSvcLoad</computeroutput> entry point: <screen>
3238extern "C" DECLCALLBACK(DECLEXPORT(int)) VBoxHGCMSvcLoad (VBOXHGCMSVCFNTABLE *ptable)
3239 </screen></para>
3240
3241 <para>The service must check the
3242 <computeroutput>ptable-&gt;cbSize</computeroutput> and
3243 <computeroutput>ptable-&gt;u32Version</computeroutput> fields of the
3244 input structure and fill the remaining fields with function pointers of
3245 entry points and the size of the required client buffer size.</para>
3246
3247 <para>The HGCM service gets a dedicated thread, which calls service
3248 entry points synchronously, that is the service will be called again
3249 only when a previous call has returned. However, the guest calls can be
3250 processed asynchronously. The service must call a completion callback
3251 when the operation is actually completed. The callback can be issued
3252 from another thread as well.</para>
3253
3254 <para>Service entry points are listed in the
3255 <computeroutput>VBox/hgcmsvc.h</computeroutput> in the
3256 <computeroutput>VBOXHGCMSVCFNTABLE</computeroutput> structure. <table>
3257 <title>Service entry points</title>
3258
3259 <tgroup cols="2">
3260 <tbody>
3261 <row>
3262 <entry><emphasis role="bold">Entry</emphasis></entry>
3263
3264 <entry><emphasis role="bold">Description</emphasis></entry>
3265 </row>
3266
3267 <row>
3268 <entry>pfnUnload</entry>
3269
3270 <entry>The service is being unloaded.</entry>
3271 </row>
3272
3273 <row>
3274 <entry>pfnConnect</entry>
3275
3276 <entry>A client <computeroutput>u32ClientID</computeroutput>
3277 is connected to the service. The
3278 <computeroutput>pvClient</computeroutput> parameter points to
3279 an allocated memory buffer which can be used by the service to
3280 store the client information.</entry>
3281 </row>
3282
3283 <row>
3284 <entry>pfnDisconnect</entry>
3285
3286 <entry>A client is being disconnected.</entry>
3287 </row>
3288
3289 <row>
3290 <entry>pfnCall</entry>
3291
3292 <entry>A guest client calls a service function. The
3293 <computeroutput>callHandle</computeroutput> must be used in
3294 the VBOXHGCMSVCHELPERS::pfnCallComplete callback when the call
3295 has been processed.</entry>
3296 </row>
3297
3298 <row>
3299 <entry>pfnHostCall</entry>
3300
3301 <entry>Called by the VirtualBox host components to perform
3302 functions which should be not accessible by the guest. Usually
3303 this entry point is used by VirtualBox to configure the
3304 service.</entry>
3305 </row>
3306
3307 <row>
3308 <entry>pfnSaveState</entry>
3309
3310 <entry>The VM state is being saved and the service must save
3311 relevant information using the SSM API
3312 (<computeroutput>VBox/ssm.h</computeroutput>).</entry>
3313 </row>
3314
3315 <row>
3316 <entry>pfnLoadState</entry>
3317
3318 <entry>The VM is being restored from the saved state and the
3319 service must load the saved information and be able to
3320 continue operations from the saved state.</entry>
3321 </row>
3322 </tbody>
3323 </tgroup>
3324 </table></para>
3325 </sect1>
3326 </chapter>
3327
3328 <chapter id="rdpweb">
3329 <title>RDP Web Control</title>
3330
3331 <para>The VirtualBox <emphasis>RDP Web Control</emphasis> (RDPWeb)
3332 provides remote access to a running VM. RDPWeb is a RDP (Remote Desktop
3333 Protocol) client based on Flash technology and can be used from a Web
3334 browser with a Flash plugin.</para>
3335
3336 <sect1>
3337 <title>RDPWeb features</title>
3338
3339 <para>RDPWeb is embedded into a Web page and can connect to VRDP server
3340 in order to displays the VM screen and pass keyboard and mouse events to
3341 the VM.</para>
3342 </sect1>
3343
3344 <sect1>
3345 <title>RDPWeb reference</title>
3346
3347 <para>RDPWeb consists of two required components:<itemizedlist>
3348 <listitem>
3349 <para>Flash movie
3350 <computeroutput>RDPClientUI.swf</computeroutput></para>
3351 </listitem>
3352
3353 <listitem>
3354 <para>JavaScript helpers
3355 <computeroutput>webclient.js</computeroutput></para>
3356 </listitem>
3357 </itemizedlist></para>
3358
3359 <para>The VirtualBox SDK contains sample HTML code
3360 including:<itemizedlist>
3361 <listitem>
3362 <para>JavaScript library for embedding Flash content
3363 <computeroutput>SWFObject.js</computeroutput></para>
3364 </listitem>
3365
3366 <listitem>
3367 <para>Sample HTML page
3368 <computeroutput>webclient3.html</computeroutput></para>
3369 </listitem>
3370 </itemizedlist></para>
3371
3372 <sect2>
3373 <title>RDPWeb functions</title>
3374
3375 <para><computeroutput>RDPClientUI.swf</computeroutput> and
3376 <computeroutput>webclient.js</computeroutput> work with each other.
3377 JavaScript code is responsible for a proper SWF initialization,
3378 delivering mouse events to the SWF and processing resize requests from
3379 the SWF. On the other hand, the SWF contains a few JavaScript callable
3380 methods, which are used both from
3381 <computeroutput>webclient.js</computeroutput> and the user HTML
3382 page.</para>
3383
3384 <sect3>
3385 <title>JavaScript functions</title>
3386
3387 <para><computeroutput>webclient.js</computeroutput> contains helper
3388 functions. In the following table ElementId refers to an HTML
3389 element name or attribute, and Element to the HTML element itself.
3390 HTML code<programlisting>
3391 &lt;div id="FlashRDP"&gt;
3392 &lt;/div&gt;
3393</programlisting> would have ElementId equal to FlashRDP and Element equal to
3394 the div element.</para>
3395
3396 <para><itemizedlist>
3397 <listitem>
3398 <programlisting>RDPWebClient.embedSWF(SWFFileName, ElementId)</programlisting>
3399
3400 <para>Uses SWFObject library to replace the HTML element with
3401 the Flash movie.</para>
3402 </listitem>
3403
3404 <listitem>
3405 <programlisting>RDPWebClient.isRDPWebControlById(ElementId)</programlisting>
3406
3407 <para>Returns true if the given id refers to a RDPWeb Flash
3408 element.</para>
3409 </listitem>
3410
3411 <listitem>
3412 <programlisting>RDPWebClient.isRDPWebControlByElement(Element)</programlisting>
3413
3414 <para>Returns true if the given element is a RDPWeb Flash
3415 element.</para>
3416 </listitem>
3417
3418 <listitem>
3419 <programlisting>RDPWebClient.getFlashById(ElementId)</programlisting>
3420
3421 <para>Returns an element, which is referenced by the given id.
3422 This function will try to resolve any element, event if it is
3423 not a Flash movie.</para>
3424 </listitem>
3425 </itemizedlist></para>
3426 </sect3>
3427
3428 <sect3>
3429 <title>Flash methods callable from JavaScript</title>
3430
3431 <para><computeroutput>RDPWebClienUI.swf</computeroutput> methods can
3432 be called directly from JavaScript code on a HTML page.</para>
3433
3434 <itemizedlist>
3435 <listitem>
3436 <para>getProperty(Name)</para>
3437 </listitem>
3438
3439 <listitem>
3440 <para>setProperty(Name)</para>
3441 </listitem>
3442
3443 <listitem>
3444 <para>connect()</para>
3445 </listitem>
3446
3447 <listitem>
3448 <para>disconnect()</para>
3449 </listitem>
3450
3451 <listitem>
3452 <para>keyboardSendCAD()</para>
3453 </listitem>
3454 </itemizedlist>
3455 </sect3>
3456
3457 <sect3>
3458 <title>Flash JavaScript callbacks</title>
3459
3460 <para><computeroutput>RDPWebClienUI.swf</computeroutput> calls
3461 JavaScript functions provided by the HTML page.</para>
3462 </sect3>
3463 </sect2>
3464
3465 <sect2>
3466 <title>Embedding RDPWeb in an HTML page</title>
3467
3468 <para>It is necessary to include
3469 <computeroutput>webclient.js</computeroutput> helper script. If
3470 SWFObject library is used, the
3471 <computeroutput>swfobject.js</computeroutput> must be also included
3472 and RDPWeb flash content can be embedded to a Web page using dynamic
3473 HTML. The HTML must include a "placeholder", which consists of 2
3474 <computeroutput>div</computeroutput> elements.</para>
3475 </sect2>
3476 </sect1>
3477
3478 <sect1>
3479 <title>RDPWeb change log</title>
3480
3481 <sect2>
3482 <title>Version 1.2.28</title>
3483
3484 <itemizedlist>
3485 <listitem>
3486 <para><computeroutput>keyboardLayout</computeroutput>,
3487 <computeroutput>keyboardLayouts</computeroutput>,
3488 <computeroutput>UUID</computeroutput> properties.</para>
3489 </listitem>
3490
3491 <listitem>
3492 <para>Support for German keyboard layout on the client.</para>
3493 </listitem>
3494
3495 <listitem>
3496 <para>Rebranding to Oracle.</para>
3497 </listitem>
3498 </itemizedlist>
3499 </sect2>
3500
3501 <sect2>
3502 <title>Version 1.1.26</title>
3503
3504 <itemizedlist>
3505 <listitem>
3506 <para><computeroutput>webclient.js</computeroutput> is a part of
3507 the distribution package.</para>
3508 </listitem>
3509
3510 <listitem>
3511 <para><computeroutput>lastError</computeroutput> property.</para>
3512 </listitem>
3513
3514 <listitem>
3515 <para><computeroutput>keyboardSendScancodes</computeroutput> and
3516 <computeroutput>keyboardSendCAD</computeroutput> methods.</para>
3517 </listitem>
3518 </itemizedlist>
3519 </sect2>
3520
3521 <sect2>
3522 <title>Version 1.0.24</title>
3523
3524 <itemizedlist>
3525 <listitem>
3526 <para>Initial release.</para>
3527 </listitem>
3528 </itemizedlist>
3529 </sect2>
3530 </sect1>
3531 </chapter>
3532
3533 <chapter id="dnd">
3534 <title>Drag and Drop</title>
3535
3536 <para>Since VirtualBox 4.2 it's possible to transfer files from host to the
3537 Linux guests by dragging files, directories or text from the host into the
3538 guest's screen. This is called <emphasis>drag and drop
3539 (DnD)</emphasis>.</para>
3540
3541 <para>In version 5.0 support for Windows guests has been added, as well as
3542 the ability to transfer data the other way around, that is, from the guest
3543 to the host.</para>
3544
3545 <note><para>Currently only the VirtualBox Manager frontend supports drag and
3546 drop.</para></note>
3547
3548 <para>This chapter will show how to use the required interfaces provided
3549 by VirtualBox for adding drag and drop functionality to third-party
3550 frontends.</para>
3551
3552 <sect1>
3553 <title>Basic concepts</title>
3554
3555 <para>In order to use the interfaces provided by VirtualBox, some basic
3556 concepts needs to be understood first: To successfully initiate a
3557 drag and drop operation at least two sides needs to be involved, a
3558 <emphasis>source</emphasis> and a <emphasis>target</emphasis>:</para>
3559
3560 <para>The <emphasis>source</emphasis> is the side which provides the
3561 data, e.g. is the origin of data. This data can be stored within the
3562 source directly or can be retrieved on-demand by the source itself. Other
3563 interfaces don't care where the data from this source actually came
3564 from.</para>
3565
3566 <para>The <emphasis>target</emphasis> on the other hand is the side which
3567 provides the source a visual representation where the user can drop the
3568 data the source offers. This representation can be a window (or just a
3569 certain part of it), for example.</para>
3570
3571 <para>The source and the target have abstract interfaces called
3572 <link linkend="IDnDSource">IDnDSource</link> and
3573 <link linkend="IDnDTarget">IDnDTarget</link>. VirtualBox also
3574 provides implementations of both interfaces, called
3575 <link linkend="IGuestDnDSource">IGuestDnDSource</link> and
3576 <link linkend="IGuestDnDTarget">IGuestDnDTarget</link>. Both
3577 implementations are also used in the VirtualBox Manager frontend.</para>
3578 </sect1>
3579
3580 <sect1>
3581 <title>Supported formats</title>
3582
3583 <para>As the target needs to perform specific actions depending on the
3584 data the source provided, the target first needs to know what type of
3585 data it actually is going to retrieve. It might be that the source offers
3586 data the target cannot (or intentionally does not want to)
3587 support.</para>
3588
3589 <para>VirtualBox handles those data types by providing so-called
3590 <emphasis>MIME types</emphasis> -- these MIME types were originally
3591 defined in
3592 <ulink url="https://tools.ietf.org/html/rfc2046">RFC 2046</ulink> and
3593 are also called <emphasis>Content-types</emphasis>.
3594 <link linkend="IGuestDnDSource">IGuestDnDSource</link> and
3595 <link linkend="IGuestDnDTarget">IGuestDnDTarget</link> support
3596 the following MIME types by default:<itemizedlist>
3597 <listitem>
3598 <para><emphasis role="bold">text/uri-list</emphasis> - A list of
3599 URIs (Uniform Resource Identifier, see
3600 <ulink url="https://tools.ietf.org/html/rfc3986">RFC 3986</ulink>)
3601 pointing to the file and/or directory paths already transferred
3602 from the source to the target.</para>
3603 </listitem>
3604 <listitem>
3605 <para><emphasis role="bold">text/plain;charset=utf-8</emphasis> and
3606 <emphasis role="bold">UTF8_STRING</emphasis> - text in UTF-8
3607 format.</para>
3608 </listitem>
3609 <listitem>
3610 <para><emphasis role="bold">text/plain, TEXT</emphasis>
3611 and <emphasis role="bold">STRING</emphasis> - plain ASCII text,
3612 depending on the source's active ANSI page (if any).</para>
3613 </listitem>
3614 </itemizedlist>
3615 </para>
3616
3617 <para>If, for whatever reason, a certain default format should not be
3618 supported or a new format should be registered,
3619 <link linkend="IDnDSource">IDnDSource</link> and
3620 <link linkend="IDnDTarget">IDnDTarget</link> have methods derived from
3621 <link linkend="IDnDBase">IDnDBase</link> which provide adding,
3622 removing and enumerating specific formats.
3623 <note><para>Registering new or removing default formats on the guest side
3624 currently is not implemented.</para></note></para>
3625 </sect1>
3626
3627 </chapter>
3628
3629 <chapter id="vbox-auth">
3630 <title>VirtualBox external authentication modules</title>
3631
3632 <para>VirtualBox supports arbitrary external modules to perform
3633 authentication. The module is used when the authentication method is set
3634 to "external" for a particular VM VRDE access and the library was
3635 specified with <computeroutput>VBoxManage setproperty
3636 vrdeauthlibrary</computeroutput>. Web service also use the authentication
3637 module which was specified with <computeroutput>VBoxManage setproperty
3638 websrvauthlibrary</computeroutput>.</para>
3639
3640 <para>This library will be loaded by the VM or web service process on
3641 demand, i.e. when the first remote desktop connection is made by a client
3642 or when a client that wants to use the web service logs on.</para>
3643
3644 <para>External authentication is the most flexible as the external handler
3645 can both choose to grant access to everyone (like the "null"
3646 authentication method would) and delegate the request to the guest
3647 authentication component. When delegating the request to the guest
3648 component, the handler will still be called afterwards with the option to
3649 override the result.</para>
3650
3651 <para>An authentication library is required to implement exactly one entry
3652 point:</para>
3653
3654 <screen>#include "VBoxAuth.h"
3655
3656/**
3657 * Authentication library entry point.
3658 *
3659 * Parameters:
3660 *
3661 * szCaller The name of the component which calls the library (UTF8).
3662 * pUuid Pointer to the UUID of the accessed virtual machine. Can be NULL.
3663 * guestJudgement Result of the guest authentication.
3664 * szUser User name passed in by the client (UTF8).
3665 * szPassword Password passed in by the client (UTF8).
3666 * szDomain Domain passed in by the client (UTF8).
3667 * fLogon Boolean flag. Indicates whether the entry point is called
3668 * for a client logon or the client disconnect.
3669 * clientId Server side unique identifier of the client.
3670 *
3671 * Return code:
3672 *
3673 * AuthResultAccessDenied Client access has been denied.
3674 * AuthResultAccessGranted Client has the right to use the
3675 * virtual machine.
3676 * AuthResultDelegateToGuest Guest operating system must
3677 * authenticate the client and the
3678 * library must be called again with
3679 * the result of the guest
3680 * authentication.
3681 *
3682 * Note: When 'fLogon' is 0, only pszCaller, pUuid and clientId are valid and the return
3683 * code is ignored.
3684 */
3685AuthResult AUTHCALL AuthEntry(
3686 const char *szCaller,
3687 PAUTHUUID pUuid,
3688 AuthGuestJudgement guestJudgement,
3689 const char *szUser,
3690 const char *szPassword
3691 const char *szDomain
3692 int fLogon,
3693 unsigned clientId)
3694{
3695 /* Process request against your authentication source of choice. */
3696 // if (authSucceeded(...))
3697 // return AuthResultAccessGranted;
3698 return AuthResultAccessDenied;
3699}</screen>
3700
3701 <para>A note regarding the UUID implementation of the
3702 <computeroutput>pUuid</computeroutput> argument: VirtualBox uses a
3703 consistent binary representation of UUIDs on all platforms. For this
3704 reason the integer fields comprising the UUID are stored as little endian
3705 values. If you want to pass such UUIDs to code which assumes that the
3706 integer fields are big endian (often also called network byte order), you
3707 need to adjust the contents of the UUID to e.g. achieve the same string
3708 representation. The required changes are:<itemizedlist>
3709 <listitem>
3710 <para>reverse the order of byte 0, 1, 2 and 3</para>
3711 </listitem>
3712
3713 <listitem>
3714 <para>reverse the order of byte 4 and 5</para>
3715 </listitem>
3716
3717 <listitem>
3718 <para>reverse the order of byte 6 and 7.</para>
3719 </listitem>
3720 </itemizedlist>Using this conversion you will get identical results when
3721 converting the binary UUID to the string representation.</para>
3722
3723 <para>The <computeroutput>guestJudgement</computeroutput> argument
3724 contains information about the guest authentication status. For the first
3725 call, it is always set to
3726 <computeroutput>AuthGuestNotAsked</computeroutput>. In case the
3727 <computeroutput>AuthEntry</computeroutput> function returns
3728 <computeroutput>AuthResultDelegateToGuest</computeroutput>, a guest
3729 authentication will be attempted and another call to the
3730 <computeroutput>AuthEntry</computeroutput> is made with its result. This
3731 can be either granted / denied or no judgement (the guest component chose
3732 for whatever reason to not make a decision). In case there is a problem
3733 with the guest authentication module (e.g. the Additions are not installed
3734 or not running or the guest did not respond within a timeout), the "not
3735 reacted" status will be returned.</para>
3736 </chapter>
3737
3738 <chapter id="javaapi">
3739 <title>Using Java API</title>
3740
3741 <sect1>
3742 <title>Introduction</title>
3743
3744 <para>VirtualBox can be controlled by a Java API, both locally
3745 (COM/XPCOM) and from remote (SOAP) clients. As with the Python bindings,
3746 a generic glue layer tries to hide all platform differences, allowing
3747 for source and binary compatibility on different platforms.</para>
3748 </sect1>
3749
3750 <sect1>
3751 <title>Requirements</title>
3752
3753 <para>To use the Java bindings, there are certain requirements depending
3754 on the platform. First of all, you need JDK 1.5 (Java 5) or later. Also
3755 please make sure that the version of the VirtualBox API .jar file
3756 exactly matches the version of VirtualBox you use. To avoid confusion,
3757 the VirtualBox API provides versioning in the Java package name, e.g.
3758 the package is named <computeroutput>org.virtualbox_3_2</computeroutput>
3759 for VirtualBox version 3.2. <itemizedlist>
3760 <listitem>
3761 <para><emphasis role="bold">XPCOM</emphasis> - for all platforms,
3762 but Microsoft Windows. A Java bridge based on JavaXPCOM is shipped
3763 with VirtualBox. The classpath must contain
3764 <computeroutput>vboxjxpcom.jar</computeroutput> and the
3765 <computeroutput>vbox.home</computeroutput> property must be set to
3766 location where the VirtualBox binaries are. Please make sure that
3767 the JVM bitness matches bitness of VirtualBox you use as the XPCOM
3768 bridge relies on native libraries.</para>
3769
3770 <para>Start your application like this: <programlisting>
3771 java -cp vboxjxpcom.jar -Dvbox.home=/opt/virtualbox MyProgram
3772 </programlisting></para>
3773 </listitem>
3774
3775 <listitem>
3776 <para><emphasis role="bold">COM</emphasis> - for Microsoft
3777 Windows. We rely on <computeroutput>Jacob</computeroutput> - a
3778 generic Java to COM bridge - which has to be installed seperately.
3779 See <ulink
3780 url="http://sourceforge.net/projects/jacob-project/">http://sourceforge.net/projects/jacob-project/</ulink>
3781 for installation instructions. Also, the VirtualBox provided
3782 <computeroutput>vboxjmscom.jar</computeroutput> must be in the
3783 class path.</para>
3784
3785 <para>Start your application like this:
3786 <programlisting>java -cp vboxjmscom.jar;c:\jacob\jacob.jar -Djava.library.path=c:\jacob MyProgram</programlisting></para>
3787 </listitem>
3788
3789 <listitem>
3790 <para><emphasis role="bold">SOAP</emphasis> - all platforms. Java
3791 6 is required, as it comes with builtin support for SOAP via the
3792 JAX-WS library. Also, the VirtualBox provided
3793 <computeroutput>vbojws.jar</computeroutput> must be in the class
3794 path. In the SOAP case it's possible to create several
3795 VirtualBoxManager instances to communicate with multiple
3796 VirtualBox hosts.</para>
3797
3798 <para>Start your application like this: <programlisting>
3799 java -cp vboxjws.jar MyProgram
3800 </programlisting></para>
3801 </listitem>
3802 </itemizedlist></para>
3803
3804 <para>Exception handling is also generalized by the generic glue layer,
3805 so that all methods could throw
3806 <computeroutput>VBoxException</computeroutput> containing human-readable
3807 text message (see <computeroutput>getMessage()</computeroutput> method)
3808 along with wrapped original exception (see
3809 <computeroutput>getWrapped()</computeroutput> method).</para>
3810 </sect1>
3811
3812 <sect1>
3813 <title>Example</title>
3814
3815 <para>This example shows a simple use case of the Java API. Differences
3816 for SOAP vs. local version are minimal, and limited to the connection
3817 setup phase (see <computeroutput>ws</computeroutput> variable). In the
3818 SOAP case it's possible to create several VirtualBoxManager instances to
3819 communicate with multiple VirtualBox hosts. <programlisting>
3820 import org.virtualbox_4_3.*;
3821 ....
3822 VirtualBoxManager mgr = VirtualBoxManager.createInstance(null);
3823 boolean ws = false; // or true, if we need the SOAP version
3824 if (ws)
3825 {
3826 String url = "http://myhost:18034";
3827 String user = "test";
3828 String passwd = "test";
3829 mgr.connect(url, user, passwd);
3830 }
3831 IVirtualBox vbox = mgr.getVBox();
3832 System.out.println("VirtualBox version: " + vbox.getVersion() + "\n");
3833 // get first VM name
3834 String m = vbox.getMachines().get(0).getName();
3835 System.out.println("\nAttempting to start VM '" + m + "'");
3836 // start it
3837 mgr.startVm(m, null, 7000);
3838
3839 if (ws)
3840 mgr.disconnect();
3841
3842 mgr.cleanup();
3843 </programlisting> For more a complete example, see
3844 <computeroutput>TestVBox.java</computeroutput>, shipped with the
3845 SDK. It contains exception handling and error printing code, which
3846 is important for reliable larger scale projects.</para>
3847
3848 <para>It is good practice in long-running API clients to process the
3849 system events every now and then in the main thread (does not work
3850 in other threads). As a rule of thumb it makes sense to process them
3851 every few 100msec to every few seconds). This is done by
3852 calling<programlisting>
3853 mgr.waitForEvents(0);
3854 </programlisting>
3855 This avoids that a large number of system events accumulate, which can
3856 need a significant amount of memory, and as they also play a role in
3857 object cleanup it helps freeing additional memory in a timely manner
3858 which is used by the API implementation itself. Java's garbage collection
3859 approach already needs more memory due to the delayed freeing of memory
3860 used by no longer accessible objects, and not processing the system
3861 events exacerbates the memory usage. The
3862 <computeroutput>TestVBox.java</computeroutput> example code sprinkles
3863 such lines over the code to achieve the desired effect. In multi-threaded
3864 applications it can be called from the main thread periodically.
3865 Sometimes it's possible to use the non-zero timeout variant of the
3866 method, which then waits the specified number of milliseconds for
3867 events, processing them immediately as they arrive. It achieves better
3868 runtime behavior than separate sleeping/processing.</para>
3869 </sect1>
3870 </chapter>
3871
3872 <chapter>
3873 <title>License information</title>
3874
3875 <para>The sample code files shipped with the SDK are generally licensed
3876 liberally to make it easy for anyone to use this code for their own
3877 application code.</para>
3878
3879 <para>The Java files under
3880 <computeroutput>bindings/webservice/java/jax-ws/</computeroutput> (library
3881 files for the object-oriented web service) are, by contrast, licensed
3882 under the GNU Lesser General Public License (LGPL) V2.1.</para>
3883
3884 <para>See
3885 <computeroutput>sdk/bindings/webservice/java/jax-ws/src/COPYING.LIB</computeroutput>
3886 for the full text of the LGPL 2.1.</para>
3887
3888 <para>When in doubt, please refer to the individual source code files
3889 shipped with this SDK.</para>
3890 </chapter>
3891
3892 <chapter>
3893 <title>Main API change log</title>
3894
3895 <para>Generally, VirtualBox will maintain API compatibility within a major
3896 release; a major release occurs when the first or the second of the three
3897 version components of VirtualBox change (that is, in the x.y.z scheme, a
3898 major release is one where x or y change, but not when only z
3899 changes).</para>
3900
3901 <para>In other words, updates like those from 2.0.0 to 2.0.2 will not come
3902 with API breakages.</para>
3903
3904 <para>Migration between major releases most likely will lead to API
3905 breakage, so please make sure you updated code accordingly. The OOWS Java
3906 wrappers enforce that mechanism by putting VirtualBox classes into
3907 version-specific packages such as
3908 <computeroutput>org.virtualbox_2_2</computeroutput>. This approach allows
3909 for connecting to multiple VirtualBox versions simultaneously from the
3910 same Java application.</para>
3911
3912 <para>The following sections list incompatible changes that the Main API
3913 underwent since the original release of this SDK Reference with VirtualBox
3914 2.0. A change is deemed "incompatible" only if it breaks existing client
3915 code (e.g. changes in method parameter lists, renamed or removed
3916 interfaces and similar). In other words, the list does not contain new
3917 interfaces, methods or attributes or other changes that do not affect
3918 existing client code.</para>
3919
3920 <sect1>
3921 <title>Incompatible API changes with version 6.0</title>
3922
3923 <itemizedlist>
3924
3925 <listitem><para>Video recording APIs for were changed as follows:
3926 <itemizedlist>
3927 <listitem><para>All attributes which were living in <link linkend="IMachine">IMachine</link> before
3928 have been moved to an own, dedicated interface named <link linkend="IRecordingSettings">IRecordingSettings</link>.
3929 This new interface can be accessed via the new <link linkend="IMachine__recordingSettings">IMachine::recordingSettings</link>
3930 attribute. This should emphasize that recording is not limited to video capturing as such.</para>
3931 </listitem>
3932
3933 <listitem><para>For further flexibility all specific per-VM-screen settings have been moved to a new interface
3934 called <link linkend="IRecordingScreenSettings">IRecordingScreenSettings</link>. Such settings now exist per configured
3935 VM display and can be retrieved via the <link linkend="IRecordingSettings__screens">IRecordingSettings::screens</link>
3936 attribute or the <link linkend="IRecordingSettings__getScreenSettings">IRecordingSettings::getScreenSettings</link>
3937 method.
3938 <note><para>For now all screen settings will share the same settings, e.g. different settings on a per-screen basis
3939 is not implemented yet.</para></note>
3940 </para>
3941 </listitem>
3942
3943 <listitem><para>The event <computeroutput>IVideoCaptureChangedEvent</computeroutput> was renamed into
3944 <link linkend="IRecordingChangedEvent">IRecordingChangedEvent</link>.</para>
3945 </listitem>
3946
3947 </itemizedlist>
3948 </para></listitem>
3949
3950 <listitem><para>Guest Control APIs were changed as follows:
3951 <itemizedlist>
3952 <listitem><para><link linkend="IGuest__createSession">IGuest::createSession()</link>,
3953 <link linkend="IGuestSession__processCreate">IGuestSession::processCreate()</link>,
3954 <link linkend="IGuestSession__processCreateEx">IGuestSession::processCreateEx()</link>,
3955 <link linkend="IGuestSession__directoryOpen">IGuestSession::directoryOpen()</link> and
3956 <link linkend="IGuestSession__fileOpen">IGuestSession::fileOpen()</link> now will
3957 return the new error code VBOX_E_MAXIMUM_REACHED if the limit for the according object
3958 group has been reached.</para>
3959 </listitem>
3960
3961 <listitem><para>The enumerations FileOpenExFlags, FsObjMoveFlags and DirectoryCopyFlags have
3962 been renamed to <link linkend="FileOpenExFlag">FileOpenExFlag</link>,
3963 <link linkend="FsObjMoveFlag">FsObjMoveFlag</link> and <link linkend="DirectoryCopyFlag">DirectoryCopyFlag</link>
3964 accordingly to match the rest of the API.</para>
3965 </listitem>
3966
3967 <listitem>
3968 <para>The following methods have been implemented:
3969 <computeroutput>IGuestSession::directoryCopyFromGuest()</computeroutput> and
3970 <computeroutput>IGuestSession::directoryCopyToGuest()</computeroutput>.
3971 </para>
3972
3973 <para>The following attributes have been implemented:
3974 <computeroutput>IGuestFsObjInfo::accessTime</computeroutput>,
3975 <computeroutput>IGuestFsObjInfo::birthTime</computeroutput>,
3976 <computeroutput>IGuestFsObjInfo::changeTime</computeroutput> and
3977 <computeroutput>IGuestFsObjInfo::modificationTime</computeroutput>.
3978 </para>
3979
3980 </listitem>
3981 </itemizedlist>
3982 </para></listitem>
3983
3984 </itemizedlist>
3985
3986 </sect1>
3987
3988 <sect1>
3989 <title>Incompatible API changes with version 5.x</title>
3990
3991 <itemizedlist>
3992 <listitem><para>ProcessCreateFlag::NoProfile has been renamed to
3993 <link linkend="ProcessCreateFlag__Profile">ProcessCreateFlag::Profile</link>,
3994 whereas the semantics also has been changed: ProcessCreateFlag::NoProfile
3995 explicitly <emphasis role="bold">did not</emphasis> utilize the guest user's profile data,
3996 which in turn <link linkend="ProcessCreateFlag__Profile">ProcessCreateFlag::Profile</link>
3997 explicitly <emphasis role="bold">does now</emphasis>.</para>
3998 </listitem>
3999 </itemizedlist>
4000
4001 </sect1>
4002
4003 <sect1>
4004 <title>Incompatible API changes with version 5.0</title>
4005
4006 <itemizedlist>
4007 <listitem>
4008 <para>The methods for saving state, adopting a saved state file,
4009 discarding a saved state, taking a snapshot, restoring
4010 a snapshot and deleting a snapshot have been moved from
4011 <computeroutput>IConsole</computeroutput> to
4012 <computeroutput>IMachine</computeroutput>. This straightens out the
4013 logical placement of methods and was necessary to resolve a
4014 long-standing issue, preventing 32-bit API clients from invoking
4015 those operations in the case where no VM is running.
4016 <itemizedlist>
4017 <listitem><para><link linkend="IMachine__saveState">IMachine::saveState()</link>
4018 replaces
4019 <computeroutput>IConsole::saveState()</computeroutput></para>
4020 </listitem>
4021 <listitem>
4022 <para><link linkend="IMachine__adoptSavedState">IMachine::adoptSavedState()</link>
4023 replaces
4024 <computeroutput>IConsole::adoptSavedState()</computeroutput></para>
4025 </listitem>
4026 <listitem>
4027 <para><link linkend="IMachine__discardSavedState">IMachine::discardSavedState()</link>
4028 replaces
4029 <computeroutput>IConsole::discardSavedState()</computeroutput></para>
4030 </listitem>
4031 <listitem>
4032 <para><link linkend="IMachine__takeSnapshot">IMachine::takeSnapshot()</link>
4033 replaces
4034 <computeroutput>IConsole::takeSnapshot()</computeroutput></para>
4035 </listitem>
4036 <listitem>
4037 <para><link linkend="IMachine__deleteSnapshot">IMachine::deleteSnapshot()</link>
4038 replaces
4039 <computeroutput>IConsole::deleteSnapshot()</computeroutput></para>
4040 </listitem>
4041 <listitem>
4042 <para><link linkend="IMachine__deleteSnapshotAndAllChildren">IMachine::deleteSnapshotAndAllChildren()</link>
4043 replaces
4044 <computeroutput>IConsole::deleteSnapshotAndAllChildren()</computeroutput></para>
4045 </listitem>
4046 <listitem>
4047 <para><link linkend="IMachine__deleteSnapshotRange">IMachine::deleteSnapshotRange()</link>
4048 replaces
4049 <computeroutput>IConsole::deleteSnapshotRange()</computeroutput></para>
4050 </listitem>
4051 <listitem>
4052 <para><link linkend="IMachine__restoreSnapshot">IMachine::restoreSnapshot()</link>
4053 replaces
4054 <computeroutput>IConsole::restoreSnapshot()</computeroutput></para>
4055 </listitem>
4056 </itemizedlist>
4057 Small adjustments to the parameter lists have been made to reduce
4058 the number of API calls when taking online snapshots (no longer
4059 needs explicit pausing), and taking a snapshot also returns now
4060 the snapshot id (useful for finding the right snapshot if there
4061 are non-unique snapshot names).</para>
4062 </listitem>
4063
4064 <listitem>
4065 <para>Two new machine states have been introduced to allow proper
4066 distinction between saving state and taking a snapshot.
4067 <link linkend="MachineState__Saving">MachineState::Saving</link>
4068 now is used exclusively while the VM's state is being saved, without
4069 any overlaps with snapshot functionality. The new state
4070 <link linkend="MachineState__Snapshotting">MachineState::Snapshotting</link>
4071 is used when an offline snapshot is taken and likewise the new state
4072 <link linkend="MachineState__OnlineSnapshotting">MachineState::OnlineSnapshotting</link>
4073 is used when an online snapshot is taken.</para>
4074 </listitem>
4075
4076 <listitem>
4077 <para>A new event has been introduced, which signals when a snapshot
4078 has been restored:
4079 <link linkend="ISnapshotRestoredEvent">ISnapshotRestoredEvent</link>.
4080 Previously the event
4081 <link linkend="ISnapshotDeletedEvent">ISnapshotDeletedEvent</link>
4082 was signalled, which isn't logical (but could be distinguished from
4083 actual deletion by the fact that the snapshot was still
4084 there).</para>
4085 </listitem>
4086
4087 <listitem>
4088 <para>The method
4089 <link linkend="IVirtualBox__createMedium">IVirtualBox::createMedium()</link>
4090 replaces
4091 <computeroutput>VirtualBox::createHardDisk()</computeroutput>.
4092 Adjusting existing code needs adding two parameters with
4093 value <computeroutput>AccessMode_ReadWrite</computeroutput>
4094 and <computeroutput>DeviceType_HardDisk</computeroutput>
4095 respectively. The new method supports creating floppy and
4096 DVD images, and (less obviously) further API functionality
4097 such as cloning floppy images.</para>
4098 </listitem>
4099
4100 <listitem>
4101 <para>The method
4102 <link linkend="IMachine__getStorageControllerByInstance">IMachine::getStorageControllerByInstance()</link>
4103 now has an additional parameter (first parameter), for specifying the
4104 storage bus which the storage controller must be using. The method
4105 was not useful before, as the instance numbers are only unique for a
4106 specfic storage bus.</para>
4107 </listitem>
4108
4109 <listitem>
4110 <para>The attribute
4111 <computeroutput>IMachine::sessionType</computeroutput> has been
4112 renamed to
4113 <link linkend="IMachine__sessionName">IMachine::sessionName()</link>.
4114 This cleans up the confusing terminology (as the session type is
4115 something different).</para>
4116 </listitem>
4117
4118 <listitem>
4119 <para>The attribute
4120 <computeroutput>IMachine::guestPropertyNotificationPatterns</computeroutput>
4121 has been removed. In practice it was not usable because it is too
4122 global and didn't distinguish between API clients.</para>
4123 </listitem>
4124
4125 <listitem><para>Drag and drop APIs were changed as follows:<itemizedlist>
4126
4127 <listitem>
4128 <para>Methods for providing host to guest drag and drop
4129 functionality, such as
4130 <computeroutput>IGuest::dragHGEnter</computeroutput>,
4131 <computeroutput>IGuest::dragHGMove()</computeroutput>,
4132 <computeroutput>IGuest::dragHGLeave()</computeroutput>,
4133 <computeroutput>IGuest::dragHGDrop()</computeroutput> and
4134 <computeroutput>IGuest::dragHGPutData()</computeroutput>,
4135 have been moved to an abstract base class called
4136 <link linkend="IDnDTarget">IDnDTarget</link>.
4137 VirtualBox implements this base class in the
4138 <link linkend="IGuestDnDTarget">IGuestDnDTarget</link>
4139 interface. The implementation can be used by using the
4140 <link linkend="IGuest__dnDTarget">IGuest::dnDTarget()</link>
4141 method.</para>
4142 <para>Methods for providing guest to host drag and drop
4143 functionality, such as
4144 <computeroutput>IGuest::dragGHPending()</computeroutput>,
4145 <computeroutput>IGuest::dragGHDropped()</computeroutput> and
4146 <computeroutput>IGuest::dragGHGetData()</computeroutput>,
4147 have been moved to an abstract base class called
4148 <link linkend="IDnDSource">IDnDSource</link>.
4149 VirtualBox implements this base class in the
4150 <link linkend="IGuestDnDSource">IGuestDnDSource</link>
4151 interface. The implementation can be used by using the
4152 <link linkend="IGuest__dnDSource">IGuest::dnDSource()</link>
4153 method.</para>
4154 </listitem>
4155
4156 <listitem>
4157 <para>The <computeroutput>DragAndDropAction</computeroutput>
4158 enumeration has been renamed to
4159 <link linkend="DnDAction">DnDAction</link>.</para>
4160 </listitem>
4161
4162 <listitem>
4163 <para>The <computeroutput>DragAndDropMode</computeroutput>
4164 enumeration has been renamed to
4165 <link linkend="DnDMode">DnDMode</link>.</para>
4166 </listitem>
4167
4168 <listitem>
4169 <para>The attribute
4170 <computeroutput>IMachine::dragAndDropMode</computeroutput>
4171 has been renamed to
4172 <link linkend="IMachine__dnDMode">IMachine::dnDMode()</link>.</para>
4173 </listitem>
4174
4175 <listitem>
4176 <para>The event
4177 <computeroutput>IDragAndDropModeChangedEvent</computeroutput>
4178 has been renamed to
4179 <link linkend="IDnDModeChangedEvent">IDnDModeChangedEvent</link>.</para>
4180 </listitem>
4181
4182 </itemizedlist></para>
4183 </listitem>
4184
4185 <listitem><para>IDisplay and IFramebuffer interfaces were changed to
4186 allow IFramebuffer object to reside in a separate frontend
4187 process:<itemizedlist>
4188
4189 <listitem><para>
4190 IDisplay::ResizeCompleted() has been removed, because the
4191 IFramebuffer object does not provide the screen memory anymore.
4192 </para></listitem>
4193
4194 <listitem><para>
4195 IDisplay::SetFramebuffer() has been replaced with
4196 IDisplay::AttachFramebuffer() and IDisplay::DetachFramebuffer().
4197 </para></listitem>
4198
4199 <listitem><para>
4200 IDisplay::GetFramebuffer() has been replaced with
4201 IDisplay::QueryFramebuffer().
4202 </para></listitem>
4203
4204 <listitem><para>
4205 IDisplay::GetScreenResolution() has a new output parameter
4206 <computeroutput>guestMonitorStatus</computeroutput>
4207 which tells whether the monitor is enabled in the guest.
4208 </para></listitem>
4209
4210 <listitem><para>
4211 IDisplay::TakeScreenShot() and IDisplay::TakeScreenShotToArray()
4212 have a new parameter
4213 <computeroutput>bitmapFormat</computeroutput>. As a consequence of
4214 this, IDisplay::TakeScreenShotPNGToArray() has been removed.
4215 </para></listitem>
4216
4217 <listitem><para>
4218 IFramebuffer::RequestResize() has been replaced with
4219 IFramebuffer::NotifyChange().
4220 </para></listitem>
4221
4222 <listitem><para>
4223 IFramebuffer::NotifyUpdateImage() added to support IFramebuffer
4224 objects in a different process.
4225 </para></listitem>
4226
4227 <listitem><para>
4228 IFramebuffer::Lock(), IFramebuffer::Unlock(),
4229 IFramebuffer::Address(), IFramebuffer::UsesGuestVRAM() have been
4230 removed because the IFramebuffer object does not provide the screen
4231 memory anymore.
4232 </para></listitem>
4233
4234 </itemizedlist></para>
4235 </listitem>
4236
4237 <listitem><para>IGuestSession, IGuestFile and IGuestProcess interfaces
4238 were changed as follows:
4239 <itemizedlist>
4240 <listitem>
4241 <para>Replaced IGuestSession::directoryQueryInfo and
4242 IGuestSession::fileQueryInfo with a new
4243 <link linkend="IGuestSession__fsObjQueryInfo">IGuestSession::fsObjQueryInfo</link>
4244 method that works on any type of file system object.</para>
4245 </listitem>
4246 <listitem>
4247 <para>Replaced IGuestSession::fileRemove,
4248 IGuestSession::symlinkRemoveDirectory and
4249 IGuestSession::symlinkRemoveFile with a new
4250 <link linkend="IGuestSession__fsObjRemove">IGuestSession::fsObjRemove</link>
4251 method that works on any type of file system object except
4252 directories. (fileRemove also worked on any type of object
4253 too, though that was not the intent of the method.)</para>
4254 </listitem>
4255 <listitem>
4256 <para>Replaced IGuestSession::directoryRename and
4257 IGuestSession::directoryRename with a new
4258 <link linkend="IGuestSession__fsObjRename">IGuestSession::fsObjRename</link>
4259 method that works on any type of file system object.
4260 (directoryRename and fileRename may already have worked for
4261 any kind of object, but that was never the intent of the
4262 methods.)</para>
4263 </listitem>
4264 <listitem>
4265 <para>Replaced the unimplemented IGuestSession::directorySetACL
4266 and IGuestSession::fileSetACL with a new
4267 <link linkend="IGuestSession__fsObjSetACL">IGuestSession::fsObjSetACL</link>
4268 method that works on all type of file system object. Also
4269 added a UNIX-style mode parameter as an alternative to the
4270 ACL.</para>
4271 </listitem>
4272 <listitem>
4273 <para>Replaced IGuestSession::fileRemove,
4274 IGuestSession::symlinkRemoveDirectory and
4275 IGuestSession::symlinkRemoveFile with a new
4276 <link linkend="IGuestSession__fsObjRemove">IGuestSession::fsObjRemove</link>
4277 method that works on any type of file system object except
4278 directories (fileRemove also worked on any type of object,
4279 though that was not the intent of the method.)</para>
4280 </listitem>
4281 <listitem>
4282 <para>Renamed IGuestSession::copyTo to
4283 <link linkend="IGuestSession__fileCopyToGuest">IGuestSession::fileCopyToGuest</link>.</para>
4284 </listitem>
4285 <listitem>
4286 <para>Renamed IGuestSession::copyFrom to
4287 <link linkend="IGuestSession__fileCopyFromGuest">IGuestSession::fileCopyFromGuest</link>.</para>
4288 </listitem>
4289 <listitem>
4290 <para>Renamed the CopyFileFlag enum to
4291 <link linkend="FileCopyFlag">FileCopyFlag</link>.</para>
4292 </listitem>
4293 <listitem>
4294 <para>Renamed the IGuestSession::environment attribute to
4295 <link linkend="IGuestSession__environmentChanges">IGuestSession::environmentChanges</link>
4296 to better reflect what it does.</para>
4297 </listitem>
4298 <listitem>
4299 <para>Changed the
4300 <link linkend="IProcess__environment">IGuestProcess::environment</link>
4301 to a stub returning E_NOTIMPL since it wasn't doing what was
4302 advertised (returned changes, not the actual environment).</para>
4303 </listitem>
4304 <listitem>
4305 <para>Renamed IGuestSession::environmentSet to
4306 <link linkend="IGuestSession__environmentScheduleSet">IGuestSession::environmentScheduleSet</link>
4307 to better reflect what it does.</para>
4308 </listitem>
4309 <listitem>
4310 <para>Renamed IGuestSession::environmentUnset to
4311 <link linkend="IGuestSession__environmentScheduleUnset">IGuestSession::environmentScheduleUnset</link>
4312 to better reflect what it does.</para>
4313 </listitem>
4314 <listitem>
4315 <para>Removed IGuestSession::environmentGet it was only getting
4316 changes while giving the impression it was actual environment
4317 variables, and it did not represent scheduled unset
4318 operations.</para>
4319 </listitem>
4320 <listitem>
4321 <para>Removed IGuestSession::environmentClear as it duplicates
4322 assigning an empty array to the
4323 <link linkend="IGuestSession__environmentChanges">IGuestSession::environmentChanges</link>
4324 (formerly known as IGuestSession::environment).</para>
4325 </listitem>
4326 <listitem>
4327 <para>Changed the
4328 <link linkend="IGuestSession__processCreate">IGuestSession::processCreate</link>
4329 and
4330 <link linkend="IGuestSession__processCreateEx">IGuestSession::processCreateEx</link>
4331 methods to accept arguments starting with argument zero (argv[0])
4332 instead of argument one (argv[1]). (Not yet implemented on the
4333 guest additions side, so argv[0] will probably be ignored for a
4334 short while.)</para>
4335 </listitem>
4336
4337 <listitem>
4338 <para>Added a followSymlink parameter to the following methods:
4339 <itemizedlist>
4340 <listitem><para><link linkend="IGuestSession__directoryExists">IGuestSession::directoryExists</link></para></listitem>
4341 <listitem><para><link linkend="IGuestSession__fileExists">IGuestSession::fileExists</link></para></listitem>
4342 <listitem><para><link linkend="IGuestSession__fileQuerySize">IGuestSession::fileQuerySize</link></para></listitem>
4343 </itemizedlist></para>
4344 </listitem>
4345 <listitem>
4346 <para>The parameters to the
4347 <link linkend="IGuestSession__fileOpen">IGuestSession::fileOpen</link>
4348 and
4349 <link linkend="IGuestSession__fileOpenEx">IGuestSession::fileOpenEx</link>
4350 methods were altered:<itemizedlist>
4351 <listitem><para>The openMode string parameter was replaced by
4352 the enum
4353 <link linkend="FileAccessMode">FileAccessMode</link>
4354 and renamed to accessMode.</para></listitem>
4355 <listitem><para>The disposition string parameter was replaced
4356 by the enum
4357 <link linkend="FileOpenAction">FileOpenAction</link>
4358 and renamed to openAction.</para></listitem>
4359 <listitem><para>The unimplemented sharingMode string parameter
4360 was replaced by the enum
4361 <link linkend="FileSharingMode">FileSharingMode</link>
4362 (fileOpenEx only).</para></listitem>
4363 <listitem><para>Added a flags parameter taking a list of
4364 <link linkend="FileOpenExFlag">FileOpenExFlag</link> values
4365 (fileOpenEx only).</para></listitem>
4366 <listitem><para>Removed the offset parameter (fileOpenEx
4367 only).</para></listitem>
4368 </itemizedlist></para>
4369 </listitem>
4370
4371 <listitem>
4372 <para><link linkend="IFile__seek">IGuestFile::seek</link> now
4373 returns the new offset.</para>
4374 </listitem>
4375 <listitem>
4376 <para>Renamed the FileSeekType enum used by
4377 <link linkend="IFile__seek">IGuestFile::seek</link>
4378 to <link linkend="FileSeekOrigin">FileSeekOrigin</link> and
4379 added the missing End value and renaming the Set to
4380 Begin.</para>
4381 </listitem>
4382 <listitem>
4383 <para>Extended the unimplemented
4384 <link linkend="IFile__setACL">IGuestFile::setACL</link>
4385 method with a UNIX-style mode parameter as an alternative to
4386 the ACL.</para>
4387 </listitem>
4388 <listitem>
4389 <para>Renamed the IFile::openMode attribute to
4390 <link linkend="IFile__accessMode">IFile::accessMode</link>
4391 and change the type from string to
4392 <link linkend="FileAccessMode">FileAccessMode</link> to reflect
4393 the changes to the fileOpen methods.</para>
4394 </listitem>
4395 <listitem>
4396 <para>Renamed the IGuestFile::disposition attribute to
4397 <link linkend="IFile__openAction">IFile::openAction</link> and
4398 change the type from string to
4399 <link linkend="FileOpenAction">FileOpenAction</link> to reflect
4400 the changes to the fileOpen methods.</para>
4401 </listitem>
4402
4403 <!-- Non-incompatible things worth mentioning (stubbed methods/attrs aren't worth it). -->
4404 <listitem>
4405 <para>Added
4406 <link linkend="IGuestSession__pathStyle">IGuestSession::pathStyle</link>
4407 attribute.</para>
4408 </listitem>
4409 <listitem>
4410 <para>Added
4411 <link linkend="IGuestSession__fsObjExists">IGuestSession::fsObjExists</link>
4412 attribute.</para>
4413 </listitem>
4414
4415 </itemizedlist>
4416 </para>
4417 </listitem>
4418
4419 <listitem><para>
4420 IConsole::GetDeviceActivity() returns information about multiple
4421 devices.
4422 </para></listitem>
4423
4424 <listitem><para>
4425 IMachine::ReadSavedThumbnailToArray() has a new parameter
4426 <computeroutput>bitmapFormat</computeroutput>. As a consequence of
4427 this, IMachine::ReadSavedThumbnailPNGToArray() has been removed.
4428 </para></listitem>
4429
4430 <listitem><para>
4431 IMachine::QuerySavedScreenshotPNGSize() has been renamed to
4432 IMachine::QuerySavedScreenshotInfo() which also returns
4433 an array of available screenshot formats.
4434 </para></listitem>
4435
4436 <listitem><para>
4437 IMachine::ReadSavedScreenshotPNGToArray() has been renamed to
4438 IMachine::ReadSavedScreenshotToArray() which has a new parameter
4439 <computeroutput>bitmapFormat</computeroutput>.
4440 </para></listitem>
4441
4442 <listitem><para>
4443 IMachine::QuerySavedThumbnailSize() has been removed.
4444 </para></listitem>
4445
4446 <listitem>
4447 <para>The method
4448 <link linkend="IWebsessionManager__getSessionObject">IWebsessionManager::getSessionObject()</link>
4449 now returns a new <link linkend="ISession">ISession</link> instance
4450 for every invocation. This puts the behavior in line with other
4451 binding styles, which never forced the equivalent of establishing
4452 another connection and logging in again to get another
4453 instance.</para>
4454 </listitem>
4455 </itemizedlist>
4456 </sect1>
4457
4458 <sect1>
4459 <title>Incompatible API changes with version 4.3</title>
4460
4461 <itemizedlist>
4462 <listitem>
4463 <para>The explicit medium locking methods
4464 <link linkend="IMedium__lockRead">IMedium::lockRead()</link>
4465 and <link linkend="IMedium__lockWrite">IMedium::lockWrite()</link>
4466 have been redesigned. They return a lock token object reference
4467 now, and calling the
4468 <link linkend="IToken__abandon">IToken::abandon()</link> method (or
4469 letting the reference count to this object drop to 0) will unlock
4470 it. This eliminates the rather common problem that an API client
4471 crash left behind locks, and also improves the safety (API clients
4472 can't release locks they didn't obtain).</para>
4473 </listitem>
4474
4475 <listitem>
4476 <para>The parameter list of
4477 <link linkend="IAppliance__write">IAppliance::write()</link>
4478 has been changed slightly, to allow multiple flags to be
4479 passed.</para>
4480 </listitem>
4481
4482 <listitem>
4483 <para><computeroutput>IMachine::delete</computeroutput>
4484 has been renamed to
4485 <link linkend="IMachine__deleteConfig">IMachine::deleteConfig()</link>,
4486 to improve API client binding compatibility.</para>
4487 </listitem>
4488
4489 <listitem>
4490 <para><computeroutput>IMachine::export</computeroutput>
4491 has been renamed to
4492 <link linkend="IMachine__exportTo">IMachine::exportTo()</link>,
4493 to improve API client binding compatibility.</para>
4494 </listitem>
4495
4496 <listitem>
4497 <para>For
4498 <link linkend="IMachine__launchVMProcess">IMachine::launchVMProcess()</link>
4499 the meaning of the <computeroutput>type</computeroutput> parameter
4500 has changed slightly. Empty string now means that the per-VM or
4501 global default frontend is launched. Most callers of this method
4502 should use the empty string now, unless they really want to override
4503 the default and launch a particular frontend.</para>
4504 </listitem>
4505
4506 <listitem>
4507 <para>Medium management APIs were changed as follows:<itemizedlist>
4508
4509 <listitem>
4510 <para>The type of attribute
4511 <link linkend="IMedium__variant">IMedium::variant()</link>
4512 changed from <computeroutput>unsigned long</computeroutput>
4513 to <computeroutput>safe-array MediumVariant</computeroutput>.
4514 It is an array of flags instead of a set of flags which were
4515 stored inside one variable.
4516 </para>
4517 </listitem>
4518
4519 <listitem>
4520 <para>The parameter list for
4521 <link linkend="IMedium__cloneTo">IMedium::cloneTo()</link>
4522 was modified. The type of parameter variant was changed from
4523 unsigned long to safe-array MediumVariant.
4524 </para>
4525 </listitem>
4526
4527 <listitem>
4528 <para>The parameter list for
4529 <link linkend="IMedium__createBaseStorage">IMedium::createBaseStorage()</link>
4530 was modified. The type of parameter variant was changed from
4531 unsigned long to safe-array MediumVariant.
4532 </para>
4533 </listitem>
4534
4535 <listitem>
4536 <para>The parameter list for
4537 <link linkend="IMedium__createDiffStorage">IMedium::createDiffStorage()</link>
4538 was modified. The type of parameter variant was changed from
4539 unsigned long to safe-array MediumVariant.
4540 </para>
4541 </listitem>
4542
4543 <listitem>
4544 <para>The parameter list for
4545 <link linkend="IMedium__cloneToBase">IMedium::cloneToBase()</link>
4546 was modified. The type of parameter variant was changed from
4547 unsigned long to safe-array MediumVariant.
4548 </para>
4549 </listitem>
4550 </itemizedlist></para>
4551 </listitem>
4552
4553 <listitem>
4554 <para>The type of attribute
4555 <link linkend="IMediumFormat__capabilities">IMediumFormat::capabilities()</link>
4556 changed from <computeroutput>unsigned long</computeroutput> to
4557 <computeroutput>safe-array MediumFormatCapabilities</computeroutput>.
4558 It is an array of flags instead of a set of flags which were stored
4559 inside one variable.
4560 </para>
4561 </listitem>
4562
4563 <listitem>
4564 <para>The attribute
4565 <link linkend="IMedium__logicalSize">IMedium::logicalSize()</link>
4566 now returns the logical size of exactly this medium object (whether
4567 it is a base or diff image). The old behavior was no longer
4568 acceptable, as each image can have a different capacity.</para>
4569 </listitem>
4570
4571 <listitem>
4572 <para>Guest control APIs - such as
4573 <link linkend="IGuest">IGuest</link>,
4574 <link linkend="IGuestSession">IGuestSession</link>,
4575 <link linkend="IGuestProcess">IGuestProcess</link> and so on - now
4576 emit own events to provide clients much finer control and the ability
4577 to write own frontends for guest operations. The event
4578 <link linkend="IGuestSessionEvent">IGuestSessionEvent</link> acts as
4579 an abstract base class for all guest control events. Certain guest
4580 events contain a
4581 <link linkend="IVirtualBoxErrorInfo">IVirtualBoxErrorInfo</link>
4582 member to provide more information in case of an error happened on
4583 the guest side.</para>
4584 </listitem>
4585
4586 <listitem>
4587 <para>Guest control sessions on the guest started by
4588 <link linkend="IGuest__createSession">IGuest::createSession()</link>
4589 now are dedicated guest processes to provide more safety and
4590 performance for certain operations. Also, the
4591 <link linkend="IGuest__createSession">IGuest::createSession()</link>
4592 call does not wait for the guest session being created anymore due
4593 to the dedicated guest session processes just mentioned. This also
4594 will enable webservice clients to handle guest session creation
4595 more gracefully. To wait for a guest session being started, use the
4596 newly added attribute
4597 <link linkend="IGuestSession__status">IGuestSession::status()</link>
4598 to query the current guest session status.</para>
4599 </listitem>
4600
4601 <listitem>
4602 <para>The <link linkend="IGuestFile">IGuestFile</link>
4603 APIs are now implemented to provide native guest file access from
4604 the host.</para>
4605 </listitem>
4606
4607 <listitem>
4608 <para>The parameter list for
4609 <link linkend="IGuest__updateGuestAdditions">IMedium::updateGuestAdditions()</link>
4610 was modified. It now supports specifying optional command line
4611 arguments for the Guest Additions installer performing the actual
4612 update on the guest.
4613 </para>
4614 </listitem>
4615
4616 <listitem>
4617 <para>A new event
4618 <link linkend="IGuestUserStateChangedEvent">IGuestUserStateChangedEvent</link>
4619 was introduced to provide guest user status updates to the host via
4620 event listeners. To use this event there needs to be at least the 4.3
4621 Guest Additions installed on the guest. At the moment only the states
4622 "Idle" and "InUse" of the
4623 <link linkend="GuestUserState">GuestUserState</link> enumeration arei
4624 supported on Windows guests, starting at Windows 2000 SP2.</para>
4625 </listitem>
4626
4627 <listitem>
4628 <para>
4629 The attribute
4630 <link linkend="IGuestSession__protocolVersion">IGuestSession::protocolVersion</link>
4631 was added to provide a convenient way to lookup the guest session's
4632 protocol version it uses to communicate with the installed Guest
4633 Additions on the guest. Older Guest Additions will set the protocol
4634 version to 1, whereas Guest Additions 4.3 will set the protocol
4635 version to 2. This might change in the future as new features
4636 arise.</para>
4637 </listitem>
4638
4639 <listitem>
4640 <para><computeroutput>IDisplay::getScreenResolution</computeroutput>
4641 has been extended to return the display position in the guest.</para>
4642 </listitem>
4643
4644 <listitem>
4645 <para>
4646 The <link linkend="IUSBController">IUSBController</link>
4647 class is not a singleton of
4648 <link linkend="IMachine">IMachine</link> anymore but
4649 <link linkend="IMachine">IMachine</link> contains a list of USB
4650 controllers present in the VM. The USB device filter handling was
4651 moved to
4652 <link linkend="IUSBDeviceFilters">IUSBDeviceFilters</link>.
4653 </para>
4654 </listitem>
4655 </itemizedlist>
4656 </sect1>
4657
4658 <sect1>
4659 <title>Incompatible API changes with version 4.2</title>
4660
4661 <itemizedlist>
4662 <listitem>
4663 <para>Guest control APIs for executing guest processes, working with
4664 guest files or directories have been moved to the newly introduced
4665 <link linkend="IGuestSession">IGuestSession</link> interface which
4666 can be created by calling
4667 <link linkend="IGuest__createSession">IGuest::createSession()</link>.</para>
4668
4669 <para>A guest session will act as a
4670 guest user's impersonation so that the guest credentials only have to
4671 be provided when creating a new guest session. There can be up to 32
4672 guest sessions at once per VM, each session serving up to 2048 guest
4673 processes running or files opened.</para>
4674
4675 <para>Instead of working with process or directory handles before
4676 version 4.2, there now are the dedicated interfaces
4677 <link linkend="IGuestProcess">IGuestProcess</link>,
4678 <link linkend="IGuestDirectory">IGuestDirectory</link> and
4679 <link linkend="IGuestFile">IGuestFile</link>. To retrieve more
4680 information of a file system object the new interface
4681 <link linkend="IGuestFsObjInfo">IGuestFsObjInfo</link> has been
4682 introduced.</para>
4683
4684 <para>Even though the guest control API was changed it is backwards
4685 compatible so that it can be used with older installed Guest
4686 Additions. However, to use upcoming features like process termination
4687 or waiting for input / output new Guest Additions must be installed
4688 when these features got implemented.</para>
4689
4690 <para>The following limitations apply:
4691 <itemizedlist>
4692 <listitem><para>The <link linkend="IGuestFile">IGuestFile</link>
4693 interface is not fully implemented yet.</para>
4694 </listitem>
4695 <listitem><para>The symbolic link APIs
4696 <link linkend="IGuestSession__symlinkCreate">IGuestSession::symlinkCreate()</link>,
4697 <link linkend="IGuestSession__symlinkExists">IGuestSession::symlinkExists()</link>,
4698 <link linkend="IGuestSession__symlinkRead">IGuestSession::symlinkRead()</link>,
4699 IGuestSession::symlinkRemoveDirectory() and
4700 IGuestSession::symlinkRemoveFile() are not
4701 implemented yet.</para>
4702 </listitem>
4703 <listitem><para>The directory APIs
4704 <link linkend="IGuestSession__directoryRemove">IGuestSession::directoryRemove()</link>,
4705 <link linkend="IGuestSession__directoryRemoveRecursive">IGuestSession::directoryRemoveRecursive()</link>,
4706 IGuestSession::directoryRename() and
4707 IGuestSession::directorySetACL() are not
4708 implemented yet.</para>
4709 </listitem>
4710 <listitem><para>The temporary file creation API
4711 <link linkend="IGuestSession__fileCreateTemp">IGuestSession::fileCreateTemp()</link>
4712 is not implemented yet.</para>
4713 </listitem>
4714 <listitem><para>Guest process termination via
4715 <link linkend="IProcess__terminate">IProcess::terminate()</link>
4716 is not implemented yet.</para>
4717 </listitem>
4718 <listitem><para>Waiting for guest process output via
4719 <link linkend="ProcessWaitForFlag__StdOut">ProcessWaitForFlag::StdOut</link>
4720 and
4721 <link linkend="ProcessWaitForFlag__StdErr">ProcessWaitForFlag::StdErr</link>
4722 is not implemented yet.</para>
4723 <para>To wait for process output,
4724 <link linkend="IProcess__read">IProcess::read()</link> with
4725 appropriate flags still can be used to periodically check for
4726 new output data to arrive. Note that
4727 <link linkend="ProcessCreateFlag__WaitForStdOut">ProcessCreateFlag::WaitForStdOut</link>
4728 and / or
4729 <link linkend="ProcessCreateFlag__WaitForStdErr">ProcessCreateFlag::WaitForStdErr</link>
4730 need to be specified when creating a guest process via
4731 <link linkend="IGuestSession__processCreate">IGuestSession::processCreate()</link>
4732 or
4733 <link linkend="IGuestSession__processCreateEx">IGuestSession::processCreateEx()</link>.</para>
4734 </listitem>
4735 <listitem>
4736 <para>ACL (Access Control List) handling in general is not
4737 implemented yet.</para>
4738 </listitem>
4739 </itemizedlist>
4740 </para>
4741 </listitem>
4742
4743 <listitem>
4744 <para>The <link linkend="LockType">LockType</link>
4745 enumeration now has an additional value
4746 <computeroutput>VM</computeroutput> which tells
4747 <link linkend="IMachine__lockMachine">IMachine::lockMachine()</link>
4748 to create a full-blown object structure for running a VM. This was
4749 the previous behavior with <computeroutput>Write</computeroutput>,
4750 which now only creates the minimal object structure to save time and
4751 resources (at the moment the Console object is still created, but all
4752 sub-objects such as Display, Keyboard, Mouse, Guest are not.</para>
4753 </listitem>
4754
4755 <listitem>
4756 <para>Machines can be put in groups (actually an array of groups).
4757 The primary group affects the default placement of files belonging
4758 to a VM.
4759 <link linkend="IVirtualBox__createMachine">IVirtualBox::createMachine()</link>
4760 and
4761 <link linkend="IVirtualBox__composeMachineFilename">IVirtualBox::composeMachineFilename()</link>
4762 have been adjusted accordingly, the former taking an array of groups
4763 as an additional parameter and the latter taking a group as an
4764 additional parameter. The create option handling has been changed for
4765 those two methods, too.</para>
4766 </listitem>
4767
4768 <listitem>
4769 <para>The method IVirtualBox::findMedium() has been removed, since
4770 it provides a subset of the functionality of
4771 <link linkend="IVirtualBox__openMedium">IVirtualBox::openMedium()</link>.</para>
4772 </listitem>
4773
4774 <listitem>
4775 <para>The use of acronyms in API enumeration, interface, attribute
4776 and method names has been made much more consistent, previously they
4777 sometimes were lowercase and sometimes mixed case. They are now
4778 consistently all caps:<table>
4779 <title>Renamed identifiers in VirtualBox 4.2</title>
4780
4781 <tgroup cols="2" style="verywide">
4782 <tbody>
4783 <row>
4784 <entry><emphasis role="bold">Old name</emphasis></entry>
4785
4786 <entry><emphasis role="bold">New name</emphasis></entry>
4787 </row>
4788 <row>
4789 <entry>PointingHidType</entry>
4790 <entry><link linkend="PointingHIDType">PointingHIDType</link></entry>
4791 </row>
4792 <row>
4793 <entry>KeyboardHidType</entry>
4794 <entry><link linkend="KeyboardHIDType">KeyboardHIDType</link></entry>
4795 </row>
4796 <row>
4797 <entry>IPciAddress</entry>
4798 <entry><link linkend="IPCIAddress">IPCIAddress</link></entry>
4799 </row>
4800 <row>
4801 <entry>IPciDeviceAttachment</entry>
4802 <entry><link linkend="IPCIDeviceAttachment">IPCIDeviceAttachment</link></entry>
4803 </row>
4804 <row>
4805 <entry>IMachine::pointingHidType</entry>
4806 <entry><link linkend="IMachine__pointingHIDType">IMachine::pointingHIDType</link></entry>
4807 </row>
4808 <row>
4809 <entry>IMachine::keyboardHidType</entry>
4810 <entry><link linkend="IMachine__keyboardHIDType">IMachine::keyboardHIDType</link></entry>
4811 </row>
4812 <row>
4813 <entry>IMachine::hpetEnabled</entry>
4814 <entry><link linkend="IMachine__HPETEnabled">IMachine::HPETEnabled</link></entry>
4815 </row>
4816 <row>
4817 <entry>IMachine::sessionPid</entry>
4818 <entry><link linkend="IMachine__sessionPID">IMachine::sessionPID</link></entry>
4819 </row>
4820 <row>
4821 <entry>IMachine::ioCacheEnabled</entry>
4822 <entry><link linkend="IMachine__IOCacheEnabled">IMachine::IOCacheEnabled</link></entry>
4823 </row>
4824 <row>
4825 <entry>IMachine::ioCacheSize</entry>
4826 <entry><link linkend="IMachine__IOCacheSize">IMachine::IOCacheSize</link></entry>
4827 </row>
4828 <row>
4829 <entry>IMachine::pciDeviceAssignments</entry>
4830 <entry><link linkend="IMachine__PCIDeviceAssignments">IMachine::PCIDeviceAssignments</link></entry>
4831 </row>
4832 <row>
4833 <entry>IMachine::attachHostPciDevice()</entry>
4834 <entry><link linkend="IMachine__attachHostPCIDevice">IMachine::attachHostPCIDevice</link></entry>
4835 </row>
4836 <row>
4837 <entry>IMachine::detachHostPciDevice()</entry>
4838 <entry><link linkend="IMachine__detachHostPCIDevice">IMachine::detachHostPCIDevice()</link></entry>
4839 </row>
4840 <row>
4841 <entry>IConsole::attachedPciDevices</entry>
4842 <entry><link linkend="IConsole__attachedPCIDevices">IConsole::attachedPCIDevices</link></entry>
4843 </row>
4844 <row>
4845 <entry>IHostNetworkInterface::dhcpEnabled</entry>
4846 <entry><link linkend="IHostNetworkInterface__DHCPEnabled">IHostNetworkInterface::DHCPEnabled</link></entry>
4847 </row>
4848 <row>
4849 <entry>IHostNetworkInterface::enableStaticIpConfig()</entry>
4850 <entry><link linkend="IHostNetworkInterface__enableStaticIPConfig">IHostNetworkInterface::enableStaticIPConfig()</link></entry>
4851 </row>
4852 <row>
4853 <entry>IHostNetworkInterface::enableStaticIpConfigV6()</entry>
4854 <entry><link linkend="IHostNetworkInterface__enableStaticIPConfigV6">IHostNetworkInterface::enableStaticIPConfigV6()</link></entry>
4855 </row>
4856 <row>
4857 <entry>IHostNetworkInterface::enableDynamicIpConfig()</entry>
4858 <entry><link linkend="IHostNetworkInterface__enableDynamicIPConfig">IHostNetworkInterface::enableDynamicIPConfig()</link></entry>
4859 </row>
4860 <row>
4861 <entry>IHostNetworkInterface::dhcpRediscover()</entry>
4862 <entry><link linkend="IHostNetworkInterface__DHCPRediscover">IHostNetworkInterface::DHCPRediscover()</link></entry>
4863 </row>
4864 <row>
4865 <entry>IHost::Acceleration3DAvailable</entry>
4866 <entry><link linkend="IHost__acceleration3DAvailable">IHost::acceleration3DAvailable</link></entry>
4867 </row>
4868 <row>
4869 <entry>IGuestOSType::recommendedPae</entry>
4870 <entry><link linkend="IGuestOSType__recommendedPAE">IGuestOSType::recommendedPAE</link></entry>
4871 </row>
4872 <row>
4873 <entry>IGuestOSType::recommendedDvdStorageController</entry>
4874 <entry><link linkend="IGuestOSType__recommendedDVDStorageController">IGuestOSType::recommendedDVDStorageController</link></entry>
4875 </row>
4876 <row>
4877 <entry>IGuestOSType::recommendedDvdStorageBus</entry>
4878 <entry><link linkend="IGuestOSType__recommendedDVDStorageBus">IGuestOSType::recommendedDVDStorageBus</link></entry>
4879 </row>
4880 <row>
4881 <entry>IGuestOSType::recommendedHdStorageController</entry>
4882 <entry><link linkend="IGuestOSType__recommendedHDStorageController">IGuestOSType::recommendedHDStorageController</link></entry>
4883 </row>
4884 <row>
4885 <entry>IGuestOSType::recommendedHdStorageBus</entry>
4886 <entry><link linkend="IGuestOSType__recommendedHDStorageBus">IGuestOSType::recommendedHDStorageBus</link></entry>
4887 </row>
4888 <row>
4889 <entry>IGuestOSType::recommendedUsbHid</entry>
4890 <entry><link linkend="IGuestOSType__recommendedUSBHID">IGuestOSType::recommendedUSBHID</link></entry>
4891 </row>
4892 <row>
4893 <entry>IGuestOSType::recommendedHpet</entry>
4894 <entry><link linkend="IGuestOSType__recommendedHPET">IGuestOSType::recommendedHPET</link></entry>
4895 </row>
4896 <row>
4897 <entry>IGuestOSType::recommendedUsbTablet</entry>
4898 <entry><link linkend="IGuestOSType__recommendedUSBTablet">IGuestOSType::recommendedUSBTablet</link></entry>
4899 </row>
4900 <row>
4901 <entry>IGuestOSType::recommendedRtcUseUtc</entry>
4902 <entry><link linkend="IGuestOSType__recommendedRTCUseUTC">IGuestOSType::recommendedRTCUseUTC</link></entry>
4903 </row>
4904 <row>
4905 <entry>IGuestOSType::recommendedUsb</entry>
4906 <entry><link linkend="IGuestOSType__recommendedUSB">IGuestOSType::recommendedUSB</link></entry>
4907 </row>
4908 <row>
4909 <entry>INetworkAdapter::natDriver</entry>
4910 <entry><link linkend="INetworkAdapter__NATEngine">INetworkAdapter::NATEngine</link></entry>
4911 </row>
4912 <row>
4913 <entry>IUSBController::enabledEhci</entry>
4914 <entry>IUSBController::enabledEHCI"</entry>
4915 </row>
4916 <row>
4917 <entry>INATEngine::tftpPrefix</entry>
4918 <entry><link linkend="INATEngine__TFTPPrefix">INATEngine::TFTPPrefix</link></entry>
4919 </row>
4920 <row>
4921 <entry>INATEngine::tftpBootFile</entry>
4922 <entry><link linkend="INATEngine__TFTPBootFile">INATEngine::TFTPBootFile</link></entry>
4923 </row>
4924 <row>
4925 <entry>INATEngine::tftpNextServer</entry>
4926 <entry><link linkend="INATEngine__TFTPNextServer">INATEngine::TFTPNextServer</link></entry>
4927 </row>
4928 <row>
4929 <entry>INATEngine::dnsPassDomain</entry>
4930 <entry><link linkend="INATEngine__DNSPassDomain">INATEngine::DNSPassDomain</link></entry>
4931 </row>
4932 <row>
4933 <entry>INATEngine::dnsProxy</entry>
4934 <entry><link linkend="INATEngine__DNSProxy">INATEngine::DNSProxy</link></entry>
4935 </row>
4936 <row>
4937 <entry>INATEngine::dnsUseHostResolver</entry>
4938 <entry><link linkend="INATEngine__DNSUseHostResolver">INATEngine::DNSUseHostResolver</link></entry>
4939 </row>
4940 <row>
4941 <entry>VBoxEventType::OnHostPciDevicePlug</entry>
4942 <entry><link linkend="VBoxEventType__OnHostPCIDevicePlug">VBoxEventType::OnHostPCIDevicePlug</link></entry>
4943 </row>
4944 <row>
4945 <entry>ICPUChangedEvent::cpu</entry>
4946 <entry><link linkend="ICPUChangedEvent__CPU">ICPUChangedEvent::CPU</link></entry>
4947 </row>
4948 <row>
4949 <entry>INATRedirectEvent::hostIp</entry>
4950 <entry><link linkend="INATRedirectEvent__hostIP">INATRedirectEvent::hostIP</link></entry>
4951 </row>
4952 <row>
4953 <entry>INATRedirectEvent::guestIp</entry>
4954 <entry><link linkend="INATRedirectEvent__guestIP">INATRedirectEvent::guestIP</link></entry>
4955 </row>
4956 <row>
4957 <entry>IHostPciDevicePlugEvent</entry>
4958 <entry><link linkend="IHostPCIDevicePlugEvent">IHostPCIDevicePlugEvent</link></entry>
4959 </row>
4960 </tbody>
4961 </tgroup></table></para>
4962 </listitem>
4963 </itemizedlist>
4964 </sect1>
4965
4966 <sect1>
4967 <title>Incompatible API changes with version 4.1</title>
4968
4969 <itemizedlist>
4970 <listitem>
4971 <para>The method
4972 <link linkend="IAppliance__importMachines">IAppliance::importMachines()</link>
4973 has one more parameter now, which allows to configure the import
4974 process in more detail.
4975 </para>
4976 </listitem>
4977
4978 <listitem>
4979 <para>The method
4980 <link linkend="IVirtualBox__openMedium">IVirtualBox::openMedium()</link>
4981 has one more parameter now, which allows resolving duplicate medium
4982 UUIDs without the need for external tools.</para>
4983 </listitem>
4984
4985 <listitem>
4986 <para>The <link linkend="INetworkAdapter">INetworkAdapter</link>
4987 interface has been cleaned up. The various methods to activate an
4988 attachment type have been replaced by the
4989 <link linkend="INetworkAdapter__attachmentType">INetworkAdapter::attachmentType</link>
4990 setter.</para>
4991 <para>Additionally each attachment mode now has its own attribute,
4992 which means that host only networks no longer share the settings with
4993 bridged interfaces.</para>
4994 <para>To allow introducing new network attachment implementations
4995 without making API changes, the concept of a generic network
4996 attachment driver has been introduced, which is configurable through
4997 key/value properties.</para>
4998 </listitem>
4999
5000 <listitem>
5001 <para>This version introduces the guest facilities concept. A guest
5002 facility either represents a module or feature the guest is running
5003 or offering, which is defined by
5004 <link linkend="AdditionsFacilityType">AdditionsFacilityType</link>.
5005 Each facility is member of a
5006 <link linkend="AdditionsFacilityClass">AdditionsFacilityClass</link>
5007 and has a current status indicated by
5008 <link linkend="AdditionsFacilityStatus">AdditionsFacilityStatus</link>,
5009 together with a timestamp (in ms) of the last status update.</para>
5010 <para>To address the above concept, the following changes were made:
5011 <itemizedlist>
5012 <listitem>
5013 <para>
5014 In the <link linkend="IGuest">IGuest</link> interface, the
5015 following were removed:
5016 <itemizedlist>
5017 <listitem>
5018 <para>the
5019 <computeroutput>supportsSeamless</computeroutput>
5020 attribute;</para>
5021 </listitem>
5022 <listitem>
5023 <para>the
5024 <computeroutput>supportsGraphics</computeroutput>
5025 attribute;</para>
5026 </listitem>
5027 </itemizedlist>
5028 </para>
5029 </listitem>
5030 <listitem>
5031 <para>
5032 The function
5033 <link linkend="IGuest__getFacilityStatus">IGuest::getFacilityStatus()</link>
5034 was added. It quickly provides a facility's status without
5035 the need to get the facility collection with
5036 <link linkend="IGuest__facilities">IGuest::facilities</link>.
5037 </para>
5038 </listitem>
5039 <listitem>
5040 <para>
5041 The attribute
5042 <link linkend="IGuest__facilities">IGuest::facilities</link>
5043 was added to provide an easy to access collection of all
5044 currently known guest facilities, that is, it contains all
5045 facilies where at least one status update was made since the
5046 guest was started.
5047 </para>
5048 </listitem>
5049 <listitem>
5050 <para>
5051 The interface
5052 <link linkend="IAdditionsFacility">IAdditionsFacility</link>
5053 was added to represent a single facility returned by
5054 <link linkend="IGuest__facilities">IGuest::facilities</link>.
5055 </para>
5056 </listitem>
5057 <listitem>
5058 <para>
5059 <link linkend="AdditionsFacilityStatus">AdditionsFacilityStatus</link>
5060 was added to represent a facility's overall status.
5061 </para>
5062 </listitem>
5063 <listitem>
5064 <para>
5065 <link linkend="AdditionsFacilityType">AdditionsFacilityType</link> and
5066 <link linkend="AdditionsFacilityClass">AdditionsFacilityClass</link> were
5067 added to represent the facility's type and class.
5068 </para>
5069 </listitem>
5070 </itemizedlist>
5071 </para>
5072 </listitem>
5073 </itemizedlist>
5074 </sect1>
5075
5076 <sect1>
5077 <title>Incompatible API changes with version 4.0</title>
5078
5079 <itemizedlist>
5080 <listitem>
5081 <para>A new Java glue layer replacing the previous OOWS JAX-WS
5082 bindings was introduced. The new library allows for uniform code
5083 targeting both local (COM/XPCOM) and remote (SOAP) transports. Now,
5084 instead of <computeroutput>IWebsessionManager</computeroutput>, the
5085 new class <computeroutput>VirtualBoxManager</computeroutput> must be
5086 used. See <xref linkend="javaapi"/> for details.</para>
5087 </listitem>
5088
5089 <listitem>
5090 <para>The confusingly named and impractical session APIs were
5091 changed. In existing client code, the following changes need to be
5092 made:<itemizedlist>
5093 <listitem>
5094 <para>Replace any
5095 <computeroutput>IVirtualBox::openSession(uuidMachine,
5096 ...)</computeroutput> API call with the machine's
5097 <link linkend="IMachine__lockMachine">IMachine::lockMachine()</link>
5098 call and a
5099 <computeroutput>LockType.Write</computeroutput> argument. The
5100 functionality is unchanged, but instead of "opening a direct
5101 session on a machine" all documentation now refers to
5102 "obtaining a write lock on a machine for the client
5103 session".</para>
5104 </listitem>
5105
5106 <listitem>
5107 <para>Similarly, replace any
5108 <computeroutput>IVirtualBox::openExistingSession(uuidMachine,
5109 ...)</computeroutput> call with the machine's
5110 <link linkend="IMachine__lockMachine">IMachine::lockMachine()</link>
5111 call and a <computeroutput>LockType.Shared</computeroutput>
5112 argument. Whereas it was previously impossible to connect a
5113 client session to a running VM process in a race-free manner,
5114 the new API will atomically either write-lock the machine for
5115 the current session or establish a remote link to an existing
5116 session. Existing client code which tried calling both
5117 <computeroutput>openSession()</computeroutput> and
5118 <computeroutput>openExistingSession()</computeroutput> can now
5119 use this one call instead.</para>
5120 </listitem>
5121
5122 <listitem>
5123 <para>Third, replace any
5124 <computeroutput>IVirtualBox::openRemoteSession(uuidMachine,
5125 ...)</computeroutput> call with the machine's
5126 <link linkend="IMachine__launchVMProcess">IMachine::launchVMProcess()</link>
5127 call. The functionality is unchanged.</para>
5128 </listitem>
5129
5130 <listitem>
5131 <para>The <link linkend="SessionState">SessionState</link> enum
5132 was adjusted accordingly: "Open" is now "Locked", "Closed" is
5133 now "Unlocked", "Closing" is now "Unlocking".</para>
5134 </listitem>
5135 </itemizedlist></para>
5136 </listitem>
5137
5138 <listitem>
5139 <para>Virtual machines created with VirtualBox 4.0 or later no
5140 longer register their media in the global media registry in the
5141 <computeroutput>VirtualBox.xml</computeroutput> file. Instead, such
5142 machines list all their media in their own machine XML files. As a
5143 result, a number of media-related APIs had to be modified again.
5144 <itemizedlist>
5145 <listitem>
5146 <para>Neither
5147 <computeroutput>IVirtualBox::createHardDisk()</computeroutput>
5148 nor
5149 <link linkend="IVirtualBox__openMedium">IVirtualBox::openMedium()</link>
5150 register media automatically any more.</para>
5151 </listitem>
5152
5153 <listitem>
5154 <para><link linkend="IMachine__attachDevice">IMachine::attachDevice()</link>
5155 and
5156 <link linkend="IMachine__mountMedium">IMachine::mountMedium()</link>
5157 now take an IMedium object instead of a UUID as an argument. It
5158 is these two calls which add media to a registry now (either a
5159 machine registry for machines created with VirtualBox 4.0 or
5160 later or the global registry otherwise). As a consequence, if a
5161 medium is opened but never attached to a machine, it is no
5162 longer added to any registry any more.</para>
5163 </listitem>
5164
5165 <listitem>
5166 <para>To reduce code duplication, the APIs
5167 IVirtualBox::findHardDisk(), getHardDisk(), findDVDImage(),
5168 getDVDImage(), findFloppyImage() and getFloppyImage() have all
5169 been merged into IVirtualBox::findMedium(), and
5170 IVirtualBox::openHardDisk(), openDVDImage() and
5171 openFloppyImage() have all been merged into
5172 <link linkend="IVirtualBox__openMedium">IVirtualBox::openMedium()</link>.</para>
5173 </listitem>
5174
5175 <listitem>
5176 <para>The rare use case of changing the UUID and parent UUID
5177 of a medium previously handled by
5178 <computeroutput>openHardDisk()</computeroutput> is now in a
5179 separate IMedium::setIDs method.</para>
5180 </listitem>
5181
5182 <listitem>
5183 <para><computeroutput>ISystemProperties::get/setDefaultHardDiskFolder()</computeroutput>
5184 have been removed since disk images are now by default placed
5185 in each machine's folder.</para>
5186 </listitem>
5187
5188 <listitem>
5189 <para>The
5190 <link linkend="ISystemProperties__infoVDSize">ISystemProperties::infoVDSize</link>
5191 attribute replaces the
5192 <computeroutput>getMaxVDISize()</computeroutput>
5193 API call; this now uses bytes instead of megabytes.</para>
5194 </listitem>
5195 </itemizedlist></para>
5196 </listitem>
5197
5198 <listitem>
5199 <para>Machine management APIs were enhanced as follows:<itemizedlist>
5200 <listitem>
5201 <para><link linkend="IVirtualBox__createMachine">IVirtualBox::createMachine()</link>
5202 is no longer restricted to creating machines in the default
5203 "Machines" folder, but can now create machines at arbitrary
5204 locations. For this to work, the parameter list had to be
5205 changed.</para>
5206 </listitem>
5207
5208 <listitem>
5209 <para>The long-deprecated
5210 <computeroutput>IVirtualBox::createLegacyMachine()</computeroutput>
5211 API has been removed.</para>
5212 </listitem>
5213
5214 <listitem>
5215 <para>To reduce code duplication and for consistency with the
5216 aforementioned media APIs,
5217 <computeroutput>IVirtualBox::getMachine()</computeroutput> has
5218 been merged with
5219 <link linkend="IVirtualBox__findMachine">IVirtualBox::findMachine()</link>,
5220 and
5221 <computeroutput>IMachine::getSnapshot()</computeroutput> has
5222 been merged with
5223 <link linkend="IMachine__findSnapshot">IMachine::findSnapshot()</link>.</para>
5224 </listitem>
5225
5226 <listitem>
5227 <para><computeroutput>IVirtualBox::unregisterMachine()</computeroutput>
5228 was replaced with
5229 <link linkend="IMachine__unregister">IMachine::unregister()</link>
5230 with additional functionality for cleaning up machine
5231 files.</para>
5232 </listitem>
5233
5234 <listitem>
5235 <para><computeroutput>IMachine::deleteSettings</computeroutput>
5236 has been replaced by IMachine::delete, which allows specifying
5237 which disk images are to be deleted as part of the deletion,
5238 and because it can take a while it also returns a
5239 <computeroutput>IProgress</computeroutput> object reference,
5240 so that the completion of the asynchronous activities can be
5241 monitored.</para>
5242 </listitem>
5243
5244 <listitem>
5245 <para><computeroutput>IConsole::forgetSavedState</computeroutput>
5246 has been renamed to
5247 <computeroutput>IConsole::discardSavedState()</computeroutput>.</para>
5248 </listitem>
5249 </itemizedlist></para>
5250 </listitem>
5251
5252 <listitem>
5253 <para>All event callbacks APIs were replaced with a new, generic
5254 event mechanism that can be used both locally (COM, XPCOM) and
5255 remotely (web services). Also, the new mechanism is usable from
5256 scripting languages and a local Java. See
5257 <link linkend="IEvent">events</link> for details. The new concept
5258 will require changes to all clients that used event callbacks.</para>
5259 </listitem>
5260
5261 <listitem>
5262 <para><computeroutput>additionsActive()</computeroutput> was replaced
5263 with
5264 <link linkend="IGuest__additionsRunLevel">additionsRunLevel()</link>
5265 and
5266 <link linkend="IGuest__getAdditionsStatus">getAdditionsStatus()</link>
5267 in order to support a more detailed status of the current Guest
5268 Additions loading/readiness state.
5269 <link linkend="IGuest__additionsVersion">IGuest::additionsVersion()</link>
5270 no longer returns the Guest Additions interface version but the
5271 installed Guest Additions version and revision in form of
5272 <computeroutput>3.3.0r12345</computeroutput>.</para>
5273 </listitem>
5274
5275 <listitem>
5276 <para>To address shared folders auto-mounting support, the following
5277 APIs were extended to require an additional
5278 <computeroutput>automount</computeroutput> parameter: <itemizedlist>
5279 <listitem>
5280 <para><link linkend="IVirtualBox__createSharedFolder">IVirtualBox::createSharedFolder()</link></para>
5281 </listitem>
5282
5283 <listitem>
5284 <para><link linkend="IMachine__createSharedFolder">IMachine::createSharedFolder()</link></para>
5285 </listitem>
5286
5287 <listitem>
5288 <para><link linkend="IConsole__createSharedFolder">IConsole::createSharedFolder()</link></para>
5289 </listitem>
5290 </itemizedlist> Also, a new property named
5291 <computeroutput>autoMount</computeroutput> was added to the
5292 <link linkend="ISharedFolder">ISharedFolder</link>
5293 interface.</para>
5294 </listitem>
5295
5296 <listitem>
5297 <para>The appliance (OVF) APIs were enhanced as
5298 follows:<itemizedlist>
5299 <listitem>
5300 <para><computeroutput>IMachine::export</computeroutput>
5301 received an extra parameter
5302 <computeroutput>location</computeroutput>, which is used to
5303 decide for the disk naming.</para>
5304 </listitem>
5305
5306 <listitem>
5307 <para><link linkend="IAppliance__write">IAppliance::write()</link>
5308 received an extra parameter
5309 <computeroutput>manifest</computeroutput>, which can suppress
5310 creating the manifest file on export.</para>
5311 </listitem>
5312
5313 <listitem>
5314 <para><link linkend="IVFSExplorer__entryList">IVFSExplorer::entryList()</link>
5315 received two extra parameters
5316 <computeroutput>sizes</computeroutput> and
5317 <computeroutput>modes</computeroutput>, which contains the
5318 sizes (in bytes) and the file access modes (in octal form) of
5319 the returned files.</para>
5320 </listitem>
5321 </itemizedlist></para>
5322 </listitem>
5323
5324 <listitem>
5325 <para>Support for remote desktop access to virtual machines has been
5326 cleaned up to allow third party implementations of the remote
5327 desktop server. This is called the VirtualBox Remote Desktop
5328 Extension (VRDE) and can be added to VirtualBox by installing the
5329 corresponding extension package; see the VirtualBox User Manual for
5330 details.</para>
5331
5332 <para>The following API changes were made to support the VRDE
5333 interface: <itemizedlist>
5334 <listitem>
5335 <para><computeroutput>IVRDPServer</computeroutput> has been
5336 renamed to
5337 <link linkend="IVRDEServer">IVRDEServer</link>.</para>
5338 </listitem>
5339
5340 <listitem>
5341 <para><computeroutput>IRemoteDisplayInfo</computeroutput> has
5342 been renamed to
5343 <link linkend="IVRDEServerInfo">IVRDEServerInfo</link>.</para>
5344 </listitem>
5345
5346 <listitem>
5347 <para><link linkend="IMachine__VRDEServer">IMachine::VRDEServer</link>
5348 replaces
5349 <computeroutput>VRDPServer.</computeroutput></para>
5350 </listitem>
5351
5352 <listitem>
5353 <para><link linkend="IConsole__VRDEServerInfo">IConsole::VRDEServerInfo</link>
5354 replaces
5355 <computeroutput>RemoteDisplayInfo</computeroutput>.</para>
5356 </listitem>
5357
5358 <listitem>
5359 <para><link linkend="ISystemProperties__VRDEAuthLibrary">ISystemProperties::VRDEAuthLibrary</link>
5360 replaces
5361 <computeroutput>RemoteDisplayAuthLibrary</computeroutput>.</para>
5362 </listitem>
5363
5364 <listitem>
5365 <para>The following methods have been implemented in
5366 <computeroutput>IVRDEServer</computeroutput> to support
5367 generic VRDE properties: <itemizedlist>
5368 <listitem>
5369 <para><link linkend="IVRDEServer__setVRDEProperty">IVRDEServer::setVRDEProperty</link></para>
5370 </listitem>
5371
5372 <listitem>
5373 <para><link linkend="IVRDEServer__getVRDEProperty">IVRDEServer::getVRDEProperty</link></para>
5374 </listitem>
5375
5376 <listitem>
5377 <para><link linkend="IVRDEServer__VRDEProperties">IVRDEServer::VRDEProperties</link></para>
5378 </listitem>
5379 </itemizedlist></para>
5380
5381 <para>A few implementation-specific attributes of the old
5382 <computeroutput>IVRDPServer</computeroutput> interface have
5383 been removed and replaced with properties: <itemizedlist>
5384 <listitem>
5385 <para><computeroutput>IVRDPServer::Ports</computeroutput>
5386 has been replaced with the
5387 <computeroutput>"TCP/Ports"</computeroutput> property.
5388 The property value is a string, which contains a
5389 comma-separated list of ports or ranges of ports. Use a
5390 dash between two port numbers to specify a range.
5391 Example:
5392 <computeroutput>"5000,5010-5012"</computeroutput></para>
5393 </listitem>
5394
5395 <listitem>
5396 <para><computeroutput>IVRDPServer::NetAddress</computeroutput>
5397 has been replaced with the
5398 <computeroutput>"TCP/Address"</computeroutput> property.
5399 The property value is an IP address string. Example:
5400 <computeroutput>"127.0.0.1"</computeroutput></para>
5401 </listitem>
5402
5403 <listitem>
5404 <para><computeroutput>IVRDPServer::VideoChannel</computeroutput>
5405 has been replaced with the
5406 <computeroutput>"VideoChannel/Enabled"</computeroutput>
5407 property. The property value is either
5408 <computeroutput>"true"</computeroutput> or
5409 <computeroutput>"false"</computeroutput></para>
5410 </listitem>
5411
5412 <listitem>
5413 <para><computeroutput>IVRDPServer::VideoChannelQuality</computeroutput>
5414 has been replaced with the
5415 <computeroutput>"VideoChannel/Quality"</computeroutput>
5416 property. The property value is a string which contain a
5417 decimal number in range 10..100. Invalid values are
5418 ignored and the quality is set to the default value 75.
5419 Example: <computeroutput>"50"</computeroutput></para>
5420 </listitem>
5421 </itemizedlist></para>
5422 </listitem>
5423 </itemizedlist></para>
5424 </listitem>
5425
5426 <listitem>
5427 <para>The VirtualBox external authentication module interface has
5428 been updated and made more generic. Because of that,
5429 <computeroutput>VRDPAuthType</computeroutput> enumeration has been
5430 renamed to <link linkend="AuthType">AuthType</link>.</para>
5431 </listitem>
5432 </itemizedlist>
5433 </sect1>
5434
5435 <sect1>
5436 <title>Incompatible API changes with version 3.2</title>
5437
5438 <itemizedlist>
5439 <listitem>
5440 <para>The following interfaces were renamed for consistency:
5441 <itemizedlist>
5442 <listitem>
5443 <para>IMachine::getCpuProperty() is now
5444 <link linkend="IMachine__getCPUProperty">IMachine::getCPUProperty()</link>;</para>
5445 </listitem>
5446
5447 <listitem>
5448 <para>IMachine::setCpuProperty() is now
5449 <link linkend="IMachine__setCPUProperty">IMachine::setCPUProperty()</link>;</para>
5450 </listitem>
5451
5452 <listitem>
5453 <para>IMachine::getCpuIdLeaf() is now
5454 <link linkend="IMachine__getCPUIDLeaf">IMachine::getCPUIDLeaf()</link>;</para>
5455 </listitem>
5456
5457 <listitem>
5458 <para>IMachine::setCpuIdLeaf() is now
5459 <link linkend="IMachine__setCPUIDLeaf">IMachine::setCPUIDLeaf()</link>;</para>
5460 </listitem>
5461
5462 <listitem>
5463 <para>IMachine::removeCpuIdLeaf() is now
5464 <link linkend="IMachine__removeCPUIDLeaf">IMachine::removeCPUIDLeaf()</link>;</para>
5465 </listitem>
5466
5467 <listitem>
5468 <para>IMachine::removeAllCpuIdLeafs() is now
5469 <link linkend="IMachine__removeAllCPUIDLeaves">IMachine::removeAllCPUIDLeaves()</link>;</para>
5470 </listitem>
5471
5472 <listitem>
5473 <para>the CpuPropertyType enum is now
5474 <link linkend="CPUPropertyType">CPUPropertyType</link>.</para>
5475 </listitem>
5476
5477 <listitem>
5478 <para>IVirtualBoxCallback::onSnapshotDiscarded() is now
5479 IVirtualBoxCallback::onSnapshotDeleted.</para>
5480 </listitem>
5481 </itemizedlist></para>
5482 </listitem>
5483
5484 <listitem>
5485 <para>When creating a VM configuration with
5486 <link linkend="IVirtualBox__createMachine">IVirtualBox::createMachine()</link>
5487 it is now possible to ignore existing configuration files which would
5488 previously have caused a failure. For this the
5489 <computeroutput>override</computeroutput> parameter was added.</para>
5490 </listitem>
5491
5492 <listitem>
5493 <para>Deleting snapshots via
5494 <computeroutput>IConsole::deleteSnapshot()</computeroutput> is now
5495 possible while the associated VM is running in almost all cases.
5496 The API is unchanged, but client code that verifies machine states
5497 to determine whether snapshots can be deleted may need to be
5498 adjusted.</para>
5499 </listitem>
5500
5501 <listitem>
5502 <para>The IoBackendType enumeration was replaced with a boolean flag
5503 (see
5504 <link linkend="IStorageController__useHostIOCache">IStorageController::useHostIOCache</link>).</para>
5505 </listitem>
5506
5507 <listitem>
5508 <para>To address multi-monitor support, the following APIs were
5509 extended to require an additional
5510 <computeroutput>screenId</computeroutput> parameter: <itemizedlist>
5511 <listitem>
5512 <para>IMachine::querySavedThumbnailSize()</para>
5513 </listitem>
5514
5515 <listitem>
5516 <para><link linkend="IMachine__readSavedThumbnailToArray">IMachine::readSavedThumbnailToArray()</link></para>
5517 </listitem>
5518
5519 <listitem>
5520 <para><link linkend="IMachine__querySavedScreenshotInfo">IMachine::querySavedScreenshotPNGSize()</link></para>
5521 </listitem>
5522
5523 <listitem>
5524 <para><link linkend="IMachine__readSavedScreenshotToArray">IMachine::readSavedScreenshotPNGToArray()</link></para>
5525 </listitem>
5526 </itemizedlist></para>
5527 </listitem>
5528
5529 <listitem>
5530 <para>The <computeroutput>shape</computeroutput> parameter of
5531 IConsoleCallback::onMousePointerShapeChange was changed from a
5532 implementation-specific pointer to a safearray, enabling scripting
5533 languages to process pointer shapes.</para>
5534 </listitem>
5535 </itemizedlist>
5536 </sect1>
5537
5538 <sect1>
5539 <title>Incompatible API changes with version 3.1</title>
5540
5541 <itemizedlist>
5542 <listitem>
5543 <para>Due to the new flexibility in medium attachments that was
5544 introduced with version 3.1 (in particular, full flexibility with
5545 attaching CD/DVD drives to arbitrary controllers), we seized the
5546 opportunity to rework all interfaces dealing with storage media to
5547 make the API more flexible as well as logical. The
5548 <link linkend="IStorageController">IStorageController</link>,
5549 <link linkend="IMedium">IMedium</link>,
5550 <link linkend="IMediumAttachment">IMediumAttachment</link> and
5551 <link linkend="IMachine">IMachine</link> interfaces were
5552 affected the most. Existing code using them to configure storage and
5553 media needs to be carefully checked.</para>
5554
5555 <para>All media (hard disks, floppies and CDs/DVDs) are now
5556 uniformly handled through the <link linkend="IMedium">IMedium</link>
5557 interface. The device-specific interfaces
5558 (<code>IHardDisk</code>, <code>IDVDImage</code>,
5559 <code>IHostDVDDrive</code>, <code>IFloppyImage</code> and
5560 <code>IHostFloppyDrive</code>) have been merged into IMedium; CD/DVD
5561 and floppy media no longer need special treatment. The device type
5562 of a medium determines in which context it can be used. Some
5563 functionality was moved to the other storage-related
5564 interfaces.</para>
5565
5566 <para><code>IMachine::attachHardDisk</code> and similar methods have
5567 been renamed and generalized to deal with any type of drive and
5568 medium.
5569 <link linkend="IMachine__attachDevice">IMachine::attachDevice()</link>
5570 is the API method for adding any drive to a storage controller. The
5571 floppy and DVD/CD drives are no longer handled specially, and that
5572 means you can have more than one of them. As before, drives can only
5573 be changed while the VM is powered off. Mounting (or unmounting)
5574 removable media at runtime is possible with
5575 <link linkend="IMachine__mountMedium">IMachine::mountMedium()</link>.</para>
5576
5577 <para>Newly created virtual machines have no storage controllers
5578 associated with them. Even the IDE Controller needs to be created
5579 explicitly. The floppy controller is now visible as a separate
5580 controller, with a new storage bus type. For each storage bus type
5581 you can query the device types which can be attached, so that it is
5582 not necessary to hardcode any attachment rules.</para>
5583
5584 <para>This required matching changes e.g. in the callback interfaces
5585 (the medium specific change notification was replaced by a generic
5586 medium change notification) and removing associated enums (e.g.
5587 <code>DriveState</code>). In many places the incorrect use of the
5588 plural form "media" was replaced by "medium", to improve
5589 consistency.</para>
5590 </listitem>
5591
5592 <listitem>
5593 <para>Reading the
5594 <link linkend="IMedium__state">IMedium::state</link> attribute no
5595 longer automatically performs an accessibility check; a new method
5596 <link linkend="IMedium__refreshState">IMedium::refreshState()</link>
5597 does this. The attribute only returns the state now.</para>
5598 </listitem>
5599
5600 <listitem>
5601 <para>There were substantial changes related to snapshots, triggered
5602 by the "branched snapshots" functionality introduced with version
5603 3.1. IConsole::discardSnapshot was renamed to
5604 <computeroutput>IConsole::deleteSnapshot()</computeroutput>.
5605 IConsole::discardCurrentState and
5606 IConsole::discardCurrentSnapshotAndState were removed; corresponding
5607 new functionality is in
5608 <computeroutput>IConsole::restoreSnapshot()</computeroutput>.
5609 Also, when <computeroutput>IConsole::takeSnapshot()</computeroutput>
5610 is called on a running virtual machine, a live snapshot will be
5611 created. The old behavior was to temporarily pause the virtual
5612 machine while creating an online snapshot.</para>
5613 </listitem>
5614
5615 <listitem>
5616 <para>The <computeroutput>IVRDPServer</computeroutput>,
5617 <computeroutput>IRemoteDisplayInfo"</computeroutput> and
5618 <computeroutput>IConsoleCallback</computeroutput> interfaces were
5619 changed to reflect VRDP server ability to bind to one of available
5620 ports from a list of ports.</para>
5621
5622 <para>The <computeroutput>IVRDPServer::port</computeroutput>
5623 attribute has been replaced with
5624 <computeroutput>IVRDPServer::ports</computeroutput>, which is a
5625 comma-separated list of ports or ranges of ports.</para>
5626
5627 <para>An <computeroutput>IRemoteDisplayInfo::port"</computeroutput>
5628 attribute has been added for querying the actual port VRDP server
5629 listens on.</para>
5630
5631 <para>An IConsoleCallback::onRemoteDisplayInfoChange() notification
5632 callback has been added.</para>
5633 </listitem>
5634
5635 <listitem>
5636 <para>The parameter lists for the following functions were
5637 modified:<itemizedlist>
5638 <listitem>
5639 <para><link linkend="IHost__removeHostOnlyNetworkInterface">IHost::removeHostOnlyNetworkInterface()</link></para>
5640 </listitem>
5641
5642 <listitem>
5643 <para><link linkend="IHost__removeUSBDeviceFilter">IHost::removeUSBDeviceFilter()</link></para>
5644 </listitem>
5645 </itemizedlist></para>
5646 </listitem>
5647
5648 <listitem>
5649 <para>In the OOWS bindings for JAX-WS, the behavior of structures
5650 changed: for one, we implemented natural structures field access so
5651 you can just call a "get" method to obtain a field. Secondly,
5652 setters in structures were disabled as they have no expected effect
5653 and were at best misleading.</para>
5654 </listitem>
5655 </itemizedlist>
5656 </sect1>
5657
5658 <sect1>
5659 <title>Incompatible API changes with version 3.0</title>
5660
5661 <itemizedlist>
5662 <listitem>
5663 <para>In the object-oriented web service bindings for JAX-WS, proper
5664 inheritance has been introduced for some classes, so explicit
5665 casting is no longer needed to call methods from a parent class. In
5666 particular, IHardDisk and other classes now properly derive from
5667 <link linkend="IMedium">IMedium</link>.</para>
5668 </listitem>
5669
5670 <listitem>
5671 <para>All object identifiers (machines, snapshots, disks, etc)
5672 switched from GUIDs to strings (now still having string
5673 representation of GUIDs inside). As a result, no particular internal
5674 structure can be assumed for object identifiers; instead, they
5675 should be treated as opaque unique handles. This change mostly
5676 affects Java and C++ programs; for other languages, GUIDs are
5677 transparently converted to strings.</para>
5678 </listitem>
5679
5680 <listitem>
5681 <para>The uses of NULL strings have been changed greatly. All out
5682 parameters now use empty strings to signal a null value. For in
5683 parameters both the old NULL and empty string is allowed. This
5684 change was necessary to support more client bindings, especially
5685 using the web service API. Many of them either have no special NULL
5686 value or have trouble dealing with it correctly in the respective
5687 library code.</para>
5688 </listitem>
5689
5690 <listitem>
5691 <para>Accidentally, the <code>TSBool</code> interface still appeared
5692 in 3.0.0, and was removed in 3.0.2. This is an SDK bug, do not use
5693 the SDK for VirtualBox 3.0.0 for developing clients.</para>
5694 </listitem>
5695
5696 <listitem>
5697 <para>The type of
5698 <link linkend="IVirtualBoxErrorInfo__resultCode">IVirtualBoxErrorInfo::resultCode</link>
5699 changed from
5700 <computeroutput>result</computeroutput> to
5701 <computeroutput>long</computeroutput>.</para>
5702 </listitem>
5703
5704 <listitem>
5705 <para>The parameter list of IVirtualBox::openHardDisk was
5706 changed.</para>
5707 </listitem>
5708
5709 <listitem>
5710 <para>The method IConsole::discardSavedState was renamed to
5711 IConsole::forgetSavedState, and a parameter was added.</para>
5712 </listitem>
5713
5714 <listitem>
5715 <para>The method IConsole::powerDownAsync was renamed to
5716 <link linkend="IConsole__powerDown">IConsole::powerDown</link>,
5717 and the previous method with that name was deleted. So effectively a
5718 parameter was added.</para>
5719 </listitem>
5720
5721 <listitem>
5722 <para>In the
5723 <link linkend="IFramebuffer">IFramebuffer</link> interface, the
5724 following were removed:<itemizedlist>
5725 <listitem>
5726 <para>the <computeroutput>operationSupported</computeroutput>
5727 attribute;</para>
5728
5729 <para>(as a result, the
5730 <computeroutput>FramebufferAccelerationOperation</computeroutput>
5731 enum was no longer needed and removed as well);</para>
5732 </listitem>
5733
5734 <listitem>
5735 <para>the <computeroutput>solidFill()</computeroutput>
5736 method;</para>
5737 </listitem>
5738
5739 <listitem>
5740 <para>the <computeroutput>copyScreenBits()</computeroutput>
5741 method.</para>
5742 </listitem>
5743 </itemizedlist></para>
5744 </listitem>
5745
5746 <listitem>
5747 <para>In the <link linkend="IDisplay">IDisplay</link>
5748 interface, the following were removed:<itemizedlist>
5749 <listitem>
5750 <para>the
5751 <computeroutput>setupInternalFramebuffer()</computeroutput>
5752 method;</para>
5753 </listitem>
5754
5755 <listitem>
5756 <para>the <computeroutput>lockFramebuffer()</computeroutput>
5757 method;</para>
5758 </listitem>
5759
5760 <listitem>
5761 <para>the <computeroutput>unlockFramebuffer()</computeroutput>
5762 method;</para>
5763 </listitem>
5764
5765 <listitem>
5766 <para>the
5767 <computeroutput>registerExternalFramebuffer()</computeroutput>
5768 method.</para>
5769 </listitem>
5770 </itemizedlist></para>
5771 </listitem>
5772 </itemizedlist>
5773 </sect1>
5774
5775 <sect1>
5776 <title>Incompatible API changes with version 2.2</title>
5777
5778 <itemizedlist>
5779 <listitem>
5780 <para>Added explicit version number into JAX-WS Java package names,
5781 such as <computeroutput>org.virtualbox_2_2</computeroutput>,
5782 allowing connect to multiple VirtualBox clients from single Java
5783 application.</para>
5784 </listitem>
5785
5786 <listitem>
5787 <para>The interfaces having a "2" suffix attached to them with
5788 version 2.1 were renamed again to have that suffix removed. This
5789 time around, this change involves only the name, there are no
5790 functional differences.</para>
5791
5792 <para>As a result, IDVDImage2 is now IDVDImage; IHardDisk2 is now
5793 IHardDisk; IHardDisk2Attachment is now IHardDiskAttachment.</para>
5794
5795 <para>Consequentially, all related methods and attributes that had a
5796 "2" suffix have been renamed; for example, IMachine::attachHardDisk2
5797 now becomes IMachine::attachHardDisk().</para>
5798 </listitem>
5799
5800 <listitem>
5801 <para>IVirtualBox::openHardDisk has an extra parameter for opening a
5802 disk read/write or read-only.</para>
5803 </listitem>
5804
5805 <listitem>
5806 <para>The remaining collections were replaced by more performant
5807 safe-arrays. This affects the following collections:</para>
5808
5809 <itemizedlist>
5810 <listitem>
5811 <para>IGuestOSTypeCollection</para>
5812 </listitem>
5813
5814 <listitem>
5815 <para>IHostDVDDriveCollection</para>
5816 </listitem>
5817
5818 <listitem>
5819 <para>IHostFloppyDriveCollection</para>
5820 </listitem>
5821
5822 <listitem>
5823 <para>IHostUSBDeviceCollection</para>
5824 </listitem>
5825
5826 <listitem>
5827 <para>IHostUSBDeviceFilterCollection</para>
5828 </listitem>
5829
5830 <listitem>
5831 <para>IProgressCollection</para>
5832 </listitem>
5833
5834 <listitem>
5835 <para>ISharedFolderCollection</para>
5836 </listitem>
5837
5838 <listitem>
5839 <para>ISnapshotCollection</para>
5840 </listitem>
5841
5842 <listitem>
5843 <para>IUSBDeviceCollection</para>
5844 </listitem>
5845
5846 <listitem>
5847 <para>IUSBDeviceFilterCollection</para>
5848 </listitem>
5849 </itemizedlist>
5850 </listitem>
5851
5852 <listitem>
5853 <para>Since "Host Interface Networking" was renamed to "bridged
5854 networking" and host-only networking was introduced, all associated
5855 interfaces needed renaming as well. In detail:</para>
5856
5857 <itemizedlist>
5858 <listitem>
5859 <para>The HostNetworkInterfaceType enum has been renamed to
5860 <link linkend="HostNetworkInterfaceMediumType">HostNetworkInterfaceMediumType</link></para>
5861 </listitem>
5862
5863 <listitem>
5864 <para>The IHostNetworkInterface::type attribute has been renamed
5865 to
5866 <link linkend="IHostNetworkInterface__mediumType">IHostNetworkInterface::mediumType</link></para>
5867 </listitem>
5868
5869 <listitem>
5870 <para>INetworkAdapter::attachToHostInterface() has been renamed
5871 to INetworkAdapter::attachToBridgedInterface</para>
5872 </listitem>
5873
5874 <listitem>
5875 <para>In the IHost interface, createHostNetworkInterface() has
5876 been renamed to
5877 <link linkend="IHost__createHostOnlyNetworkInterface">createHostOnlyNetworkInterface()</link></para>
5878 </listitem>
5879
5880 <listitem>
5881 <para>Similarly, removeHostNetworkInterface() has been renamed
5882 to
5883 <link linkend="IHost__removeHostOnlyNetworkInterface">removeHostOnlyNetworkInterface()</link></para>
5884 </listitem>
5885 </itemizedlist>
5886 </listitem>
5887 </itemizedlist>
5888 </sect1>
5889
5890 <sect1>
5891 <title>Incompatible API changes with version 2.1</title>
5892
5893 <itemizedlist>
5894 <listitem>
5895 <para>With VirtualBox 2.1, error codes were added to many error
5896 infos that give the caller a machine-readable (numeric) feedback in
5897 addition to the error string that has always been available. This is
5898 an ongoing process, and future versions of this SDK reference will
5899 document the error codes for each method call.</para>
5900 </listitem>
5901
5902 <listitem>
5903 <para>The hard disk and other media interfaces were completely
5904 redesigned. This was necessary to account for the support of VMDK,
5905 VHD and other image types; since backwards compatibility had to be
5906 broken anyway, we seized the moment to redesign the interfaces in a
5907 more logical way.</para>
5908
5909 <itemizedlist>
5910 <listitem>
5911 <para>Previously, the old IHardDisk interface had several
5912 derivatives called IVirtualDiskImage, IVMDKImage, IVHDImage,
5913 IISCSIHardDisk and ICustomHardDisk for the various disk formats
5914 supported by VirtualBox. The new IHardDisk2 interface that comes
5915 with version 2.1 now supports all hard disk image formats
5916 itself.</para>
5917 </listitem>
5918
5919 <listitem>
5920 <para>IHardDiskFormat is a new interface to describe the
5921 available back-ends for hard disk images (e.g. VDI, VMDK, VHD or
5922 iSCSI). The IHardDisk2::format attribute can be used to find out
5923 the back-end that is in use for a particular hard disk image.
5924 ISystemProperties::hardDiskFormats[] contains a list of all
5925 back-ends supported by the system.
5926 <link linkend="ISystemProperties__defaultHardDiskFormat">ISystemProperties::defaultHardDiskFormat</link>
5927 contains the default system format.</para>
5928 </listitem>
5929
5930 <listitem>
5931 <para>In addition, the new
5932 <link linkend="IMedium">IMedium</link> interface is a generic
5933 interface for hard disk, DVD and floppy images that contains the
5934 attributes and methods shared between them. It can be considered
5935 a parent class of the more specific interfaces for those images,
5936 which are now IHardDisk2, IDVDImage2 and IFloppyImage2.</para>
5937
5938 <para>In each case, the "2" versions of these interfaces replace
5939 the earlier versions that did not have the "2" suffix.
5940 Previously, the IDVDImage and IFloppyImage interfaces were
5941 entirely unrelated to IHardDisk.</para>
5942 </listitem>
5943
5944 <listitem>
5945 <para>As a result, all parts of the API that previously
5946 referenced IHardDisk, IDVDImage or IFloppyImage or any of the
5947 old subclasses are gone and will have replacements that use
5948 IHardDisk2, IDVDImage2 and IFloppyImage2; see, for example,
5949 IMachine::attachHardDisk2.</para>
5950 </listitem>
5951
5952 <listitem>
5953 <para>In particular, the IVirtualBox::hardDisks2 array replaces
5954 the earlier IVirtualBox::hardDisks collection.</para>
5955 </listitem>
5956 </itemizedlist>
5957 </listitem>
5958
5959 <listitem>
5960 <para><link linkend="IGuestOSType">IGuestOSType</link> was
5961 extended to group operating systems into families and for 64-bit
5962 support.</para>
5963 </listitem>
5964
5965 <listitem>
5966 <para>The
5967 <link linkend="IHostNetworkInterface">IHostNetworkInterface</link>
5968 interface was completely rewritten to account for the changes in how
5969 Host Interface Networking is now implemented in VirtualBox
5970 2.1.</para>
5971 </listitem>
5972
5973 <listitem>
5974 <para>The IVirtualBox::machines2[] array replaces the former
5975 IVirtualBox::machines collection.</para>
5976 </listitem>
5977
5978 <listitem>
5979 <para>Added
5980 <link linkend="IHost__getProcessorFeature">IHost::getProcessorFeature()</link>
5981 and <link linkend="ProcessorFeature">ProcessorFeature</link>
5982 enumeration.</para>
5983 </listitem>
5984
5985 <listitem>
5986 <para>The parameter list for
5987 <link linkend="IVirtualBox__createMachine">IVirtualBox::createMachine()</link>
5988 was modified.</para>
5989 </listitem>
5990
5991 <listitem>
5992 <para>Added IMachine::pushGuestProperty.</para>
5993 </listitem>
5994
5995 <listitem>
5996 <para>New attributes in IMachine:
5997 <link linkend="IMachine__accelerate3DEnabled">accelerate3DEnabled</link>,
5998 HWVirtExVPIDEnabled,
5999 <computeroutput>IMachine::guestPropertyNotificationPatterns</computeroutput>,
6000 <link linkend="IMachine__CPUCount">CPUCount</link>.</para>
6001 </listitem>
6002
6003 <listitem>
6004 <para>Added
6005 <link linkend="IConsole__powerUpPaused">IConsole::powerUpPaused()</link>
6006 and
6007 <link linkend="IConsole__getGuestEnteredACPIMode">IConsole::getGuestEnteredACPIMode()</link>.</para>
6008 </listitem>
6009
6010 <listitem>
6011 <para>Removed ResourceUsage enumeration.</para>
6012 </listitem>
6013 </itemizedlist>
6014 </sect1>
6015 </chapter>
6016</book>
6017<!-- vim: set shiftwidth=2 tabstop=2 expandtab: -->
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