]> git.tdb.fi Git - ext/subsurface.git/commit
parse-xml: read the file into memory separately
authorLinus Torvalds <torvalds@linux-foundation.org>
Mon, 19 Dec 2011 02:30:31 +0000 (18:30 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 19 Dec 2011 02:34:02 +0000 (18:34 -0800)
commit34dcc119fe899f98395cb97d847040d384a8b861
treecea4a1e3ded12473b41791aa525420daa1625858
parent11495bbb2bba6e3cdb69078625dc7c90bc443c39
parse-xml: read the file into memory separately

Using xmlParseFile() was simple, but I'm planning on extending the file
parsing past just XML, since we want to be able to import other formats
too.  And quite frankly, that means that we'll want to read the file
into memory to look at it before we start parsing it.

We could decide do it by file extensions too, and I'll look at that
approach as well, but regardless of how we do things it's almost
certainly a good idea to do the file access in one place.  The XML
parsing might as well happen from a memory buffer instead anyway.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
parse-xml.c