public abstract class Pattern extends PseudoExpression
EFFECTIVE_BOOLEAN_VALUE, EVALUATE_METHOD, ITEM_FEED_METHOD, ITERATE_METHOD, MAX_SEQUENCE_LENGTH, MAX_STRING_LENGTH, PROCESS_METHOD, staticProperties, UNBOUNDED_LOWER, UNBOUNDED_UPPER, UPDATE_METHOD, WATCH_METHOD
Constructor and Description |
---|
Pattern() |
Modifier and Type | Method and Description |
---|---|
int |
allocateSlots(SlotManager slotManager,
int nextFree)
Allocate slots to any variables used within the pattern
|
void |
bindCurrent(LocalBinding binding)
Replace any calls on current() by a variable reference bound to the supplied binding
|
Pattern |
convertToTypedPattern(String val)
Convert the pattern to a typed pattern, in which an element name is treated as
schema-element(N)
|
abstract Pattern |
copy()
Copy an expression.
|
boolean |
effectiveBooleanValue(XPathContext context)
Evaluate a pattern as a boolean expression, returning true if the context item matches the pattern
|
abstract void |
export(ExpressionPresenter presenter)
Diagnostic print of expression structure.
|
double |
getDefaultPriority()
Determine the default priority to use if this pattern appears as a match pattern
for a template with no explicit priority attribute.
|
int |
getDependencies()
Get the dependencies of the pattern.
|
int |
getFingerprint()
Determine the name fingerprint of nodes to which this pattern applies.
|
int |
getHostLanguage()
Get the host language (XSLT, XQuery, XPath) used to implement the code in this container
|
abstract ItemType |
getItemType()
Get an ItemType that all the items matching this pattern must satisfy
|
abstract UType |
getUType()
Get a UType indicating which kinds of items this Pattern can match.
|
boolean |
isMotionless(boolean allowExtensions)
Test whether a pattern is motionless, that is, whether it can be evaluated against a node
without repositioning the input stream.
|
Iterator<Expression> |
iterateSubExpressions()
Iterate over the subexpressions within this pattern
|
static Pattern |
make(String pattern,
StaticContext env,
PackageData packageData)
Static factory method to make a Pattern by parsing a String.
|
abstract boolean |
matches(Item item,
XPathContext context)
Determine whether this Pattern matches the given item.
|
boolean |
matchesBeneathAnchor(NodeInfo node,
NodeInfo anchor,
XPathContext context)
Determine whether this pattern matches a given Node within the subtree rooted at a given
anchor node.
|
Pattern |
optimize(ExpressionVisitor visitor,
ContextItemStaticInfo contextInfo)
Perform optimisation of an expression and its subexpressions.
|
void |
promote(PromotionOffer offer,
Expression parent)
Offer promotion for subexpressions within this pattern.
|
protected static void |
replaceCurrent(Expression exp,
LocalBinding binding)
Replace any call to current() within a contained expression by a reference to a variable
|
SequenceIterator |
selectNodes(TreeInfo document,
XPathContext context)
Select nodes in a document using this PatternFinder.
|
void |
setOriginalText(String text)
Set the original text of the pattern for use in diagnostics
|
void |
setPriority(double priority)
Set a priority to override the default priority.
|
Pattern |
simplify()
Simplify the pattern by applying any context-independent optimisations.
|
String |
toString()
Get a string representation of the pattern.
|
Pattern |
typeCheck(ExpressionVisitor visitor,
ContextItemStaticInfo contextInfo)
Type-check the pattern.
|
computeCardinality, evaluateAsString, evaluateItem, getImplementationMethod, iterate, iterateEvents, process
addToPathMap, adoptChildExpression, checkedOperands, checkForUpdatingSubexpressions, checkPermittedContents, clearStreamabilityData, computeDependencies, computeSpecialProperties, computeStaticProperties, doPromotion, dynamicError, evaluatePendingUpdates, explain, getCardinality, getConfiguration, getConstructType, getCost, getEvaluationMethod, getExpressionCompiler, getExpressionName, getIntegerBounds, getIntrinsicDependencies, getLocation, getNetCost, getObjectName, getPackageData, getParentExpression, getPosture, getPostureAndSweepIfKnown, getProperties, getProperty, getRetainedStaticContext, getSlotsUsed, getSpecialProperties, getStaticBaseURI, getStaticBaseURIString, getStreamability, getStreamingAdjunct, getSweep, getSystemId, hasVariableBinding, identityHashCode, implementsStaticTypeCheck, isCallOn, isCallOnSystemFunction, isIdentical, isSubtreeExpression, isUpdatingExpression, isVacuousExpression, makeStreamingAdjunct, markTailFunctionCalls, operandList, operands, operandSparseList, optimizeChildren, optimizeForType, promote, promoteChildren, resetLocalStaticProperties, restoreParentPointers, setEvaluationMethod, setFiltered, setFlattened, setLocation, setParentExpression, setPostureAndSweep, setRetainedStaticContext, setRetainedStaticContextLocally, setStaticProperty, simplifyChildren, staticTypeCheck, suppressValidation, toPattern, toShortString, toStreamingPattern, typeCheckChildren, typeError, unordered
public static Pattern make(String pattern, StaticContext env, PackageData packageData) throws XPathException
pattern
- The pattern text as a Stringenv
- An object defining the compile-time context for the expressionpackageData
- The package containing this patternXPathException
- if the pattern is invalidprotected static void replaceCurrent(Expression exp, LocalBinding binding)
exp
- the expression in which the replacement is to take place (which must not itself be
a call to current())binding
- the binding for the variable referencepublic void bindCurrent(LocalBinding binding)
public void setOriginalText(String text)
text
- the original text of the patternpublic Pattern simplify() throws XPathException
simplify
in class Expression
XPathException
- if an error is discovered during expression
rewritingpublic Pattern typeCheck(ExpressionVisitor visitor, ContextItemStaticInfo contextInfo) throws XPathException
typeCheck
in class Expression
visitor
- the expression visitorcontextInfo
- the type of the context item at the point where the pattern
is defined. Set to null if it is known that the context item is undefined.XPathException
- if an error is discovered during this phase
(typically a type error)public int getDependencies()
getDependencies
in class Expression
public Iterator<Expression> iterateSubExpressions()
public int allocateSlots(SlotManager slotManager, int nextFree)
slotManager
- the slot manager representing the stack frame for local variablesnextFree
- the next slot that is free to be allocatedpublic void promote(PromotionOffer offer, Expression parent) throws XPathException
Unlike the corresponding method on Expression
, this method does not return anything:
it can make internal changes to the pattern, but cannot return a different pattern. Only certain
kinds of promotion are applicable within a pattern: specifically, promotions affecting local
variable references within the pattern.
offer
- 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
- XPathException
- if any error is detectedpublic boolean isMotionless(boolean allowExtensions)
allowExtensions
- if false, the result is determined strictly according to the W3C
"guaranteed streamability rules. If true, Saxon extensions are permitted: that is, constructs
may be recognized as motionless by Saxon even if they are not recognized as motionless by
the W3C rules.public final boolean effectiveBooleanValue(XPathContext context) throws XPathException
effectiveBooleanValue
in class PseudoExpression
context
- the evaluation contextXPathException
- if an error occurs during pattern matchingpublic abstract boolean matches(Item item, XPathContext context) throws XPathException
item
- The item to be tested against the Patterncontext
- The dynamic context.XPathException
- if an error occurs while matching the pattern (the caller will usually
treat this the same as a false result)public boolean matchesBeneathAnchor(NodeInfo node, NodeInfo anchor, XPathContext context) throws XPathException
node
- The NodeInfo representing the Element or other node to be tested against the Patternanchor
- The anchor node, which must match any AnchorPattern subpatterncontext
- The dynamic context. Only relevant if the pattern
uses variables, or contains calls on functions such as document() or key().XPathException
- if an error occurs while matching the pattern (the caller will usually
treat this the same as a false result)public SequenceIterator selectNodes(TreeInfo document, XPathContext context) throws XPathException
document
- the documentcontext
- the dynamic evaluation contextXPathException
public abstract UType getUType()
public int getFingerprint()
public abstract ItemType getItemType()
getItemType
in class PseudoExpression
public void setPriority(double priority)
priority
- the priority to be used if no explicit priority is given in the template rulepublic double getDefaultPriority()
public String toString()
toString
in class Expression
public int getHostLanguage()
getHostLanguage
in class Expression
Configuration.XSLT
or Configuration.XQUERY
public Pattern convertToTypedPattern(String val) throws XPathException
val
- either "strict" or "lax" depending on the value of xsl:mode/@typedXPathException
- if the pattern cannot be convertedpublic abstract void export(ExpressionPresenter presenter)
Expression
export
in class Expression
presenter
- the expression presenter used to display the structurepublic abstract Pattern copy()
Expression
copy
in class Expression
public Pattern optimize(ExpressionVisitor visitor, ContextItemStaticInfo contextInfo) throws XPathException
This method is called after all references to functions and variables have been resolved to the declaration of the function or variable, and after all type checking has been done.
optimize
in class Expression
visitor
- an expression visitorcontextInfo
- 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_TYPE
XPathException
- if an error is discovered during this phase
(typically a type error)Copyright (c) 2004-2014 Saxonica Limited. All rights reserved.