Evaluating XPath Expressions using s9api

The s9api interface is a custom-designed API for Saxon, allowing integrated access to all Saxon's XML processing capabilities in a uniform way, taking advantage of the type safety offered by generics in Java 5.

You can evaluate an XPath expression using the s9api interface as follows:

  1. Create a Processor and set any global configuration options on the Processor.

  2. Build the source document by calling newDocumentBuilder() to create a document builder, setting appropriate options, and then calling the build() method. This returns an XdmNode which can be supplied as the context item to the XPath expression.

  3. Call newXPathCompiler() to create an XPathCompiler, and set any options that are local to a specific compilation (notably declaring namespace prefixes that are used in the XPath expression).

  4. Call the compile() method to compile an expression. The result is an XPathExecutable, which can be used as often as you like in the same thread or in different threads.

  5. To evaluate the expression, call the load() method on the XPathExecutable. This creates an XPathSelector. The XPathSelector can be serially reused, but it must not be shared across multiple threads. Set any options required for the specific XPath execution (for example, the initial context node, the values of any variables referenced in the expression), and then call one of the methods iterator() evaluate(), or evaluateSingle() to execute the XPath expression.

  6. Because the XPathSelector is an Iterable, it is possible to iterate over the results directly using the Java 5 "for-each" construct.

  7. The result of an XPath expression is in general an XdmValue, representing a value as defined in the XDM data model (that is, a sequence of nodes and/or atomic values). Subclasses of XdmValue include XdmItem, XdmNode, and XdmAtomicValue, and these relate directly to the corresponding concepts in XDM. Various methods are available to translate between this model and native Java data types.

The XdmCompiler also has compile-and-go methods evaluate() and evaluateSingle() to execute an expression directly without going through an explicit compilation process. This provides a simpler approach if the expression is only evaluated once. The XdmCompiler also has the option of caching compiled expressions, so that if the same expression is evaluated repeatedly, the compiled form of the expression is re-used.

Examples of the use of s9api to evaluate XPath expressions are included in the Saxon resources file, see module S9APIExamples.java.