net.sf.saxon.expr.ContextItemExpression Maven / Gradle / Ivy
Show all versions of saxon-he Show documentation
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2013 Saxonica Limited.
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package net.sf.saxon.expr;
import net.sf.saxon.Configuration;
import net.sf.saxon.expr.parser.ExpressionVisitor;
import net.sf.saxon.expr.parser.PathMap;
import net.sf.saxon.om.Item;
import net.sf.saxon.om.SequenceIterator;
import net.sf.saxon.pattern.AnchorPattern;
import net.sf.saxon.pattern.Pattern;
import net.sf.saxon.trace.ExpressionPresenter;
import net.sf.saxon.trans.XPathException;
import net.sf.saxon.tree.iter.SingletonIterator;
import net.sf.saxon.type.ItemType;
import net.sf.saxon.type.Type;
import net.sf.saxon.type.TypeHierarchy;
import java.util.List;
/**
* This class represents the expression "(dot)", which always returns the context item.
* This may be a AtomicValue or a Node.
*/
public class ContextItemExpression extends Expression {
ItemType itemType = Type.ITEM_TYPE;
boolean contextPossiblyUndefined = true;
/**
* Create the expression
*/
public ContextItemExpression() {
}
/**
* Get a name identifying the kind of expression, in terms meaningful to a user.
*
* @return a name identifying the kind of expression, in terms meaningful to a user.
* The name will always be in the form of a lexical XML QName, and should match the name used
* in explain() output displaying the expression.
*/
public String getExpressionName() {
return "contextItem";
}
/**
* Create a clone copy of this expression
*
* @return a copy of this expression
*/
/*@NotNull*/
public Expression copy() {
ContextItemExpression cie2 = new ContextItemExpression();
cie2.itemType = itemType;
cie2.contextPossiblyUndefined = contextPossiblyUndefined;
return cie2;
}
protected String getErrorCodeForUndefinedContext() {
return "XPDY0002";
}
/**
* Type-check the expression.
*/
/*@NotNull*/
public Expression typeCheck(ExpressionVisitor visitor, /*@Nullable*/ ExpressionVisitor.ContextItemType contextItemType) throws XPathException {
if (contextItemType == null || contextItemType.itemType == null) {
XPathException err = new XPathException("There is no context item");
err.setErrorCode(getErrorCodeForUndefinedContext());
err.setIsTypeError(true);
err.setLocator(this);
visitor.issueWarning("Evaluation will always fail: there is no context item", this);
return new ErrorExpression(err);
} else {
contextPossiblyUndefined = contextItemType.contextMaybeUndefined;
}
itemType = contextItemType.itemType;
return this;
}
/**
* Perform optimisation of an expression and its subexpressions.
*
* 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.
*
* @param visitor an expression visitor
* @param contextItemType 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
* {@link net.sf.saxon.type.Type#ITEM_TYPE}
* @return the original expression, rewritten if appropriate to optimize execution
* @throws XPathException if an error is discovered during this phase
* (typically a type error)
*/
/*@NotNull*/
public Expression optimize(ExpressionVisitor visitor, ExpressionVisitor.ContextItemType contextItemType) throws XPathException {
// In XSLT, we don't catch this error at the typeCheck() phase because it's done one XPath expression
// at a time. So we repeat the check here.
if (contextItemType == null) {
XPathException err = new XPathException("The context item is undefined at this point");
err.setErrorCode(getErrorCodeForUndefinedContext());
err.setIsTypeError(true);
err.setLocator(this);
throw err;
}
return this;
}
/**
* Determine the item type
*
* @param th the type hierarchy cache
*/
/*@NotNull*/
public ItemType getItemType(TypeHierarchy th) {
return itemType;
}
/**
* Ask whether the context item may possibly be undefined
*
* @return true if it might be undefined
*/
public boolean isContextPossiblyUndefined() {
return contextPossiblyUndefined;
}
/**
* Get the static cardinality
*/
public int computeCardinality() {
return StaticProperty.EXACTLY_ONE;
}
/**
* Determine the special properties of this expression
*
* @return the value {@link StaticProperty#NON_CREATIVE}
*/
public int computeSpecialProperties() {
int p = super.computeSpecialProperties();
return p | StaticProperty.NON_CREATIVE | StaticProperty.CONTEXT_DOCUMENT_NODESET;
}
/**
* Is this expression the same as another expression?
*/
public boolean equals(Object other) {
return (other instanceof ContextItemExpression);
}
/**
* get HashCode for comparing two expressions
*/
public int hashCode() {
return "ContextItemExpression".hashCode();
}
public int getIntrinsicDependencies() {
return StaticProperty.DEPENDS_ON_CONTEXT_ITEM;
}
/**
* Add a representation of this expression to a PathMap. The PathMap captures a map of the nodes visited
* by an expression in a source tree.
*
* 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.
*
* @param pathMap the PathMap to which the expression should be added
* @param pathMapNodeSet the PathMapNodeSet to which the paths embodied in this expression should be added
* @return the pathMapNodeSet representing the points in the source document that are both reachable by this
* expression, and that represent possible results of this expression. For an expression that does
* navigation, it represents the end of the arc in the path map that describes the navigation route. For other
* expressions, it is the same as the input pathMapNode.
*/
public PathMap.PathMapNodeSet addToPathMap(PathMap pathMap, PathMap.PathMapNodeSet pathMapNodeSet) {
if (pathMapNodeSet == null) {
pathMapNodeSet = new PathMap.PathMapNodeSet(pathMap.makeNewRoot(this));
}
return pathMapNodeSet;
}
/**
* Determine whether the expression can be evaluated without reference to the part of the context
* document outside the subtree rooted at the context node.
*
* @return true if the expression has no dependencies on the context node, or if the only dependencies
* on the context node are downward selections using the self, child, descendant, attribute, and namespace
* axes.
*/
public boolean isSubtreeExpression() {
return true;
}
/**
* Convert this expression to an equivalent XSLT pattern
*
* @param config the Saxon configuration
* @param is30 true if this is XSLT 3.0
* @return the equivalent pattern
* @throws net.sf.saxon.trans.XPathException
* if conversion is not possible
*/
@Override
public Pattern toPattern(Configuration config, boolean is30) throws XPathException {
return new AnchorPattern();
//throw new XPathException("'.' is not valid as a step in a path pattern");
}
/**
* Iterate over the value of the expression
*/
/*@NotNull*/
public SequenceIterator iterate(XPathContext context) throws XPathException {
Item item = context.getContextItem();
if (item == null) {
dynamicError("The context item is absent", getErrorCodeForUndefinedContext(), context);
}
return SingletonIterator.makeIterator(item);
}
/**
* Evaluate the expression
*/
public Item evaluateItem(XPathContext context) throws XPathException {
Item item = context.getContextItem();
if (item == null) {
dynamicError("The context item is absent", getErrorCodeForUndefinedContext(), context);
}
return item;
}
/**
* 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.
* In the case of XSLT instructions, the toString() method gives an abstracted view of the syntax
*/
public String toString() {
return ".";
}
/**
* Diagnostic print of expression structure. The abstract expression tree
* is written to the supplied output destination.
*/
public void explain(ExpressionPresenter destination) {
destination.startElement("dot");
destination.endElement();
}
}