All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.saxon.Controller Maven / Gradle / Ivy

There is a newer version: 10.5
Show newest version
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2013 Saxonica Limited.
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

package net.sf.saxon;

import net.sf.saxon.event.*;
import net.sf.saxon.expr.ErrorExpression;
import net.sf.saxon.expr.XPathContext;
import net.sf.saxon.expr.XPathContextMajor;
import net.sf.saxon.expr.instruct.*;
import net.sf.saxon.expr.parser.PathMap;
import net.sf.saxon.functions.Component;
import net.sf.saxon.functions.EscapeURI;
import net.sf.saxon.lib.*;
import net.sf.saxon.om.*;
import net.sf.saxon.pattern.NodeKindTest;
import net.sf.saxon.serialize.Emitter;
import net.sf.saxon.serialize.ImplicitResultChecker;
import net.sf.saxon.trace.Location;
import net.sf.saxon.trace.TraceEventMulticaster;
import net.sf.saxon.trans.*;
import net.sf.saxon.tree.iter.SingletonIterator;
import net.sf.saxon.tree.wrapper.SpaceStrippedDocument;
import net.sf.saxon.tree.wrapper.TypeStrippedDocument;
import net.sf.saxon.type.Untyped;
import net.sf.saxon.value.DateTimeValue;
import net.sf.saxon.value.SingletonClosure;
import org.xml.sax.SAXParseException;

import javax.xml.transform.*;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.sax.SAXSource;
import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.stream.StreamSource;
import java.io.*;
import java.util.*;

