vote up 15 vote down star
13

Looking for a simple, clean, correct XML parser to use in my C++ project. Read and write my own..extension? You know what I mean.

Thanks

flag

10 Answers

vote up 13 vote down

Try TinyXML.

http://sourceforge.net/projects/tinyxml

link|flag
Used tinyXML several times on VC++ and eVC++ - always worked fine – JohnIdol Oct 4 '08 at 19:45
vote up 1 vote down

Expat

link|flag
Expat is not C++. You can use Expat in C++, but I don't think that's really what the OP was asking for. – Ben Collins Oct 4 '08 at 18:50
Ah, okay but C is very compatible with C++ and Expat is a very solid and stable XML parser. In fact, there's a C++ interface if you follow the link. Unlike TinyXML is parses DTDs as well and the OP explicitly DID ask for correctness. – Pat Notz Oct 4 '08 at 23:18
vote up 1 vote down

Try TinyXML or IrrXML...Both are lightweight XML parsers ( I'd suggest you to use TinyXML, anyway ).

link|flag
vote up 2 vote down

TinyXML can be best for simple XML work but if you need more features then try Xerces from the apache project. Go to the following page to read more about its features.

http://xerces.apache.org/xerces-c/

link|flag
What features does Xerces have that TinyXML doesn't? – whaledawg Oct 4 '08 at 17:36
OK, more to the point which of those features doesn't TinyXML have? – whaledawg Oct 4 '08 at 18:06
It implements the whole DOM. TinyXML is simpler, but enough for keeping data in XML. – Lev Oct 4 '08 at 18:48
vote up 1 vote down

I like the Gnome xml parser. It's open source (MIT License, so you can use it in commercial products), fast and has DOM and SAX based interfaces.

http://xmlsoft.org/

link|flag
vote up 0 vote down

CMarkup is nice, there is a free version on codeproject (windows only).

Very fast and easy to use, BUT it does load the entire document into a string to parse it rather than a stream parser so might not be suitable for huge documents.

link|flag
vote up 5 vote down

TiCPP is a "more c++" version of TinyXML.

'TiCPP' is short for the official name TinyXML++. It is a completely new interface to TinyXML (http://www.grinninglizard.com/tinyxml/) that uses MANY of the C++ strengths. Templates, exceptions, and much better error handling. It is also fully documented in doxygen. It is really cool because this version let's you interface tiny the exact same way as before or you can choose to use the new 'ticpp' classes. All you need to do is define TIXML_USE_TICPP. It has been tested in VC 6.0, VC 7.0, VC 7.1, VC 8.0, MinGW gcc 3.4.5, and in Linux GNU gcc 3+

link|flag
vote up 1 vote down

TinyXML, and also Boost.PropertyTree. The latter does not fulfill all official requirements, but is very simple.

link|flag
vote up 1 vote down

Do not use TinyXML if you're concerned about efficiency/memory management (it tends to allocate lots of tiny blocks). My personal favourite is RapidXML.

link|flag
vote up 14 vote down

How about RapidXML? RapidXML is a very fast and small XML DOM parser written in C++. It is aimed primarily at embedded environments, computer games, or any other applications where available memory or CPU processing power comes at a premium. RapidXML is licensed under Boost Software License and its source code is freely available.

Features

  • Parsing speed (including DOM tree building) approaching speed of strlen function executed on the same data.
  • On a modern CPU (as of 2008) the parser throughput is about 1 billion characters per second. See Performance section in the Online Manual.
  • Small memory footprint of the code and created DOM trees.
  • A headers-only implementation, simplifying the integration process.
  • Simple license that allows use for almost any purpose, both commercial and non-commercial, without any obligations.
  • Supports UTF-8 and partially UTF-16, UTF-32 encodings.
  • Portable source code with no dependencies other than a very small subset of C++ Standard Library.
  • This subset is so small that it can be easily emulated manually if use of standard library is undesired.

Limitations

  • The parser ignores DOCTYPE declarations.
  • There is no support for XML namespaces.
  • The parser does not check for character validity.
  • The interface of the parser does not conform to DOM specification.
  • The parser does not check for attribute uniqueness.

Source: wikipedia.org://Rapidxml


Depending on you use, you may use an XML Data Binding? CodeSynthesis XSD is an XML Data Binding compiler for C++ developed by Code Synthesis and dual-licensed under the GNU GPL and a proprietary license. Given an XML instance specification (XML Schema), it generates C++ classes that represent the given vocabulary as well as parsing and serialization code.

One of the unique features of CodeSynthesis XSD is its support for two different XML Schema to C++ mappings: in-memory C++/Tree and stream-oriented C++/Parser. The C++/Tree mapping is a traditional mapping with a tree-like, in-memory data structure. C++/Parser is a new, SAX-like mapping which represents the information stored in XML instance documents as a hierarchy of vocabulary-specific parsing events. In comparison to C++/Tree, the C++/Parser mapping allows one to handle large XML documents that would not fit in memory, perform stream-oriented processing, or use an existing in-memory representation.

Source: wikipedia.org://CodeSynthesis XSD

link|flag
I like the headers-only approach (I think you really need one header file). Just throw it in and don't worry about changing anything in your build process. – dehmann Feb 11 at 14:54
Hmmh. if "The parser does not check for character validity" and "The parser does not check for attribute uniqueness", it is, strictly speaking, NOT an xml parser -- these are not optional checks, mandated by xml spec itself. I would not waste my time on such a thing as there are actual good decent parsers too (libxml2 for example)_ – StaxMan Apr 23 at 4:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.