up vote 1 down vote favorite
1
share [g+] share [fb]

I have some code that creates a fairly large xml DOM and writes it off to a file (up to 50-100MB) . It basically creates the DOM and then calls a toString on it and writes it out with ofstream. Is there a way to get streaming output of the generated dom so that it doesn't create the whole structure in memory all at once and then copy it, etc? I will not modify any node after i create it so it can write it out and free up the memory right away. I could write my own xml class that does the xml construction but ... i don't think that's a good idea since i'll probably miss something when it comes down to escaping etc.

link|improve this question

50% accept rate
feedback

4 Answers

Ok, turns out libxml2 has a streaming API:

http://xmlsoft.org/examples/testWriter.c

It's a little old style (very C-ish) but you can write your wrapper around it.

link|improve this answer
feedback

Anytime you're working with large files like this it's probably best to use a memory-mapped file. Create your DOM elements in mapped memory and then commit.

link|improve this answer
feedback

I would recommend GenX as a streaming XML writer, I use this in Programmer's Notepad and it works a treat, you can see examples of use in the source code. Extremely fast, and it produces good UTF-8 XML. Memory usage while you use it should remain roughly constant.

link|improve this answer
feedback

Look under keyword "C++ XML writer;" XML writers generate XML to file without building the entire DOM in memory so they don't need to use very much memory at all. You didn't mention platform, but Microsoft XmlLite has IXmlWriter.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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