VirtualBox

source: vbox/trunk/include/iprt/cpp/xml.h@ 28164

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

IPRT: attribute namespace support

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 17.1 KB
Line 
1/** @file
2 * VirtualBox XML helper APIs.
3 */
4
5/*
6 * Copyright (C) 2007-2009 Sun Microsystems, Inc.
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 *
25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
26 * Clara, CA 95054 USA or visit http://www.sun.com if you need
27 * additional information or have any questions.
28 */
29
30#ifndef ___VBox_vboxxml_h
31#define ___VBox_vboxxml_h
32
33#ifndef IN_RING3
34# error "There are no XML APIs available in Ring-0 Context!"
35#endif
36
37#include <list>
38#include <memory>
39
40#include <iprt/cpp/ministring.h>
41
42/* Forwards */
43typedef struct _xmlParserInput xmlParserInput;
44typedef xmlParserInput *xmlParserInputPtr;
45typedef struct _xmlParserCtxt xmlParserCtxt;
46typedef xmlParserCtxt *xmlParserCtxtPtr;
47typedef struct _xmlError xmlError;
48typedef xmlError *xmlErrorPtr;
49
50typedef struct _xmlAttr xmlAttr;
51typedef struct _xmlNode xmlNode;
52
53namespace xml
54{
55
56// Exceptions
57//////////////////////////////////////////////////////////////////////////////
58
59/**
60 * Base exception class.
61 */
62class RT_DECL_CLASS Error : public std::exception
63{
64public:
65
66 Error(const char *pcszMessage)
67 : m_s(pcszMessage)
68 {
69 }
70
71 Error(const Error &s)
72 : std::exception(s),
73 m_s(s.what())
74 {
75 }
76
77 virtual ~Error() throw()
78 {
79 }
80
81 void operator=(const Error &s)
82 {
83 m_s = s.what();
84 }
85
86 void setWhat(const char *pcszMessage)
87 {
88 m_s = pcszMessage;
89 }
90
91 virtual const char* what() const throw()
92 {
93 return m_s.c_str();
94 }
95
96private:
97 // hide the default constructor to make sure the extended one above is always used
98 Error();
99
100 iprt::MiniString m_s;
101};
102
103class RT_DECL_CLASS LogicError : public Error
104{
105public:
106
107 LogicError(const char *aMsg = NULL)
108 : xml::Error(aMsg)
109 {}
110
111 LogicError(RT_SRC_POS_DECL);
112};
113
114class RT_DECL_CLASS RuntimeError : public Error
115{
116public:
117
118 RuntimeError(const char *aMsg = NULL)
119 : xml::Error(aMsg)
120 {}
121};
122
123class RT_DECL_CLASS XmlError : public RuntimeError
124{
125public:
126 XmlError(xmlErrorPtr aErr);
127
128 static char* Format(xmlErrorPtr aErr);
129};
130
131// Logical errors
132//////////////////////////////////////////////////////////////////////////////
133
134class RT_DECL_CLASS ENotImplemented : public LogicError
135{
136public:
137 ENotImplemented(const char *aMsg = NULL) : LogicError(aMsg) {}
138 ENotImplemented(RT_SRC_POS_DECL) : LogicError(RT_SRC_POS_ARGS) {}
139};
140
141class RT_DECL_CLASS EInvalidArg : public LogicError
142{
143public:
144 EInvalidArg(const char *aMsg = NULL) : LogicError(aMsg) {}
145 EInvalidArg(RT_SRC_POS_DECL) : LogicError(RT_SRC_POS_ARGS) {}
146};
147
148class RT_DECL_CLASS EDocumentNotEmpty : public LogicError
149{
150public:
151 EDocumentNotEmpty(const char *aMsg = NULL) : LogicError(aMsg) {}
152 EDocumentNotEmpty(RT_SRC_POS_DECL) : LogicError(RT_SRC_POS_ARGS) {}
153};
154
155class RT_DECL_CLASS ENodeIsNotElement : public LogicError
156{
157public:
158 ENodeIsNotElement(const char *aMsg = NULL) : LogicError(aMsg) {}
159 ENodeIsNotElement(RT_SRC_POS_DECL) : LogicError(RT_SRC_POS_ARGS) {}
160};
161
162// Runtime errors
163//////////////////////////////////////////////////////////////////////////////
164
165class RT_DECL_CLASS EIPRTFailure : public RuntimeError
166{
167public:
168
169 EIPRTFailure(int aRC, const char *pcszContext, ...);
170
171 int rc() const
172 {
173 return mRC;
174 }
175
176private:
177 int mRC;
178};
179
180
181/**
182 * The Stream class is a base class for I/O streams.
183 */
184class RT_DECL_CLASS Stream
185{
186public:
187
188 virtual ~Stream() {}
189
190 virtual const char *uri() const = 0;
191
192 /**
193 * Returns the current read/write position in the stream. The returned
194 * position is a zero-based byte offset from the beginning of the file.
195 *
196 * Throws ENotImplemented if this operation is not implemented for the
197 * given stream.
198 */
199 virtual uint64_t pos() const = 0;
200
201 /**
202 * Sets the current read/write position in the stream.
203 *
204 * @param aPos Zero-based byte offset from the beginning of the stream.
205 *
206 * Throws ENotImplemented if this operation is not implemented for the
207 * given stream.
208 */
209 virtual void setPos (uint64_t aPos) = 0;
210};
211
212/**
213 * The Input class represents an input stream.
214 *
215 * This input stream is used to read the settings tree from.
216 * This is an abstract class that must be subclassed in order to fill it with
217 * useful functionality.
218 */
219class RT_DECL_CLASS Input : virtual public Stream
220{
221public:
222
223 /**
224 * Reads from the stream to the supplied buffer.
225 *
226 * @param aBuf Buffer to store read data to.
227 * @param aLen Buffer length.
228 *
229 * @return Number of bytes read.
230 */
231 virtual int read (char *aBuf, int aLen) = 0;
232};
233
234/**
235 *
236 */
237class RT_DECL_CLASS Output : virtual public Stream
238{
239public:
240
241 /**
242 * Writes to the stream from the supplied buffer.
243 *
244 * @param aBuf Buffer to write data from.
245 * @param aLen Buffer length.
246 *
247 * @return Number of bytes written.
248 */
249 virtual int write (const char *aBuf, int aLen) = 0;
250
251 /**
252 * Truncates the stream from the current position and upto the end.
253 * The new file size will become exactly #pos() bytes.
254 *
255 * Throws ENotImplemented if this operation is not implemented for the
256 * given stream.
257 */
258 virtual void truncate() = 0;
259};
260
261
262//////////////////////////////////////////////////////////////////////////////
263
264/**
265 * The File class is a stream implementation that reads from and writes to
266 * regular files.
267 *
268 * The File class uses IPRT File API for file operations. Note that IPRT File
269 * API is not thread-safe. This means that if you pass the same RTFILE handle to
270 * different File instances that may be simultaneously used on different
271 * threads, you should care about serialization; otherwise you will get garbage
272 * when reading from or writing to such File instances.
273 */
274class RT_DECL_CLASS File : public Input, public Output
275{
276public:
277
278 /**
279 * Possible file access modes.
280 */
281 enum Mode { Mode_Read, Mode_WriteCreate, Mode_Overwrite, Mode_ReadWrite };
282
283 /**
284 * Opens a file with the given name in the given mode. If @a aMode is Read
285 * or ReadWrite, the file must exist. If @a aMode is Write, the file must
286 * not exist. Otherwise, an EIPRTFailure excetion will be thrown.
287 *
288 * @param aMode File mode.
289 * @param aFileName File name.
290 */
291 File(Mode aMode, const char *aFileName);
292
293 /**
294 * Uses the given file handle to perform file operations. This file
295 * handle must be already open in necessary mode (read, or write, or mixed).
296 *
297 * The read/write position of the given handle will be reset to the
298 * beginning of the file on success.
299 *
300 * Note that the given file handle will not be automatically closed upon
301 * this object destruction.
302 *
303 * @note It you pass the same RTFILE handle to more than one File instance,
304 * please make sure you have provided serialization in case if these
305 * instasnces are to be simultaneously used by different threads.
306 * Otherwise you may get garbage when reading or writing.
307 *
308 * @param aHandle Open file handle.
309 * @param aFileName File name (for reference).
310 */
311 File(RTFILE aHandle, const char *aFileName = NULL);
312
313 /**
314 * Destroys the File object. If the object was created from a file name
315 * the corresponding file will be automatically closed. If the object was
316 * created from a file handle, it will remain open.
317 */
318 virtual ~File();
319
320 const char *uri() const;
321
322 uint64_t pos() const;
323 void setPos(uint64_t aPos);
324
325 /**
326 * See Input::read(). If this method is called in wrong file mode,
327 * LogicError will be thrown.
328 */
329 int read(char *aBuf, int aLen);
330
331 /**
332 * See Output::write(). If this method is called in wrong file mode,
333 * LogicError will be thrown.
334 */
335 int write(const char *aBuf, int aLen);
336
337 /**
338 * See Output::truncate(). If this method is called in wrong file mode,
339 * LogicError will be thrown.
340 */
341 void truncate();
342
343private:
344
345 /* Obscure class data */
346 struct Data;
347 Data *m;
348
349 /* auto_ptr data doesn't have proper copy semantics */
350 DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP (File)
351};
352
353/**
354 * The MemoryBuf class represents a stream implementation that reads from the
355 * memory buffer.
356 */
357class RT_DECL_CLASS MemoryBuf : public Input
358{
359public:
360
361 MemoryBuf (const char *aBuf, size_t aLen, const char *aURI = NULL);
362
363 virtual ~MemoryBuf();
364
365 const char *uri() const;
366
367 int read(char *aBuf, int aLen);
368 uint64_t pos() const;
369 void setPos(uint64_t aPos);
370
371private:
372 /* Obscure class data */
373 struct Data;
374 Data *m;
375
376 /* auto_ptr data doesn't have proper copy semantics */
377 DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP(MemoryBuf)
378};
379
380
381/*
382 * GlobalLock
383 *
384 *
385 */
386
387typedef xmlParserInput* FNEXTERNALENTITYLOADER(const char *aURI,
388 const char *aID,
389 xmlParserCtxt *aCtxt);
390typedef FNEXTERNALENTITYLOADER *PFNEXTERNALENTITYLOADER;
391
392class RT_DECL_CLASS GlobalLock
393{
394public:
395 GlobalLock();
396 ~GlobalLock();
397
398 void setExternalEntityLoader(PFNEXTERNALENTITYLOADER pFunc);
399
400 static xmlParserInput* callDefaultLoader(const char *aURI,
401 const char *aID,
402 xmlParserCtxt *aCtxt);
403
404private:
405 /* Obscure class data. */
406 struct Data;
407 struct Data *m;
408};
409
410/**
411 * Node:
412 * an XML node, which represents either an element or text content
413 * or an attribute.
414 *
415 * For elements, getName() returns the element name, and getValue()
416 * returns the text contents, if any.
417 *
418 * For attributes, getName() returns the attribute name, and getValue()
419 * returns the attribute value, if any.
420 *
421 * Since the default constructor is private, one can create new nodes
422 * only through factory methods provided by the XML classes. These are:
423 *
424 * -- xml::Document::createRootElement()
425 * -- xml::Node::createChild()
426 * -- xml::Node::addContent()
427 * -- xml::Node::setAttribute()
428 */
429
430class ElementNode;
431typedef std::list<const ElementNode*> ElementNodesList;
432
433class AttributeNode;
434
435class ContentNode;
436
437class RT_DECL_CLASS Node
438{
439public:
440 ~Node();
441
442 const char* getName() const;
443 bool nameEquals(const char *pcszNamespace, const char *pcsz) const;
444 bool nameEquals(const char *pcsz) const
445 {
446 return nameEquals(NULL, pcsz);
447 }
448
449 const char* getValue() const;
450 bool copyValue(int32_t &i) const;
451 bool copyValue(uint32_t &i) const;
452 bool copyValue(int64_t &i) const;
453 bool copyValue(uint64_t &i) const;
454
455 int getLineNumber() const;
456
457 int isElement()
458 {
459 return m_Type == IsElement;
460 }
461
462protected:
463 typedef enum {IsElement, IsAttribute, IsContent} EnumType;
464
465 EnumType m_Type;
466 Node *m_pParent;
467 xmlNode *m_plibNode; // != NULL if this is an element or content node
468 xmlAttr *m_plibAttr; // != NULL if this is an attribute node
469 const char *m_pcszNamespacePrefix; // not always set
470 const char *m_pcszNamespaceHref; // full http:// spec
471 const char *m_pcszName; // element or attribute name, points either into plibNode or plibAttr;
472 // NULL if this is a content node
473
474 // hide the default constructor so people use only our factory methods
475 Node(EnumType type,
476 Node *pParent,
477 xmlNode *plibNode,
478 xmlAttr *plibAttr);
479 Node(const Node &x); // no copying
480
481 void buildChildren(const ElementNode &elmRoot);
482
483 /* Obscure class data */
484 struct Data;
485 Data *m;
486
487 friend class AttributeNode;
488};
489
490class RT_DECL_CLASS ElementNode : public Node
491{
492public:
493 int getChildElements(ElementNodesList &children,
494 const char *pcszMatch = NULL) const;
495
496 const ElementNode* findChildElement(const char *pcszNamespace,
497 const char *pcszMatch) const;
498 const ElementNode* findChildElement(const char *pcszMatch) const
499 {
500 return findChildElement(NULL, pcszMatch);
501 }
502 const ElementNode* findChildElementFromId(const char *pcszId) const;
503
504 const AttributeNode* findAttribute(const char *pcszMatch) const;
505 bool getAttributeValue(const char *pcszMatch, const char *&ppcsz) const;
506 bool getAttributeValue(const char *pcszMatch, iprt::MiniString &str) const;
507 bool getAttributeValue(const char *pcszMatch, int32_t &i) const;
508 bool getAttributeValue(const char *pcszMatch, uint32_t &i) const;
509 bool getAttributeValue(const char *pcszMatch, int64_t &i) const;
510 bool getAttributeValue(const char *pcszMatch, uint64_t &i) const;
511 bool getAttributeValue(const char *pcszMatch, bool &f) const;
512
513 ElementNode* createChild(const char *pcszElementName);
514
515 ContentNode* addContent(const char *pcszContent);
516 ContentNode* addContent(const iprt::MiniString &strContent)
517 {
518 return addContent(strContent.c_str());
519 }
520
521 AttributeNode* setAttribute(const char *pcszName, const char *pcszValue);
522 AttributeNode* setAttribute(const char *pcszName, const iprt::MiniString &strValue)
523 {
524 return setAttribute(pcszName, strValue.c_str());
525 }
526 AttributeNode* setAttribute(const char *pcszName, int32_t i);
527 AttributeNode* setAttribute(const char *pcszName, uint32_t i);
528 AttributeNode* setAttribute(const char *pcszName, int64_t i);
529 AttributeNode* setAttribute(const char *pcszName, uint64_t i);
530 AttributeNode* setAttributeHex(const char *pcszName, uint32_t i);
531 AttributeNode* setAttribute(const char *pcszName, bool f);
532
533protected:
534 // hide the default constructor so people use only our factory methods
535 ElementNode(const ElementNode *pelmRoot, Node *pParent, xmlNode *plibNode);
536 ElementNode(const ElementNode &x); // no copying
537
538 const ElementNode *m_pelmRoot;
539
540 friend class Node;
541 friend class Document;
542 friend class XmlFileParser;
543};
544
545class RT_DECL_CLASS ContentNode : public Node
546{
547public:
548
549protected:
550 // hide the default constructor so people use only our factory methods
551 ContentNode(Node *pParent, xmlNode *plibNode);
552 ContentNode(const ContentNode &x); // no copying
553
554 friend class Node;
555 friend class ElementNode;
556};
557
558class RT_DECL_CLASS AttributeNode : public Node
559{
560public:
561
562protected:
563 // hide the default constructor so people use only our factory methods
564 AttributeNode(const ElementNode &elmRoot,
565 Node *pParent,
566 xmlAttr *plibAttr,
567 const char **ppcszKey);
568 AttributeNode(const AttributeNode &x); // no copying
569
570 iprt::MiniString m_strKey;
571
572 friend class Node;
573 friend class ElementNode;
574};
575
576/*
577 * NodesLoop
578 *
579 */
580
581class RT_DECL_CLASS NodesLoop
582{
583public:
584 NodesLoop(const ElementNode &node, const char *pcszMatch = NULL);
585 ~NodesLoop();
586 const ElementNode* forAllNodes() const;
587
588private:
589 /* Obscure class data */
590 struct Data;
591 Data *m;
592};
593
594/*
595 * Document
596 *
597 */
598
599class RT_DECL_CLASS Document
600{
601public:
602 Document();
603 ~Document();
604
605 Document(const Document &x);
606 Document& operator=(const Document &x);
607
608 const ElementNode* getRootElement() const;
609 ElementNode* getRootElement();
610
611 ElementNode* createRootElement(const char *pcszRootElementName);
612
613private:
614 friend class XmlFileParser;
615 friend class XmlFileWriter;
616
617 void refreshInternals();
618
619 /* Obscure class data */
620 struct Data;
621 Data *m;
622};
623
624/*
625 * XmlParserBase
626 *
627 */
628
629class RT_DECL_CLASS XmlParserBase
630{
631protected:
632 XmlParserBase();
633 ~XmlParserBase();
634
635 xmlParserCtxtPtr m_ctxt;
636};
637
638/*
639 * XmlFileParser
640 *
641 */
642
643class RT_DECL_CLASS XmlFileParser : public XmlParserBase
644{
645public:
646 XmlFileParser();
647 ~XmlFileParser();
648
649 void read(const iprt::MiniString &strFilename, Document &doc);
650
651private:
652 /* Obscure class data */
653 struct Data;
654 struct Data *m;
655
656 static int ReadCallback(void *aCtxt, char *aBuf, int aLen);
657 static int CloseCallback (void *aCtxt);
658};
659
660/*
661 * XmlFileWriter
662 *
663 */
664
665class RT_DECL_CLASS XmlFileWriter
666{
667public:
668 XmlFileWriter(Document &doc);
669 ~XmlFileWriter();
670
671 void write(const char *pcszFilename);
672
673 static int WriteCallback(void *aCtxt, const char *aBuf, int aLen);
674 static int CloseCallback (void *aCtxt);
675
676private:
677 /* Obscure class data */
678 struct Data;
679 Data *m;
680};
681
682#if defined(_MSC_VER)
683#pragma warning (default:4251)
684#endif
685
686/** @} */
687
688} // end namespace xml
689
690#endif /* ___VBox_vboxxml_h */
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette