VirtualBox

source: vbox/trunk/src/VBox/Main/VirtualBoxImplExtra.cpp@ 7442

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

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

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Revision Author Id
File size: 6.0 KB
Line 
1/** @file
2 *
3 * VirtualBox COM class implementation extra definitions
4 *
5 * This file pulls in generated entities that may be rather big but rarely
6 * changed. Separating them from VirtualBoxImpl.cpp should speed up
7 * compilation a bit.
8 */
9
10/*
11 * Copyright (C) 2006-2007 innotek GmbH
12 *
13 * This file is part of VirtualBox Open Source Edition (OSE), as
14 * available from http://www.virtualbox.org. This file is free software;
15 * you can redistribute it and/or modify it under the terms of the GNU
16 * General Public License as published by the Free Software Foundation,
17 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
18 * distribution. VirtualBox OSE is distributed in the hope that it will
19 * be useful, but WITHOUT ANY WARRANTY of any kind.
20 */
21
22#include "VirtualBoxImpl.h"
23
24#include "VirtualBoxXMLUtil.h"
25
26/* embedded XML Schema documents for validating XML settings files */
27#include "xml_VirtualBox_settings_xsd.h"
28#include "xml_VirtualBox_settings_common_xsd.h"
29
30/* embedded settings converter template for updating settings files */
31#include "xml_SettingsConverter_xsl.h"
32
33static const unsigned char g_ab_xml_VirtualBox_settings_root_xsd[] =
34"<xsd:schema"
35" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\""
36" xmlns=\"http://www.innotek.de/VirtualBox-settings\""
37" xmlns:vb=\"http://www.innotek.de/VirtualBox-settings\""
38" targetNamespace=\"http://www.innotek.de/VirtualBox-settings\""
39" elementFormDefault=\"qualified\""
40">"
41"<xsd:element name=\"VirtualBox\">"
42" <xsd:complexType>"
43" <xsd:complexContent>"
44" <xsd:extension base=\"TVirtualBox\">"
45" <xsd:attribute name=\"version\" type=\"xsd:token\" fixed=\"" VBOX_XML_VERSION_FULL "\" use=\"required\"/>"
46" </xsd:extension>"
47" </xsd:complexContent>"
48" </xsd:complexType>"
49"</xsd:element>"
50"</xsd:schema>";
51
52static const unsigned g_cb_xml_VirtualBox_settings_root_xsd =
53 sizeof (g_ab_xml_VirtualBox_settings_root_xsd);
54
55/**
56 * Resolves external entities while parting and validating XML settings files.
57 *
58 * @param aURI URI of the external entity.
59 * @param aID ID of the external entity (may be NULL).
60 *
61 * @return Input stream created using @c new or NULL to indicate
62 * a wrong URI/ID pair.
63 */
64settings::Input *
65VirtualBox::SettingsTreeHelper::resolveEntity (const char *aURI, const char *aID)
66{
67 if (strcmp (aURI, VBOX_XML_SCHEMA_COMMON) == 0)
68 {
69 return new settings::
70 MemoryBuf ((const char *) g_ab_xml_VirtualBox_settings_common_xsd,
71 g_cb_xml_VirtualBox_settings_common_xsd, aURI);
72 }
73
74 if (strcmp (aURI, VBOX_XML_SCHEMA_ROOT) == 0)
75 {
76 return new settings::
77 MemoryBuf ((const char *) g_ab_xml_VirtualBox_settings_root_xsd,
78 g_cb_xml_VirtualBox_settings_root_xsd, aURI);
79 }
80
81 if (strcmp (aURI, VBOX_XML_SCHEMA) == 0)
82 {
83 return new settings::
84 MemoryBuf ((const char *) g_ab_xml_VirtualBox_settings_xsd,
85 g_cb_xml_VirtualBox_settings_xsd, aURI);
86 }
87
88 if (strcmp (aURI, VBOX_XML_SETTINGS_CONVERTER) == 0)
89 {
90 return new settings::
91 MemoryBuf ((const char *) g_ab_xml_SettingsConverter_xsl,
92 g_cb_xml_SettingsConverter_xsl, aURI);
93 }
94
95 AssertMsgFailed (("Unexpected entity: '%s' - knows: '%s' and '%s'\n", aURI,
96 VBOX_XML_SCHEMA_COMMON, VBOX_XML_SCHEMA));
97 return NULL;
98}
99
100/**
101 * Returns @true if the given tree needs to be converted using the XSLT
102 * template identified by #templateUri(), or @false if no conversion is
103 * required.
104 *
105 * The implementation normally checks for the "version" value of the
106 * root key to determine if the conversion is necessary. When the
107 * @a aOldVersion argument is not NULL, the implementation must return a
108 * non-NULL non-empty string representing the old version (before
109 * conversion) in it this string is used by XmlTreeBackend::oldVersion()
110 * and must be non-NULL to indicate that the conversion has been
111 * performed on the tree. The returned string must be allocated using
112 * RTStrDup() or such.
113 *
114 * This method is called again after the successful transformation to
115 * let the implementation retry the version check and request another
116 * transformation if necessary. This may be used to perform multi-step
117 * conversion like this: 1.1 => 1.2, 1.2 => 1.3 (instead of 1.1 => 1.3)
118 * which saves from the need to update all previous conversion
119 * templates to make each of them convert directly to the recent
120 * version.
121 *
122 * @note Multi-step transformations are performed in a loop that exits
123 * only when this method returns @false. It's up to the
124 * implementation to detect cycling (repeated requests to convert
125 * from the same version) wrong version order, etc. and throw an
126 * EConversionCycle exception to break the loop without returning
127 * @false (which means the transformation succeeded).
128 *
129 * @param aRoot Root settings key.
130 * @param aOldVersionString Where to store old version string
131 * pointer. May be NULL.
132 */
133bool VirtualBox::SettingsTreeHelper::
134needsConversion (const settings::Key &aRoot, char **aOldVersion) const
135{
136 if (strcmp (aRoot.name(), "VirtualBox") == 0)
137 {
138 const char *version = aRoot.stringValue ("version");
139 const char *dash = strchr (version, '-');
140 if (dash != NULL && strcmp (dash + 1, VBOX_XML_PLATFORM) == 0)
141 {
142 if (strcmp (version, VBOX_XML_VERSION_FULL) != 0)
143 {
144 /* version mismatch */
145 if (aOldVersion != NULL)
146 *aOldVersion = RTStrDup (version);
147
148 return true;
149 }
150 }
151 }
152
153 /* either the tree is invalid, or it's the other platform, or it's the same
154 * version */
155 return false;
156}
157
158/**
159 * Returns the URI of the XSLT template to perform the conversion.
160 * This template will be applied to the tree if #needsConversion()
161 * returns @c true for this tree.
162 */
163const char *VirtualBox::SettingsTreeHelper::templateUri() const
164{
165 return VBOX_XML_SETTINGS_CONVERTER;
166}
167
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use