VirtualBox

source: vbox/trunk/src/VBox/Main/xml/SettingsConverter.xsl@ 25414

Last change on this file since 25414 was 23465, checked in by vboxsync, 15 years ago

header fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 38.1 KB
Line 
1<?xml version="1.0"?>
2
3<!--
4 * :tabSize=2:indentSize=2:noTabs=true:
5 * :folding=explicit:collapseFolds=1:
6 *
7 * Template to convert old VirtualBox settings files to the most recent format.
8
9 Copyright (C) 2006-2009 Sun Microsystems, Inc.
10
11 This file is part of VirtualBox Open Source Edition (OSE), as
12 available from http://www.virtualbox.org. This file is free software;
13 you can redistribute it and/or modify it under the terms of the GNU
14 General Public License (GPL) as published by the Free Software
15 Foundation, in version 2 as it comes in the "COPYING" file of the
16 VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18
19 Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
20 Clara, CA 95054 USA or visit http://www.sun.com if you need
21 additional information or have any questions.
22-->
23
24<xsl:stylesheet version="1.0"
25 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
26 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
27 xmlns:vb="http://www.innotek.de/VirtualBox-settings"
28 xmlns="http://www.innotek.de/VirtualBox-settings"
29 exclude-result-prefixes="#default vb xsl xsd"
30>
31
32<xsl:output method="xml" indent="yes"/>
33
34<xsl:variable name="curVer" select="substring-before(/vb:VirtualBox/@version, '-')"/>
35<xsl:variable name="curVerPlat" select="substring-after(/vb:VirtualBox/@version, '-')"/>
36<xsl:variable name="curVerFull" select="/vb:VirtualBox/@version"/>
37
38<xsl:template match="/">
39 <xsl:comment> Automatically converted from version '<xsl:value-of select="$curVerFull"/>' </xsl:comment>
40 <xsl:copy>
41 <xsl:apply-templates select="@*|node()"/>
42 </xsl:copy>
43</xsl:template>
44
45<!--
46 * comments outside the root node are gathered to a single line, fix this
47-->
48<xsl:template match="/comment()">
49 <xsl:copy-of select="."/>
50</xsl:template>
51
52<!--
53 * Forbid non-VirtualBox root nodes
54-->
55<xsl:template match="/*">
56 <xsl:message terminate="yes">
57Cannot convert an unknown XML file with the root node '<xsl:value-of select="name()"/>'!
58 </xsl:message>
59</xsl:template>
60
61<!--
62 * Forbid all unsupported VirtualBox settings versions
63-->
64<xsl:template match="/vb:VirtualBox">
65 <xsl:message terminate="yes">
66Cannot convert settings from version '<xsl:value-of select="@version"/>'.
67The source version is not supported.
68 </xsl:message>
69</xsl:template>
70
71<!--
72 * Accept supported settings versions (source setting files we can convert)
73 *
74 * Note that in order to simplify conversion from versions prior to the previous
75 * one, we support multi-step conversion like this: step 1: 1.0 => 1.1,
76 * step 2: 1.1 => 1.2, where 1.2 is the most recent version. If you want to use
77 * such multi-step mode, you need to ensure that only 1.0 => 1.1 is possible, by
78 * using the 'mode=1.1' attribute on both 'apply-templates' within the starting
79 * '/vb:VirtualBox[1.0]' template and within all templates that this
80 * 'apply-templates' should apply.
81 *
82 * If no 'mode' attribute is used as described above, then a direct conversion
83 * (1.0 => 1.2 in the above example) will happen when version 1.0 of the settings
84 * files is detected. Note that the direct conversion from pre-previous versions
85 * will require to patch their conversion templates so that they include all
86 * modifications from all newer versions, which is error-prone. It's better to
87 * use the milt-step mode.
88-->
89
90<!-- 1.1 => 1.2 -->
91<xsl:template match="/vb:VirtualBox[substring-before(@version,'-')='1.1']">
92 <xsl:copy>
93 <xsl:attribute name="version"><xsl:value-of select="concat('1.2','-',$curVerPlat)"/></xsl:attribute>
94 <xsl:apply-templates select="node()" mode="v1.2"/>
95 </xsl:copy>
96</xsl:template>
97
98<!-- 1.2 => 1.3.pre -->
99<xsl:template match="/vb:VirtualBox[substring-before(@version,'-')='1.2']">
100 <xsl:copy>
101 <xsl:attribute name="version"><xsl:value-of select="concat('1.3.pre','-',$curVerPlat)"/></xsl:attribute>
102 <xsl:apply-templates select="node()" mode="v1.3.pre"/>
103 </xsl:copy>
104</xsl:template>
105
106<!-- 1.3.pre => 1.3 -->
107<xsl:template match="/vb:VirtualBox[substring-before(@version,'-')='1.3.pre']">
108 <xsl:copy>
109 <xsl:attribute name="version"><xsl:value-of select="concat('1.3','-',$curVerPlat)"/></xsl:attribute>
110 <xsl:apply-templates select="node()" mode="v1.3"/>
111 </xsl:copy>
112</xsl:template>
113
114<!-- 1.3 => 1.4 -->
115<xsl:template match="/vb:VirtualBox[substring-before(@version,'-')='1.3']">
116 <xsl:copy>
117 <xsl:attribute name="version"><xsl:value-of select="concat('1.4','-',$curVerPlat)"/></xsl:attribute>
118 <xsl:apply-templates select="node()" mode="v1.4"/>
119 </xsl:copy>
120</xsl:template>
121
122<!-- 1.4 => 1.5 -->
123<xsl:template match="/vb:VirtualBox[substring-before(@version,'-')='1.4']">
124 <xsl:copy>
125 <xsl:attribute name="version"><xsl:value-of select="concat('1.5','-',$curVerPlat)"/></xsl:attribute>
126 <xsl:apply-templates select="node()" mode="v1.5"/>
127 </xsl:copy>
128</xsl:template>
129
130<!-- 1.5 => 1.6 -->
131<xsl:template match="/vb:VirtualBox[substring-before(@version,'-')='1.5']">
132 <xsl:copy>
133 <xsl:attribute name="version"><xsl:value-of select="concat('1.6','-',$curVerPlat)"/></xsl:attribute>
134 <xsl:apply-templates select="node()" mode="v1.6"/>
135 </xsl:copy>
136</xsl:template>
137
138<!-- 1.6 => 1.7 -->
139<xsl:template match="/vb:VirtualBox[substring-before(@version,'-')='1.6']">
140 <xsl:copy>
141 <xsl:attribute name="version"><xsl:value-of select="concat('1.7','-',$curVerPlat)"/></xsl:attribute>
142 <xsl:apply-templates select="node()" mode="v1.7"/>
143 </xsl:copy>
144</xsl:template>
145
146<!-- 1.7 => 1.8 -->
147<xsl:template match="/vb:VirtualBox[substring-before(@version,'-')='1.7']">
148 <xsl:copy>
149 <xsl:attribute name="version"><xsl:value-of select="concat('1.8','-',$curVerPlat)"/></xsl:attribute>
150 <xsl:apply-templates select="node()" mode="v1.8"/>
151 </xsl:copy>
152</xsl:template>
153
154<!--
155 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
156 * 1.1 => 1.2
157 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
158-->
159
160<!--
161 * all non-root elements that are not explicitly matched are copied as is
162-->
163<xsl:template match="@*|node()[../..]" mode="v1.2">
164 <xsl:copy>
165 <xsl:apply-templates select="@*|node()[../..]" mode="v1.2"/>
166 </xsl:copy>
167</xsl:template>
168
169<!--
170 * Global settings
171-->
172
173<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.1']/
174 vb:Global/vb:DiskImageRegistry/vb:HardDiskImages//
175 vb:Image"
176 mode="v1.2">
177 <DiffHardDisk>
178 <xsl:attribute name="uuid"><xsl:value-of select="@uuid"/></xsl:attribute>
179 <VirtualDiskImage>
180 <xsl:attribute name="filePath"><xsl:value-of select="@src"/></xsl:attribute>
181 </VirtualDiskImage>
182 <xsl:apply-templates select="vb:Image"/>
183 </DiffHardDisk>
184</xsl:template>
185
186<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.1']/
187 vb:Global/vb:DiskImageRegistry"
188 mode="v1.2">
189<DiskRegistry>
190 <HardDisks>
191 <xsl:for-each select="vb:HardDiskImages/vb:Image">
192 <HardDisk>
193 <xsl:attribute name="uuid"><xsl:value-of select="@uuid"/></xsl:attribute>
194 <xsl:attribute name="type">
195 <xsl:choose>
196 <xsl:when test="@independent='immutable'">immutable</xsl:when>
197 <xsl:when test="@independent='mutable'">immutable</xsl:when>
198 <xsl:otherwise>normal</xsl:otherwise>
199 </xsl:choose>
200 </xsl:attribute>
201 <VirtualDiskImage>
202 <xsl:attribute name="filePath"><xsl:value-of select="@src"/></xsl:attribute>
203 </VirtualDiskImage>
204 <xsl:apply-templates select="vb:Image"/>
205 </HardDisk>
206 </xsl:for-each>
207 </HardDisks>
208 <xsl:copy-of select="vb:DVDImages"/>
209 <xsl:copy-of select="vb:FloppyImages"/>
210</DiskRegistry>
211</xsl:template>
212
213<!--
214 * Machine settings
215-->
216
217<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.1']/
218 vb:Machine//vb:HardDisks"
219 mode="v1.2">
220 <HardDiskAttachments>
221 <xsl:for-each select="vb:HardDisk">
222 <HardDiskAttachment>
223 <xsl:attribute name="hardDisk"><xsl:value-of select="vb:Image/@uuid"/></xsl:attribute>
224 <xsl:apply-templates select="@*"/>
225 </HardDiskAttachment>
226 </xsl:for-each>
227 </HardDiskAttachments>
228</xsl:template>
229
230<!--
231 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
232 * 1.2 => 1.3.pre
233 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
234-->
235
236<!--
237 * all non-root elements that are not explicitly matched are copied as is
238-->
239<xsl:template match="@*|node()[../..]" mode="v1.3.pre">
240 <xsl:copy>
241 <xsl:apply-templates select="@*|node()[../..]" mode="v1.3.pre"/>
242 </xsl:copy>
243</xsl:template>
244
245<!--
246 * Global settings
247-->
248
249<!--
250 * Machine settings
251-->
252
253<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.2']/
254 vb:Machine//vb:USBController"
255 mode="v1.3.pre">
256 <xsl:copy>
257 <xsl:apply-templates select="@*|node()" mode="v1.3.pre"/>
258 </xsl:copy>
259 <SATAController enabled="false"/>
260</xsl:template>
261
262<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.2']/
263 vb:Machine//vb:HardDiskAttachments/vb:HardDiskAttachment"
264 mode="v1.3.pre">
265 <HardDiskAttachment>
266 <xsl:attribute name="hardDisk"><xsl:value-of select="@hardDisk"/></xsl:attribute>
267 <xsl:attribute name="bus">
268 <xsl:choose>
269 <xsl:when test="@bus='ide0'">
270 <xsl:text>IDE</xsl:text>
271 </xsl:when>
272 <xsl:when test="@bus='ide1'">
273 <xsl:text>IDE</xsl:text>
274 </xsl:when>
275 <xsl:otherwise>
276 <xsl:message terminate="yes">
277Value '<xsl:value-of select="@bus"/>' of 'HardDiskAttachment::bus' attribute is invalid.
278 </xsl:message>
279 </xsl:otherwise>
280 </xsl:choose>
281 </xsl:attribute>
282 <xsl:attribute name="channel">0</xsl:attribute>
283 <xsl:attribute name="device">
284 <xsl:choose>
285 <xsl:when test="@device='master'">
286 <xsl:text>0</xsl:text>
287 </xsl:when>
288 <xsl:when test="@device='slave'">
289 <xsl:text>1</xsl:text>
290 </xsl:when>
291 <xsl:otherwise>
292 <xsl:message terminate="yes">
293Value '<xsl:value-of select="@device"/>' of 'HardDiskAttachment::device' attribute is invalid.
294 </xsl:message>
295 </xsl:otherwise>
296 </xsl:choose>
297 </xsl:attribute>
298 </HardDiskAttachment>
299</xsl:template>
300
301<!--
302 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
303 * 1.3.pre => 1.3
304 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
305-->
306
307<!--
308 * all non-root elements that are not explicitly matched are copied as is
309-->
310<xsl:template match="@*|node()[../..]" mode="v1.3">
311 <xsl:copy>
312 <xsl:apply-templates select="@*|node()[../..]" mode="v1.3"/>
313 </xsl:copy>
314</xsl:template>
315
316<!--
317 * Global settings
318-->
319
320<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.3.pre']/
321 vb:Global//vb:SystemProperties"
322 mode="v1.3">
323 <xsl:copy>
324 <xsl:apply-templates select="@*[not(name()='defaultSavedStateFolder')]|node()" mode="v1.3"/>
325 </xsl:copy>
326</xsl:template>
327
328<!--
329 * Machine settings
330-->
331
332<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.3.pre']/
333 vb:Machine//vb:AudioAdapter"
334 mode="v1.3">
335 <xsl:if test="not(../vb:Uart)">
336 <UART/>
337 </xsl:if>
338 <xsl:if test="not(../vb:Lpt)">
339 <LPT/>
340 </xsl:if>
341 <xsl:copy>
342 <xsl:apply-templates select="@*[not(name()='driver')]|node()" mode="v1.3"/>
343 <xsl:attribute name="driver">
344 <xsl:choose>
345 <xsl:when test="@driver='null'">Null</xsl:when>
346 <xsl:when test="@driver='oss'">OSS</xsl:when>
347 <xsl:when test="@driver='alsa'">ALSA</xsl:when>
348 <xsl:when test="@driver='pulse'">Pulse</xsl:when>
349 <xsl:when test="@driver='coreaudio'">CoreAudio</xsl:when>
350 <xsl:when test="@driver='winmm'">WinMM</xsl:when>
351 <xsl:when test="@driver='dsound'">DirectSound</xsl:when>
352 <xsl:when test="@driver='solaudio'">SolAudio</xsl:when>
353 <xsl:when test="@driver='mmpm'">MMPM</xsl:when>
354 <xsl:otherwise>
355 <xsl:message terminate="yes">
356Value '<xsl:value-of select="@driver"/>' of 'AudioAdapter::driver' attribute is invalid.
357 </xsl:message>
358 </xsl:otherwise>
359 </xsl:choose>
360 </xsl:attribute>
361 </xsl:copy>
362 <xsl:if test="not(../vb:SharedFolders)">
363 <SharedFolders/>
364 </xsl:if>
365 <xsl:if test="not(../vb:Clipboard)">
366 <Clipboard mode="Disabled"/>
367 </xsl:if>
368 <xsl:if test="not(../vb:Guest)">
369 <Guest/>
370 </xsl:if>
371</xsl:template>
372
373<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.3.pre']/
374 vb:Machine//vb:RemoteDisplay"
375 mode="v1.3">
376 <xsl:copy>
377 <xsl:apply-templates select="@*[not(name()='authType')]|node()" mode="v1.3"/>
378 <xsl:attribute name="authType">
379 <xsl:choose>
380 <xsl:when test="@authType='null'">Null</xsl:when>
381 <xsl:when test="@authType='guest'">Guest</xsl:when>
382 <xsl:when test="@authType='external'">External</xsl:when>
383 <xsl:otherwise>
384 <xsl:message terminate="yes">
385Value '<xsl:value-of select="@authType"/>' of 'RemoteDisplay::authType' attribute is invalid.
386 </xsl:message>
387 </xsl:otherwise>
388 </xsl:choose>
389 </xsl:attribute>
390 </xsl:copy>
391</xsl:template>
392
393<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.3.pre']/
394 vb:Machine//vb:BIOS/vb:BootMenu"
395 mode="v1.3">
396 <xsl:copy>
397 <xsl:apply-templates select="@*[not(name()='mode')]|node()" mode="v1.3"/>
398 <xsl:attribute name="mode">
399 <xsl:choose>
400 <xsl:when test="@mode='disabled'">Disabled</xsl:when>
401 <xsl:when test="@mode='menuonly'">MenuOnly</xsl:when>
402 <xsl:when test="@mode='messageandmenu'">MessageAndMenu</xsl:when>
403 <xsl:otherwise>
404 <xsl:message terminate="yes">
405Value '<xsl:value-of select="@mode"/>' of 'BootMenu::mode' attribute is invalid.
406 </xsl:message>
407 </xsl:otherwise>
408 </xsl:choose>
409 </xsl:attribute>
410 </xsl:copy>
411</xsl:template>
412
413<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.3.pre']/
414 vb:Machine//vb:USBController/vb:DeviceFilter |
415 vb:VirtualBox[substring-before(@version,'-')='1.3.pre']/
416 vb:Global/vb:USBDeviceFilters/vb:DeviceFilter"
417 mode="v1.3">
418 <xsl:copy>
419 <xsl:apply-templates select="node()" mode="v1.3"/>
420 <xsl:for-each select="@*">
421 <xsl:choose>
422 <xsl:when test="name()='vendorid'">
423 <xsl:attribute name="vendorId"><xsl:value-of select="."/></xsl:attribute>
424 </xsl:when>
425 <xsl:when test="name()='productid'">
426 <xsl:attribute name="productId"><xsl:value-of select="."/></xsl:attribute>
427 </xsl:when>
428 <xsl:when test="name()='serialnumber'">
429 <xsl:attribute name="serialNumber"><xsl:value-of select="."/></xsl:attribute>
430 </xsl:when>
431 <xsl:otherwise>
432 <xsl:apply-templates select="." mode="v1.3"/>
433 </xsl:otherwise>
434 </xsl:choose>
435 </xsl:for-each>
436 </xsl:copy>
437</xsl:template>
438
439<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.3.pre']/
440 vb:Machine//vb:Guest"
441 mode="v1.3">
442 <xsl:copy>
443 <xsl:apply-templates select="node()" mode="v1.3"/>
444 <xsl:for-each select="@*">
445 <xsl:choose>
446 <xsl:when test="name()='MemoryBalloonSize'">
447 <xsl:attribute name="memoryBalloonSize"><xsl:value-of select="."/></xsl:attribute>
448 </xsl:when>
449 <xsl:when test="name()='StatisticsUpdateInterval'">
450 <xsl:attribute name="statisticsUpdateInterval"><xsl:value-of select="."/></xsl:attribute>
451 </xsl:when>
452 <xsl:otherwise>
453 <xsl:apply-templates select="node()" mode="v1.3"/>
454 </xsl:otherwise>
455 </xsl:choose>
456 </xsl:for-each>
457 </xsl:copy>
458</xsl:template>
459
460<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.3.pre']/
461 vb:Machine//vb:Uart"
462 mode="v1.3">
463 <UART>
464 <xsl:apply-templates select="@*|node()" mode="v1.3"/>
465 </UART>
466</xsl:template>
467
468<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.3.pre']/
469 vb:Machine//vb:Lpt"
470 mode="v1.3">
471 <LPT>
472 <xsl:apply-templates select="@*|node()" mode="v1.3"/>
473 </LPT>
474</xsl:template>
475
476<!--
477 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
478 * 1.3 => 1.4
479 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
480-->
481
482<!--
483 * all non-root elements that are not explicitly matched are copied as is
484-->
485<xsl:template match="@*|node()[../..]" mode="v1.4">
486 <xsl:copy>
487 <xsl:apply-templates select="@*|node()[../..]" mode="v1.4"/>
488 </xsl:copy>
489</xsl:template>
490
491<!--
492 * Global settings
493-->
494
495<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.3']/
496 vb:Global/vb:DiskRegistry/vb:HardDisks/vb:HardDisk |
497 vb:VirtualBox[substring-before(@version,'-')='1.3']/
498 vb:Global/vb:DiskRegistry/vb:HardDisks//vb:DiffHardDisk"
499 mode="v1.4-HardDisk-format-location">
500 <xsl:attribute name="format">
501 <xsl:choose>
502 <xsl:when test="*[self::vb:VirtualDiskImage][1]">VDI</xsl:when>
503 <xsl:when test="*[self::vb:VMDKImage][1]">VMDK</xsl:when>
504 <xsl:when test="*[self::vb:VHDImage][1]">VHD</xsl:when>
505 <xsl:when test="*[self::vb:ISCSIHardDisk][1]">iSCSI</xsl:when>
506 <xsl:when test="*[self::vb:CustomHardDisk][1]">
507 <xsl:value-of select="@format"/>
508 </xsl:when>
509 <xsl:otherwise>
510 <xsl:message terminate="yes">
511Sub-element '<xsl:value-of select="name(*[1])"/>' of 'HardDisk' element is invalid.
512 </xsl:message>
513 </xsl:otherwise>
514 </xsl:choose>
515 </xsl:attribute>
516 <xsl:attribute name="location">
517 <xsl:choose>
518 <xsl:when test="*[self::vb:VirtualDiskImage][1]">
519 <xsl:value-of select="vb:VirtualDiskImage/@filePath"/>
520 </xsl:when>
521 <xsl:when test="*[self::vb:VMDKImage][1]">
522 <xsl:value-of select="vb:VMDKImage/@filePath"/>
523 </xsl:when>
524 <xsl:when test="*[self::vb:VHDImage][1]">
525 <xsl:value-of select="vb:VHDImage/@filePath"/>
526 </xsl:when>
527 <xsl:when test="*[self::vb:CustomHardDisk][1]">
528 <xsl:value-of select="vb:CustomHardDisk/@location"/>
529 </xsl:when>
530 <xsl:when test="*[self::vb:ISCSIHardDisk][1]">
531 <xsl:text>iscsi://</xsl:text>
532 <xsl:if test="vb:ISCSIHardDisk/@userName">
533 <xsl:value-of select="vb:ISCSIHardDisk/@userName"/>
534 <!-- note that for privacy reasons we don't show the password in the
535 location string -->
536 <xsl:text>@</xsl:text>
537 </xsl:if>
538 <xsl:if test="vb:ISCSIHardDisk/@server">
539 <xsl:value-of select="vb:ISCSIHardDisk/@server"/>
540 <xsl:if test="vb:ISCSIHardDisk/@port">
541 <xsl:value-of select="concat(':',vb:ISCSIHardDisk/@port)"/>
542 </xsl:if>
543 </xsl:if>
544 <xsl:if test="vb:ISCSIHardDisk/@target">
545 <xsl:value-of select="concat('/',vb:ISCSIHardDisk/@target)"/>
546 </xsl:if>
547 <xsl:if test="vb:ISCSIHardDisk/@lun">
548 <xsl:value-of select="concat('/enc',vb:ISCSIHardDisk/@lun)"/>
549 </xsl:if>
550 <xsl:if test="not(vb:ISCSIHardDisk/@server) or not(vb:ISCSIHardDisk/@target)">
551 <xsl:message terminate="yes">
552Required attribute 'server' or 'target' is missing from ISCSIHardDisk element!
553 </xsl:message>
554 </xsl:if>
555 </xsl:when>
556 </xsl:choose>
557 </xsl:attribute>
558 <xsl:if test="*[self::vb:ISCSIHardDisk][1]">
559 <xsl:choose>
560 <xsl:when test="vb:ISCSIHardDisk/@server and vb:ISCSIHardDisk/@port">
561 <xsl:element name="Property">
562 <xsl:attribute name="name">TargetAddress</xsl:attribute>
563 <xsl:attribute name="value">
564 <xsl:value-of select="concat(vb:ISCSIHardDisk/@server,
565 ':',vb:ISCSIHardDisk/@port)"/>
566 </xsl:attribute>
567 </xsl:element>
568 </xsl:when>
569 <xsl:when test="vb:ISCSIHardDisk/@server">
570 <xsl:element name="Property">
571 <xsl:attribute name="name">TargetAddress</xsl:attribute>
572 <xsl:attribute name="value">
573 <xsl:value-of select="vb:ISCSIHardDisk/@server"/>
574 </xsl:attribute>
575 </xsl:element>
576 </xsl:when>
577 </xsl:choose>
578 <xsl:if test="vb:ISCSIHardDisk/@target">
579 <xsl:element name="Property">
580 <xsl:attribute name="name">TargetName</xsl:attribute>
581 <xsl:attribute name="value">
582 <xsl:value-of select="vb:ISCSIHardDisk/@target"/>
583 </xsl:attribute>
584 </xsl:element>
585 </xsl:if>
586 <xsl:if test="vb:ISCSIHardDisk/@userName">
587 <xsl:element name="Property">
588 <xsl:attribute name="name">InitiatorUsername</xsl:attribute>
589 <xsl:attribute name="value">
590 <xsl:value-of select="vb:ISCSIHardDisk/@userName"/>
591 </xsl:attribute>
592 </xsl:element>
593 </xsl:if>
594 <xsl:if test="vb:ISCSIHardDisk/@password">
595 <xsl:element name="Property">
596 <xsl:attribute name="name">InitiatorSecret</xsl:attribute>
597 <xsl:attribute name="value">
598 <xsl:value-of select="vb:ISCSIHardDisk/@password"/>
599 </xsl:attribute>
600 </xsl:element>
601 </xsl:if>
602 <xsl:if test="vb:ISCSIHardDisk/@lun">
603 <xsl:element name="Property">
604 <xsl:attribute name="name">LUN</xsl:attribute>
605 <xsl:attribute name="value">
606 <xsl:value-of select="concat('enc',vb:ISCSIHardDisk/@lun)"/>
607 </xsl:attribute>
608 </xsl:element>
609 </xsl:if>
610 </xsl:if>
611</xsl:template>
612
613<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.3']/
614 vb:Global/vb:DiskRegistry/vb:HardDisks/vb:HardDisk"
615 mode="v1.4">
616 <HardDisk>
617 <xsl:attribute name="uuid"><xsl:value-of select="@uuid"/></xsl:attribute>
618 <xsl:attribute name="type">
619 <xsl:choose>
620 <xsl:when test="@type='normal'">Normal</xsl:when>
621 <xsl:when test="@type='immutable'">Immutable</xsl:when>
622 <xsl:when test="@type='writethrough'">Writethrough</xsl:when>
623 <xsl:otherwise>
624 <xsl:message terminate="yes">
625Value '<xsl:value-of select="@type"/>' of 'HardDisk::type' attribute is invalid.
626 </xsl:message>
627 </xsl:otherwise>
628 </xsl:choose>
629 </xsl:attribute>
630 <xsl:apply-templates select="." mode="v1.4-HardDisk-format-location"/>
631 <xsl:apply-templates select="vb:DiffHardDisk" mode="v1.4"/>
632 </HardDisk>
633</xsl:template>
634
635<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.3']/
636 vb:Global/vb:DiskRegistry/vb:HardDisks/vb:HardDisk//
637 vb:DiffHardDisk"
638 mode="v1.4">
639 <HardDisk>
640 <xsl:attribute name="uuid"><xsl:value-of select="@uuid"/></xsl:attribute>
641 <xsl:apply-templates select="." mode="v1.4-HardDisk-format-location"/>
642 <xsl:apply-templates select="vb:DiffHardDisk" mode="v1.4"/>
643 </HardDisk>
644</xsl:template>
645
646<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.3']/
647 vb:Global/vb:DiskRegistry/vb:DVDImages/vb:Image |
648 vb:VirtualBox[substring-before(@version,'-')='1.3']/
649 vb:Global/vb:DiskRegistry/vb:FloppyImages/vb:Image"
650 mode="v1.4">
651 <Image>
652 <xsl:attribute name="uuid"><xsl:value-of select="@uuid"/></xsl:attribute>
653 <xsl:attribute name="location"><xsl:value-of select="@src"/></xsl:attribute>
654 </Image>
655</xsl:template>
656
657<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.3']/
658 vb:Global/vb:DiskRegistry"
659 mode="v1.4">
660 <MediaRegistry>
661 <HardDisks>
662 <xsl:apply-templates select="vb:HardDisks/vb:HardDisk" mode="v1.4"/>
663 </HardDisks>
664 <DVDImages>
665 <xsl:apply-templates select="vb:DVDImages/vb:Image" mode="v1.4"/>
666 </DVDImages>
667 <FloppyImages>
668 <xsl:apply-templates select="vb:FloppyImages/vb:Image" mode="v1.4"/>
669 </FloppyImages>
670 </MediaRegistry>
671</xsl:template>
672
673<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.3']/
674 vb:Global/vb:SystemProperties"
675 mode="v1.4">
676 <SystemProperties>
677 <xsl:apply-templates select="@*[not(name()='defaultVDIFolder')]|node()" mode="v1.4"/>
678 <!-- use the @defaultVDIFolder value for @defaultHardDiskFolder only when it
679 differs from the default (VDI) and otherwise simply delete it to let
680 VBoxSVC set the correct new default value -->
681 <xsl:if test="@defaultVDIFolder and not(translate(@defaultVDIFolder,'vdi','VDI')='VDI')">
682 <xsl:attribute name="defaultHardDiskFolder">
683 <xsl:value-of select="@defaultVDIFolder"/>
684 </xsl:attribute>
685 </xsl:if>
686 </SystemProperties>
687</xsl:template>
688
689<!--
690 * Machine settings
691-->
692
693 <xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.3']/
694 vb:Machine/vb:Hardware"
695 mode="v1.4">
696 <!-- add version attribute to Hardware if parent Machine has a stateFile attribute -->
697 <xsl:copy>
698 <xsl:if test="../@stateFile">
699 <xsl:attribute name="version">1</xsl:attribute>
700 </xsl:if>
701 <xsl:apply-templates select="node()" mode="v1.4"/>
702 </xsl:copy>
703</xsl:template>
704
705
706<!--
707 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
708 * 1.4 => 1.5
709 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
710-->
711
712<!--
713 * all non-root elements that are not explicitly matched are copied as is
714-->
715<xsl:template match="@*|node()[../..]" mode="v1.5">
716 <xsl:copy>
717 <xsl:apply-templates select="@*|node()[../..]" mode="v1.5"/>
718 </xsl:copy>
719</xsl:template>
720
721<!--
722 * Global settings
723-->
724
725<!--
726 * Machine settings
727-->
728
729<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.4']/
730 vb:Machine"
731 mode="v1.5">
732 <xsl:copy>
733 <xsl:attribute name="OSType">
734 <xsl:choose>
735 <xsl:when test="@OSType='unknown'">Other</xsl:when>
736 <xsl:when test="@OSType='dos'">DOS</xsl:when>
737 <xsl:when test="@OSType='win31'">Windows31</xsl:when>
738 <xsl:when test="@OSType='win95'">Windows95</xsl:when>
739 <xsl:when test="@OSType='win98'">Windows98</xsl:when>
740 <xsl:when test="@OSType='winme'">WindowsMe</xsl:when>
741 <xsl:when test="@OSType='winnt4'">WindowsNT4</xsl:when>
742 <xsl:when test="@OSType='win2k'">Windows2000</xsl:when>
743 <xsl:when test="@OSType='winxp'">WindowsXP</xsl:when>
744 <xsl:when test="@OSType='win2k3'">Windows2003</xsl:when>
745 <xsl:when test="@OSType='winvista'">WindowsVista</xsl:when>
746 <xsl:when test="@OSType='win2k8'">Windows2008</xsl:when>
747 <xsl:when test="@OSType='os2warp3'">OS2Warp3</xsl:when>
748 <xsl:when test="@OSType='os2warp4'">OS2Warp4</xsl:when>
749 <xsl:when test="@OSType='os2warp45'">OS2Warp45</xsl:when>
750 <xsl:when test="@OSType='ecs'">OS2eCS</xsl:when>
751 <xsl:when test="@OSType='linux22'">Linux22</xsl:when>
752 <xsl:when test="@OSType='linux24'">Linux24</xsl:when>
753 <xsl:when test="@OSType='linux26'">Linux26</xsl:when>
754 <xsl:when test="@OSType='archlinux'">ArchLinux</xsl:when>
755 <xsl:when test="@OSType='debian'">Debian</xsl:when>
756 <xsl:when test="@OSType='opensuse'">OpenSUSE</xsl:when>
757 <xsl:when test="@OSType='fedoracore'">Fedora</xsl:when>
758 <xsl:when test="@OSType='gentoo'">Gentoo</xsl:when>
759 <xsl:when test="@OSType='mandriva'">Mandriva</xsl:when>
760 <xsl:when test="@OSType='redhat'">RedHat</xsl:when>
761 <xsl:when test="@OSType='ubuntu'">Ubuntu</xsl:when>
762 <xsl:when test="@OSType='xandros'">Xandros</xsl:when>
763 <xsl:when test="@OSType='freebsd'">FreeBSD</xsl:when>
764 <xsl:when test="@OSType='openbsd'">OpenBSD</xsl:when>
765 <xsl:when test="@OSType='netbsd'">NetBSD</xsl:when>
766 <xsl:when test="@OSType='netware'">Netware</xsl:when>
767 <xsl:when test="@OSType='solaris'">Solaris</xsl:when>
768 <xsl:when test="@OSType='opensolaris'">OpenSolaris</xsl:when>
769 <xsl:when test="@OSType='l4'">L4</xsl:when>
770 </xsl:choose>
771 </xsl:attribute>
772 <xsl:apply-templates select="@*[name()!='OSType']" mode="v1.5"/>
773 <xsl:apply-templates select="node()" mode="v1.5"/>
774 </xsl:copy>
775</xsl:template>
776
777<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.4']/
778 vb:Machine//vb:Hardware/vb:Display"
779 mode="v1.5">
780 <xsl:copy>
781 <xsl:apply-templates select="node()" mode="v1.5"/>
782 <xsl:for-each select="@*">
783 <xsl:choose>
784 <xsl:when test="name()='MonitorCount'">
785 <xsl:attribute name="monitorCount"><xsl:value-of select="."/></xsl:attribute>
786 </xsl:when>
787 <xsl:when test="name()='Accelerate3D'">
788 <xsl:attribute name="accelerate3D"><xsl:value-of select="."/></xsl:attribute>
789 </xsl:when>
790 <xsl:otherwise>
791 <xsl:apply-templates select="." mode="v1.5"/>
792 </xsl:otherwise>
793 </xsl:choose>
794 </xsl:for-each>
795 </xsl:copy>
796</xsl:template>
797
798<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.4']/
799 vb:Machine//vb:Hardware/vb:CPU"
800 mode="v1.5">
801 <xsl:copy>
802 <xsl:if test="vb:CPUCount/@count">
803 <xsl:attribute name="count"><xsl:value-of select="vb:CPUCount/@count"/></xsl:attribute>
804 </xsl:if>
805 <xsl:apply-templates select="@*" mode="v1.5"/>
806 <xsl:apply-templates select="node()[not(self::vb:CPUCount)]" mode="v1.5"/>
807 </xsl:copy>
808</xsl:template>
809
810
811<!--
812 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
813 * 1.5 => 1.6
814 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
815-->
816
817
818<!--
819 * all non-root elements that are not explicitly matched are copied as is
820-->
821<xsl:template match="@*|node()[../..]" mode="v1.6">
822 <xsl:copy>
823 <xsl:apply-templates select="@*|node()[../..]" mode="v1.6"/>
824 </xsl:copy>
825</xsl:template>
826
827<!--
828 * Global settings
829-->
830
831<!--
832 * Machine settings
833-->
834
835<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.5' and
836 not(substring-after(@version,'-')='windows')]/
837 vb:Machine//vb:Hardware/vb:Network/vb:Adapter/
838 vb:HostInterface[@TAPSetup or @TAPTerminate]"
839 mode="v1.6">
840 <!-- just remove the node -->
841</xsl:template>
842
843
844<!--
845 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
846 * 1.6 => 1.7
847 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
848-->
849<!--
850 * all non-root elements that are not explicitly matched are copied as is
851-->
852<xsl:template match="@*|node()[../..]" mode="v1.7">
853 <xsl:copy>
854 <xsl:apply-templates select="@*|node()[../..]" mode="v1.7"/>
855 </xsl:copy>
856</xsl:template>
857
858<!--
859 * Global settings
860-->
861<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.6']/
862 vb:Global"
863 mode="v1.7" >
864 <xsl:copy>
865 <xsl:apply-templates mode="v1.7" />
866 <NetserviceRegistry>
867 <DHCPServers>
868 <xsl:choose>
869 <xsl:when test="substring-after(../@version,'-')='windows'">
870 <DHCPServer networkName="HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter"
871 IPAddress="192.168.56.100" networkMask="255.255.255.0"
872 lowerIP="192.168.56.101" upperIP="192.168.56.254"
873 enabled="1"/>
874 </xsl:when>
875 <xsl:otherwise>
876 <DHCPServer networkName="HostInterfaceNetworking-vboxnet0"
877 IPAddress="192.168.56.2" networkMask="255.255.255.0"
878 lowerIP="192.168.56.3" upperIP="192.168.56.255"
879 enabled="1"/>
880 </xsl:otherwise>
881 </xsl:choose>
882 </DHCPServers>
883 </NetserviceRegistry>
884 </xsl:copy>
885</xsl:template>
886
887<!--
888 * Machine settings
889-->
890<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.6']/
891 vb:Machine/vb:Snapshots"
892 mode="v1.7">
893 <xsl:for-each select="vb:Snapshot">
894 <xsl:apply-templates select="." mode="v1.7"/>
895 </xsl:for-each>
896</xsl:template>
897
898<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.6']/
899 vb:Machine/vb:HardDiskAttachments |
900 vb:VirtualBox[substring-before(@version,'-')='1.6']/
901 vb:Machine/vb:Snapshot/vb:HardDiskAttachments |
902 vb:VirtualBox[substring-before(@version,'-')='1.6']/
903 vb:Machine/vb:Snapshot/vb:Snapshots//vb:Snapshot/vb:HardDiskAttachments"
904 mode="v1.7">
905 <StorageControllers>
906 <StorageController name="IDE Controller">
907 <xsl:choose>
908 <xsl:when test="not(../vb:Hardware/vb:BIOS/vb:IDEController)">
909 <xsl:attribute name="type">PIIX3</xsl:attribute>
910 </xsl:when>
911 <xsl:otherwise>
912 <xsl:attribute name="type"><xsl:value-of select="../vb:Hardware/vb:BIOS/vb:IDEController/@type"/></xsl:attribute>
913 </xsl:otherwise>
914 </xsl:choose>
915 <xsl:attribute name="PortCount">2</xsl:attribute>
916 <xsl:for-each select="./vb:HardDiskAttachment[@bus = 'IDE']">
917 <xsl:apply-templates select="." mode="v1.7-attached-device"/>
918 </xsl:for-each>
919 </StorageController>
920 <xsl:if test="../vb:Hardware/vb:SATAController/@enabled='true'">
921 <StorageController name="SATA">
922 <xsl:attribute name="type">AHCI</xsl:attribute>
923 <xsl:attribute name="PortCount">
924 <xsl:value-of select="../vb:Hardware/vb:SATAController/@PortCount"/>
925 </xsl:attribute>
926 <xsl:attribute name="IDE0MasterEmulationPort">
927 <xsl:value-of select="../vb:Hardware/vb:SATAController/@IDE0MasterEmulationPort"/>
928 </xsl:attribute>
929 <xsl:attribute name="IDE0SlaveEmulationPort">
930 <xsl:value-of select="../vb:Hardware/vb:SATAController/@IDE0SlaveEmulationPort"/>
931 </xsl:attribute>
932 <xsl:attribute name="IDE1MasterEmulationPort">
933 <xsl:value-of select="../vb:Hardware/vb:SATAController/@IDE1MasterEmulationPort"/>
934 </xsl:attribute>
935 <xsl:attribute name="IDE1SlaveEmulationPort">
936 <xsl:value-of select="../vb:Hardware/vb:SATAController/@IDE1SlaveEmulationPort"/>
937 </xsl:attribute>
938 <xsl:for-each select="./vb:HardDiskAttachment[@bus = 'SATA']">
939 <xsl:apply-templates select="." mode="v1.7-attached-device"/>
940 </xsl:for-each>
941 </StorageController>
942 </xsl:if>
943 </StorageControllers>
944</xsl:template>
945
946<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.6']/
947 vb:Machine/vb:HardDiskAttachments/vb:HardDiskAttachment |
948 vb:VirtualBox[substring-before(@version,'-')='1.6']/
949 vb:Machine/vb:Snapshot/vb:HardDiskAttachments/vb:HardDiskAttachment |
950 vb:VirtualBox[substring-before(@version,'-')='1.6']/
951 vb:Machine/vb:Snapshot/vb:Snapshots//vb:Snapshot/vb:HardDiskAttachments/
952 vb:HardDiskAttachment"
953 mode="v1.7-attached-device">
954 <AttachedDevice>
955 <xsl:attribute name="type">HardDisk</xsl:attribute>
956 <xsl:attribute name="port"><xsl:value-of select="@channel"/></xsl:attribute>
957 <xsl:attribute name="device"><xsl:value-of select="@device"/></xsl:attribute>
958 <xsl:element name="Image">
959 <xsl:attribute name="uuid"><xsl:value-of select="@hardDisk"/></xsl:attribute>
960 </xsl:element>
961 </AttachedDevice>
962</xsl:template>
963
964<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.6']/
965 vb:Machine//vb:Hardware/vb:BIOS/vb:IDEController |
966 vb:VirtualBox[substring-before(@version,'-')='1.6']/
967 vb:Machine//vb:Snapshot/vb:Hardware/vb:BIOS/vb:IDEController |
968 vb:VirtualBox[substring-before(@version,'-')='1.6']/
969 vb:Machine/vb:Snapshot/vb:Snapshots//vb:Snapshot/vb:Hardware/vb:BIOS/vb:IDEController"
970 mode="v1.7">
971 <!-- just remove the node -->
972</xsl:template>
973
974<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.6']/
975 vb:Machine/vb:Hardware/vb:SATAController |
976 vb:VirtualBox[substring-before(@version,'-')='1.6']/
977 vb:Machine/vb:Snapshot/vb:Hardware/vb:SATAController |
978 vb:VirtualBox[substring-before(@version,'-')='1.6']/
979 vb:Machine/vb:Snapshot/vb:Snapshots//vb:Snapshot/vb:Hardware/vb:SATAController"
980 mode="v1.7">
981 <!-- just remove the node -->
982</xsl:template>
983
984<!--
985 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
986 * 1.7 => 1.8
987 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
988-->
989<!--
990 * all non-root elements that are not explicitly matched are copied as is
991-->
992<xsl:template match="@*|node()[../..]" mode="v1.8">
993 <xsl:copy>
994 <xsl:apply-templates select="@*|node()[../..]" mode="v1.8"/>
995 </xsl:copy>
996</xsl:template>
997
998<!--
999 * Global settings
1000-->
1001
1002<!--
1003 * Machine settings
1004-->
1005
1006<!--xsl:template match="vb:VirtualBox[substring-before(@version,'-')='1.7']/
1007 vb:Machine//vb:Hardware/vb:Display"
1008 mode="v1.8">
1009 <xsl:copy>
1010 <xsl:apply-templates select="node()" mode="v1.8"/>
1011 <xsl:for-each select="@*">
1012 <xsl:choose>
1013 <xsl:when test="name()='Accelerate2DVideo'">
1014 <xsl:attribute name="accelerate2DVideo"><xsl:value-of select="."/></xsl:attribute>
1015 </xsl:when>
1016 <xsl:otherwise>
1017 <xsl:apply-templates select="." mode="v1.8"/>
1018 </xsl:otherwise>
1019 </xsl:choose>
1020 </xsl:for-each>
1021 </xsl:copy>
1022</xsl:template-->
1023
1024<!--
1025 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1026-->
1027
1028
1029<!-- @todo add lastStateChange with the current timestamp if missing.
1030 * current-dateTime() is available only in XPath 2.0 so we will need to pass
1031 * the current time as a parameter to the XSLT processor. -->
1032<!--
1033<xsl:template match="vb:VirtualBox[substring-before(@version,'-')='Xo.Yo']/
1034 vb:Machine"
1035 mode="X.Y">
1036 <xsl:copy>
1037 <xsl:if test="not(@lastStateChange)">
1038 <xsl:attribute name="lastStateChange">
1039 <xsl:value-of select="current-dateTime()"/>
1040 </xsl:attribute>
1041 </xsl:if>
1042 <xsl:apply-templates select="@*|node()" mode="vX.Y"/>
1043 </xsl:copy>
1044</xsl:template>
1045-->
1046
1047</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use