Are there any production-ready libraries for streaming XPath expressions evaluation against provided xml-document? My investigations show that most of existing solutions load entire DOM-tree into memory before evaluating xpath expression.
|
|
Would this be practical for a complete XPath implementation, given that XPath syntax allows for:
and
which implies look-ahead requirements ? i.e. from a particular node you're going to have to load the rest of the document anyway. The doc for the Nux library (specifically StreamingPathFilter) makes this point, and references some implementations that rely on a subset of XPath. Nux claims to perform some streaming query capability, but given the above there will be some limitations in terms of XPath implementation. |
|||||||||||
|
|
There are several options:
|
|||
|
|
|
XSLT 3.0 provides streaming mode of processing and this will become a standard with the XSLT 3.0 W3C specification becoming a W3C Recommendation. At the time of writing this answer (May, 2011) Saxon provides some support for XSLT 3.0 streaming . |
|||
|
|
|
Though I have no practical experience with it, I thought it is worth mentioning QuiXProc ( http://code.google.com/p/quixproc/ ). It is a streaming approach to XProc, and uses libraries that provide streaming support for XPath amongst others.. |
|||
|
|
|
FWIW, I've used Nux streaming filter xpath queries against very large (>3GB) files, and it's both worked flawlessly and used very little memory. My use case is been slightly different (not validation centric), but I'd highly encourage you to give it a shot with Nux. |
|||
|
|
