/************************************************************************************** * Copyright (C) 2008 EsperTech, Inc. All rights reserved. * * http://esper.codehaus.org * * http://www.espertech.com * * ---------------------------------------------------------------------------------- * * The software in this package is published under the terms of the GPL license * * a copy of which has been included with this distribution in the license.txt file. * **************************************************************************************/ package com.espertech.esper.epl.expression; import com.espertech.esper.client.EventBean; import com.espertech.esper.util.JavaClassHelper; import java.util.Map; /** * Represents an OR expression in a filter expression tree. */ public class ExprOrNode extends ExprNodeBase implements ExprEvaluator { private transient ExprEvaluator[] evaluators; private static final long serialVersionUID = -1079540621551505814L; public ExprEvaluator getExprEvaluator() { return this; } public void validate(ExprValidationContext validationContext) throws ExprValidationException { evaluators = ExprNodeUtility.getEvaluators(this.getChildNodes()); // Sub-nodes must be returning boolean for (ExprEvaluator child : evaluators) { Class childType = child.getType(); if (!JavaClassHelper.isBoolean(childType)) { throw new ExprValidationException("Incorrect use of OR clause, sub-expressions do not return boolean"); } } if (this.getChildNodes().size() <= 1) { throw new ExprValidationException("The OR operator requires at least 2 child expressions"); } } public Class getType() { return Boolean.class; } public boolean isConstantResult() { return false; } public Map<String, Object> getEventType() { return null; } public Object evaluate(EventBean[] eventsPerStream, boolean isNewData, ExprEvaluatorContext exprEvaluatorContext) { Boolean result = false; // At least one child must evaluate to true for (ExprEvaluator child : evaluators) { Boolean evaluated = (Boolean) child.evaluate(eventsPerStream, isNewData, exprEvaluatorContext); if (evaluated == null) { result = null; } else { if (evaluated) { return true; } } } return result; } public String toExpressionString() { StringBuilder buffer = new StringBuilder(); buffer.append('('); String appendStr = ""; for (ExprNode child : this.getChildNodes()) { buffer.append(appendStr); buffer.append(child.toExpressionString()); appendStr = " OR "; } buffer.append(')'); return buffer.toString(); } public boolean equalsNode(ExprNode node) { if (!(node instanceof ExprOrNode)) { return false; } return true; } }