Package net.sf.saxon.expr
Class XPathContextMinor
- java.lang.Object
-
- net.sf.saxon.expr.XPathContextMinor
-
- All Implemented Interfaces:
XPathContext
- Direct Known Subclasses:
XPathContextMajor
public class XPathContextMinor extends java.lang.Object implements XPathContext
This class represents a minor change in the dynamic context in which an XPath expression is evaluated: a "major context" object allows all aspects of the dynamic context to change, whereas a "minor context" only allows changes to the focus and the destination for push output.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static classXPathContextMinor.LastValueContainer for cached value of the last() function.
-
Field Summary
Fields Modifier and Type Field Description (package private) XPathContextcaller(package private) Controllercontroller(package private) XPathExceptioncurrentException(package private) SequenceIteratorcurrentIterator(package private) SequenceReceivercurrentReceiver(package private) XPathContextMinor.LastValuelastprotected StackFramestackFrame
-
Constructor Summary
Constructors Modifier Constructor Description protectedXPathContextMinor()Private Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidchangeOutputDestination(Receiver receiver, 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).StringCollatorgetCollation(java.lang.String name)Get a named collationConfigurationgetConfiguration()Get the ConfigurationItemgetContextItem()Get the context itemControllergetController()Get the Controller.DateTimeValuegetCurrentDateTime()Get the current date and time for this query or transformation.XPathExceptiongetCurrentException()Get the current exception (in saxon:catch)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.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 parameters for the current template call.NameCheckergetNameChecker()Get a NameChecker for checking names against the XML 1.0 or XML 1.1 specification as appropriateNamePoolgetNamePool()Get the Name PoolSequenceReceivergetReceiver()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 for the current template call.booleanisAtLast()Determine whether the context position is the same as the context size that is, whether position()=last()booleanisTemporaryOutputState()Ask whether the XSLT output state is "temporary" or "final"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 context as a copy of another.voidsetCaller(XPathContext caller)Set the calling XPathContextvoidsetCurrentException(XPathException exception)Set the current exception (in saxon:catch)voidsetCurrentIterator(SequenceIterator iter)Set a new sequence iterator.voidsetLocalVariable(int slotnumber, ValueRepresentation value)Set the value of a local variable, identified by its slot numbervoidsetReceiver(SequenceReceiver receiver)Change the Receiver to which output is writtenintuseLocalParameter(int parameterId, int slotNumber, boolean isTunnel)Use local parameter.
-
-
-
Field Detail
-
controller
Controller controller
-
currentIterator
SequenceIterator currentIterator
-
last
XPathContextMinor.LastValue last
-
currentReceiver
SequenceReceiver currentReceiver
-
caller
XPathContext caller
-
stackFrame
protected StackFrame stackFrame
-
currentException
XPathException currentException
-
-
Method Detail
-
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- Returns:
- a new context, created as a copy of this context
-
newMinorContext
public XPathContextMinor newMinorContext()
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:
newMinorContextin interfaceXPathContext- Returns:
- a new minor context
-
setCaller
public void setCaller(XPathContext caller)
Set the calling XPathContext- Specified by:
setCallerin interfaceXPathContext- Parameters:
caller- the XPathContext of the calling expression
-
newCleanContext
public XPathContextMajor newCleanContext()
Construct a new context without copying (used for the context in a function call)- Specified by:
newCleanContextin interfaceXPathContext- Returns:
- a new clean context
-
getLocalParameters
public ParameterSet getLocalParameters()
Get the local parameters for the current template call.- Specified by:
getLocalParametersin interfaceXPathContext- Returns:
- the supplied parameters
-
getTunnelParameters
public ParameterSet getTunnelParameters()
Get the tunnel parameters for the current template call.- Specified by:
getTunnelParametersin interfaceXPathContext- Returns:
- the supplied tunnel parameters
-
getController
public final Controller getController()
Get the Controller. May return null when running outside XSLT or XQuery- Specified by:
getControllerin interfaceXPathContext- Returns:
- the controller for this query or transformation
-
getConfiguration
public final Configuration getConfiguration()
Get the Configuration- Specified by:
getConfigurationin interfaceXPathContext- Returns:
- the Saxon configuration object
-
getNamePool
public final NamePool getNamePool()
Get the Name Pool- Specified by:
getNamePoolin interfaceXPathContext- Returns:
- the name pool
-
getNameChecker
public final NameChecker getNameChecker()
Get a NameChecker for checking names against the XML 1.0 or XML 1.1 specification as appropriate- Returns:
- the appropriate name checker
-
getCaller
public final 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- Returns:
- the XPathContext of the calling expression
-
setCurrentIterator
public void setCurrentIterator(SequenceIterator iter)
Set a new sequence iterator.- Specified by:
setCurrentIteratorin interfaceXPathContext- Parameters:
iter- the current iterator. The context item, position, and size are determined by reference to the current iterator.
-
getCurrentIterator
public final 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).
-
getContextItem
public final Item getContextItem()
Get the context item- Specified by:
getContextItemin interfaceXPathContext- Returns:
- the context item, or null if the context item is undefined
-
getLast
public final 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
-
isAtLast
public final boolean isAtLast() throws XPathExceptionDetermine whether the context position is the same as the context size that is, whether position()=last()- Specified by:
isAtLastin interfaceXPathContext- Returns:
- true if the context position is the same as the context size.
- Throws:
XPathException
-
getCollation
public final StringCollator getCollation(java.lang.String name) throws XPathException
Get a named collation- Specified by:
getCollationin interfaceXPathContext- Parameters:
name- the name (URI) of the required collation- Returns:
- a StringCollator representing the collation
- Throws:
XPathException- if the collation is not recognized
-
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.
-
evaluateLocalVariable
public final ValueRepresentation evaluateLocalVariable(int slotnumber)
Get the value of a local variable, identified by its slot number- Specified by:
evaluateLocalVariablein interfaceXPathContext- 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.
-
setLocalVariable
public final void setLocalVariable(int slotnumber, ValueRepresentation value)Set the value of a local variable, identified by its slot number- Specified by:
setLocalVariablein interfaceXPathContext- Parameters:
slotnumber- the slot number allocated at compile time to the variable, which identifies its position within the local stack framevalue- the value of the variable
-
changeOutputDestination
public void changeOutputDestination(Receiver receiver, int validation, SchemaType schemaType) throws XPathException
Set a new output destination, supplying the output format details.
This affects all further output until resetOutputDestination() is called. Note that it is the caller's responsibility to close the Writer after use.- Specified by:
changeOutputDestinationin interfaceXPathContext- Parameters:
schemaType- schema type against which the output is to be validated, if anyreceiver- the new output destinationvalidation- validation mode: strict, lax, preserve, or strip- 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 @param isFinal true if the destination is a final result tree (either the principal output or a secondary result tree); false if @param validation Validation to be performed on the output document
-
setReceiver
public void setReceiver(SequenceReceiver receiver)
Change the Receiver to which output is written- Specified by:
setReceiverin interfaceXPathContext- Parameters:
receiver- the SequenceReceiver to be used
-
getReceiver
public final SequenceReceiver getReceiver()
Get the Receiver to which output is currently being written.- Specified by:
getReceiverin interfaceXPathContext- Returns:
- the current Receiver
-
isTemporaryOutputState
public boolean isTemporaryOutputState()
Ask whether the XSLT output state is "temporary" or "final"- Specified by:
isTemporaryOutputStatein interfaceXPathContext- Returns:
- true to set temporary output state; false to set final output state
-
useLocalParameter
public int useLocalParameter(int parameterId, int slotNumber, 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:
parameterId-slotNumber-isTunnel- True if a tunnel parameter is required, else false @return ParameterSet.NOT_SUPPLIED, ParameterSet.SUPPLIED, or ParameterSet.SUPPLIED_AND_CHECKED- Returns:
- ParameterSet.NOT_SUPPLIED, ParameterSet.SUPPLIED, or ParameterSet.SUPPLIED_AND_CHECKED
- Throws:
XPathException
-
getCurrentMode
public Mode getCurrentMode()
Get the current mode.- Specified by:
getCurrentModein interfaceXPathContext- Returns:
- the current mode
-
getCurrentTemplateRule
public Rule getCurrentTemplateRule()
Get the current template. This is used to support xsl:apply-imports- Specified by:
getCurrentTemplateRulein interfaceXPathContext- Returns:
- the current template
-
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
-
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
-
getCurrentDateTime
public DateTimeValue getCurrentDateTime()
Get the current date and time for this query or transformation. All calls during one transformation return the same answer.- Specified by:
getCurrentDateTimein interfaceXPathContext- Returns:
- Get the current date and time. This will deliver the same value for repeated calls within the same transformation
-
getImplicitTimezone
public final int getImplicitTimezone()
Get the implicit timezone, as a positive or negative offset from UTC in minutes. The range is -14hours to +14hours- Specified by:
getImplicitTimezonein interfaceXPathContext- Returns:
- the implicit timezone as an offset from UTC in minutes
-
iterateStackFrames
public 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 interfaceXPathContext- Returns:
- an iterator over a copy of the run-time call stack
-
setCurrentException
public void setCurrentException(XPathException exception)
Set the current exception (in saxon:catch)- Parameters:
exception- the current exception
-
getCurrentException
public XPathException getCurrentException()
Get the current exception (in saxon:catch)- Specified by:
getCurrentExceptionin interfaceXPathContext- Returns:
- the current exception, or null if there is none defined
-
-