public abstract class Pattern extends Object implements PatternFinder, Container
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
|
Pattern |
analyze(ExpressionVisitor visitor,
ContextItemStaticInfo contextItemType)
Type-check 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)
|
int |
getColumnNumber()
Get the column number (always -1)
|
Configuration |
getConfiguration()
Get the Configuration to which this Container belongs
|
int |
getContainerGranularity()
Get the granularity of the container.
|
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
|
int |
getLineNumber()
Get the line number on which the pattern was defined
|
LocationProvider |
getLocationProvider()
Get the LocationProvider allowing location identifiers to be resolved.
|
int |
getNodeKind()
Determine the types of nodes to which this pattern applies.
|
int |
getNodeKindMask()
Get a mask indicating which kinds of nodes this NodeTest can match.
|
PackageData |
getPackageData()
Get data about the unit of compilation (XQuery module, XSLT package) to which this
container belongs
|
String |
getPublicId()
Get the public ID (always null)
|
String |
getSystemId()
Get the system id of the entity in which the pattern occurred
|
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.
|
void |
promote(PromotionOffer offer,
Expression parent)
Offer promotion for subexpressions within this pattern.
|
protected static void |
replaceCurrent(Expression exp,
LocalBinding binding) |
boolean |
replaceSubExpression(Expression original,
Expression replacement)
Replace a subexpression by a replacement subexpression
|
SequenceIterator |
selectNodes(DocumentInfo doc,
XPathContext context)
Select nodes in a document using this PatternFinder.
|
void |
setLineNumber(int lineNumber)
Set the line number where the pattern occurred
|
void |
setOriginalText(String text)
Set the original text of the pattern for use in diagnostics
|
void |
setPackageData(PackageData packageData) |
void |
setPriority(double priority)
Set a priority to override the default priority.
|
void |
setSystemId(String systemId)
Set the system ID where the pattern occurred
|
Pattern |
simplify(ExpressionVisitor visitor)
Simplify the pattern by applying any context-independent optimisations.
|
String |
toString()
Get the original pattern text
|
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 invalidpublic Configuration getConfiguration()
getConfiguration
in interface Container
public PackageData getPackageData()
getPackageData
in interface Container
public void setPackageData(PackageData packageData)
protected static void replaceCurrent(Expression exp, LocalBinding binding)
public void bindCurrent(LocalBinding binding)
public LocationProvider getLocationProvider()
public int getContainerGranularity()
getContainerGranularity
in interface Container
public void setOriginalText(String text)
text
- the original text of the patternpublic Pattern simplify(ExpressionVisitor visitor) throws XPathException
visitor
- the expression visitorXPathException
public Pattern analyze(ExpressionVisitor visitor, ContextItemStaticInfo contextItemType) throws XPathException
visitor
- the expression visitorcontextItemType
- 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
public int getDependencies()
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 void setSystemId(String systemId)
systemId
- the URI of the module containing the patternpublic void setLineNumber(int lineNumber)
lineNumber
- the line number of the pattern in the source modulepublic 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 abstract boolean matches(Item item, XPathContext context) throws XPathException
item
- The item to be tested against the Patterncontext
- 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 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(DocumentInfo doc, XPathContext context) throws XPathException
selectNodes
in interface PatternFinder
doc
- the document node at the root of a treecontext
- the dynamic evaluation contextXPathException
- if a dynamic error is encounteredpublic int getNodeKind()
public int getNodeKindMask()
public int getFingerprint()
public abstract ItemType getItemType()
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 getSystemId()
getSystemId
in interface SourceLocator
public int getLineNumber()
getLineNumber
in interface SourceLocator
public int getColumnNumber()
getColumnNumber
in interface SourceLocator
public String getPublicId()
getPublicId
in interface SourceLocator
public int getHostLanguage()
getHostLanguage
in interface Container
Configuration.XSLT
or Configuration.XQUERY
public boolean replaceSubExpression(Expression original, Expression replacement)
original
- the expression to be replacedreplacement
- the new expression to be inserted in its placepublic Pattern convertToTypedPattern(String val) throws XPathException
val
- either "strict" or "lax" depending on the value of xsl:mode/@typedXPathException
- if the pattern cannot be convertedCopyright (c) 2004-2014 Saxonica Limited. All rights reserved.