public class VariableReference extends Expression implements BindingReference
| Modifier and Type | Field and Description |
|---|---|
protected Binding |
binding |
protected GroundedValue |
constantValue |
protected SequenceType |
staticType |
EFFECTIVE_BOOLEAN_VALUE, EVALUATE_METHOD, EVENT_FEED_METHOD, INHERITED_CONTEXT, INSPECTION_CONTEXT, ITEM_FEED_METHOD, ITERATE_METHOD, locationId, MAX_SEQUENCE_LENGTH, MAX_STRING_LENGTH, NAVIGATION_CONTEXT, NODE_VALUE_CONTEXT, PROCESS_METHOD, PUSH_SELECTION, staticProperties, UNBOUNDED_LOWER, UNBOUNDED_UPPER, W3C_CONSUMING, W3C_FREE_RANGING, W3C_GROUP_CONSUMING, W3C_MOTIONLESS, WATCH_METHOD| Constructor and Description |
|---|
VariableReference()
Create a Variable Reference
|
VariableReference(Binding binding)
Create a Variable Reference
|
| Modifier and Type | Method and Description |
|---|---|
PathMap.PathMapNodeSet |
addToPathMap(PathMap pathMap,
PathMap.PathMapNodeSet pathMapNodeSet)
Add a representation of this expression to a PathMap.
|
int |
computeCardinality()
Get the static cardinality
|
int |
computeSpecialProperties()
Determine the special properties of this expression
|
Expression |
copy()
Create a clone copy of this VariableReference
|
boolean |
equals(Object other)
Test if this expression is the same as another expression.
|
Item |
evaluateItem(XPathContext c)
Evaluate an expression as a single item.
|
Sequence |
evaluateVariable(XPathContext c)
Evaluate this variable
|
void |
explain(ExpressionPresenter destination)
Diagnostic print of expression structure.
|
void |
fixup(Binding binding)
Fix up this variable reference to a Binding object, which enables the value of the variable
to be located at run-time.
|
Binding |
getBinding()
Get the object bound to the variable
|
String |
getDisplayName()
Get the display name of the variable.
|
String |
getEQName()
Get the EQName of the variable.
|
ExpressionCompiler |
getExpressionCompiler()
Return the compiler of the VariableReference expression
|
int |
getImplementationMethod()
An implementation of Expression must provide at least one of the methods evaluateItem(), iterate(), or process().
|
IntegerValue[] |
getIntegerBounds()
For an expression that returns an integer or a sequence of integers, get
a lower and upper bound on the values of the integers that may be returned, from
static analysis.
|
int |
getIntrinsicDependencies()
Determine the intrinsic dependencies of an expression, that is, those which are not derived
from the dependencies of its subexpressions.
|
ItemType |
getItemType(TypeHierarchy th)
Determine the data type of the expression, if possible
|
int |
getStreamability(int syntacticContext,
boolean allowExtensions,
List<String> reasons)
Get the "sweep" of this expression as defined in the W3C streamability specifications.
|
int |
hashCode()
get HashCode for comparing two expressions
|
boolean |
isFiltered()
Determine whether this variable reference is filtered
|
boolean |
isFlattened()
Test whether this variable reference is flattened - that is, whether it is atomized etc
|
boolean |
isInLoop()
Determine whether this variable reference appears in a loop relative to its declaration.
|
SequenceIterator<? extends Item> |
iterate(XPathContext c)
Get the value of this variable in a given context.
|
Expression |
optimize(ExpressionVisitor visitor,
ExpressionVisitor.ContextItemType contextItemType)
Type-check the expression.
|
void |
process(XPathContext c)
Process the instruction, without returning any tail calls
|
Expression |
promote(PromotionOffer offer,
Expression parent)
Promote this expression if possible
|
void |
refineVariableType(ItemType type,
int cardinality,
GroundedValue constantValue,
int properties,
ExpressionVisitor visitor)
Provide additional information about the type of the variable, typically derived by analyzing
the initializer of the variable binding
|
void |
setFiltered(boolean filtered)
Mark an expression as filtered: that is, it appears as the base expression in a filter expression.
|
void |
setFlattened(boolean flattened)
Mark an expression as being "flattened".
|
void |
setStaticType(SequenceType type,
GroundedValue value,
int properties)
Set static type.
|
String |
toString()
The toString() method for an expression attempts to give a representation of the expression
in an XPath-like form, but there is no guarantee that the syntax will actually be true XPath.
|
Expression |
typeCheck(ExpressionVisitor visitor,
ExpressionVisitor.ContextItemType contextItemType)
Type-check the expression.
|
adoptChildExpression, checkForUpdatingSubexpressions, checkPermittedContents, computeDependencies, computeStaticProperties, doPromotion, dynamicError, effectiveBooleanValue, evaluateAsString, evaluatePendingUpdates, explain, getCardinality, getColumnNumber, getColumnNumber, getConstructType, getContainer, getDependencies, getEvaluationMethod, getExecutable, getExpressionName, getHostLanguage, getLineNumber, getLineNumber, getLocationId, getLocationProvider, getObjectName, getProperties, getProperty, getPublicId, getSlotsUsed, getSpecialProperties, getStreamingAdjunct, getSystemId, getSystemId, hasVariableBinding, implementsStaticTypeCheck, isSubtreeExpression, isUpdatingExpression, isVacuousExpression, iterateEvents, iterateSubExpressionInfo, iterateSubExpressions, markTailFunctionCalls, replaceSubExpression, resetLocalStaticProperties, setContainer, setEvaluationMethod, setLocationId, simplify, staticTypeCheck, suppressValidation, toPattern, toStreamingPattern, typeErrorprotected Binding binding
protected SequenceType staticType
protected GroundedValue constantValue
public VariableReference()
public VariableReference(Binding binding)
binding - the variable binding to which this variable referspublic Expression copy()
copy in class Expressionpublic void setStaticType(SequenceType type, GroundedValue value, int properties)
setStaticType in interface BindingReferencetype - the static type of the variablevalue - the value of the variable if this is a compile-time constant, or null otherwiseproperties - static properties of the expression to which the variable is boundpublic void setFlattened(boolean flattened)
setFlattened in class Expressionflattened - set to true if the result of the expression is atomized or otherwise turned into
an atomic valuepublic boolean isFlattened()
public void setFiltered(boolean filtered)
setFiltered in class Expressionfiltered - if true, marks this expression as the base of a filter expressionpublic boolean isFiltered()
public boolean isInLoop()
public Expression typeCheck(ExpressionVisitor visitor, ExpressionVisitor.ContextItemType contextItemType) throws XPathException
typeCheck in class Expressionvisitor - an expression visitorcontextItemType - the static type of "." at the point where this expression is invoked.
The parameter is set to null if it is known statically that the context item will be undefined.
If the type of the context item is not known statically, the argument is set to
Type.ITEM_TYPEXPathException - if an error is discovered during this phase
(typically a type error)public Expression optimize(ExpressionVisitor visitor, ExpressionVisitor.ContextItemType contextItemType) throws XPathException
optimize in class Expressionvisitor - an expression visitorcontextItemType - the static type of "." at the point where this expression is invoked.
The parameter is set to null if it is known statically that the context item will be undefined.
If the type of the context item is not known statically, the argument is set to
Type.ITEM_TYPEXPathException - if an error is discovered during this phase
(typically a type error)public void fixup(Binding binding)
fixup in interface BindingReferencebinding - the Binding to which the variable referspublic void refineVariableType(ItemType type, int cardinality, GroundedValue constantValue, int properties, ExpressionVisitor visitor)
type - the item type of the variablecardinality - the cardinality of the variableconstantValue - the actual value of the variable, if this is known statically, otherwise nullproperties - additional static properties of the variable's initializervisitor - an ExpressionVisitorpublic ItemType getItemType(TypeHierarchy th)
getItemType in class Expressionth - the type hierarchy cachepublic IntegerValue[] getIntegerBounds()
getIntegerBounds in class Expressionpublic int computeCardinality()
computeCardinality in class ExpressionStaticProperty.ALLOWS_ZERO_OR_ONE,
StaticProperty.EXACTLY_ONE, StaticProperty.ALLOWS_ONE_OR_MORE,
StaticProperty.ALLOWS_ZERO_OR_MOREpublic int computeSpecialProperties()
computeSpecialProperties in class ExpressionStaticProperty.NON_CREATIVE (unless the variable is assignable using saxon:assign)public int getStreamability(int syntacticContext,
boolean allowExtensions,
List<String> reasons)
ExpressiongetStreamability in class ExpressionsyntacticContext - one of the values Expression.NAVIGATION_CONTEXT,
Expression.NODE_VALUE_CONTEXT, Expression.INHERITED_CONTEXT, Expression.INSPECTION_CONTEXTallowExtensions - if false, the definition of "guaranteed streamability" in the
W3C specification is used. If true, Saxon extensions are permitted, which make somereasons - the caller may supply a list, in which case the implementation may add to this
list a message explaining why the construct is not streamable, suitable for inclusion in an
error message.Expression.W3C_MOTIONLESS, Expression.W3C_CONSUMING,
Expression.W3C_GROUP_CONSUMING, Expression.W3C_FREE_RANGINGpublic boolean equals(Object other)
public int hashCode()
public int getIntrinsicDependencies()
ExpressiongetIntrinsicDependencies in class Expressionpublic Expression promote(PromotionOffer offer, Expression parent) throws XPathException
promote in class Expressionoffer - details of the offer, for example the offer to move
expressions that don't depend on the context to an outer level in
the containing expressionparent - the containing expression in the expression treeXPathException - if any error is detectedpublic int getImplementationMethod()
getImplementationMethod in class ExpressionExpression.ITERATE_METHOD or Expression.EVALUATE_METHOD or
Expression.PROCESS_METHODpublic PathMap.PathMapNodeSet addToPathMap(PathMap pathMap, PathMap.PathMapNodeSet pathMapNodeSet)
The default implementation of this method assumes that an expression does no navigation other than the navigation done by evaluating its subexpressions, and that the subexpressions are evaluated in the same context as the containing expression. The method must be overridden for any expression where these assumptions do not hold. For example, implementations exist for AxisExpression, ParentExpression, and RootExpression (because they perform navigation), and for the doc(), document(), and collection() functions because they create a new navigation root. Implementations also exist for PathExpression and FilterExpression because they have subexpressions that are evaluated in a different context from the calling expression.
addToPathMap in class ExpressionpathMap - the PathMap to which the expression should be addedpathMapNodeSet - the PathMapNodeSet to which the paths embodied in this expression should be addedpublic SequenceIterator<? extends Item> iterate(XPathContext c) throws XPathException
iterate in class Expressionc - the XPathContext which contains the relevant variable bindingsXPathException - if the variable is undefinedpublic Item evaluateItem(XPathContext c) throws XPathException
ExpressionevaluateItem in class Expressionc - The context in which the expression is to be evaluatedXPathException - if any dynamic error occurs evaluating the
expressionpublic void process(XPathContext c) throws XPathException
Expressionprocess in class Expressionc - The dynamic context, giving access to the current node,
the current variables, etc.XPathException - if a dynamic error occurspublic Sequence evaluateVariable(XPathContext c) throws XPathException
c - the XPath dynamic contextXPathException - if any error occurspublic Binding getBinding()
public String getDisplayName()
public String getEQName()
public ExpressionCompiler getExpressionCompiler()
getExpressionCompiler in class Expressionpublic String toString()
toString in class Expressionpublic void explain(ExpressionPresenter destination)
explain in class Expressiondestination - the expression presenter used to display the structureCopyright (c) 2004-2013 Saxonica Limited. All rights reserved.