public class XPathContextMajor extends XPathContextMinor
| Modifier and Type | Class and Description |
|---|---|
class |
XPathContextMajor.ThreadManager |
XPathContextMinor.LastValuecurrentDestination, stackFrame, temporaryOutputState| Constructor and Description |
|---|
XPathContextMajor(Controller controller)
Constructor should only be called by the Controller,
which acts as a XPathContext factory.
|
XPathContextMajor(Item item,
Configuration config)
Deprecated.
since 9.0 - use
XPathContextMajor(Item, Executable) |
XPathContextMajor(Item item,
Executable exec)
Constructor for use in free-standing Java applications.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addChildThread(Thread t)
Add a new thread to the list of child threads
for this context.
|
void |
createThreadManager() |
Sequence[] |
getAllVariableValues()
Get a all the variables in the stack frame
|
Component |
getCurrentComponent()
Get the current component
|
GroupIterator |
getCurrentGroupIterator()
Get the current group iterator.
|
GroupIterator |
getCurrentMergeGroupIterator()
Get the current merge group iterator.
|
Mode |
getCurrentMode()
Get the current mode.
|
RegexIterator |
getCurrentRegexIterator()
Get the current regex iterator.
|
Rule |
getCurrentTemplateRule()
Get the current template.
|
UnfailingErrorListener |
getErrorListener()
Get the error listener.
|
ParameterSet |
getLocalParameters()
Get the local parameters for the current template call.
|
InstructionInfo |
getOrigin()
Get information about the creating expression or other construct.
|
int |
getOriginatingConstructType()
Get the type of location from which this context was created.
|
UserFunction |
getTailCallFunction()
Determine whether the body of a function is to be repeated, due to tail-recursive function calls
|
Component |
getTargetComponent(int bindingSlot)
Get the target component corresponding to a specific binding slot.
|
XPathContextMajor.ThreadManager |
getThreadManager() |
ParameterSet |
getTunnelParameters()
Get the tunnel parameters for the current template call.
|
URIResolver |
getURIResolver()
Get the URI resolver.
|
XPathContextMajor |
newContext()
Construct a new context as a copy of another.
|
static XPathContextMajor |
newContext(XPathContextMinor prev)
Create a new "major" context (one that is capable of holding a stack frame with local variables
|
static XPathContextMajor |
newThreadContext(XPathContextMinor prev)
Make a copy of the supplied context for use in a new thread (typically for
an asynchronous xsl:result-document
|
void |
notifyChildThreads()
Check for running child threads and wait for them
to complete and join to main thread.
|
void |
openStackFrame(int numberOfVariables)
Create a new stack frame large enough to hold a given number of local variables,
for which no stack frame map is available.
|
void |
openStackFrame(SlotManager map)
Create a new stack frame for local variables, using the supplied SlotManager to
define the allocation of slots to individual variables
|
void |
requestTailCall(UserFunction fn,
Sequence[] variables)
Reset the local stack frame.
|
void |
resetAllVariableValues(Sequence[] values)
Overwrite all the variables in the stack frame
|
void |
resetParameterValues(Sequence[] values)
Overwrite all the parameters in the stack frame.
|
void |
resetStackFrameMap(SlotManager map,
int numberOfParams)
Reset the stack frame variable map, while reusing the StackFrame object itself.
|
void |
setCurrentComponent(Component component)
Set the current component, that is, the component being evaluated.
|
void |
setCurrentGroupIterator(GroupIterator iterator)
Set the current grouping iterator.
|
void |
setCurrentMergeGroupIterator(GroupIterator iterator)
Set the current merge group iterator.
|
void |
setCurrentMode(Mode mode)
Set the current mode.
|
void |
setCurrentRegexIterator(RegexIterator currentRegexIterator)
Set the current regex iterator.
|
void |
setCurrentTemplateRule(Rule rule)
Set the current template.
|
void |
setErrorListener(ErrorListener listener)
Set the error listener.
|
void |
setLocalParameters(ParameterSet localParameters)
Set the local parameters for the current template call.
|
void |
setOrigin(InstructionInfo expr)
Set the creating expression (for use in diagnostics).
|
void |
setOriginatingConstructType(int loc)
Set the type of creating expression (for use in diagnostics).
|
void |
setStackFrame(SlotManager map,
Sequence[] variables)
Set the local stack frame.
|
void |
setTunnelParameters(ParameterSet tunnelParameters)
Set the tunnel parameters for the current template call.
|
void |
setURIResolver(URIResolver resolver)
Set an object that will be used to resolve URIs used in
document(), etc.
|
int |
useLocalParameter(StructuredQName parameterId,
int slotNumber,
boolean isTunnel)
Use local parameter.
|
changeOutputDestination, evaluateLocalVariable, getCaller, getConfiguration, getContextItem, getController, getCurrentDateTime, getCurrentException, getCurrentIterator, getCurrentOutputUri, getImplicitTimezone, getLast, getNamePool, getReceiver, getStackFrame, getTemporaryOutputState, isAtLast, iterateStackFrames, newCleanContext, newMinorContext, setCaller, setCurrentException, setCurrentIterator, setCurrentOutputUri, setLocalVariable, setReceiver, setTemporaryOutputStatepublic XPathContextMajor(Controller controller)
controller - the Controllerpublic XPathContextMajor(Item item, Executable exec)
item - the item to use as the initial context item. If this is null,
the comtext item is initially undefined (which will cause a dynamic error
if it is referenced).exec - the Executablepublic XPathContextMajor(Item item, Configuration config)
XPathContextMajor(Item, Executable)item - the item to use as the initial context item. If this is null,
the comtext item is initially undefined (which will cause a dynamic error
if it is referenced).config - the Saxon Configurationpublic void addChildThread(Thread t)
t - the Threadpublic XPathContextMajor.ThreadManager getThreadManager()
public void createThreadManager()
public void notifyChildThreads()
throws XPathException
notifyChildThreads in interface XPathContextnotifyChildThreads in class XPathContextMinorXPathExceptionpublic XPathContextMajor newContext()
newContext in interface XPathContextnewContext in class XPathContextMinorpublic static XPathContextMajor newContext(XPathContextMinor prev)
prev - the previous context (the one causing the new context to be created)public static XPathContextMajor newThreadContext(XPathContextMinor prev)
prev - the context to be copiedpublic ParameterSet getLocalParameters()
getLocalParameters in interface XPathContextgetLocalParameters in class XPathContextMinorpublic void setLocalParameters(ParameterSet localParameters)
localParameters - the supplied parameterspublic ParameterSet getTunnelParameters()
getTunnelParameters in interface XPathContextgetTunnelParameters in class XPathContextMinorpublic void setTunnelParameters(ParameterSet tunnelParameters)
tunnelParameters - the supplied tunnel parameterspublic void setOrigin(InstructionInfo expr)
Expression, allowing information
about the calling instruction to be obtained, or null.public void setOriginatingConstructType(int loc)
setOrigin(net.sf.saxon.trace.InstructionInfo) should be called.loc - The originating location: the argument must be one of the integer constants in class
Locationpublic int getOriginatingConstructType()
public InstructionInfo getOrigin()
public void setStackFrame(SlotManager map, Sequence[] variables)
map - the SlotManager, which holds static details of the allocation of variables to slotsvariables - the array of "slots" to hold the actual variable values. This array will be
copied if it is too small to hold all the variables defined in the SlotManagerpublic void resetStackFrameMap(SlotManager map, int numberOfParams)
map - the SlotManager representing the stack frame contentsnumberOfParams - the number of parameters required on the new stack framepublic Sequence[] getAllVariableValues()
public void resetAllVariableValues(Sequence[] values)
values - an array holding all the variables, each referenceable by its slot number;
the caller must ensure this is the correct length (and valid in other ways)public void resetParameterValues(Sequence[] values)
values - an array holding all the parameters, each referenceable by its slot number;
the caller must ensure this is the correct length (and valid in other ways)public void requestTailCall(UserFunction fn, Sequence[] variables)
fn - the user function being called using tail recursionvariables - the parameter to be supplied to the user functionpublic UserFunction getTailCallFunction()
public void openStackFrame(SlotManager map)
map - the SlotManager for the new stack framepublic void openStackFrame(int numberOfVariables)
numberOfVariables - The number of local variables to be accommodated.public void setCurrentMode(Mode mode)
mode - the new current modepublic Mode getCurrentMode()
getCurrentMode in interface XPathContextgetCurrentMode in class XPathContextMinorpublic void setCurrentTemplateRule(Rule rule)
rule - the current template rule, or null to indicate that there is no current template rulepublic Rule getCurrentTemplateRule()
getCurrentTemplateRule in interface XPathContextgetCurrentTemplateRule in class XPathContextMinorpublic void setCurrentGroupIterator(GroupIterator iterator)
iterator - the new current GroupIteratorpublic GroupIterator getCurrentGroupIterator()
getCurrentGroupIterator in interface XPathContextgetCurrentGroupIterator in class XPathContextMinorpublic void setCurrentMergeGroupIterator(GroupIterator iterator)
iterator - the new current GroupIteratorpublic GroupIterator getCurrentMergeGroupIterator()
getCurrentMergeGroupIterator in interface XPathContextgetCurrentMergeGroupIterator in class XPathContextMinorpublic void setCurrentRegexIterator(RegexIterator currentRegexIterator)
currentRegexIterator - the current regex iteratorpublic RegexIterator getCurrentRegexIterator()
getCurrentRegexIterator in interface XPathContextgetCurrentRegexIterator in class XPathContextMinorpublic int useLocalParameter(StructuredQName parameterId, int slotNumber, boolean isTunnel) throws XPathException
useLocalParameter in interface XPathContextuseLocalParameter in class XPathContextMinorparameterId - slotNumber - isTunnel - True if a tunnel parameter is required, else false @return ParameterSet.NOT_SUPPLIED, ParameterSet.SUPPLIED, or ParameterSet.SUPPLIED_AND_CHECKEDXPathExceptionpublic void setURIResolver(URIResolver resolver)
resolver - An object that implements the URIResolver interface, or
null.public URIResolver getURIResolver()
getURIResolver in interface XPathContextgetURIResolver in class XPathContextMinorpublic void setErrorListener(ErrorListener listener)
listener - the ErrorListener to be usedpublic UnfailingErrorListener getErrorListener()
getErrorListener in interface XPathContextgetErrorListener in class XPathContextMinorpublic Component getCurrentComponent()
getCurrentComponent in interface XPathContextgetCurrentComponent in class XPathContextMinorpublic void setCurrentComponent(Component component)
component - the current componenetpublic Component getTargetComponent(int bindingSlot)
getTargetComponent in interface XPathContextgetTargetComponent in class XPathContextMinorbindingSlot - identifies the relevant entry in the binding vectorCopyright (c) 2004-2014 Saxonica Limited. All rights reserved.