1 | /** @file
|
---|
2 | *
|
---|
3 | * VirtualBox XML utility class implementation
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #include "VirtualBoxXMLUtil.h"
|
---|
19 | #include "VirtualBoxXMLUtil_entities.h"
|
---|
20 | #include "VirtualBoxXMLUtil_common_entities.h"
|
---|
21 | #include "Logging.h"
|
---|
22 |
|
---|
23 | #include <VBox/err.h>
|
---|
24 |
|
---|
25 | #include <string.h>
|
---|
26 |
|
---|
27 | /**
|
---|
28 | * Callback to resolve external entities when parsing and validating
|
---|
29 | * VirtualBox settings files (see FNCFGLDRENTITYRESOLVER).
|
---|
30 | */
|
---|
31 | // static
|
---|
32 | DECLCALLBACK(int) VirtualBoxXMLUtil::cfgLdrEntityResolver (
|
---|
33 | const char *pcszPublicId,
|
---|
34 | const char *pcszSystemId,
|
---|
35 | const char *pcszBaseURI,
|
---|
36 | PCFGLDRENTITY pEntity)
|
---|
37 | {
|
---|
38 | Assert (pEntity);
|
---|
39 | if (!pEntity)
|
---|
40 | return VERR_INVALID_POINTER;
|
---|
41 |
|
---|
42 | #if 0
|
---|
43 | LogFlow (("VirtualBoxXMLUtil::cfgLdrEntityResolver():\n"
|
---|
44 | " publicId='%s', systemId='%s', baseURI='%s'\n",
|
---|
45 | pcszPublicId, pcszSystemId, pcszBaseURI));
|
---|
46 | #endif
|
---|
47 |
|
---|
48 | if (!strcmp (pcszSystemId, VBOX_XML_SCHEMA_COMMON))
|
---|
49 | {
|
---|
50 | pEntity->enmType = CFGLDRENTITYTYPE_MEMORY;
|
---|
51 | pEntity->u.memory.puchBuf = (unsigned char*)g_abVirtualBox_settings_common_xsd;
|
---|
52 | pEntity->u.memory.cbBuf = g_cbVirtualBox_settings_common_xsd;
|
---|
53 | pEntity->u.memory.bFree = false;
|
---|
54 | return VINF_SUCCESS;
|
---|
55 | }
|
---|
56 | else
|
---|
57 | if (!strcmp (pcszSystemId, VBOX_XML_SCHEMA))
|
---|
58 | {
|
---|
59 | pEntity->enmType = CFGLDRENTITYTYPE_MEMORY;
|
---|
60 | pEntity->u.memory.puchBuf = (unsigned char*)g_abVirtualBox_settings_xsd;
|
---|
61 | pEntity->u.memory.cbBuf = g_cbVirtualBox_settings_xsd;
|
---|
62 | pEntity->u.memory.bFree = false;
|
---|
63 | return VINF_SUCCESS;
|
---|
64 | }
|
---|
65 | else
|
---|
66 | {
|
---|
67 | AssertMsgFailed (("Unexpected entity: '%s' - knows: '%s' and '%s'\n", pcszSystemId, VBOX_XML_SCHEMA_COMMON, VBOX_XML_SCHEMA));
|
---|
68 | return VERR_GENERAL_FAILURE;
|
---|
69 | }
|
---|
70 |
|
---|
71 | return VINF_SUCCESS;
|
---|
72 | }
|
---|
73 |
|
---|
74 | // static
|
---|
75 | const char *VirtualBoxXMLUtil::XmlSchemaNS = VBOX_XML_NAMESPACE " " VBOX_XML_SCHEMA;
|
---|
76 |
|
---|