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
|
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 |
|||
|
|
|
|
Try TinyXML. |
||
|
|
|
|
||||
|
|
|
Try TinyXML or IrrXML...Both are lightweight XML parsers ( I'd suggest you to use TinyXML, anyway ). |
||
|
|
|
|
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. |
||
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
TiCPP is a "more c++" version of TinyXML.
|
||
|
|
|
|
TinyXML, and also Boost.PropertyTree. The latter does not fulfill all official requirements, but is very simple. |
||
|
|
|
|
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. |
||
|
|
|
|
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
Limitations
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. |
||||
|