blob: 64016e1e107a06224b784f80a0c36d3f4a91a7bd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2010 Cloudsmith Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Cloudsmith Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.metadata.expression;
import java.util.Arrays;
import org.eclipse.equinox.internal.p2.core.helpers.CollectionUtils;
import org.eclipse.equinox.p2.metadata.expression.*;
/**
* The MatchExpression is a wrapper for an {@link IExpression} that is expected
* to return a boolean value. The wrapper provides the evaluation context needed
* to evaluate the expression.
*/
public class MatchExpression<T> extends Unary implements IMatchExpression<T> {
private static final Object[] noParams = new Object[0];
private final Object[] parameters;
MatchExpression(Expression expression, Object[] parameters) {
super(expression);
this.parameters = parameters == null ? noParams : parameters;
}
public boolean accept(IExpressionVisitor visitor) {
return operand.accept(visitor);
}
public IEvaluationContext createContext() {
return EvaluationContext.create(parameters, ExpressionFactory.THIS);
}
public boolean equals(Object o) {
return super.equals(o) && Arrays.equals(parameters, ((MatchExpression<?>) o).parameters);
}
public Object evaluate(IEvaluationContext context) {
return operand.evaluate(parameters.length == 0 ? context : EvaluationContext.create(context, parameters));
}
public int getExpressionType() {
return 0;
}
public String getOperator() {
throw new UnsupportedOperationException();
}
public Object[] getParameters() {
return parameters;
}
/**
* Returns the predicate expression that is used for the match
* @return The predicate expression
*/
IExpression getPredicate() {
return operand;
}
public int getPriority() {
return operand.getPriority();
}
public int hashCode() {
return operand.hashCode() * 31 + CollectionUtils.hashCode(parameters);
}
public boolean isMatch(IEvaluationContext context, T value) {
ExpressionFactory.THIS.setValue(context, value);
return Boolean.TRUE == operand.evaluate(context);
}
public boolean isMatch(T value) {
return isMatch(createContext(), value);
}
public void toLDAPString(StringBuffer bld) {
operand.toLDAPString(bld);
}
public void toString(StringBuffer bld, Variable rootVariable) {
operand.toString(bld, rootVariable);
}
}