Expat is a
stream-oriented
XML 1.0 parser
library, written in
C. Expat was one of the first
XML parsers available as
open source, and has been incorporated into many open source projects. Such projects include the
Apache HTTP Server,
Mozilla,
Perl,
Python and
PHP.
Timeline
Software developer
James Clark released version 1.0 in 1998 while serving as technical lead on the
XML Working Group at the
World Wide Web Consortium. Clark released two more versions, 1.1 and 1.2, before turning the project over to a group led by
Clark Cooper and
Fred Drake in 2000. The new group released version 1.95.0 in September 2000 and continues to release new versions to incorporate bug fixes and enhancements. Expat is hosted as a
SourceForge project. Versions are available for most major operating systems.
Deployment
To use the Expat library, programs first register handler functions with Expat. When Expat parses an XML document, it calls the registered handlers as it finds relevant tokens in the input stream. These tokens and their associated handler calls are called
events. Typically, programs register handler functions for XML element start or stop events and character events. Expat provides facilities for more sophisticated event handling such as
XML Namespace declarations, processing instructions and DTD events.
Expat's parsing events are similar to the events defined in the Simple API for XML (SAX), but Expat is not a SAX-compliant parser. Projects incorporating the Expat library often build SAX and possibly DOM parsers on top of Expat. While Expat is mainly a stream-based (push) parser, it supports stopping and restarting parsing at arbitrary times, thus making the implementation of a pull parser relatively easy too.
External links