www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - XML Sax Parser?

reply "Zz" <Zz Zz.com> writes:
Are there any in D. XMLD is based on CPPDOM which happens to be a DOM
parser.
Apr 27 2004
parent reply "Kris" <someidiot earthlink.dot.dot.dot.net> writes:
It would be almost trivial to build an exceptionally fast SAX parser; D
array slices are awesome for high-performance text-parsing -- just because
it's so easy to apply them :-)

Not that speed is everything, of course.


"Zz" <Zz Zz.com> wrote in message news:c6m7a4$2d2q$3 digitaldaemon.com...
 Are there any in D. XMLD is based on CPPDOM which happens to be a DOM
 parser.
Apr 27 2004
parent "Zz" <Zz Zz.com> writes:
After looking around for an API that is good and fast I stumbled across StAX
which is a streaming API that is much easier to use than SAX and on Java
Platforms it's faster than SAX.

http://dev2dev.bea.com/technologies/stax/index.jsp
http://otn.oracle.com/oramag/oracle/03-sep/o53devxml.html

Just posting the links in case anyone is interested.

Zz

"Kris" <someidiot earthlink.dot.dot.dot.net> wrote in message
news:c6m9cm$2gls$1 digitaldaemon.com...
 It would be almost trivial to build an exceptionally fast SAX parser; D
 array slices are awesome for high-performance text-parsing -- just because
 it's so easy to apply them :-)

 Not that speed is everything, of course.


 "Zz" <Zz Zz.com> wrote in message news:c6m7a4$2d2q$3 digitaldaemon.com...
 Are there any in D. XMLD is based on CPPDOM which happens to be a DOM
 parser.
Apr 29 2004