/**
 * The Controller is Saxon's implementation of the JAXP Transformer class, and represents
 * an executing instance of a transformation or query. Multiple concurrent executions of
 * the same transformation or query will use different Controller instances. This class is
 * therefore not thread-safe.
 * 

* The Controller is serially reusable, as required by JAXP: when one transformation or query * is finished, it can be used to run another. However, there is no advantage in doing this * rather than allocating a new Controller each time. *

* The Controller can also be used when running Java applications that use neither XSLT nor * XQuery. A dummy Controller is created when running free-standing XPath expressions. *

* The Controller holds those parts of the dynamic context that do not vary during the course * of a transformation or query, or that do not change once their value has been computed. * This also includes those parts of the static context that are required at run-time. *

* Wherever possible XSLT applications should use the JAXP Transformer class directly, * rather than relying on Saxon-specific methods in the Controller. However, some * features are currently available only through this class. This applies especially * to new features specific to XSLT 2.0, since the JAXP interface still supports * only XSLT 1.0. Such methods may be superseded in the future by JAXP methods. *

* Many methods on the Controller are designed for internal use and should not be * considered stable. From release 8.4 onwards, those methods that are considered sufficiently * stable to constitute path of the Saxon public API are labelled with the JavaDoc tag "since": * the value indicates the release at which the method was added to the public API. * * @author Michael H. Kay * @since 8.4 */ public class Controller extends Transformer { private Configuration config; /*@Nullable*/ private Item initialContextItem; /*@Nullable*/ private Item contextForGlobalVariables; private Bindery bindery; // holds values of global and local variables private NamePool namePool; private String messageReceiverClassName; /*@Nullable*/ private Receiver messageReceiver; private RuleManager ruleManager; /*@Nullable*/ private Properties localOutputProperties; /*@Nullable*/ private GlobalParameterSet parameters; private PreparedStylesheet preparedStylesheet; /*@Nullable*/ private TraceListener traceListener; private boolean tracingPaused; private PrintStream traceFunctionDestination; private URIResolver standardURIResolver; private URIResolver userURIResolver; /*@Nullable*/ private Result principalResult; /*@Nullable*/ private String principalResultURI; /*@Nullable*/ private String cookedPrincipalResultURI; private boolean thereHasBeenAnExplicitResultDocument; /*@Nullable*/ private OutputURIResolver outputURIResolver; private UnparsedTextURIResolver unparsedTextResolver; /*@Nullable*/ private SchemaURIResolver schemaURIResolver; /*@Nullable*/ private CollectionURIResolver collectionURIResolver; /*@Nullable*/ private String defaultCollectionURI; private ErrorListener errorListener; private int recoveryPolicy; private Executable executable; private TreeModel treeModel = TreeModel.TINY_TREE; /*@Nullable*/ private Template initialTemplate = null; /*@Nullable*/ private HashSet allOutputDestinations; private DocumentPool sourceDocumentPool; /*@Nullable*/ private SequenceOutputter reusableSequenceOutputter = null; private HashMap userDataTable; /*@Nullable*/ private DateTimeValue currentDateTime; private boolean dateTimePreset = false; /*@Nullable*/ private StructuredQName initialMode = null; /*@Nullable*/ private NodeInfo lastRememberedNode = null; private int lastRememberedNumber = -1; /*@Nullable*/ private ClassLoader classLoader; /*@Nullable*/ private PathMap pathMap = null; private int validationMode; private boolean inUse = false; private boolean stripSourceTrees = true; // private XPathException errFound = null; // private List asyncTaskList = new ArrayList(5); public final static String ANONYMOUS_PRINCIPAL_OUTPUT_URI = "dummy:/anonymous/principal/result"; /** * Create a Controller and initialise variables. Note: XSLT applications should * create the Controller by using the JAXP newTransformer() method, or in S9API * by using XsltExecutable.load() * * @param config The Configuration used by this Controller */ public Controller(Configuration config) { this.config = config; // create a dummy executable executable = new Executable(config); executable.setHostLanguage(config.getHostLanguage(), false); sourceDocumentPool = new DocumentPool(); reset(); } /** * Create a Controller and initialise variables. * * @param config The Configuration used by this Controller * @param executable The executable used by this Controller */ public Controller(Configuration config, Executable executable) { this.config = config; this.executable = executable; sourceDocumentPool = new DocumentPool(); reset(); } /** *

Reset this Transformer to its original configuration.

*

*

Transformer is reset to the same state as when it was created with * {@link javax.xml.transform.TransformerFactory#newTransformer()}, * {@link javax.xml.transform.TransformerFactory#newTransformer(javax.xml.transform.Source source)} or * {@link javax.xml.transform.Templates#newTransformer()}. * reset() is designed to allow the reuse of existing Transformers * thus saving resources associated with the creation of new Transformers.

*

* The above is from the JAXP specification. With Saxon, it's unlikely that reusing a Transformer will * give any performance benefits over creating a new one. The one case where it might be beneficial is * to reuse the document pool (the set of documents that have been loaded using the doc() or document() * functions). Therefore, this method does not clear the document pool. If you want to clear the document * pool, call the method {@link #clearDocumentPool} as well. *

*

The reset Transformer is not guaranteed to have the same {@link javax.xml.transform.URIResolver} * or {@link javax.xml.transform.ErrorListener} Objects, e.g. {@link Object#equals(Object obj)}. * It is guaranteed to have a functionally equal URIResolver * and ErrorListener.

* * @since 1.5 */ public void reset() { bindery = new Bindery(); namePool = config.getNamePool(); standardURIResolver = config.getSystemURIResolver(); userURIResolver = config.getURIResolver(); outputURIResolver = config.getOutputURIResolver(); schemaURIResolver = config.getSchemaURIResolver(); unparsedTextResolver = new StandardUnparsedTextResolver(); errorListener = config.getErrorListener(); recoveryPolicy = config.getRecoveryPolicy(); validationMode = config.getSchemaValidationMode(); if (errorListener instanceof StandardErrorListener) { // if using a standard error listener, make a fresh one // for each transformation, because it is stateful - and also because the // host language is now known (a Configuration can serve multiple host languages) PrintStream ps = ((StandardErrorListener) errorListener).getErrorOutput(); errorListener = ((StandardErrorListener) errorListener).makeAnother(executable.getHostLanguage()); ((StandardErrorListener) errorListener).setErrorOutput(ps); ((StandardErrorListener) errorListener).setRecoveryPolicy(recoveryPolicy); } traceListener = null; traceFunctionDestination = config.getStandardErrorOutput(); TraceListener tracer; try { tracer = config.makeTraceListener(); } catch (XPathException err) { throw new IllegalStateException(err.getMessage()); } if (tracer != null) { addTraceListener(tracer); } setModel(config.getParseOptions().getModel()); contextForGlobalVariables = null; messageReceiver = null; localOutputProperties = null; parameters = null; currentDateTime = null; dateTimePreset = false; initialContextItem = null; initialMode = null; initialTemplate = null; classLoader = null; clearPerTransformationData(); } /** * Reset variables that need to be reset for each transformation if the controller * is serially reused */ private void clearPerTransformationData() { userDataTable = new HashMap(20); principalResult = null; //principalResultURI = null; allOutputDestinations = null; thereHasBeenAnExplicitResultDocument = false; lastRememberedNode = null; lastRememberedNumber = -1; tracingPaused = false; } /** * Get the Configuration associated with this Controller. The Configuration holds * settings that potentially apply globally to many different queries and transformations. * * @return the Configuration object * @since 8.4 */ public Configuration getConfiguration() { return config; } /** * Set the initial mode for the transformation. *

* XSLT 2.0 allows a transformation to be started in a mode other than the default mode. * The transformation then starts by looking for the template rule in this mode that best * matches the initial context node. *

* This method may eventually be superseded by a standard JAXP method. * * @param expandedModeName the name of the initial mode. The mode is * supplied as an expanded QName, that is "localname" if there is no * namespace, or "{uri}localname" otherwise. If the value is null or zero-length, * the initial mode is reset to the unnamed default mode. * @since 8.4 */ public void setInitialMode(/*@Nullable*/ String expandedModeName) { if (expandedModeName == null || expandedModeName.length() == 0) { initialMode = null; } else { initialMode = StructuredQName.fromClarkName(expandedModeName); } } /** * Get the name of the initial mode for the transformation * * @return the name of the initial mode, as a name in Clark format; null indicates * that the initial mode is the unnamed mode. */ public String getInitialModeName() { return initialMode.getClarkName(); } /** * Get the initial mode for the transformation * * @return the initial mode. This will be the default/unnamed mode if no specific mode * has been requested */ /*@NotNull*/ public Mode getInitialMode() { return preparedStylesheet.getRuleManager().getMode(initialMode, false); } //////////////////////////////////////////////////////////////////////////////// // Methods for managing output destinations and formatting //////////////////////////////////////////////////////////////////////////////// /** * Set the output properties for the transformation. These * properties will override properties set in the templates * with xsl:output. *

* As well as the properties defined in the JAXP OutputKeys class, * Saxon defines an additional set of properties in {@link SaxonOutputKeys}. * These fall into two categories: Constants representing serialization * properties defined in XSLT 2.0 (which are not yet supported by JAXP), * and constants supporting Saxon extensions to the set of serialization * properties. * * @param properties the output properties to be used for the * transformation. If the value is null, the properties are reset to * be the properties of the Templates object (that is, for XSLT 2.0, * the properties set in the unnamed xsl:output object). * @throws IllegalArgumentException if any of the properties are invalid (other than * properties in a user-defined namespace) * @see SaxonOutputKeys * @since 8.4 */ public void setOutputProperties(/*@Nullable*/ Properties properties) { if (properties == null) { localOutputProperties = null; } else { Enumeration keys = properties.propertyNames(); while (keys.hasMoreElements()) { String key = (String) keys.nextElement(); setOutputProperty(key, properties.getProperty(key)); } } } /** * Get the output properties for the transformation. *

* As well as the properties defined in the JAXP OutputKeys class, * Saxon defines an additional set of properties in {@link SaxonOutputKeys}. * These fall into two categories: Constants representing serialization * properties defined in XSLT 2.0 (which are not yet supported by JAXP), * and constants supporting Saxon extensions to the set of serialization * properties. * * @return the output properties being used for the transformation, * including properties defined in the stylesheet for the unnamed * output format * @see SaxonOutputKeys * @since 8.4 */ public Properties getOutputProperties() { if (localOutputProperties == null) { if (executable == null) { return new Properties(); } else { localOutputProperties = new Properties(executable.getDefaultOutputProperties()); } } // Make a copy, so that modifications to the returned properties object have no effect (even on the // local output properties) Properties newProps = new Properties(); Enumeration keys = localOutputProperties.propertyNames(); while (keys.hasMoreElements()) { String key = (String) keys.nextElement(); newProps.setProperty(key, localOutputProperties.getProperty(key)); } return newProps; } /** * Set an output property for the transformation. *

*

As well as the properties defined in the JAXP OutputKeys class, * Saxon defines an additional set of properties in {@link SaxonOutputKeys}. * These fall into two categories: Constants representing serialization * properties defined in XSLT 2.0 (which are not yet supported by JAXP), * and constants supporting Saxon extensions to the set of serialization * properties.

*

*

As an extension to the JAXP specification, supplying the value "" (a zero-length * string) for any parameter has the effect of cancelling any value defined in the * stylesheet or query; for example setting doctype-system or doctype-public to "" * causes the serializer to be run with these properties taken as absent. This rule * does not apply to parameters where "" is a meaningful value, for example cdata-section-elements.

* * @param name the name of the property * @param value the value of the property * @throws IllegalArgumentException if the property is invalid (except for * properties in a user-defined namespace) * @see SaxonOutputKeys * @since 8.4 */ public void setOutputProperty(String name, String value) { if (localOutputProperties == null) { localOutputProperties = getOutputProperties(); } try { SaxonOutputKeys.checkOutputProperty(name, value, getConfiguration()); } catch (XPathException err) { throw new IllegalArgumentException(err.getMessage()); } localOutputProperties.setProperty(name, value); } /** * Get the value of an output property. *

* As well as the properties defined in the JAXP OutputKeys class, * Saxon defines an additional set of properties in {@link net.sf.saxon.lib.SaxonOutputKeys}. * These fall into two categories: Constants representing serialization * properties defined in XSLT 2.0 (which are not yet supported by JAXP), * and constants supporting Saxon extensions to the set of serialization * properties. * * @param name the name of the requested property * @return the value of the requested property * @see SaxonOutputKeys * @since 8.4 */ /*@Nullable*/ public String getOutputProperty(String name) { try { SaxonOutputKeys.checkOutputProperty(name, null, getConfiguration()); } catch (XPathException err) { throw new IllegalArgumentException(err.getMessage()); } if (localOutputProperties == null) { if (executable == null) { return null; } else { localOutputProperties = executable.getDefaultOutputProperties(); } } return localOutputProperties.getProperty(name); } /** * Set the base output URI. *

*

This defaults to the system ID of the Result object for the principal output * of the transformation if this is known; if it is not known, it defaults * to the current directory.

*

*

The base output URI is used for resolving relative URIs in the href attribute * of the xsl:result-document instruction.

* * @param uri the base output URI * @since 8.4 */ public void setBaseOutputURI(String uri) { principalResultURI = uri; } /** * Get the base output URI. *

*

This returns the value set using the {@link #setBaseOutputURI} method. If no value has been set * explicitly, then the method returns null if called before the transformation, or the computed * default base output URI if called after the transformation.

*

*

The base output URI is used for resolving relative URIs in the href attribute * of the xsl:result-document instruction.

* * @return the base output URI * @since 8.4 */ /*@Nullable*/ public String getBaseOutputURI() { return principalResultURI; } /** * Get the base output URI after processing. The processing consists of (a) defaulting * to the current user directory if no base URI is available and if the stylesheet is trusted, * and (b) applying IRI-to-URI escaping * * @return the base output URI after processing. */ /*@Nullable*/ public String getCookedBaseOutputURI() { if (cookedPrincipalResultURI == null) { String base = getBaseOutputURI(); if (base == null && config.getBooleanProperty(FeatureKeys.ALLOW_EXTERNAL_FUNCTIONS)) { // if calling external functions is allowed, then the stylesheet is trusted, so // we allow it to write to files relative to the current directory base = new File(System.getProperty("user.dir")).toURI().toString(); } if (base != null) { base = EscapeURI.iriToUri(base).toString(); } cookedPrincipalResultURI = base; } return cookedPrincipalResultURI; } /** * Get the principal result destination. *

This method is intended for internal use only. It is typically called by Saxon during the course * of a transformation, to discover the result that was supplied in the transform() call.

* * @return the Result object supplied as the principal result destination. */ /*@Nullable*/ public Result getPrincipalResult() { return principalResult; } /** * Check that an output destination has not been used before, optionally adding * this URI to the set of URIs that have been used. * * @param uri the URI to be used as the output destination * @return true if the URI is available for use; false if it has already been used. *

* This method is intended for internal use only. */ public synchronized boolean checkUniqueOutputDestination(/*@Nullable*/ DocumentURI uri) { if (uri == null) { return true; // happens when writing say to an anonymous StringWriter } if (allOutputDestinations == null) { allOutputDestinations = new HashSet(20); } return !allOutputDestinations.contains(uri); } /** * Add a URI to the set of output destinations that cannot be written to, either because * they have already been written to, or because they have been read * * @param uri A URI that is not available as an output destination */ public void addUnavailableOutputDestination(DocumentURI uri) { if (allOutputDestinations == null) { allOutputDestinations = new HashSet(20); } allOutputDestinations.add(uri); } /** * Remove a URI from the set of output destinations that cannot be written to or read from. * Used to support saxon:discard-document() * * @param uri A URI that is being made available as an output destination */ public void removeUnavailableOutputDestination(DocumentURI uri) { if (allOutputDestinations != null) { allOutputDestinations.remove(uri); } } /** * Determine whether an output URI is available for use. This method is intended * for use by applications, via an extension function. * * @param uri A uri that the application is proposing to use in the href attribute of * xsl:result-document: if this function returns false, then the xsl:result-document * call will fail saying the URI has already been used. * @return true if the URI is available for use. Note that this function is not "stable": * it may return different results for the same URI at different points in the transformation. */ public boolean isUnusedOutputDestination(DocumentURI uri) { return allOutputDestinations == null || !allOutputDestinations.contains(uri); } /** * Check whether an XSLT implicit result tree can be written. This is allowed only if no xsl:result-document * has been written for the principal output URI */ public void checkImplicitResultTree() throws XPathException { String implicitURI = principalResultURI; if (implicitURI == null) { implicitURI = ANONYMOUS_PRINCIPAL_OUTPUT_URI; } //if (principalResultURI != null) { DocumentURI documentURI = new DocumentURI(implicitURI); synchronized (this){ if (!checkUniqueOutputDestination(documentURI)) { XPathException err = new XPathException( "Cannot write an implicit result document if an explicit result document has been written to the same URI: " + (implicitURI.equals(ANONYMOUS_PRINCIPAL_OUTPUT_URI) ? "(no URI supplied)" : implicitURI)); err.setErrorCode("XTDE1490"); throw err; } else { addUnavailableOutputDestination(documentURI); } } //} } /** * Set that an explicit result tree has been written using xsl:result-document */ public void setThereHasBeenAnExplicitResultDocument() { thereHasBeenAnExplicitResultDocument = true; } /** * Test whether an explicit result tree has been written using xsl:result-document * * @return true if the transformation has evaluated an xsl:result-document instruction */ public boolean hasThereBeenAnExplicitResultDocument() { return thereHasBeenAnExplicitResultDocument; } /** * Allocate a SequenceOutputter for a new output destination. Reuse the existing one * if it is available for reuse (this is designed to ensure that the TinyTree structure * is also reused, creating a forest of trees all sharing the same data structure) * * @param size the estimated size of the output sequence * @return SequenceOutputter the allocated SequenceOutputter */ /*@NotNull*/ public synchronized SequenceOutputter allocateSequenceOutputter(int size) { PipelineConfiguration pipe = makePipelineConfiguration(); SequenceOutputter so = reusableSequenceOutputter; if (so != null) { so.setPipelineConfiguration(pipe); so.setSystemId(null); // Added 10.8.2009 - seems right, but doesn't solve EvaluateNodeTest problem reusableSequenceOutputter = null; return so; } else { return new SequenceOutputter(pipe, this, size); } } /** * Accept a SequenceOutputter that is now available for reuse * * @param out the SequenceOutputter that is available for reuse */ public void reuseSequenceOutputter(SequenceOutputter out) { reusableSequenceOutputter = out; } /////////////////////////////////////////////////////////////////////////////// /** * Set the initial named template to be used as the entry point. *

* XSLT 2.0 allows a transformation to start by executing a named template, rather than * by matching an initial context node in a source document. This method may eventually * be superseded by a standard JAXP method once JAXP supports XSLT 2.0. *

* Note that any parameters supplied using {@link #setParameter} are used as the values * of global stylesheet parameters. There is no way to supply values for local parameters * of the initial template. * * @param expandedName The expanded name of the template in {uri}local format, or null * or a zero-length string to indicate that there should be no initial template. * @throws XPathException if there is no named template with this name * @since 8.4 */ public void setInitialTemplate(/*@Nullable*/ String expandedName) throws XPathException { if (expandedName == null || expandedName.length() == 0) { initialTemplate = null; return; } StructuredQName qName = StructuredQName.fromClarkName(expandedName); Template t = ((PreparedStylesheet) getExecutable()).getNamedTemplate(qName); if (t == null) { XPathException err = new XPathException("The requested initial template, with expanded name " + expandedName + ", does not exist"); err.setErrorCode("XTDE0040"); reportFatalError(err); throw err; } else if (t.hasRequiredParams()) { XPathException err = new XPathException("The named template " + expandedName + " has required parameters, so cannot be used as the entry point"); err.setErrorCode("XTDE0060"); reportFatalError(err); throw err; } else { initialTemplate = t; } } /** * Get the initial template * * @return the name of the initial template, as an expanded name in Clark format if set, or null otherwise * @since 8.7 */ /*@Nullable*/ public String getInitialTemplate() { if (initialTemplate == null) { return null; } else { return initialTemplate.getTemplateName().getClarkName(); } } /////////////////////////////////////////////////////////////////////////////// /** * Make a PipelineConfiguration based on the properties of this Controller. *

* This interface is intended primarily for internal use, although it may be necessary * for applications to call it directly if they construct pull or push pipelines * * @return a newly constructed PipelineConfiguration holding a reference to this * Controller as well as other configuration information. */ /*@NotNull*/ public PipelineConfiguration makePipelineConfiguration() { PipelineConfiguration pipe = new PipelineConfiguration(getConfiguration()); pipe.setURIResolver(userURIResolver == null ? standardURIResolver : userURIResolver); pipe.setSchemaURIResolver(schemaURIResolver); pipe.setExpandAttributeDefaults(getConfiguration().isExpandAttributeDefaults()); pipe.setParseOptions(new ParseOptions(config.getParseOptions())); pipe.setErrorListener(getErrorListener()); pipe.setController(this); final Executable executable = getExecutable(); if (executable != null) { // can be null for an IdentityTransformer pipe.setLocationProvider(executable.getLocationMap()); pipe.setHostLanguage(executable.getHostLanguage()); } return pipe; } /** * Make a Receiver to be used for xsl:message output. *

* This method is intended for internal use only. * * @return The newly constructed message Emitter * @throws XPathException if any dynamic error occurs; in * particular, if the registered MessageEmitter class is not an * Emitter */ /*@NotNull*/ private Receiver makeMessageReceiver() throws XPathException { Object messageReceiver = config.getInstance(messageReceiverClassName, getClassLoader()); if (!(messageReceiver instanceof Receiver)) { throw new XPathException(messageReceiverClassName + " is not a Receiver"); } ((Receiver) messageReceiver).setPipelineConfiguration(makePipelineConfiguration()); setMessageEmitter((Receiver) messageReceiver); return (Receiver) messageReceiver; } /** * Set the Receiver to be used for xsl:message output. *

* Recent versions of the JAXP interface specify that by default the * output of xsl:message is sent to the registered ErrorListener. Saxon * does not implement this convention. Instead, the output is sent * to a default message emitter, which is a slightly customised implementation * of the standard Saxon Emitter interface.

*

* This interface can be used to change the way in which Saxon outputs * xsl:message output.

*

* It is not necessary to use this interface in order to change the destination * to which messages are written: that can be achieved by obtaining the standard * message emitter and calling its {@link Emitter#setWriter} method.

*

* Although any Receiver can be supplied as the destination for messages, * applications may find it convenient to implement a subclass of {@link net.sf.saxon.event.SequenceWriter}, * in which only the abstract write() method is implemented. This will have the effect that the * write() method is called to output each message as it is generated, with the Item * that is passed to the write() method being the document node at the root of an XML document * containing the contents of the message. *

* This method is intended for use by advanced applications. The Receiver interface * itself is subject to change in new Saxon releases.

*

* The supplied Receiver will have its open() method called once at the start of * the transformation, and its close() method will be called once at the end of the * transformation. Each individual call of an xsl:message instruction is wrapped by * calls of startDocument() and endDocument(). If terminate="yes" is specified on the * xsl:message call, the properties argument of the startDocument() call will be set * to the value {@link ReceiverOptions#TERMINATE}.

* * @param receiver The receiver to receive xsl:message output. * @since 8.4; changed in 8.9 to supply a Receiver rather than an Emitter */ public void setMessageEmitter(/*@NotNull*/ Receiver receiver) { messageReceiver = receiver; receiver.setPipelineConfiguration(makePipelineConfiguration()); if (receiver instanceof Emitter && ((Emitter) receiver).getOutputProperties() == null) { try { Properties props = new Properties(); props.setProperty(OutputKeys.METHOD, "xml"); props.setProperty(OutputKeys.INDENT, "yes"); props.setProperty(OutputKeys.OMIT_XML_DECLARATION, "yes"); ((Emitter) receiver).setOutputProperties(props); } catch (XPathException e) { // no action } } } /** * Get the Receiver used for xsl:message output. This returns the emitter * previously supplied to the {@link #setMessageEmitter} method, or the * default message emitter otherwise. * * @return the Receiver being used for xsl:message output * @since 8.4; changed in 8.9 to return a Receiver rather than an Emitter */ /*@Nullable*/ public Receiver getMessageEmitter() { return messageReceiver; } /** * Set the policy for handling recoverable XSLT errors. *

*

Since 9.3 this call has no effect unless the error listener in use is a {@link StandardErrorListener} * or a subclass thereof. Calling this method then results in a call to the StandardErrorListener * to set the recovery policy, and the action that is taken on calls of the various methods * error(), fatalError(), and warning() is then the responsibility of the ErrorListener itself.

*

*

Since 9.2 the policy for handling the most common recoverable error, namely the ambiguous template * match that arises when a node matches more than one match pattern, is a compile-time rather than run-time * setting, and can be controlled using {@link CompilerInfo#setRecoveryPolicy(int)}

* * @param policy the recovery policy to be used. The options are {@link Configuration#RECOVER_SILENTLY}, * {@link Configuration#RECOVER_WITH_WARNINGS}, or {@link Configuration#DO_NOT_RECOVER}. * @since 8.7.1 */ public void setRecoveryPolicy(int policy) { recoveryPolicy = policy; if (errorListener instanceof StandardErrorListener) { ((StandardErrorListener) errorListener).setRecoveryPolicy(policy); } } /** * Get the policy for handling recoverable errors * * @return the current policy. If none has been set with this Controller, the value registered with the * Configuration is returned. * @since 8.7.1 */ public int getRecoveryPolicy() { return recoveryPolicy; } /** * Set the error listener. * * @param listener the ErrorListener to be used */ public void setErrorListener(ErrorListener listener) { errorListener = listener; } /** * Get the error listener. * * @return the ErrorListener in use */ public ErrorListener getErrorListener() { return errorListener; } /** * Report a recoverable error. This is an XSLT concept: by default, such an error results in a warning * message, and processing continues. In XQuery, however, there are no recoverable errors so a fatal * error is reported. *

* This method is intended for internal use only. * * @param err An exception holding information about the error * @throws XPathException if the error listener decides not to * recover from the error */ public void recoverableError(XPathException err) throws XPathException { if (executable.getHostLanguage() == Configuration.XQUERY || recoveryPolicy == Configuration.DO_NOT_RECOVER) { throw err; } else { try { errorListener.error(err); } catch (TransformerException e) { XPathException de = XPathException.makeXPathException(e); de.setHasBeenReported(true); throw de; } } } /** * Report a fatal error * * @param err the error to be reported */ public void reportFatalError(XPathException err) { if (!err.hasBeenReported()) { try { getErrorListener().fatalError(err); } catch (TransformerException e) { // } err.setHasBeenReported(true); } } /** * Report a warning * @param message the warning message */ public void warning(String message, String errorCode) { try { getErrorListener().warning(new XPathException(message, errorCode)); } catch (TransformerException e) { // } } ///////////////////////////////////////////////////////////////////////////////////////// // Methods for managing the various runtime control objects ///////////////////////////////////////////////////////////////////////////////////////// /** * Get the Executable object. *

* This method is intended for internal use only. * * @return the Executable (which represents the compiled stylesheet) */ public Executable getExecutable() { return executable; } /** * Get the document pool. This is used only for source documents, not for stylesheet modules. *

* This method is intended for internal use only. * * @return the source document pool */ public DocumentPool getDocumentPool() { return sourceDocumentPool; } /** * Clear the document pool. * This is sometimes useful when re-using the same Transformer * for a sequence of transformations, but it isn't done automatically, because when * the transformations use common look-up documents, the caching is beneficial. */ public void clearDocumentPool() { sourceDocumentPool.discardIndexes(getKeyManager()); sourceDocumentPool = new DocumentPool(); } /** * Set the initial context item, when running XQuery. *

* When a transformation is invoked using the {@link #transform} method, the * initial context node is set automatically. This method is useful in XQuery, * to define an initial context node for evaluating global variables, and also * in XSLT 2.0, when the transformation is started by invoking a named template. *

*

When an initial context item is set, it also becomes the context item used for * evaluating global variables. The two context items can only be different when the * {@link #transform} method is used to transform a document starting at a node other * than the root.

*

*

In XQuery, the two context items are always * the same; in XSLT, the context node for evaluating global variables is the root of the * tree containing the initial context item.

* * @param item The initial context item. * @since 8.7 */ public void setInitialContextItem(Item item) { initialContextItem = item; contextForGlobalVariables = item; } /** * Get the current bindery. *

* This method is intended for internal use only. * * @return the Bindery (in which values of all variables are held) */ public Bindery getBindery() { return bindery; } /** * Get the initial context item. This returns the item (often a document node) * previously supplied to the {@link #setInitialContextItem} method, or the * initial context node set implicitly using methods such as {@link #transform}. * * @return the initial context item. Note that in XSLT this must be a node, but in * XQuery it may also be an atomic value. * @since 8.7 */ /*@Nullable*/ public Item getInitialContextItem() { return initialContextItem; } /** * Get the item used as the context for evaluating global variables. In XQuery this * is the same as the initial context item; in XSLT it is the root of the tree containing * the initial context node. * * @return the context item for evaluating global variables, or null if there is none * @since 8.7 */ /*@Nullable*/ public Item getContextForGlobalVariables() { return contextForGlobalVariables; // See bug 5224, which points out that the rules for XQuery 1.0 weren't clearly defined } /** * Set an object that will be used to resolve URIs used in * document(), etc. * * @param resolver An object that implements the URIResolver interface, or * null. */ public void setURIResolver(URIResolver resolver) { userURIResolver = resolver; if (resolver instanceof StandardURIResolver) { ((StandardURIResolver) resolver).setConfiguration(getConfiguration()); } } /** * Get the URI resolver. *

*

This method changed in Saxon 8.5, to conform to the JAXP specification. If there * is no user-specified URIResolver, it now returns null; previously it returned the system * default URIResolver.

* * @return the user-supplied URI resolver if there is one, or null otherwise. */ public URIResolver getURIResolver() { return userURIResolver; } /** * Get the fallback URI resolver. This is the URIResolver that Saxon uses when * the user-supplied URI resolver returns null. *

* This method is intended for internal use only. * * @return the the system-defined URIResolver */ public URIResolver getStandardURIResolver() { return standardURIResolver; } /** * Set the URI resolver for secondary output documents. *

* XSLT 2.0 introduces the xsl:result-document * In Saxon 9.5, because xsl:result-document is now multi-threaded, the * supplied resolver is cloned each time a new result document is created. * The cloned resolved is therefore able to maintain information about * the specific result document for use when its close() method is called, * without worrying about thread safety. * * @param resolver An object that implements the OutputURIResolver * interface, or null. * @since 8.4 */ public void setOutputURIResolver(/*@Nullable*/ OutputURIResolver resolver) { if (resolver == null) { outputURIResolver = config.getOutputURIResolver(); } else { outputURIResolver = resolver; } } /** * Get the output URI resolver. * * @return the user-supplied URI resolver if there is one, or the * system-defined one otherwise. * @see #setOutputURIResolver * @since 8.4 */ /*@Nullable*/ public OutputURIResolver getOutputURIResolver() { return outputURIResolver; } /** * Set an UnparsedTextURIResolver to be used to resolve URIs passed to the XSLT * unparsed-text() function. * * @param resolver the unparsed text URI resolver to be used. This replaces any unparsed text * URI resolver previously registered. * @since 8.9 */ public void setUnparsedTextURIResolver(UnparsedTextURIResolver resolver) { unparsedTextResolver = resolver; } /** * Get the URI resolver for the unparsed-text() function. This will * return the UnparsedTextURIResolver previously set using the {@link #setUnparsedTextURIResolver} * method. * * @return the registered UnparsedTextURIResolver * @since 8.9 */ public UnparsedTextURIResolver getUnparsedTextURIResolver() { return unparsedTextResolver; } /** * Set the SchemaURIResolver used for resolving references to schema * documents. Defaults to the SchemaURIResolver registered with the * Configuration * * @param resolver the resolver for references to schema documents */ public void setSchemaURIResolver(SchemaURIResolver resolver) { schemaURIResolver = resolver; } /** * Get the SchemaURIResolver used for resolving references to schema * documents. If none has been set on the Controller, returns the * SchemaURIResolver registered with the Configuration * * @return the resolver for references to schema documents */ /*@Nullable*/ public SchemaURIResolver getSchemaURIResolver() { return schemaURIResolver; } /** * Set the CollectionURIResolver used for resolving collection URIs. * Defaults to the CollectionURIResolver registered with the Configuration * * @param resolver the resolver for references to collections * @since 9.4 */ public void setCollectionURIResolver(CollectionURIResolver resolver) { collectionURIResolver = resolver; } /** * Get the CollectionURIResolver used for resolving references to collections. * If none has been set on the Controller, returns the * CollectionURIResolver registered with the Configuration * * @return the resolver for references to collections * @since 9.4 */ /*@NotNull*/ public CollectionURIResolver getCollectionURIResolver() { return (collectionURIResolver == null ? getConfiguration().getCollectionURIResolver() : collectionURIResolver); } /** * Set the name of the default collection. Defaults to the default collection * name registered with the Configuration. * * @param uri the collection URI of the default collection. May be null, to cause * fallback to the collection name registered with the Configuration. The name will be passed * to the collection URI resolver to identify the documents in the collection, unless * the name is http://saxon.sf.net/collection/empty which always refers * to the empty collection. * @since 9.4 */ public void setDefaultCollection(String uri) { defaultCollectionURI = uri; } /** * Get the name of the default collection. Defaults to the default collection * name registered with the Configuration. * * @return the collection URI of the default collection. If no value has been * set explicitly, the collection URI registered with the Configuration is returned * @since 9.4 */ public String getDefaultCollection() { return (defaultCollectionURI == null ? getConfiguration().getDefaultCollection() : defaultCollectionURI); } /** * Ask whether source documents loaded using the doc(), document(), and collection() * functions, or supplied as a StreamSource or SAXSource to the transform() or addParameter() method * should be subjected to schema validation * * @return the schema validation mode previously set using setSchemaValidationMode(), * or the default mode {@link Validation#STRIP} otherwise. */ public int getSchemaValidationMode() { return validationMode; } /** * Say whether source documents loaded using the doc(), document(), and collection() * functions, or supplied as a StreamSource or SAXSource to the transform() or addParameter() method, * should be subjected to schema validation. The default value is taken * from the corresponding property of the Configuration. * * @param validationMode the validation (or construction) mode to be used for source documents. * One of {@link Validation#STRIP}, {@link Validation#PRESERVE}, {@link Validation#STRICT}, * {@link Validation#LAX} * @since 9.2 */ public void setSchemaValidationMode(int validationMode) { this.validationMode = validationMode; } /** * Get the KeyManager. *

* This method is intended for internal use only. * * @return the KeyManager, which holds details of all key declarations */ public KeyManager getKeyManager() { return executable.getKeyManager(); } /** * Get the name pool in use. The name pool is responsible for mapping QNames used in source * documents and compiled stylesheets and queries into numeric codes. All source documents * used by a given transformation or query must use the same name pool as the compiled stylesheet * or query. * * @return the name pool in use * @since 8.4 */ public NamePool getNamePool() { return namePool; } /** * Set the tree data model to use. This affects all source documents subsequently constructed using a * Builder obtained from this Controller. This includes a document built from a StreamSource or * SAXSource supplied as a parameter to the {@link #transform} method. * * @param model the required tree model: {@link Builder#LINKED_TREE}, * {@link Builder#TINY_TREE}, or {@link Builder#TINY_TREE_CONDENSED} * @see net.sf.saxon.event.Builder * @since 8.4 (Condensed tinytree added in 9.2) * @deprecated since 9.2: use {@link #setModel} */ public void setTreeModel(int model) { treeModel = TreeModel.getTreeModel(model); } /** * Get the tree data model to use. This affects all source documents subsequently constructed using a * Builder obtained from this Controller. This includes a document built from a StreamSource or * SAXSource supplied as a parameter to the {@link #transform} method. * * @return model the tree model: {@link Builder#LINKED_TREE}, * {@link Builder#TINY_TREE}, or {@link Builder#TINY_TREE_CONDENSED} * @see net.sf.saxon.event.Builder * @since 9.1 (Condensed tinytree added in 9.2) * @deprecated since 9.2: use {@link #getModel} */ public int getTreeModel() { return treeModel.getSymbolicValue(); } /** * Set the tree model to use. Default is the tiny tree * * @param model typically one of the constants {@link net.sf.saxon.om.TreeModel#TINY_TREE}, * {@link net.sf.saxon.om.TreeModel#TINY_TREE_CONDENSED}, or {@link net.sf.saxon.om.TreeModel#LINKED_TREE}. * It is also possible to use a user-defined tree model. * @since 9.2 */ public void setModel(TreeModel model) { treeModel = model; } /** * Get the tree model that will be used. * * @return typically one of the constants {@link net.sf.saxon.om.TreeModel#TINY_TREE}, * {@link TreeModel#TINY_TREE_CONDENSED}, or {@link TreeModel#LINKED_TREE}. * It is also possible to use a user-defined tree model. * @since 9.2 */ public TreeModel getModel() { return treeModel; } /** * Make a builder for the selected tree model. * * @return an instance of the Builder for the chosen tree model * @since 8.4 */ public Builder makeBuilder() { Builder b = treeModel.makeBuilder(makePipelineConfiguration()); b.setTiming(config.isTiming()); b.setLineNumbering(config.isLineNumbering()); return b; } /** * Say whether the transformation should perform whitespace stripping as defined * by the xsl:strip-space and xsl:preserve-space declarations in the stylesheet * in the case where a source tree is supplied to the transformation as a tree * (typically a DOMSource, or a Saxon NodeInfo). * The default is true. It is legitimate to suppress whitespace * stripping if the client knows that all unnecessary whitespace has already been removed * from the tree before it is processed. Note that this option applies to all source * documents for which whitespace-stripping is normally applied, that is, both the * principal source documents, and documents read using the doc(), document(), and * collection() functions. It does not apply to source documents that are supplied * in the form of a SAXSource or StreamSource, for which whitespace is stripped * during the process of tree construction. *

Generally, stripping whitespace speeds up the transformation if it is done * while building the source tree, but slows it down if it is applied to a tree that * has already been built. So if the same source tree is used as input to a number * of transformations, it is better to strip the whitespace once at the time of * tree construction, rather than doing it on-the-fly during each transformation.

* * @param strip true if whitespace is to be stripped from supplied source trees * as defined by xsl:strip-space; false to suppress whitespace stripping * @since 9.3 */ public void setStripSourceTrees(boolean strip) { stripSourceTrees = strip; } /** * Ask whether the transformation will perform whitespace stripping for supplied source trees as defined * by the xsl:strip-space and xsl:preserve-space declarations in the stylesheet. * * @return true unless whitespace stripping has been suppressed using * {@link #setStripSourceTrees(boolean)}. * @since 9.3 */ public boolean isStripSourceTree() { return stripSourceTrees; } /** * Make a Stripper configured to implement the whitespace stripping rules. * In the case of XSLT the whitespace stripping rules are normally defined * by xsl:strip-space and xsl:preserve-space * This method is intended for internal use only. * * @param doc the root node of the document to be added. Must not be null. * @param uri the document-URI property of this document. If non-null, the document is registered * in the document pool with this as its document URI. */ public void registerDocument(/*@Nullable*/ DocumentInfo doc, /*@Nullable*/ DocumentURI uri) throws XPathException { if (doc == null) { throw new NullPointerException("null"); } if (!getExecutable().isSchemaAware() && !Untyped.getInstance().equals(doc.getSchemaType())) { String task = (getExecutable().getHostLanguage() == Configuration.XSLT ? "transformation" : "query"); throw new XPathException("The " + task + " is not schema-aware, so the source document must be untyped"); } if (uri != null) { sourceDocumentPool.add(doc, uri); } } //////////////////////////////////////////////////////////////////////////////// // Methods for registering and retrieving handlers for template rules //////////////////////////////////////////////////////////////////////////////// /** * Set the RuleManager, used to manage template rules for each mode. *

* This method is intended for internal use only. * * @param r the Rule Manager */ public void setRuleManager(RuleManager r) { ruleManager = r; } /** * Get the Rule Manager. *

* This method is intended for internal use only. * * @return the Rule Manager, used to hold details of template rules for * all modes */ public RuleManager getRuleManager() { return ruleManager; } ///////////////////////////////////////////////////////////////////////// // Methods for tracing ///////////////////////////////////////////////////////////////////////// /** * Set a TraceListener, replacing any existing TraceListener *

This method has no effect unless the stylesheet or query was compiled * with tracing enabled.

* * @param listener the TraceListener to be set. May be null, in which case * trace events will not be reported * @since 9.2 */ public void setTraceListener(TraceListener listener) { this.traceListener = listener; } /** * Get the TraceListener. By default, there is no TraceListener, and this * method returns null. A TraceListener may be added using the method * {@link #addTraceListener}. If more than one TraceListener has been added, * this method will return a composite TraceListener. Because the form * this takes is implementation-dependent, this method is not part of the * stable Saxon public API. * * @return the TraceListener used for XSLT or XQuery instruction tracing, or null if absent. */ /*@Nullable*/ public TraceListener getTraceListener() { return traceListener; } /** * Test whether instruction execution is being traced. This will be true * if (a) at least one TraceListener has been registered using the * {@link #addTraceListener} method, and (b) tracing has not been temporarily * paused using the {@link #pauseTracing} method. * * @return true if tracing is active, false otherwise * @since 8.4 */ public final boolean isTracing() { return traceListener != null && !tracingPaused; } /** * Pause or resume tracing. While tracing is paused, trace events are not sent to any * of the registered TraceListeners. * * @param pause true if tracing is to pause; false if it is to resume * @since 8.4 */ public final void pauseTracing(boolean pause) { tracingPaused = pause; } /** * Adds the specified trace listener to receive trace events from * this instance. Note that although TraceListeners can be added * or removed dynamically, this has no effect unless the stylesheet * or query has been compiled with tracing enabled. This is achieved * by calling {@link Configuration#setTraceListener} or by setting * the attribute {@link net.sf.saxon.lib.FeatureKeys#TRACE_LISTENER} on the * TransformerFactory. Conversely, if this property has been set in the * Configuration or TransformerFactory, the TraceListener will automatically * be added to every Controller that uses that Configuration. * * @param trace the trace listener. If null is supplied, the call has no effect. * @since 8.4 */ public void addTraceListener(/*@Nullable*/ TraceListener trace) { if (trace != null) { traceListener = TraceEventMulticaster.add(traceListener, trace); } } /** * Removes the specified trace listener so that the listener will no longer * receive trace events. * * @param trace the trace listener. * @since 8.4 */ public void removeTraceListener(TraceListener trace) { traceListener = TraceEventMulticaster.remove(traceListener, trace); } /** * Set the destination for output from the fn:trace() function. * By default, the destination is System.err. If a TraceListener is in use, * this is ignored, and the trace() output is sent to the TraceListener. * * @param stream the PrintStream to which trace output will be sent. If set to * null, trace output is suppressed entirely. It is the caller's responsibility * to close the stream after use. * @since 9.1 */ public void setTraceFunctionDestination(PrintStream stream) { traceFunctionDestination = stream; } /** * Get the destination for output from the fn:trace() function. * * @return the PrintStream to which trace output will be sent. If no explicitly * destination has been set, returns System.err. If the destination has been set * to null to suppress trace output, returns null. * @since 9.1 */ public PrintStream getTraceFunctionDestination() { return traceFunctionDestination; } /** * Associate this Controller with a compiled stylesheet. *

* This method is intended for internal use only. * * @param sheet the compiled stylesheet */ public void setPreparedStylesheet(PreparedStylesheet sheet) { preparedStylesheet = sheet; executable = sheet; messageReceiverClassName = sheet.getCompilerInfo().getMessageReceiverClassName(); outputURIResolver = sheet.getCompilerInfo().getOutputURIResolver(); recoveryPolicy = sheet.getCompilerInfo().getRecoveryPolicy(); //setOutputProperties(sheet.getOutputProperties()); // above line deleted for bug 490964 - may have side-effects } /** * */ /** * Associate this Controller with an Executable. This method is used by the XQuery * processor. The Executable object is overkill in this case - the only thing it * currently holds are copies of the collation table. *

* This method is intended for internal use only * * @param exec the Executable */ public void setExecutable(Executable exec) { executable = exec; } /** * Initialize the controller ready for a new transformation. This method should not normally be called by * users (it is done automatically when transform() is invoked). However, it is available as a low-level API * especially for use with XQuery. */ private void initializeController() throws XPathException { if (preparedStylesheet != null) { setRuleManager(preparedStylesheet.getRuleManager()); } //setDecimalFormatManager(executable.getDecimalFormatManager()); if (traceListener != null) { traceListener.open(this); } // get a new bindery, to clear out any variables from previous runs bindery = new Bindery(); executable.initializeBindery(bindery); // if parameters were supplied, set them up defineGlobalParameters(); } /** * Register the global parameters of the transformation or query. This should be called after a sequence * of calls on {@link #setParameter}. It checks that all required parameters have been supplied, and places * the values of the parameters in the Bindery to make them available for use during the query or * transformation. *

* This method is intended for internal use only * @throws XPathException if a required parameter is missing */ public void defineGlobalParameters() throws XPathException { executable.checkAllRequiredParamsArePresent(parameters); bindery.defineGlobalParameters(parameters); } /** * Allocate space in the bindery for global variables. *

For internal use only.

* * @param numberOfVariables the number of global variables for which space is required */ public void allocateGlobalVariables(int numberOfVariables) { SlotManager map = executable.getGlobalVariableMap(); map.setNumberOfVariables(numberOfVariables); bindery.allocateGlobals(map); } ///////////////////////////////////////////////////////////////////////// // Allow user data to be associated with nodes on a tree ///////////////////////////////////////////////////////////////////////// /** * Get user data associated with a key. To retrieve user data, two objects are required: * an arbitrary object that may be regarded as the container of the data (originally, and * typically still, a node in a tree), and a name. The name serves to distingush data objects * associated with the same node by different client applications. *

* This method is intended primarily for internal use, though it may also be * used by advanced applications. * * @param key an object acting as a key for this user data value. This must be equal * (in the sense of the equals() method) to the key supplied when the data value was * registered using {@link #setUserData}. * @param name the name of the required property * @return the value of the required property */ public Object getUserData(Object key, String name) { String keyValue = key.hashCode() + " " + name; // System.err.println("getUserData " + name + " on object returning " + userDataTable.get(key)); return userDataTable.get(keyValue); } /** * Set user data associated with a key. To store user data, two objects are required: * an arbitrary object that may be regarded as the container of the data (originally, and * typically still, a node in a tree), and a name. The name serves to distingush data objects * associated with the same node by different client applications. *

* This method is intended primarily for internal use, though it may also be * used by advanced applications. * * @param key an object acting as a key for this user data value. This can be any object, for example * a node or a string. If data for the given object and name already exists, it is overwritten. * @param name the name of the required property * @param data the value of the required property. If null is supplied, any existing entry * for the key is removed. */ public void setUserData(Object key, String name, /*@Nullable*/ Object data) { // System.err.println("setUserData " + name + " on object to " + data); String keyVal = key.hashCode() + " " + name; if (data == null) { userDataTable.remove(keyVal); } else { userDataTable.put(keyVal, data); } } ///////////////////////////////////////////////////////////////////////// // implement the javax.xml.transform.Transformer methods ///////////////////////////////////////////////////////////////////////// /** * Perform a transformation from a Source document to a Result document. * * @param source The input for the source tree. May be null if and only if an * initial template has been supplied. * @param result The destination for the result tree. * @throws XPathException if the transformation fails. As a * special case, the method throws a TerminationException (a subclass * of XPathException) if the transformation was terminated using * xsl:message terminate="yes". */ public void transform(Source source, Result result) throws TransformerException { if (inUse) { throw new IllegalStateException( "The Transformer is being used recursively or concurrently. This is not permitted."); } clearPerTransformationData(); if (preparedStylesheet == null) { throw new XPathException("Stylesheet has not been prepared"); } if (!dateTimePreset) { currentDateTime = null; // reset at start of each transformation } if (source instanceof SAXSource && config.getBooleanProperty(FeatureKeys.IGNORE_SAX_SOURCE_PARSER)) { // This option is provided to allow the parser set by applications such as Ant to be overridden by // the parser requested using FeatureKeys.SOURCE_PARSER ((SAXSource)source).setXMLReader(null); } boolean close = false; try { NodeInfo startNode = null; boolean wrap = true; boolean streaming = false; int validationMode = getSchemaValidationMode(); Source underSource = source; if (source instanceof AugmentedSource) { Boolean localWrap = ((AugmentedSource) source).getWrapDocument(); if (localWrap != null) { wrap = localWrap.booleanValue(); } close = ((AugmentedSource) source).isPleaseCloseAfterUse(); int localValidate = ((AugmentedSource) source).getSchemaValidation(); if (localValidate != Validation.DEFAULT) { validationMode = localValidate; } if (validationMode == Validation.STRICT || validationMode == Validation.LAX) { // If validation of a DOMSource or NodeInfo is requested, we must copy it, we can't wrap it wrap = false; } underSource = ((AugmentedSource) source).getContainedSource(); } Source s2 = config.getSourceResolver().resolveSource(underSource, config); if (s2 != null) { underSource = s2; } if (wrap && (underSource instanceof NodeInfo || underSource instanceof DOMSource)) { startNode = prepareInputTree(underSource); String uri = underSource.getSystemId(); DocumentInfo root = startNode.getDocumentRoot(); if (root != null) { registerDocument(startNode.getDocumentRoot(), (uri == null ? null : new DocumentURI(uri))); } } else if (source == null) { if (initialTemplate == null) { throw new XPathException("Either a source document or an initial template must be specified"); } } else { Mode mode = preparedStylesheet.getRuleManager().getMode(initialMode, false); if (mode == null || (initialMode != null && mode.isEmpty())) { throw new XPathException("Requested initial mode " + (initialMode == null ? "" : initialMode.getDisplayName()) + " does not exist", "XTDE0045"); } if (mode.isStreamable()) { if (source instanceof StreamSource || source instanceof SAXSource || source instanceof Transmitter) { streaming = true; transformStream(source, mode, result); } else { throw new XPathException("Requested initial mode " + (initialMode == null ? "" : initialMode.getDisplayName()) + " is streamable: must supply a SAXSource or StreamSource", "SXST0061"); } } else { // The input is a SAXSource or StreamSource or AugmentedSource, or // a DOMSource with wrap=no: build the document tree Builder sourceBuilder = makeBuilder(); //Sender sender = new Sender(sourceBuilder.getPipelineConfiguration()); Receiver r = sourceBuilder; if (config.isStripsAllWhiteSpace() || executable.stripsWhitespace() || validationMode == Validation.STRICT || validationMode == Validation.LAX) { r = makeStripper(sourceBuilder); } if (executable.stripsInputTypeAnnotations()) { r = config.getAnnotationStripper(r); } r.setPipelineConfiguration(sourceBuilder.getPipelineConfiguration()); Sender.send(source, r, null); if (close) { ((AugmentedSource) source).close(); } DocumentInfo doc = (DocumentInfo) sourceBuilder.getCurrentRoot(); sourceBuilder.reset(); if (source.getSystemId() != null) { registerDocument(doc, new DocumentURI(source.getSystemId())); } startNode = doc; } } if (!streaming) { transformDocument(startNode, result); } } catch (TerminationException err) { //System.err.println("Processing terminated using xsl:message"); if (!err.hasBeenReported()) { reportFatalError(err); } throw err; } catch (XPathException err) { Throwable cause = err.getException(); if (cause != null && cause instanceof SAXParseException) { // This generally means the error was already reported. // But if a RuntimeException occurs in Saxon during a callback from // the Crimson parser, Crimson wraps this in a SAXParseException without // reporting it further. SAXParseException spe = (SAXParseException) cause; cause = spe.getException(); if (cause instanceof RuntimeException) { reportFatalError(err); } } else { reportFatalError(err); } throw err; } catch (NullPointerException err) { err.printStackTrace(); throw err; } finally { inUse = false; if (close && source instanceof AugmentedSource) { ((AugmentedSource) source).close(); } principalResultURI = null; } } /** * Prepare an input tree for processing. This is used when either the initial * input, or a Source returned by the document() function, is a NodeInfo or a * DOMSource. The preparation consists of wrapping a DOM document inside a wrapper * that implements the NodeInfo interface, and/or adding a space-stripping wrapper * if the stylesheet strips whitespace nodes, and/or adding a type-stripping wrapper * if the stylesheet strips input type annotations. *

* This method is intended for internal use. * * @param source the input tree. Must be either a DOMSource or a NodeInfo * @return the NodeInfo representing the input node, suitably wrapped. */ public NodeInfo prepareInputTree(Source source) { NodeInfo start = getConfiguration().unravel(source); if (stripSourceTrees && executable.stripsWhitespace()) { DocumentInfo docInfo = start.getDocumentRoot(); SpaceStrippedDocument strippedDoc = new SpaceStrippedDocument(docInfo, getSpaceStrippingRule()); start = strippedDoc.wrap(start); } if (executable.stripsInputTypeAnnotations()) { DocumentInfo docInfo = start.getDocumentRoot(); if (!Untyped.getInstance().equals(docInfo.getSchemaType())) { TypeStrippedDocument strippedDoc = new TypeStrippedDocument(docInfo); start = strippedDoc.wrap(start); } } return start; } /** * Transform a source XML document supplied as a tree.
*

* This method is intended for internal use. External applications should use * the {@link #transform} method, which is part of the JAXP interface. Note that * NodeInfo implements the JAXP Source interface, so * it may be supplied directly to the transform() method. * * @param startNode A Node that identifies the source document to be * transformed and the node where the transformation should start. * May be null if the transformation is to start using an initial template. * @param result The output destination * @throws XPathException if any dynamic error occurs */ public void transformDocument(/*@Nullable*/ NodeInfo startNode, /*@NotNull*/ Result result) throws TransformerException { // System.err.println("*** TransformDocument"); if (executable == null) { throw new XPathException("Stylesheet has not been compiled"); } openMessageEmitter(); // Determine whether we need to close the output stream at the end. We // do this if the Result object is a StreamResult and is supplied as a // system ID, not as a Writer or OutputStream boolean mustClose = (result instanceof StreamResult && ((StreamResult) result).getOutputStream() == null); principalResult = result; if (principalResultURI == null) { principalResultURI = result.getSystemId(); } XPathContextMajor initialContext = newXPathContext(); initialContext.createThreadManager(); initialContext.setOriginatingConstructType(Location.CONTROLLER); if (startNode != null) { initialContextItem = startNode; contextForGlobalVariables = startNode.getRoot(); if (startNode.getConfiguration() == null) { // must be a non-standard document implementation throw new TransformerException("The supplied source document must be associated with a Configuration"); } if (!startNode.getConfiguration().isCompatible(preparedStylesheet.getConfiguration())) { throw new XPathException( "Source document and stylesheet must use the same or compatible Configurations", SaxonErrorCode.SXXP0004); } if (startNode instanceof DocumentInfo && ((DocumentInfo) startNode).isTyped() && !preparedStylesheet.isSchemaAware()) { throw new XPathException("Cannot use a schema-validated source document unless the stylesheet is schema-aware"); } SequenceIterator currentIter = SingletonIterator.makeIterator(startNode); if (initialTemplate != null) { currentIter.next(); } initialContext.setCurrentIterator(currentIter); } initializeController(); // In tracing/debugging mode, evaluate all the global variables first if (traceListener != null) { preEvaluateGlobals(initialContext); } result = openResult(result, initialContext); // Process the source document by applying template rules to the initial context node if (initialTemplate == null) { initialContextItem = startNode; Mode mode = getRuleManager().getMode(initialMode, false); if (mode == null || (initialMode != null && mode.isEmpty())) { throw new XPathException("Requested initial mode " + (initialMode == null ? "" : initialMode.getDisplayName()) + " does not exist", "XTDE0045"); } if (mode.isStreamable()) { throw new XPathException("Requested initial mode " + (initialMode == null ? "" : initialMode.getDisplayName()) + " is streamable: must supply a StreamSource or SAXSource"); } if (startNode instanceof DocumentInfo) { NodeInfo topElement = startNode.iterateAxis(AxisInfo.CHILD, NodeKindTest.ELEMENT).next(); if (topElement != null) { String uri = topElement.getURI(); Set explicitNamespaces = mode.getExplicitNamespaces(namePool); if (!explicitNamespaces.isEmpty() && !explicitNamespaces.contains(uri)) { if (explicitNamespaces.size() == 1 && explicitNamespaces.contains("")) { warning("The source document is in namespace " + uri + ", but all the template rules match elements in no namespace", SaxonErrorCode.SXXP0005); } else if (uri.equals("")) { warning("The source document is in no namespace" + ", but the template rules all expect elements in a namespace", SaxonErrorCode.SXXP0005); } else { warning("The source document is in namespace " + uri + ", but none of the template rules match elements in this namespace", SaxonErrorCode.SXXP0005); } } } } initialContext.setCurrentMode(mode); TailCall tc = mode.applyTemplates(null, null, initialContext, 0); while (tc != null) { tc = tc.processLeavingTail(); } } else { Template t = initialTemplate; XPathContextMajor c2 = initialContext.newContext(); initialContext.setOriginatingConstructType(Location.CONTROLLER); c2.openStackFrame(t.getStackFrameMap()); c2.setLocalParameters(new ParameterSet()); c2.setTunnelParameters(new ParameterSet()); TailCall tc = t.expand(c2); while (tc != null) { tc = tc.processLeavingTail(); } } if (traceListener != null) { traceListener.close(); } initialContext.notifyChildThreads(); closeMessageEmitter(); closeResult(result, mustClose, initialContext); } /** * Transform a source XML document supplied as a stream, in streaming mode.
*

* This method is intended for internal use. External applications should use * the {@link #transform} method, which is part of the JAXP interface. Note that * NodeInfo implements the JAXP Source interface, so * it may be supplied directly to the transform() method. * * @param source the principal input document, supplied as a * {@link SAXSource}, {@link StreamSource}, or {@link Transmitter} * @param mode the initial mode, which must be a streaming mode * @param result The output destination * @throws XPathException if any dynamic error occurs */ public void transformStream(Source source, Mode mode, Result result) throws TransformerException { // System.err.println("*** TransformDocument"); if (executable == null) { throw new XPathException("Stylesheet has not been compiled"); } openMessageEmitter(); // Determine whether we need to close the output stream at the end. We // do this if the Result object is a StreamResult and is supplied as a // system ID, not as a Writer or OutputStream boolean mustClose = (result instanceof StreamResult && ((StreamResult) result).getOutputStream() == null); principalResult = result; if (principalResultURI == null) { principalResultURI = result.getSystemId(); } XPathContextMajor initialContext = newXPathContext(); initialContext.setOriginatingConstructType(Location.CONTROLLER); initialContextItem = null; contextForGlobalVariables = null; initializeController(); result = openResult(result, initialContext); // Process the source document by applying template rules to the initial context node if (!mode.isStreamable()) { throw new XPathException("mode supplied to transformStream() must be streamable"); } Receiver despatcher = config.makeStreamingTransformer(initialContext, mode); if (despatcher == null) { throw new TransformerException("Streaming requires Saxon-EE"); } if (config.isStripsAllWhiteSpace() || executable.stripsWhitespace()) { despatcher = makeStripper(despatcher); } Sender.send(source, despatcher, null); if (traceListener != null) { traceListener.close(); } closeResult(result, mustClose, initialContext); closeMessageEmitter(); } /** * Get a receiver to which the input to this transformation can be supplied * as a stream of events, causing the transformation to be executed in streaming mode.
*

* This method is intended for internal use. External applications should use * the {@link #transform} method, which is part of the JAXP interface. Note that * NodeInfo implements the JAXP Source interface, so * it may be supplied directly to the transform() method. *

* {@link SAXSource}, {@link StreamSource}, or {@link Transmitter} * * @param mode the initial mode, which must be a streaming mode * @param result The output destination * @return a receiver to which events can be streamed * @throws XPathException if any dynamic error occurs */ /*@Nullable*/ public Receiver getStreamingReceiver(Mode mode, Result result) throws TransformerException { // System.err.println("*** TransformDocument"); if (executable == null) { throw new XPathException("Stylesheet has not been compiled"); } openMessageEmitter(); // Determine whether we need to close the output stream at the end. We // do this if the Result object is a StreamResult and is supplied as a // system ID, not as a Writer or OutputStream final boolean mustClose = (result instanceof StreamResult && ((StreamResult) result).getOutputStream() == null); principalResult = result; if (principalResultURI == null) { principalResultURI = result.getSystemId(); } final XPathContextMajor initialContext = newXPathContext(); initialContext.setOriginatingConstructType(Location.CONTROLLER); initialContextItem = null; contextForGlobalVariables = null; initializeController(); final Result result2 = openResult(result, initialContext); // Process the source document by applying template rules to the initial context node if (!mode.isStreamable()) { throw new XPathException("mode supplied to getStreamingReceiver() must be streamable"); } Receiver despatcher = config.makeStreamingTransformer(initialContext, mode); if (despatcher == null) { throw new TransformerException("Streaming requires Saxon-EE"); } if (config.isStripsAllWhiteSpace() || executable.stripsWhitespace()) { despatcher = makeStripper(despatcher); } despatcher.setPipelineConfiguration(makePipelineConfiguration()); return new ProxyReceiver(despatcher) { public void close() throws XPathException { if (traceListener != null) { traceListener.close(); } closeResult(result2, mustClose, initialContext); closeMessageEmitter(); } }; } private void closeMessageEmitter() throws XPathException { getMessageEmitter().close(); } private void closeResult(Result result, boolean mustClose, XPathContextMajor initialContext) throws XPathException { Receiver out = initialContext.getReceiver(); out.endDocument(); out.close(); if (mustClose && result instanceof StreamResult) { OutputStream os = ((StreamResult) result).getOutputStream(); if (os != null) { try { os.close(); } catch (IOException err) { throw new XPathException(err); } } } } private Result openResult(Result result, XPathContextMajor initialContext) throws TransformerException { Properties xslOutputProps; if (localOutputProperties == null) { xslOutputProps = executable.getDefaultOutputProperties(); } else { xslOutputProps = localOutputProperties; } // deal with stylesheet chaining String nextInChain = xslOutputProps.getProperty(SaxonOutputKeys.NEXT_IN_CHAIN); if (nextInChain != null && nextInChain.length() > 0) { SerializerFactory factory = getConfiguration().getSerializerFactory(); String baseURI = xslOutputProps.getProperty(SaxonOutputKeys.NEXT_IN_CHAIN_BASE_URI); result = factory.prepareNextStylesheet(this, nextInChain, baseURI, result); } SerializerFactory sf = getConfiguration().getSerializerFactory(); PipelineConfiguration pipe = makePipelineConfiguration(); pipe.setHostLanguage(Configuration.XSLT); Receiver receiver = sf.getReceiver(result, pipe, xslOutputProps); // if this is the implicit XSLT result document, and if the executable is capable // of creating a secondary result document, then add a filter to check the first write boolean openNow = false; if (getExecutable().createsSecondaryResult()) { receiver = new ImplicitResultChecker(receiver, this); receiver.setPipelineConfiguration(pipe); } else { openNow = true; } initialContext.changeOutputDestination(receiver, null); if (openNow) { Receiver out = initialContext.getReceiver(); out.open(); out.startDocument(0); } return result; } private void openMessageEmitter() throws XPathException { if (getMessageEmitter() == null) { Receiver me = makeMessageReceiver(); setMessageEmitter(me); if (me instanceof Emitter && ((Emitter) me).getWriter() == null) { try { ((Emitter) me).setWriter(new OutputStreamWriter(getConfiguration().getStandardErrorOutput())); } catch (Exception err) { // This has been known to fail on .NET because the default encoding set for the // .NET environment is not supported by the Java class library. So we'll try again try { ((Emitter) me).setWriter(new OutputStreamWriter(getConfiguration().getStandardErrorOutput(), "utf8")); } catch (UnsupportedEncodingException e) { throw new XPathException(e); } } } } getMessageEmitter().open(); } /** * Pre-evaluate global variables (when debugging/tracing). *

* This method is intended for internal use. * * @param context the dynamic context for evaluating the global variables * @throws XPathException - should not happen. */ public void preEvaluateGlobals(XPathContext context) throws XPathException { HashMap vars = getExecutable().getCompiledGlobalVariables(); if (vars != null) { for (GlobalVariable var : vars.values()) { try { var.evaluateVariable(context); } catch (XPathException err) { // Don't report an exception unless the variable is actually evaluated SingletonClosure closure = new SingletonClosure(new ErrorExpression(err), context); getBindery().setGlobalVariable(var, closure); } } } } ////////////////////////////////////////////////////////////////////////// // Handle parameters to the transformation ////////////////////////////////////////////////////////////////////////// /** * Set all parameters for the transformation * @params the parameter values to be used */ public void setGlobalParameterSet(GlobalParameterSet params) { parameters = params; } /** * Set a parameter for the transformation. *

* The following table shows some of the classes that are supported * by this method. (Others may also be supported, but continued support is * not guaranteed.) Each entry in the table shows first the Java class of the * supplied object, and then the type of the resulting XPath value. *

*

* * * * * * * * * * * * * * * *
Java ClassXPath 2.0 type
Stringxs:string
Booleanxs:boolean
Integerxs:integer
Longxs:integer
Doublexs:double
Floatxs:float
BigDecimalxs:decimal
BigIntegerxs:integer
Datexs:dateTime
Array or List of any of the abovesequence of the above
nullempty sequence
*

* A node may be supplied as a NodeInfo object, a sequence of nodes * as an array or List of NodeInfo objects. *

* In addition, any object that implements the Saxon {@link net.sf.saxon.om.Sequence} interface * may be supplied, and will be used without conversion. *

* A node belong to an external object model (such as DOM, JDOM, or XOM) may be supplied provided (a) * that the external object model is registered with the Configuration, and (b) that the node is part * of a document tree that has been registered in the document pool. * * @param expandedName The name of the parameter in {uri}local format * @param value The value object. This must follow the rules above. * Other formats in addition to those listed above may be accepted. * @since 8.4 */ public void setParameter(/*@Nullable*/ String expandedName, Object value) { if (expandedName == null) { throw new NullPointerException("Transformer.setParameter() - expandedName is null"); } if (parameters == null) { parameters = new GlobalParameterSet(); } parameters.put(StructuredQName.fromClarkName(expandedName), value); } /** * Supply a parameter using Saxon-specific representations of the name and value * * @param qName The structured representation of the parameter name * @param value The value of the parameter, or null to remove a previously set value */ public void setParameter(StructuredQName qName, Sequence value) { if (parameters == null) { parameters = new GlobalParameterSet(); } parameters.put(qName, value); } /** * Reset the parameters to a null list. */ public void clearParameters() { parameters = null; } /** * Get a parameter to the transformation. This returns the value of a parameter * that has been previously set using the {@link #setParameter} method. The value * is returned exactly as supplied, that is, before any conversion to an XPath value. * * @param expandedName the name of the required parameter, in * "{uri}local-name" format * @return the value of the parameter, if it exists, or null otherwise */ /*@Nullable*/ public Object getParameter(String expandedName) { if (parameters == null) { return null; } return parameters.get(StructuredQName.fromClarkName(expandedName)); } /** * Get an iterator over the names of global parameters that have been defined * * @return an Iterator whose items are strings in the form of Clark names, that is {uri}local */ public Iterator iterateParameters() { if (parameters == null) { return Collections.EMPTY_LIST.iterator(); } int k = parameters.getNumberOfKeys(); List list = new ArrayList(k); Collection keys = parameters.getKeys(); for (Iterator it = keys.iterator(); it.hasNext(); ) { StructuredQName qName = (StructuredQName) it.next(); String clarkName = qName.getClarkName(); list.add(clarkName); } return list.iterator(); } /** * Set the current date and time for this query or transformation. * This method is provided primarily for testing purposes, to allow tests to be run with * a fixed date and time. The supplied date/time must include a timezone, which is used * as the implicit timezone. *

*

Note that comparisons of date/time values currently use the implicit timezone * taken from the system clock, not from the value supplied here.

* * @param dateTime the date/time value to be used as the current date and time * @throws IllegalStateException if a current date/time has already been * established by calling getCurrentDateTime(), or by a previous call on setCurrentDateTime() * @throws net.sf.saxon.trans.XPathException * if the supplied dateTime contains no timezone */ public void setCurrentDateTime(/*@NotNull*/ DateTimeValue dateTime) throws XPathException { if (currentDateTime == null) { if (dateTime.getComponent(Component.TIMEZONE) == null) { throw new XPathException("No timezone is present in supplied value of current date/time"); } currentDateTime = dateTime; dateTimePreset = true; } else { throw new IllegalStateException( "Current date and time can only be set once, and cannot subsequently be changed"); } } /** * Get the current date and time for this query or transformation. * All calls during one transformation return the same answer. * * @return Get the current date and time. This will deliver the same value * for repeated calls within the same transformation */ /*@Nullable*/ public DateTimeValue getCurrentDateTime() { if (currentDateTime == null) { currentDateTime = new DateTimeValue(new GregorianCalendar(), true); } return currentDateTime; } /** * Get the implicit timezone for this query or transformation * * @return the implicit timezone as an offset in minutes */ public int getImplicitTimezone() { return getCurrentDateTime().getTimezoneInMinutes(); } ///////////////////////////////////////// // Methods for handling dynamic context ///////////////////////////////////////// /** * Make an XPathContext object for expression evaluation. *

* This method is intended for internal use. * * @return the new XPathContext */ public XPathContextMajor newXPathContext() { return new XPathContextMajor(this); } /** * Set the last remembered node, for node numbering purposes. *

* This method is strictly for internal use only. * * @param node the node in question * @param number the number of this node */ public void setRememberedNumber(NodeInfo node, int number) { lastRememberedNode = node; lastRememberedNumber = number; } /** * Get the number of a node if it is the last remembered one. *

* This method is strictly for internal use only. * * @param node the node for which remembered information is required * @return the number of this node if known, else -1. */ public int getRememberedNumber(NodeInfo node) { if (lastRememberedNode == node) { return lastRememberedNumber; } return -1; } /** * Indicate whether document projection should be used, and supply the PathMap used to control it. * Note: this is available only under Saxon-EE. * * @param pathMap a path map to be used for projecting source documents */ public void setUseDocumentProjection(PathMap pathMap) { this.pathMap = pathMap; } /** * Get the path map used for document projection, if any. * * @return the path map to be used for document projection, if one has been supplied; otherwise null */ /*@Nullable*/ public PathMap getPathMapForDocumentProjection() { return pathMap; } /** * Set a ClassLoader to be used when loading external classes. Examples of classes that are * loaded include SAX parsers, localization modules for formatting numbers and dates, * extension functions, external object models. In an environment such as Eclipse that uses * its own ClassLoader, this ClassLoader should be nominated to ensure that any class loaded * by Saxon is identical to a class of the same name loaded by the external environment. *

* This method is for application use, but is experimental and subject to change. * * @param loader the ClassLoader to be used. */ public void setClassLoader(ClassLoader loader) { classLoader = loader; } /** * Get the ClassLoader supplied using the method {@link #setClassLoader}. * If none has been supplied, return null. *

* This method is for application use, but is experimental and subject to change. * * @return the ClassLoader in use. */ /*@Nullable*/ public ClassLoader getClassLoader() { return classLoader; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy