Package net.sf.saxon.expr
Class EarlyEvaluationContext
- java.lang.Object
- 
- net.sf.saxon.expr.EarlyEvaluationContext
 
- 
- All Implemented Interfaces:
- XPathContext
 
 public class EarlyEvaluationContext extends java.lang.Object implements XPathContext This class is an implementation of XPathContext used when evaluating constant sub-expressions at compile time.
- 
- 
Constructor SummaryConstructors Constructor Description EarlyEvaluationContext(Configuration config)Create an early evaluation context, used for evaluating constant expressions at compile time
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description SequenceevaluateLocalVariable(int slotnumber)Get the value of a local variable, identified by its slot numberXPathContextgetCaller()Get the calling XPathContext (the next one down the stack).ConfigurationgetConfiguration()Get the ConfigurationItemgetContextItem()Get the context itemControllergetController()Get the Controller.ComponentgetCurrentComponent()Get the current componentDateTimeValuegetCurrentDateTime()Get the current date and time.XPathExceptiongetCurrentException()Get the current exception (in saxon:catch)GroupIteratorgetCurrentGroupIterator()Get the current group iterator.FocusTrackingIteratorgetCurrentIterator()Get the current iterator.GroupIteratorgetCurrentMergeGroupIterator()Get the current merge group iterator.Component.MgetCurrentMode()Get the current mode.java.lang.StringgetCurrentOutputUri()Get the current output URIRegexIteratorgetCurrentRegexIterator()Get the current regex iterator.RulegetCurrentTemplateRule()Get the current template.ErrorReportergetErrorReporter()Get the error listener.intgetImplicitTimezone()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 templateNamePoolgetNamePool()Get the Name PoolStackFramegetStackFrame()Get a reference to the local stack frame for variables.ComponentgetTargetComponent(int bindingSlot)Bind a component reference to a component.intgetTemporaryOutputState()Ask whether the XSLT output state is "temporary" or "final"XPathContextMajor.ThreadManagergetThreadManager()Get the thread manager used to process asynchronous xsl:result-document threads.ParameterSetgetTunnelParameters()Get the tunnel parameters that were passed to the current function or template.javax.xml.transform.URIResolvergetURIResolver()Get the URI resolver.booleanisAtLast()Determine whether the context position is the same as the context size that is, whether position()=last()java.util.IteratoriterateStackFrames()Get the context stack.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(FocusIterator iter)Set a new sequence iterator.voidsetCurrentOutputUri(java.lang.String uri)Set the current output URIvoidsetLocalVariable(int slotNumber, Sequence value)Set the value of a local variable, identified by its slot numbervoidsetTemporaryOutputState(int temporary)Set the XSLT output state to "temporary" or "final"FocusIteratortrackFocus(SequenceIterator iter)Create, set, and return a focus tracking iterator that wraps a supplied sequence iterator.intuseLocalParameter(StructuredQName parameterId, int slotNumber, boolean isTunnel)Use local parameter.voidwaitForChildThreads()Wait for child threads started under the control of this context to finish.
 
- 
- 
- 
Constructor Detail- 
EarlyEvaluationContextpublic EarlyEvaluationContext(Configuration config) Create an early evaluation context, used for evaluating constant expressions at compile time- Parameters:
- config- the Saxon configuration //@param map the available collations
 
 
- 
 - 
Method Detail- 
evaluateLocalVariablepublic Sequence evaluateLocalVariable(int slotnumber) Get the value of a local variable, identified by its slot number- Specified by:
- evaluateLocalVariablein interface- XPathContext
- Parameters:
- slotnumber- the slot number allocated at compile time to the variable, which identifies its position within the local stack frame
- Returns:
- the value of the variable.
 
 - 
getCallerpublic 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 interface- XPathContext
- Returns:
- the XPathContext of the calling expression
 
 - 
getURIResolverpublic javax.xml.transform.URIResolver getURIResolver() Get the URI resolver. This gets the local URIResolver set in the XPathContext if there is one; if not, it gets the URIResolver from the Controller (which itself defaults to the one set in the Configuration).- Specified by:
- getURIResolverin interface- XPathContext
- Returns:
- the user-supplied URI resolver if there is one, or null otherwise.
- Since:
- 9.6
 
 - 
getErrorReporterpublic ErrorReporter getErrorReporter() Get the error listener. If no ErrorListener has been set locally, the ErrorListener in the Controller is returned; this in turn defaults to the ErrorListener set in the Configuration.- Specified by:
- getErrorReporterin interface- XPathContext
- Returns:
- the ErrorListener in use. This will always be an UnfailingErrorListener, which is a Saxon subclass of ErrorListener that throws no exceptions.
- Since:
- 9.6
 
 - 
getCurrentComponentpublic Component getCurrentComponent() Get the current component- Specified by:
- getCurrentComponentin interface- XPathContext
 
 - 
getConfigurationpublic Configuration getConfiguration() Get the Configuration- Specified by:
- getConfigurationin interface- XPathContext
- Returns:
- the Saxon configuration object
 
 - 
getContextItempublic Item getContextItem() Get the context item- Specified by:
- getContextItemin interface- XPathContext
- Returns:
- the context item, or null if the context item is undefined
 
 - 
getControllerpublic Controller getController() Get the Controller. May return null when running outside XSLT or XQuery- Specified by:
- getControllerin interface- XPathContext
- Returns:
- the controller for this query or transformation
 
 - 
getCurrentGroupIteratorpublic GroupIterator getCurrentGroupIterator() Get the current group iterator. This supports the current-group() and current-grouping-key() functions in XSLT 2.0- Specified by:
- getCurrentGroupIteratorin interface- XPathContext
- Returns:
- the current grouped collection
 
 - 
getCurrentMergeGroupIteratorpublic GroupIterator getCurrentMergeGroupIterator() Get the current merge group iterator. This supports the current-merge-group() and current-merge-key() functions in XSLT 3.0- Specified by:
- getCurrentMergeGroupIteratorin interface- XPathContext
- Returns:
- the current grouped collection
 
 - 
getCurrentIteratorpublic FocusTrackingIterator getCurrentIterator() Get the current iterator. This encapsulates the context item, context position, and context size.- Specified by:
- getCurrentIteratorin interface- XPathContext
- Returns:
- the current iterator, or null if there is no current iterator (which means the context item, position, and size are undefined).
 
 - 
getCurrentModepublic Component.M getCurrentMode() Get the current mode.- Specified by:
- getCurrentModein interface- XPathContext
- Returns:
- the current mode
 
 - 
getCurrentRegexIteratorpublic RegexIterator getCurrentRegexIterator() Get the current regex iterator. This supports the functionality of the regex-group() function in XSLT 2.0.- Specified by:
- getCurrentRegexIteratorin interface- XPathContext
- Returns:
- the current regular expressions iterator
 
 - 
getCurrentTemplateRulepublic Rule getCurrentTemplateRule() Get the current template. This is used to support xsl:apply-imports- Specified by:
- getCurrentTemplateRulein interface- XPathContext
- Returns:
- the current template
 
 - 
getLastpublic int getLast() throws XPathExceptionGet the context size (the position of the last item in the current node list)- Specified by:
- getLastin interface- XPathContext
- Returns:
- the context size
- Throws:
- XPathException- if the context position is undefined
 
 - 
getLocalParameterspublic ParameterSet getLocalParameters() Get the local (non-tunnel) parameters that were passed to the current function or template- Specified by:
- getLocalParametersin interface- XPathContext
- Returns:
- a ParameterSet containing the local parameters
 
 - 
getNamePoolpublic NamePool getNamePool() Get the Name Pool- Specified by:
- getNamePoolin interface- XPathContext
- Returns:
- the name pool
 
 - 
getStackFramepublic 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 interface- XPathContext
- Returns:
- array of variables.
 
 - 
getTunnelParameterspublic 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 interface- XPathContext
- Returns:
- a ParameterSet containing the tunnel parameters
 
 - 
isAtLastpublic boolean isAtLast() throws XPathExceptionDetermine whether the context position is the same as the context size that is, whether position()=last()- Specified by:
- isAtLastin interface- XPathContext
- Returns:
- true if the context position is the same as the context size.
- Throws:
- XPathException
 
 - 
newCleanContextpublic XPathContextMajor newCleanContext() Construct a new context without copying (used for the context in a function call)- Specified by:
- newCleanContextin interface- XPathContext
- Returns:
- a new clean context
 
 - 
newContextpublic 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 interface- XPathContext
- Returns:
- a new context, created as a copy of this context
 
 - 
newMinorContextpublic 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 interface- XPathContext
- Returns:
- a new minor context
 
 - 
setCallerpublic void setCaller(XPathContext caller) Set the calling XPathContext- Specified by:
- setCallerin interface- XPathContext
- Parameters:
- caller- the XPathContext of the calling expression
 
 - 
setCurrentIteratorpublic void setCurrentIterator(FocusIterator iter) Set a new sequence iterator.- Specified by:
- setCurrentIteratorin interface- XPathContext
- Parameters:
- iter- the current iterator. The context item, position, and size are determined by reference to the current iterator.
 
 - 
trackFocuspublic FocusIterator trackFocus(SequenceIterator iter) Description copied from interface:XPathContextCreate, set, and return a focus tracking iterator that wraps a supplied sequence iterator.- Specified by:
- trackFocusin interface- XPathContext
- Parameters:
- iter- the current iterator. The context item, position, and size are determined by reference to the current iterator.
 
 - 
setLocalVariablepublic void setLocalVariable(int slotNumber, Sequence value)Set the value of a local variable, identified by its slot number- Specified by:
- setLocalVariablein interface- XPathContext
- Parameters:
- slotNumber- the slot number allocated at compile time to the variable, which identifies its position within the local stack frame
- value- the value of the variable
 
 - 
useLocalParameterpublic int useLocalParameter(StructuredQName parameterId, int slotNumber, boolean isTunnel) Use 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 interface- XPathContext
- Parameters:
- parameterId- Globally-unique parameter identifier
- slotNumber- Slot number of the parameter within the stack frame of the called template
- isTunnel- True if a tunnel parameter is required, else false @return true if a parameter of this name was supplied, false if not
- Returns:
- ParameterSet.NOT_SUPPLIED, ParameterSet.SUPPLIED, or ParameterSet.SUPPLIED_AND_CHECKED
 
 - 
getCurrentDateTimepublic DateTimeValue getCurrentDateTime() throws NoDynamicContextException Get the current date and time. This implementation always throws a NoDynamicContextException.- Specified by:
- getCurrentDateTimein interface- XPathContext
- Returns:
- the current date and time. All calls within a single query or transformation will return the same value
- Throws:
- NoDynamicContextException
 
 - 
getImplicitTimezonepublic int getImplicitTimezone() Get the implicit timezone, as a positive or negative offset from UTC in minutes. The range is -14hours to +14hours. This implementation returnsCalendarValue.NO_TIMEZONE, meaning the value is unknown.- Specified by:
- getImplicitTimezonein interface- XPathContext
- Returns:
- the implicit timezone, as an offset from UTC in minutes
 
 - 
iterateStackFramespublic java.util.Iterator iterateStackFrames() Get the context stack. This method returns an iterator whose items are instances ofContextStackFrame, starting with the top-most stackframe and ending at the point the query or transformation was invoked by a calling application.- Specified by:
- iterateStackFramesin interface- XPathContext
- Returns:
- an iterator over a copy of the run-time call stack
 
 - 
getCurrentExceptionpublic XPathException getCurrentException() Get the current exception (in saxon:catch)- Specified by:
- getCurrentExceptionin interface- XPathContext
- Returns:
- the current exception, or null if there is none defined
 
 - 
waitForChildThreadspublic void waitForChildThreads() throws XPathExceptionDescription copied from interface:XPathContextWait for child threads started under the control of this context to finish. This is called at the end of the (main thread of a) transformation, and also at the end of the "try" part of a try/catch. The threads affected are those used to implement xsl:result-document instructions.- Specified by:
- waitForChildThreadsin interface- XPathContext
- Throws:
- XPathException- if any of the child threads have failed with a dynamic error.
 
 - 
setTemporaryOutputStatepublic void setTemporaryOutputState(int temporary) Description copied from interface:XPathContextSet the XSLT output state to "temporary" or "final"- Specified by:
- setTemporaryOutputStatein interface- XPathContext
- Parameters:
- temporary- set non-zero to set temporary output state; zero to set final output state
 
 - 
getTemporaryOutputStatepublic int getTemporaryOutputState() Ask whether the XSLT output state is "temporary" or "final"- Specified by:
- getTemporaryOutputStatein interface- XPathContext
- Returns:
- non-zero in temporary output state; zero in final output state
 
 - 
setCurrentOutputUripublic void setCurrentOutputUri(java.lang.String uri) Set the current output URI- Specified by:
- setCurrentOutputUriin interface- XPathContext
- Parameters:
- uri- the current output URI, or null if in temporary output state
 
 - 
getCurrentOutputUripublic java.lang.String getCurrentOutputUri() Get the current output URI- Specified by:
- getCurrentOutputUriin interface- XPathContext
- Returns:
- the current output URI, or null if in temporary output state
 
 - 
getThreadManagerpublic XPathContextMajor.ThreadManager getThreadManager() Get the thread manager used to process asynchronous xsl:result-document threads.- Specified by:
- getThreadManagerin interface- XPathContext
- Returns:
- the current thread manager; or null if multithreading is not supported
 
 - 
getTargetComponentpublic Component getTargetComponent(int bindingSlot) Description copied from interface:XPathContextBind a component reference to a component. This is used for binding component references (such as function calls, global variable references, or xsl:call-template) across package boundaries. The binding is done dynamically because, in the presence of overridden components, the choice among different components with the same name depends on which package the caller is in.- Specified by:
- getTargetComponentin interface- XPathContext
- Parameters:
- bindingSlot- Binding slots are allocated statically to the external component references in every component: for example, in the case of a template, to all global variable references, named function calls, and named template calls within that template. The binding slot therefore identifies the name of the component that is required; and the selection of an actual component is done by selection from the binding vector of the component currently being executed
- Returns:
- the component to be invoked
 
 
- 
 
-