1 | /* $Id: ovfreader.h 36527 2011-04-04 13:16:09Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox Main - OVF reader declarations.
|
---|
4 | *
|
---|
5 | * Depends only on IPRT, including the RTCString and IPRT XML classes.
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Copyright (C) 2008-2010 Oracle Corporation
|
---|
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 |
|
---|
20 | #ifndef ____H_OVFREADER
|
---|
21 | #define ____H_OVFREADER
|
---|
22 |
|
---|
23 | #include "iprt/cpp/xml.h"
|
---|
24 | #include <map>
|
---|
25 |
|
---|
26 | namespace ovf
|
---|
27 | {
|
---|
28 |
|
---|
29 | ////////////////////////////////////////////////////////////////////////////////
|
---|
30 | //
|
---|
31 | // Enumerations
|
---|
32 | //
|
---|
33 | ////////////////////////////////////////////////////////////////////////////////
|
---|
34 |
|
---|
35 | enum CIMOSType_T
|
---|
36 | {
|
---|
37 | CIMOSType_CIMOS_Unknown = 0,
|
---|
38 | CIMOSType_CIMOS_Other = 1,
|
---|
39 | CIMOSType_CIMOS_MACOS = 2,
|
---|
40 | CIMOSType_CIMOS_ATTUNIX = 3,
|
---|
41 | CIMOSType_CIMOS_DGUX = 4,
|
---|
42 | CIMOSType_CIMOS_DECNT = 5,
|
---|
43 | CIMOSType_CIMOS_Tru64UNIX = 6,
|
---|
44 | CIMOSType_CIMOS_OpenVMS = 7,
|
---|
45 | CIMOSType_CIMOS_HPUX = 8,
|
---|
46 | CIMOSType_CIMOS_AIX = 9,
|
---|
47 | CIMOSType_CIMOS_MVS = 10,
|
---|
48 | CIMOSType_CIMOS_OS400 = 11,
|
---|
49 | CIMOSType_CIMOS_OS2 = 12,
|
---|
50 | CIMOSType_CIMOS_JavaVM = 13,
|
---|
51 | CIMOSType_CIMOS_MSDOS = 14,
|
---|
52 | CIMOSType_CIMOS_WIN3x = 15,
|
---|
53 | CIMOSType_CIMOS_WIN95 = 16,
|
---|
54 | CIMOSType_CIMOS_WIN98 = 17,
|
---|
55 | CIMOSType_CIMOS_WINNT = 18,
|
---|
56 | CIMOSType_CIMOS_WINCE = 19,
|
---|
57 | CIMOSType_CIMOS_NCR3000 = 20,
|
---|
58 | CIMOSType_CIMOS_NetWare = 21,
|
---|
59 | CIMOSType_CIMOS_OSF = 22,
|
---|
60 | CIMOSType_CIMOS_DCOS = 23,
|
---|
61 | CIMOSType_CIMOS_ReliantUNIX = 24,
|
---|
62 | CIMOSType_CIMOS_SCOUnixWare = 25,
|
---|
63 | CIMOSType_CIMOS_SCOOpenServer = 26,
|
---|
64 | CIMOSType_CIMOS_Sequent = 27,
|
---|
65 | CIMOSType_CIMOS_IRIX = 28,
|
---|
66 | CIMOSType_CIMOS_Solaris = 29,
|
---|
67 | CIMOSType_CIMOS_SunOS = 30,
|
---|
68 | CIMOSType_CIMOS_U6000 = 31,
|
---|
69 | CIMOSType_CIMOS_ASERIES = 32,
|
---|
70 | CIMOSType_CIMOS_HPNonStopOS = 33,
|
---|
71 | CIMOSType_CIMOS_HPNonStopOSS = 34,
|
---|
72 | CIMOSType_CIMOS_BS2000 = 35,
|
---|
73 | CIMOSType_CIMOS_LINUX = 36,
|
---|
74 | CIMOSType_CIMOS_Lynx = 37,
|
---|
75 | CIMOSType_CIMOS_XENIX = 38,
|
---|
76 | CIMOSType_CIMOS_VM = 39,
|
---|
77 | CIMOSType_CIMOS_InteractiveUNIX = 40,
|
---|
78 | CIMOSType_CIMOS_BSDUNIX = 41,
|
---|
79 | CIMOSType_CIMOS_FreeBSD = 42,
|
---|
80 | CIMOSType_CIMOS_NetBSD = 43,
|
---|
81 | CIMOSType_CIMOS_GNUHurd = 44,
|
---|
82 | CIMOSType_CIMOS_OS9 = 45,
|
---|
83 | CIMOSType_CIMOS_MACHKernel = 46,
|
---|
84 | CIMOSType_CIMOS_Inferno = 47,
|
---|
85 | CIMOSType_CIMOS_QNX = 48,
|
---|
86 | CIMOSType_CIMOS_EPOC = 49,
|
---|
87 | CIMOSType_CIMOS_IxWorks = 50,
|
---|
88 | CIMOSType_CIMOS_VxWorks = 51,
|
---|
89 | CIMOSType_CIMOS_MiNT = 52,
|
---|
90 | CIMOSType_CIMOS_BeOS = 53,
|
---|
91 | CIMOSType_CIMOS_HPMPE = 54,
|
---|
92 | CIMOSType_CIMOS_NextStep = 55,
|
---|
93 | CIMOSType_CIMOS_PalmPilot = 56,
|
---|
94 | CIMOSType_CIMOS_Rhapsody = 57,
|
---|
95 | CIMOSType_CIMOS_Windows2000 = 58,
|
---|
96 | CIMOSType_CIMOS_Dedicated = 59,
|
---|
97 | CIMOSType_CIMOS_OS390 = 60,
|
---|
98 | CIMOSType_CIMOS_VSE = 61,
|
---|
99 | CIMOSType_CIMOS_TPF = 62,
|
---|
100 | CIMOSType_CIMOS_WindowsMe = 63,
|
---|
101 | CIMOSType_CIMOS_CalderaOpenUNIX = 64,
|
---|
102 | CIMOSType_CIMOS_OpenBSD = 65,
|
---|
103 | CIMOSType_CIMOS_NotApplicable = 66,
|
---|
104 | CIMOSType_CIMOS_WindowsXP = 67,
|
---|
105 | CIMOSType_CIMOS_zOS = 68,
|
---|
106 | CIMOSType_CIMOS_MicrosoftWindowsServer2003 = 69,
|
---|
107 | CIMOSType_CIMOS_MicrosoftWindowsServer2003_64 = 70,
|
---|
108 | CIMOSType_CIMOS_WindowsXP_64 = 71,
|
---|
109 | CIMOSType_CIMOS_WindowsXPEmbedded = 72,
|
---|
110 | CIMOSType_CIMOS_WindowsVista = 73,
|
---|
111 | CIMOSType_CIMOS_WindowsVista_64 = 74,
|
---|
112 | CIMOSType_CIMOS_WindowsEmbeddedforPointofService = 75,
|
---|
113 | CIMOSType_CIMOS_MicrosoftWindowsServer2008 = 76,
|
---|
114 | CIMOSType_CIMOS_MicrosoftWindowsServer2008_64 = 77,
|
---|
115 | CIMOSType_CIMOS_FreeBSD_64 = 78,
|
---|
116 | CIMOSType_CIMOS_RedHatEnterpriseLinux = 79,
|
---|
117 | CIMOSType_CIMOS_RedHatEnterpriseLinux_64 = 80,
|
---|
118 | CIMOSType_CIMOS_Solaris_64 = 81,
|
---|
119 | CIMOSType_CIMOS_SUSE = 82,
|
---|
120 | CIMOSType_CIMOS_SUSE_64 = 83,
|
---|
121 | CIMOSType_CIMOS_SLES = 84,
|
---|
122 | CIMOSType_CIMOS_SLES_64 = 85,
|
---|
123 | CIMOSType_CIMOS_NovellOES = 86,
|
---|
124 | CIMOSType_CIMOS_NovellLinuxDesktop = 87,
|
---|
125 | CIMOSType_CIMOS_SunJavaDesktopSystem = 88,
|
---|
126 | CIMOSType_CIMOS_Mandriva = 89,
|
---|
127 | CIMOSType_CIMOS_Mandriva_64 = 90,
|
---|
128 | CIMOSType_CIMOS_TurboLinux = 91,
|
---|
129 | CIMOSType_CIMOS_TurboLinux_64 = 92,
|
---|
130 | CIMOSType_CIMOS_Ubuntu = 93,
|
---|
131 | CIMOSType_CIMOS_Ubuntu_64 = 94,
|
---|
132 | CIMOSType_CIMOS_Debian = 95,
|
---|
133 | CIMOSType_CIMOS_Debian_64 = 96,
|
---|
134 | CIMOSType_CIMOS_Linux_2_4_x = 97,
|
---|
135 | CIMOSType_CIMOS_Linux_2_4_x_64 = 98,
|
---|
136 | CIMOSType_CIMOS_Linux_2_6_x = 99,
|
---|
137 | CIMOSType_CIMOS_Linux_2_6_x_64 = 100,
|
---|
138 | CIMOSType_CIMOS_Linux_64 = 101,
|
---|
139 | CIMOSType_CIMOS_Other_64 = 102,
|
---|
140 | // types added with CIM 2.25.0 follow:
|
---|
141 | CIMOSType_CIMOS_WindowsServer2008R2 = 103,
|
---|
142 | CIMOSType_CIMOS_VMwareESXi = 104,
|
---|
143 | CIMOSType_CIMOS_Windows7 = 105,
|
---|
144 | CIMOSType_CIMOS_CentOS = 106,
|
---|
145 | CIMOSType_CIMOS_CentOS_64 = 107,
|
---|
146 | CIMOSType_CIMOS_OracleEnterpriseLinux = 108,
|
---|
147 | CIMOSType_CIMOS_OracleEnterpriseLinux_64 = 109,
|
---|
148 | CIMOSType_CIMOS_eComStation = 110
|
---|
149 | // no new types added with CIM 2.26.0
|
---|
150 | };
|
---|
151 |
|
---|
152 |
|
---|
153 | ////////////////////////////////////////////////////////////////////////////////
|
---|
154 | //
|
---|
155 | // Hardware definition structs
|
---|
156 | //
|
---|
157 | ////////////////////////////////////////////////////////////////////////////////
|
---|
158 |
|
---|
159 | struct DiskImage
|
---|
160 | {
|
---|
161 | // fields from /DiskSection/Disk
|
---|
162 | RTCString strDiskId; // value from DiskSection/Disk/@diskId
|
---|
163 | int64_t iCapacity; // value from DiskSection/Disk/@capacity;
|
---|
164 | // (maximum size for dynamic images, I guess; we always translate this to bytes)
|
---|
165 | int64_t iPopulatedSize; // optional value from DiskSection/Disk/@populatedSize
|
---|
166 | // (actual used size of disk, always in bytes; can be an estimate of used disk
|
---|
167 | // space, but cannot be larger than iCapacity; -1 if not set)
|
---|
168 | RTCString strFormat; // value from DiskSection/Disk/@format
|
---|
169 | // typically http://www.vmware.com/interfaces/specifications/vmdk.html#streamOptimized
|
---|
170 | RTCString uuidVbox; // optional; if the file was exported by VirtualBox >= 3.2,
|
---|
171 | // then this has the UUID with which the disk was registered
|
---|
172 |
|
---|
173 | // fields from /References/File; the spec says the file reference from disk can be empty,
|
---|
174 | // so in that case, strFilename will be empty, then a new disk should be created
|
---|
175 | RTCString strHref; // value from /References/File/@href (filename); if empty, then the remaining fields are ignored
|
---|
176 | int64_t iSize; // value from /References/File/@size (optional according to spec; then we set -1 here)
|
---|
177 | int64_t iChunkSize; // value from /References/File/@chunkSize (optional, unsupported)
|
---|
178 | RTCString strCompression; // value from /References/File/@compression (optional, can be "gzip" according to spec)
|
---|
179 |
|
---|
180 | // additional field which has a descriptive size in megabytes derived from the above; this can be used for progress reports
|
---|
181 | uint32_t ulSuggestedSizeMB;
|
---|
182 | };
|
---|
183 |
|
---|
184 | enum ResourceType_T
|
---|
185 | { ResourceType_Other = 1,
|
---|
186 | ResourceType_ComputerSystem = 2,
|
---|
187 | ResourceType_Processor = 3,
|
---|
188 | ResourceType_Memory = 4,
|
---|
189 | ResourceType_IDEController = 5,
|
---|
190 | ResourceType_ParallelSCSIHBA = 6,
|
---|
191 | ResourceType_FCHBA = 7,
|
---|
192 | ResourceType_iSCSIHBA = 8,
|
---|
193 | ResourceType_IBHCA = 9,
|
---|
194 | ResourceType_EthernetAdapter = 10,
|
---|
195 | ResourceType_OtherNetworkAdapter = 11,
|
---|
196 | ResourceType_IOSlot = 12,
|
---|
197 | ResourceType_IODevice = 13,
|
---|
198 | ResourceType_FloppyDrive = 14,
|
---|
199 | ResourceType_CDDrive = 15,
|
---|
200 | ResourceType_DVDDrive = 16,
|
---|
201 | ResourceType_HardDisk = 17,
|
---|
202 | ResourceType_OtherStorageDevice = 20,
|
---|
203 | ResourceType_USBController = 23,
|
---|
204 | ResourceType_SoundCard = 35
|
---|
205 | };
|
---|
206 |
|
---|
207 | struct VirtualHardwareItem
|
---|
208 | {
|
---|
209 | RTCString strDescription;
|
---|
210 | RTCString strCaption;
|
---|
211 | RTCString strElementName;
|
---|
212 |
|
---|
213 | uint32_t ulInstanceID;
|
---|
214 | uint32_t ulParent;
|
---|
215 |
|
---|
216 | ResourceType_T resourceType;
|
---|
217 | RTCString strOtherResourceType;
|
---|
218 | RTCString strResourceSubType;
|
---|
219 | bool fResourceRequired;
|
---|
220 |
|
---|
221 | RTCString strHostResource; // "Abstractly specifies how a device shall connect to a resource on the deployment platform.
|
---|
222 | // Not all devices need a backing." Used with disk items, for which this references a virtual
|
---|
223 | // disk from the Disks section.
|
---|
224 | bool fAutomaticAllocation;
|
---|
225 | bool fAutomaticDeallocation;
|
---|
226 | RTCString strConnection; // "All Ethernet adapters that specify the same abstract network connection name within an OVF
|
---|
227 | // package shall be deployed on the same network. The abstract network connection name shall be
|
---|
228 | // listed in the NetworkSection at the outermost envelope level." We ignore this and only set up
|
---|
229 | // a network adapter depending on the network name.
|
---|
230 | RTCString strAddress; // "Device-specific. For an Ethernet adapter, this specifies the MAC address."
|
---|
231 | int32_t lAddress; // strAddress as an integer, if applicable.
|
---|
232 | RTCString strAddressOnParent; // "For a device, this specifies its location on the controller."
|
---|
233 | RTCString strAllocationUnits; // "Specifies the units of allocation used. For example, “byte * 2^20”."
|
---|
234 | uint64_t ullVirtualQuantity; // "Specifies the quantity of resources presented. For example, “256”."
|
---|
235 | uint64_t ullReservation; // "Specifies the minimum quantity of resources guaranteed to be available."
|
---|
236 | uint64_t ullLimit; // "Specifies the maximum quantity of resources that will be granted."
|
---|
237 | uint64_t ullWeight; // "Specifies a relative priority for this allocation in relation to other allocations."
|
---|
238 |
|
---|
239 | RTCString strConsumerVisibility;
|
---|
240 | RTCString strMappingBehavior;
|
---|
241 | RTCString strPoolID;
|
---|
242 | uint32_t ulBusNumber; // seen with IDE controllers, but not listed in OVF spec
|
---|
243 |
|
---|
244 | uint32_t ulLineNumber; // line number of <Item> element in XML source; cached for error messages
|
---|
245 |
|
---|
246 | VirtualHardwareItem()
|
---|
247 | : ulInstanceID(0),
|
---|
248 | fAutomaticAllocation(false),
|
---|
249 | fAutomaticDeallocation(false),
|
---|
250 | ullVirtualQuantity(0),
|
---|
251 | ullReservation(0),
|
---|
252 | ullLimit(0),
|
---|
253 | ullWeight(0),
|
---|
254 | ulBusNumber(0),
|
---|
255 | ulLineNumber(0)
|
---|
256 | {};
|
---|
257 | };
|
---|
258 |
|
---|
259 | typedef std::map<RTCString, DiskImage> DiskImagesMap;
|
---|
260 |
|
---|
261 | struct VirtualSystem;
|
---|
262 |
|
---|
263 | typedef std::map<uint32_t, VirtualHardwareItem> HardwareItemsMap;
|
---|
264 |
|
---|
265 | struct HardDiskController
|
---|
266 | {
|
---|
267 | uint32_t idController; // instance ID (Item/InstanceId); this gets referenced from VirtualDisk
|
---|
268 |
|
---|
269 | enum ControllerSystemType { IDE, SATA, SCSI };
|
---|
270 | ControllerSystemType system; // one of IDE, SATA, SCSI
|
---|
271 |
|
---|
272 | RTCString strControllerType;
|
---|
273 | // controller subtype (Item/ResourceSubType); e.g. "LsiLogic"; can be empty (esp. for IDE)
|
---|
274 | // note that we treat LsiLogicSAS as a SCSI controller (system == SCSI) even though VirtualBox
|
---|
275 | // treats it as a fourth class besides IDE, SATA, SCSI
|
---|
276 |
|
---|
277 | int32_t lAddress; // value from OVF "Address" element
|
---|
278 | bool fPrimary; // controller index; this is determined heuristically by the OVF reader and will
|
---|
279 | // be true for the first controller of this type (e.g. IDE primary ctler) or
|
---|
280 | // false for the next (e.g. IDE secondary ctler)
|
---|
281 |
|
---|
282 | HardDiskController()
|
---|
283 | : idController(0),
|
---|
284 | lAddress(0),
|
---|
285 | fPrimary(true)
|
---|
286 | { }
|
---|
287 | };
|
---|
288 |
|
---|
289 | typedef std::map<uint32_t, HardDiskController> ControllersMap;
|
---|
290 |
|
---|
291 | struct VirtualDisk
|
---|
292 | {
|
---|
293 | uint32_t idController; // SCSI (or IDE) controller this disk is connected to;
|
---|
294 | // this must match HardDiskController.idController and
|
---|
295 | // points into VirtualSystem.mapControllers
|
---|
296 | uint32_t ulAddressOnParent; // parsed strAddressOnParent of hardware item; will be 0 or 1 for IDE
|
---|
297 | // and possibly higher for disks attached to SCSI controllers (untested)
|
---|
298 | RTCString strDiskId; // if the hard disk has an ovf:/disk/<id> reference,
|
---|
299 | // this receives the <id> component; points to one of the
|
---|
300 | // references in Appliance::Data.mapDisks
|
---|
301 | };
|
---|
302 |
|
---|
303 | typedef std::map<RTCString, VirtualDisk> VirtualDisksMap;
|
---|
304 |
|
---|
305 | /**
|
---|
306 | * A list of EthernetAdapters is contained in VirtualSystem, representing the
|
---|
307 | * ethernet adapters in the virtual system.
|
---|
308 | */
|
---|
309 | struct EthernetAdapter
|
---|
310 | {
|
---|
311 | RTCString strAdapterType; // "PCNet32" or "E1000" or whatever; from <rasd:ResourceSubType>
|
---|
312 | RTCString strNetworkName; // from <rasd:Connection>
|
---|
313 | };
|
---|
314 |
|
---|
315 | typedef std::list<EthernetAdapter> EthernetAdaptersList;
|
---|
316 |
|
---|
317 | /**
|
---|
318 | * A list of VirtualSystem structs is created by OVFReader::read(). Each refers to
|
---|
319 | * a <VirtualSystem> block in the OVF file.
|
---|
320 | */
|
---|
321 | struct VirtualSystem
|
---|
322 | {
|
---|
323 | RTCString strName; // copy of VirtualSystem/@id
|
---|
324 |
|
---|
325 | RTCString strDescription; // copy of VirtualSystem/AnnotationSection content, if any
|
---|
326 |
|
---|
327 | CIMOSType_T cimos;
|
---|
328 | RTCString strCimosDesc; // readable description of the cimos type in the case of cimos = 0/1/102
|
---|
329 | RTCString strTypeVbox; // optional type from @vbox:ostype attribute (VirtualBox 4.0 or higher)
|
---|
330 |
|
---|
331 | RTCString strVirtualSystemType; // generic hardware description; OVF says this can be something like "vmx-4" or "xen";
|
---|
332 | // VMware Workstation 6.5 is "vmx-07"
|
---|
333 |
|
---|
334 | HardwareItemsMap mapHardwareItems; // map of virtual hardware items, sorted by unique instance ID
|
---|
335 |
|
---|
336 | uint64_t ullMemorySize; // always in bytes, copied from llHardwareItems; default = 0 (unspecified)
|
---|
337 | uint16_t cCPUs; // no. of CPUs, copied from llHardwareItems; default = 1
|
---|
338 |
|
---|
339 | EthernetAdaptersList llEthernetAdapters; // (one for each VirtualSystem/Item[@ResourceType=10]element)
|
---|
340 |
|
---|
341 | ControllersMap mapControllers;
|
---|
342 | // list of hard disk controllers
|
---|
343 | // (one for each VirtualSystem/Item[@ResourceType=6] element with accumulated data from children)
|
---|
344 |
|
---|
345 | VirtualDisksMap mapVirtualDisks;
|
---|
346 | // (one for each VirtualSystem/Item[@ResourceType=17] element with accumulated data from children)
|
---|
347 |
|
---|
348 | bool fHasFloppyDrive; // true if there's a floppy item in mapHardwareItems
|
---|
349 | bool fHasCdromDrive; // true if there's a CD-ROM item in mapHardwareItems; ISO images are not yet supported by OVFtool
|
---|
350 | bool fHasUsbController; // true if there's a USB controller item in mapHardwareItems
|
---|
351 |
|
---|
352 | RTCString strSoundCardType; // if not empty, then the system wants a soundcard; this then specifies the hardware;
|
---|
353 | // VMware Workstation 6.5 uses "ensoniq1371" for example
|
---|
354 |
|
---|
355 | RTCString strLicenseText; // license info if any; receives contents of VirtualSystem/EulaSection/License
|
---|
356 |
|
---|
357 | RTCString strProduct; // product info if any; receives contents of VirtualSystem/ProductSection/Product
|
---|
358 | RTCString strVendor; // product info if any; receives contents of VirtualSystem/ProductSection/Vendor
|
---|
359 | RTCString strVersion; // product info if any; receives contents of VirtualSystem/ProductSection/Version
|
---|
360 | RTCString strProductUrl; // product info if any; receives contents of VirtualSystem/ProductSection/ProductUrl
|
---|
361 | RTCString strVendorUrl; // product info if any; receives contents of VirtualSystem/ProductSection/VendorUrl
|
---|
362 |
|
---|
363 | const xml::ElementNode // pointer to <vbox:Machine> element under <VirtualSystem> element or NULL if not present
|
---|
364 | *pelmVboxMachine;
|
---|
365 |
|
---|
366 | VirtualSystem()
|
---|
367 | : cimos(CIMOSType_CIMOS_Unknown),
|
---|
368 | ullMemorySize(0),
|
---|
369 | cCPUs(1),
|
---|
370 | fHasFloppyDrive(false),
|
---|
371 | fHasCdromDrive(false),
|
---|
372 | fHasUsbController(false),
|
---|
373 | pelmVboxMachine(NULL)
|
---|
374 | {
|
---|
375 | }
|
---|
376 | };
|
---|
377 |
|
---|
378 | ////////////////////////////////////////////////////////////////////////////////
|
---|
379 | //
|
---|
380 | // Class OVFReader
|
---|
381 | //
|
---|
382 | ////////////////////////////////////////////////////////////////////////////////
|
---|
383 |
|
---|
384 | /**
|
---|
385 | * OVFReader attempts to open, read in and parse an OVF XML file. This is all done
|
---|
386 | * in the constructor; if there is any kind of error in the file -- filesystem error
|
---|
387 | * from IPRT, XML parsing errors from libxml, or OVF logical errors --, exceptions
|
---|
388 | * are thrown. These are all based on xml::Error.
|
---|
389 | *
|
---|
390 | * Hence, use this class as follows:
|
---|
391 | <code>
|
---|
392 | OVFReader *pReader = NULL;
|
---|
393 | try
|
---|
394 | {
|
---|
395 | pReader = new("/path/to/file.ovf");
|
---|
396 | }
|
---|
397 | catch (xml::Error &e)
|
---|
398 | {
|
---|
399 | printf("A terrible thing happened: %s", e.what());
|
---|
400 | }
|
---|
401 | // now go look at pReader->m_llVirtualSystem and what's in there
|
---|
402 | if (pReader)
|
---|
403 | delete pReader;
|
---|
404 | </code>
|
---|
405 | */
|
---|
406 |
|
---|
407 | class OVFReader
|
---|
408 | {
|
---|
409 | public:
|
---|
410 | OVFReader(const void *pvBuf, size_t cbSize, const RTCString &path);
|
---|
411 | OVFReader(const RTCString &path);
|
---|
412 |
|
---|
413 | // Data fields
|
---|
414 | RTCString m_strPath; // file name given to constructor
|
---|
415 | DiskImagesMap m_mapDisks; // map of DiskImage structs, sorted by DiskImage.strDiskId
|
---|
416 | std::list<VirtualSystem> m_llVirtualSystems; // list of virtual systems, created by and valid after read()
|
---|
417 |
|
---|
418 | private:
|
---|
419 | xml::Document m_doc;
|
---|
420 |
|
---|
421 | void parse();
|
---|
422 | void LoopThruSections(const xml::ElementNode *pReferencesElem, const xml::ElementNode *pCurElem);
|
---|
423 | void HandleDiskSection(const xml::ElementNode *pReferencesElem, const xml::ElementNode *pSectionElem);
|
---|
424 | void HandleNetworkSection(const xml::ElementNode *pSectionElem);
|
---|
425 | void HandleVirtualSystemContent(const xml::ElementNode *pContentElem);
|
---|
426 | };
|
---|
427 |
|
---|
428 | ////////////////////////////////////////////////////////////////////////////////
|
---|
429 | //
|
---|
430 | // Errors
|
---|
431 | //
|
---|
432 | ////////////////////////////////////////////////////////////////////////////////
|
---|
433 |
|
---|
434 | /**
|
---|
435 | * Thrown by OVFReader for any kind of error that is not an XML error but
|
---|
436 | * still makes the OVF impossible to parse. Based on xml::LogicError so
|
---|
437 | * that one catch() for all xml::LogicError can handle all possible errors.
|
---|
438 | */
|
---|
439 |
|
---|
440 | class OVFLogicError : public xml::LogicError
|
---|
441 | {
|
---|
442 | public:
|
---|
443 | OVFLogicError(const char *aFormat, ...);
|
---|
444 | };
|
---|
445 |
|
---|
446 | } // end namespace ovf
|
---|
447 |
|
---|
448 | #endif // ____H_OVFREADER
|
---|