The hexpat-iteratee package
This package provides chunked XML parsing using iteratees. It is especially suited to implementing XML-based socket protocols, but is useful wherever lazy parsing is needed on production systems where you can't tolerate the problems that come with Haskell's lazy I/O.
The XML is presented as a lazy tree, and is processed by a handler implemented using a monad transformer called XMLT. The resulting monad is suspended whenever it tries to read a part of the tree that hasn't been parsed yet, and continued as soon as it is available. The resulting code looks and functions very much as if you were using lazy I/O, only without the associated problems. Your handlers can have effects, yet they come out in quite a functional style.
Background: Haskell's lazy I/O can be problematic in some applications because it doesn't handle I/O errors properly, and you can't predict when it will clean up its resources, which could result in file handles running out.
Properties
| Versions | 0.1, 0.2, 0.3, 0.4, 0.5, 0.6 |
|---|---|
| Dependencies | base (≥3 & <5), bytestring, containers, extensible-exceptions (0.1.*), hexpat (≥0.18), iteratee (0.3.*), List (≥0.4), parallel, transformers |
| License | BSD3 |
| Copyright | (c) 2010 Stephen Blackheath <http://blacksapphire.com/antispam/> |
| Author | Stephen Blackheath (blackh) |
| Maintainer | http://blacksapphire.com/antispam/ |
| Stability | pre-alpha |
| Category | XML |
| Home page | http://haskell.org/haskellwiki/Hexpat/ |
| Source repository | darcs get http://code.haskell.org/hexpat-iteratee/ |
| Upload date | Fri Jun 4 10:53:49 UTC 2010 |
| Uploaded by | StephenBlackheath |
| Built on | ghc-6.12, ghc-7.0 |
Modules
- Text
- XML
Downloads
- hexpat-iteratee-0.6.tar.gz (Cabal source package)
- package description (included in the package)