vote up 3 vote down star
1

I have an application, written in C++ using MFC and Stingray libraries. The application works with a wide variety of large data types, which are all currently serialized based on MFC Document/View serialize derived functionality. I have also added options for XML serialization based on the Stingray libraries, which implements DOM via the Microsoft XML SDK. While easy to implement the performance is terrible, to the extent that it is unusable on anything other than very small documents.

What other XML serialization tools would you folks recommend for this scenario. I don't want DOM, as it seems to be a memory hog, and I'm already dealing with large in memory data. Ideally, i'd like a streaming parser that is fast, and easy to use with MFC. My current front runner is expat which is fast and simple, but would require a lot of class by class serialization code to be added. Any other efficient and easier to implement alternatives out there that people would recommend?

flag

61% accept rate

5 Answers

vote up 4 vote down check

The Boost Serialization library supports XML. This library basically consists in:

  1. Start from the principles of MFC serialization and take all the good things it provides.
  2. Solve every single issue of MFC serialization!

Among the improvements compared to MFC is support for XML. Note that you don't necessarily control the XML schema of this serialization. It uses its own schema.

link|flag
The boost serialization looks like a good fit, and might well be a good first step from moving away from MFC. – Shane MacLaughlin Oct 22 '08 at 14:19
vote up 0 vote down

what about RapidXML, I am using it in an MFC app with some modification to support UTF-16 with std::string. I am quite satisfied with it so far.

link|flag
std::string should be std::wstring, sorry for the typo. -tomgee – Brian Leahy Nov 3 '08 at 13:18
vote up 0 vote down

We use TinyXML for all our XML needs be it MFC or straight C++.

http://sourceforge.net/projects/tinyxml

link|flag
Seems to use a DOM style approach which probably isn't suitable for this particular app. Thanks for the link anyway. – Shane MacLaughlin Oct 23 '08 at 10:20
vote up 2 vote down

We use Xerces-C++. It was easy to setup and performance is good enough so we don't need to think about changing. However we aren't XML heavy.

I did listen to a podcast by Scott Hanselman (from Hansel Minutes) where they discuss the XML performance of MSXML and XSLT.

link|flag
vote up 2 vote down

A good solution would be libxml. It provides lightweight SAX parsing and data structures for XML processing. There are several DOM libraries which are built on top of libxml.

Unfortunatly it is a C library, but C++ wrappers are available.

A few years ago I switched from MSXML to libxml because of the performance issues you mentioned.

If you decide to use libxml, you should also take a look at libxslt.

link|flag
LibXML all the way! Don't forget its sister component, LibXSLT. – spoulson Oct 22 '08 at 11:50
Good point, I mentioned it in my answer. – DR Oct 22 '08 at 11:57

Your Answer

Get an OpenID
or

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