| BetweenQueryExp.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package javax.management;
import org.jboss.mx.util.QueryExpSupport;
/**
* A Between Query Expression.<p>
*
* Returns true only when the test expression is between the lower and
* upper bounds inclusive.
*
* <p><b>Revisions:</b>
* <p><b>20020314 Adrian Brock:</b>
* <ul>
* <li>Fix the human readable expression
* </ul>
* <p><b>20020317 Adrian Brock:</b>
* <ul>
* <li>Make queries thread safe
* </ul>
*
* @author <a href="mailto:Adrian.Brock@HappeningTimes.com">Adrian Brock</a>.
* @version $Revision: 1.9 $
*/
class BetweenQueryExp extends QueryEval implements QueryExp
{
// Constants ---------------------------------------------------
private static final long serialVersionUID = -2933597532866307444L;
// Attributes --------------------------------------------------
/**
* The value to test
*/
private ValueExp exp1;
/**
* The lower bound
*/
private ValueExp exp2;
/**
* The upper bound
*/
private ValueExp exp3;
// Static ------------------------------------------------------
// Constructors ------------------------------------------------
public BetweenQueryExp()
{
}
/**
* Create a new BETWEEN query Expression
*
* @param test the value to test
* @param lower the lower bound
* @param upper the upper bound
*/
public BetweenQueryExp(ValueExp test, ValueExp lower, ValueExp upper)
{
this.exp1 = test;
this.exp2 = lower;
this.exp3 = upper;
}
// Public ------------------------------------------------------
// QueryExp implementation -------------------------------------
public boolean apply(ObjectName name)
throws BadStringOperationException,
BadBinaryOpValueExpException,
BadAttributeValueExpException,
InvalidApplicationException
{
ValueExp calcTest = exp1.apply(name);
ValueExp calcLower = exp2.apply(name);
ValueExp calcUpper = exp3.apply(name);
// Number
if (calcTest instanceof NumericValueExp && calcLower instanceof NumericValueExp && calcUpper instanceof NumericValueExp)
{
// REVIEW: Exceptions for cast problems, which one?
double valueTest = ((NumericValueExp) calcTest).getDoubleValue();
double valueLower = ((NumericValueExp) calcLower).getDoubleValue();
double valueUpper = ((NumericValueExp) calcUpper).getDoubleValue();
return (valueLower <= valueTest && valueTest <= valueUpper);
}
// String
else if (calcTest instanceof StringValueExp && calcLower instanceof StringValueExp && calcUpper instanceof StringValueExp)
{
// REVIEW: Exceptions for cast problems, which one?
String valueTest = calcTest.toString();
String valueLower = calcLower.toString();
String valueUpper = calcUpper.toString();
return (valueLower.compareTo(valueTest) <= 0 &&
valueUpper.compareTo(valueTest) >= 0);
}
// Review What happens now?
throw new BadBinaryOpValueExpException(calcTest);
}
public void setMBeanServer(MBeanServer server)
{
QueryExpSupport.server.set(server);
}
// Object overrides --------------------------------------------
public String toString()
{
return new String("(" +exp2.toString() + ") <= (" + exp1.toString() +
") <= (" + exp3.toString()) + ")";
}
// Protected ---------------------------------------------------
// Private -----------------------------------------------------
// Inner classes -----------------------------------------------
}
| BetweenQueryExp.java |