package org.pdf4j.saxon.expr;
import org.pdf4j.saxon.om.Item;
import org.pdf4j.saxon.trace.ExpressionPresenter;
import org.pdf4j.saxon.trans.XPathException;
import org.pdf4j.saxon.type.BuiltInAtomicType;
import org.pdf4j.saxon.type.ItemType;
import org.pdf4j.saxon.type.TypeHierarchy;
import org.pdf4j.saxon.value.AtomicValue;
import org.pdf4j.saxon.value.BooleanValue;
import org.pdf4j.saxon.value.NumericValue;
import java.util.Arrays;
import java.util.Iterator;
/**
* An IntegerRangeTest is an expression of the form
* E = N to M
* where E is numeric, and N and M are both expressions of type integer.
*/
public class IntegerRangeTest extends Expression {
Expression value;
Expression min;
Expression max;
/**
* Construct a IntegerRangeTest
* @param value the integer value to be tested to see if it is in the range min to max inclusive
* @param min the lowest permitted value
* @param max the highest permitted value
*/
public IntegerRangeTest(Expression value, Expression min, Expression max) {
this.value = value;
this.min = min;
this.max = max;
}
/**
* Get the value to be tested
* @return the expression that evaluates to the value being tested
*/
public Expression getValueExpression() {
return value;
}
/**
* Get the expression denoting the start of the range
* @return the expression denoting the minumum value
*/
public Expression getMinValueExpression() {
return min;
}
/**
* Get the expression denoting the end of the range
* @return the expression denoting the maximum value
*/
public Expression getMaxValueExpression() {
return max;
}
/**
* Type-check the expression
*/
public Expression typeCheck(ExpressionVisitor visitor, ItemType contextItemType) throws XPathException {
// Already done, we only get one of these expressions after the operands have been analyzed
return this;
}
/**
* Perform optimisation of an expression and its subexpressions.
* <p/>
* <p>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.</p>
*
* @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 org.pdf4j.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)
*/
public Expression optimize(ExpressionVisitor visitor, ItemType contextItemType) throws XPathException {
return this;
}
/**
* Get the data type of the items returned
* @param th the type hierarchy cache
*/
public ItemType getItemType(TypeHierarchy th) {
return BuiltInAtomicType.BOOLEAN;
}
/**
* Determine the static cardinality
*/
public int computeCardinality() {
return StaticProperty.EXACTLY_ONE;
}
/**
* Copy an expression. This makes a deep copy.
*
* @return the copy of the original expression
*/
public Expression copy() {
return new IntegerRangeTest(value.copy(), min.copy(), max.copy());
}
/**
* Get the immediate sub-expressions of this expression. Default implementation
* returns a zero-length array, appropriate for an expression that has no
* sub-expressions.
*
* @return an iterator containing the sub-expressions of this expression
*/
public Iterator iterateSubExpressions() {
Expression[] e = {value, min, max};
return Arrays.asList(e).iterator();
}
/**
* Replace one subexpression by a replacement subexpression
* @param original the original subexpression
* @param replacement the replacement subexpression
* @return true if the original subexpression is found
*/
public boolean replaceSubExpression(Expression original, Expression replacement) {
boolean found = false;
if (value == original) {
value = replacement;
found = true;
}
if (min == original) {
min = replacement;
found = true;
}
if (max == original) {
max = replacement;
found = true;
}
return found;
}
/**
* Promote this expression if possible
*/
public Expression promote(PromotionOffer offer) throws XPathException {
Expression exp = offer.accept(this);
if (exp != null) {
return exp;
} else {
if (offer.action != PromotionOffer.UNORDERED) {
value = doPromotion(value, offer);
min = doPromotion(min, offer);
max = doPromotion(max, offer);
}
return this;
}
}
/**
* Evaluate the expression
*/
public Item evaluateItem(XPathContext c) throws XPathException {
AtomicValue av = (AtomicValue)value.evaluateItem(c);
if (av==null) {
return BooleanValue.FALSE;
}
NumericValue v = (NumericValue)av;
if (!v.isWholeNumber()) {
return BooleanValue.FALSE;
}
AtomicValue av2 = (AtomicValue)min.evaluateItem(c);
NumericValue v2 = (NumericValue)av2;
if (v.compareTo(v2) < 0) {
return BooleanValue.FALSE;
}
AtomicValue av3 = (AtomicValue)max.evaluateItem(c);
NumericValue v3 = (NumericValue)av3;
return BooleanValue.get(v.compareTo(v3) <= 0);
}
/**
* Diagnostic print of expression structure. The abstract expression tree
* is written to the supplied output destination.
*/
public void explain(ExpressionPresenter destination) {
destination.startElement("integerRangeTest");
value.explain(destination);
min.explain(destination);
max.explain(destination);
destination.endElement();
}
}
//
// The contents of this file are subject to the Mozilla Public License Version 1.0 (the "License");
// you may not use this file except in compliance with the License. You may obtain a copy of the
// License at http://www.mozilla.org/MPL/
//
// Software distributed under the License is distributed on an "AS IS" basis,
// WITHOUT WARRANTY OF ANY KIND, either express or implied.
// See the License for the specific language governing rights and limitations under the License.
//
// The Original Code is: all this file.
//
// The Initial Developer of the Original Code is Michael H. Kay
//
// Portions created by (your name) are Copyright (C) (your legal entity). All Rights Reserved.
//
// Contributor(s): none.
//