Package net.sf.saxon.expr
Class EarlyEvaluationContext
- java.lang.Object
-
- net.sf.saxon.expr.EarlyEvaluationContext
-
- All Implemented Interfaces:
java.io.Serializable,XPathContext
public class EarlyEvaluationContext extends java.lang.Object implements XPathContext, java.io.Serializable
This class is an implementation of XPathContext used when evaluating constant sub-expressions at compile time.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EarlyEvaluationContext(Configuration config, CollationMap map)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidchangeOutputDestination(java.util.Properties props, javax.xml.transform.Result result, boolean isFinal, int hostLanguage, int validation, SchemaType schemaType)Set a new output destination, supplying the output format details.ValueRepresentationevaluateLocalVariable(int slotnumber)Get the value of a local variable, identified by its slot numberXPathContextgetCaller()Get the calling XPathContext (the next one down the stack).java.util.ComparatorgetCollation(java.lang.String name)Get a named collationConfigurationgetConfiguration()Get the ConfigurationItemgetContextItem()Get the context itemintgetContextPosition()Get the context position (the position of the context item)ControllergetController()Get the Controller.GroupIteratorgetCurrentGroupIterator()Get the current group iterator.SequenceIteratorgetCurrentIterator()Get the current iterator.ModegetCurrentMode()Get the current mode.RegexIteratorgetCurrentRegexIterator()Get the current regex iterator.RulegetCurrentTemplateRule()Get the current template.java.util.ComparatorgetDefaultCollation()Get the default collationintgetImplicitTimezone()Get the implicit timezone, as a positive or negative offset from UTC in minutes.intgetLast()Get the context size (the position of the last item in the current node list)ParameterSetgetLocalParameters()Get the local (non-tunnel) parameters that were passed to the current function or templateNameCheckergetNameChecker()Get a NameChecker for checking names against the XML 1.0 or XML 1.1 specification as appropriateNamePoolgetNamePool()Get the Name PoolInstructionInfoProvidergetOrigin()Get information about the creating expression or other construct.intgetOriginatingConstructType()Get the type of location from which this context was created.SequenceReceivergetReceiver()Get the Receiver to which output is currently being written.StackFramegetStackFrame()Get a reference to the local stack frame for variables.ParameterSetgetTunnelParameters()Get the tunnel parameters that were passed to the current function or template.XPathContextMajor.XSLTContextgetXSLTContext()Get the XSLT-specific part of the contextbooleanisAtLast()Determine whether the context position is the same as the context size that is, whether position()=last()XPathContextMajornewCleanContext()Construct a new context without copying (used for the context in a function call)XPathContextMajornewContext()Construct a new context as a copy of another.XPathContextMinornewMinorContext()Construct a new minor context.voidsetCaller(XPathContext caller)Set the calling XPathContextvoidsetCurrentIterator(SequenceIterator iter)Set a new sequence iterator.voidsetLocalVariable(int slotnumber, ValueRepresentation value)Set the value of a local variable, identified by its slot numbervoidsetOrigin(InstructionInfoProvider expr)Set the creating expression (for use in diagnostics).voidsetOriginatingConstructType(int loc)Set the type of creating expression (for use in diagnostics).voidsetReceiver(SequenceReceiver receiver)Change the Receiver to which output is writtenvoidsetTemporaryReceiver(SequenceReceiver out)Set the receiver to which output is to be written, marking it as a temporary (non-final) output destination.booleanuseLocalParameter(int fingerprint, LocalParam binding, boolean isTunnel)Use local parameter.
-
-
-
Constructor Detail
-
EarlyEvaluationContext
public EarlyEvaluationContext(Configuration config, CollationMap map)
-
-
Method Detail
-
changeOutputDestination
public void changeOutputDestination(java.util.Properties props, javax.xml.transform.Result result, boolean isFinal, int hostLanguage, int validation, SchemaType schemaType) throws XPathExceptionSet a new output destination, supplying the output format details.
Note that it is the caller's responsibility to close the Writer after use.- Specified by:
changeOutputDestinationin interfaceXPathContext- Parameters:
props- properties defining the output formatresult- Details of the new output destinationisFinal- true if the destination is a final result tree (either the principal output or a secondary result tree); false if it is a temporary tree, xsl:attribute, etc.hostLanguage-- Throws:
XPathException- if any dynamic error occurs; and specifically, if an attempt is made to switch to a final output destination while writing a temporary tree or sequence
-
evaluateLocalVariable
public ValueRepresentation evaluateLocalVariable(int slotnumber)
Get the value of a local variable, identified by its slot number- Specified by:
evaluateLocalVariablein interfaceXPathContext
-
getCaller
public XPathContext getCaller()
Get the calling XPathContext (the next one down the stack). This will be null if unknown, or if the bottom of the stack has been reached.- Specified by:
getCallerin interfaceXPathContext
-
getCollation
public java.util.Comparator getCollation(java.lang.String name) throws XPathExceptionGet a named collation- Specified by:
getCollationin interfaceXPathContext- Throws:
XPathException- if the collation is not recognized
-
getConfiguration
public Configuration getConfiguration()
Get the Configuration- Specified by:
getConfigurationin interfaceXPathContext
-
getContextItem
public Item getContextItem()
Get the context item- Specified by:
getContextItemin interfaceXPathContext- Returns:
- the context item, or null if the context item is undefined
-
getContextPosition
public int getContextPosition() throws DynamicErrorGet the context position (the position of the context item)- Specified by:
getContextPositionin interfaceXPathContext- Returns:
- the context position (starting at one)
- Throws:
DynamicError- if the context position is undefined
-
getController
public Controller getController()
Get the Controller. May return null when running outside XSLT or XQuery- Specified by:
getControllerin interfaceXPathContext
-
getCurrentGroupIterator
public GroupIterator getCurrentGroupIterator()
Get the current group iterator. This supports the current-group() and current-grouping-key() functions in XSLT 2.0- Specified by:
getCurrentGroupIteratorin interfaceXPathContext- Returns:
- the current grouped collection
-
getCurrentIterator
public SequenceIterator getCurrentIterator()
Get the current iterator. This encapsulates the context item, context position, and context size.- Specified by:
getCurrentIteratorin interfaceXPathContext- Returns:
- the current iterator, or null if there is no current iterator (which means the context item, position, and size are undefined).
-
getCurrentMode
public Mode getCurrentMode()
Get the current mode.- Specified by:
getCurrentModein interfaceXPathContext- Returns:
- the current mode
-
getCurrentRegexIterator
public RegexIterator getCurrentRegexIterator()
Get the current regex iterator. This supports the functionality of the regex-group() function in XSLT 2.0.- Specified by:
getCurrentRegexIteratorin interfaceXPathContext- Returns:
- the current regular expressions iterator
-
getCurrentTemplateRule
public Rule getCurrentTemplateRule()
Get the current template. This is used to support xsl:apply-imports- Specified by:
getCurrentTemplateRulein interfaceXPathContext- Returns:
- the current template
-
getDefaultCollation
public java.util.Comparator getDefaultCollation()
Get the default collation- Specified by:
getDefaultCollationin interfaceXPathContext
-
getLast
public int getLast() throws XPathExceptionGet the context size (the position of the last item in the current node list)- Specified by:
getLastin interfaceXPathContext- Returns:
- the context size
- Throws:
XPathException- if the context position is undefined
-
getLocalParameters
public ParameterSet getLocalParameters()
Get the local (non-tunnel) parameters that were passed to the current function or template- Specified by:
getLocalParametersin interfaceXPathContext- Returns:
- a ParameterSet containing the local parameters
-
getNamePool
public NamePool getNamePool()
Get the Name Pool- Specified by:
getNamePoolin interfaceXPathContext
-
getOrigin
public InstructionInfoProvider getOrigin()
Get information about the creating expression or other construct.- Specified by:
getOriginin interfaceXPathContext
-
getOriginatingConstructType
public int getOriginatingConstructType()
Get the type of location from which this context was created.- Specified by:
getOriginatingConstructTypein interfaceXPathContext
-
getReceiver
public SequenceReceiver getReceiver()
Get the Receiver to which output is currently being written.- Specified by:
getReceiverin interfaceXPathContext- Returns:
- the current Receiver
-
getStackFrame
public StackFrame getStackFrame()
Get a reference to the local stack frame for variables. Note that it's the caller's job to make a local copy of this. This is used for creating a Closure containing a retained copy of the variables for delayed evaluation.- Specified by:
getStackFramein interfaceXPathContext- Returns:
- array of variables.
-
getTunnelParameters
public ParameterSet getTunnelParameters()
Get the tunnel parameters that were passed to the current function or template. This includes all active tunnel parameters whether the current template uses them or not.- Specified by:
getTunnelParametersin interfaceXPathContext- Returns:
- a ParameterSet containing the tunnel parameters
-
getXSLTContext
public XPathContextMajor.XSLTContext getXSLTContext()
Get the XSLT-specific part of the context- Specified by:
getXSLTContextin interfaceXPathContext
-
isAtLast
public boolean isAtLast() throws XPathExceptionDetermine whether the context position is the same as the context size that is, whether position()=last()- Specified by:
isAtLastin interfaceXPathContext- Throws:
XPathException
-
newCleanContext
public XPathContextMajor newCleanContext()
Construct a new context without copying (used for the context in a function call)- Specified by:
newCleanContextin interfaceXPathContext
-
newContext
public XPathContextMajor newContext()
Construct a new context as a copy of another. The new context is effectively added to the top of a stack, and contains a pointer to the previous context- Specified by:
newContextin interfaceXPathContext
-
newMinorContext
public XPathContextMinor newMinorContext()
Construct a new minor context. A minor context can only hold new values of the focus (currentIterator) and current output destination.- Specified by:
newMinorContextin interfaceXPathContext
-
setCaller
public void setCaller(XPathContext caller)
Set the calling XPathContext- Specified by:
setCallerin interfaceXPathContext
-
setCurrentIterator
public void setCurrentIterator(SequenceIterator iter)
Set a new sequence iterator.- Specified by:
setCurrentIteratorin interfaceXPathContext
-
setLocalVariable
public void setLocalVariable(int slotnumber, ValueRepresentation value)Set the value of a local variable, identified by its slot number- Specified by:
setLocalVariablein interfaceXPathContext
-
setOrigin
public void setOrigin(InstructionInfoProvider expr)
Set the creating expression (for use in diagnostics). The origin is generally set to "this" by the object that creates the new context. It's up to the debugger to determine whether this information is useful. Where possible, the object will be anInstructionInfoProvider, allowing information about the calling instruction to be obtained.- Specified by:
setOriginin interfaceXPathContext
-
setOriginatingConstructType
public void setOriginatingConstructType(int loc)
Set the type of creating expression (for use in diagnostics). When a new context is created, either this method orsetOrigin(net.sf.saxon.trace.InstructionInfoProvider)should be called.- Specified by:
setOriginatingConstructTypein interfaceXPathContext- Parameters:
loc- The originating location: the argument must be one of the integer constants in classLocation
-
setReceiver
public void setReceiver(SequenceReceiver receiver)
Change the Receiver to which output is written- Specified by:
setReceiverin interfaceXPathContext
-
setTemporaryReceiver
public void setTemporaryReceiver(SequenceReceiver out)
Set the receiver to which output is to be written, marking it as a temporary (non-final) output destination.- Specified by:
setTemporaryReceiverin interfaceXPathContext- Parameters:
out- The SequenceOutputter to be used
-
useLocalParameter
public boolean useLocalParameter(int fingerprint, LocalParam binding, boolean isTunnel) throws XPathExceptionUse local parameter. This is called when a local xsl:param element is processed. If a parameter of the relevant name was supplied, it is bound to the xsl:param element. Otherwise the method returns false, so the xsl:param default will be evaluated- Specified by:
useLocalParameterin interfaceXPathContext- Parameters:
fingerprint- The fingerprint of the parameter namebinding- The XSLParam element to bind its value toisTunnel- True if a tunnel parameter is required, else false- Returns:
- true if a parameter of this name was supplied, false if not
- Throws:
XPathException
-
getImplicitTimezone
public int getImplicitTimezone()
Get the implicit timezone, as a positive or negative offset from UTC in minutes. The range is -14hours to +14hours
-
getNameChecker
public NameChecker getNameChecker()
Get a NameChecker for checking names against the XML 1.0 or XML 1.1 specification as appropriate
-
-