/************************************************************************************** * 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.filter; import com.espertech.esper.client.EventBean; import com.espertech.esper.epl.expression.ExprEvaluatorContext; import com.espertech.esper.pattern.MatchedEventMap; import com.espertech.esper.util.JavaClassHelper; /** * Event property value in a list of values following an in-keyword. */ public class InSetOfValuesEventProp implements FilterSpecParamInValue { private final String resultEventAsName; private final String resultEventProperty; private final boolean isMustCoerce; private final Class coercionType; private static final long serialVersionUID = -2806996166528183416L; /** * Ctor. * @param resultEventAsName is the event tag * @param resultEventProperty is the event property name * @param isMustCoerce indicates on whether numeric coercion must be performed * @param coercionType indicates the numeric coercion type to use */ public InSetOfValuesEventProp(String resultEventAsName, String resultEventProperty, boolean isMustCoerce, Class coercionType) { this.resultEventAsName = resultEventAsName; this.resultEventProperty = resultEventProperty; this.coercionType = coercionType; this.isMustCoerce = isMustCoerce; } public final Object getFilterValue(MatchedEventMap matchedEvents, ExprEvaluatorContext evaluatorContext) { EventBean theEvent = matchedEvents.getMatchingEventByTag(resultEventAsName); if (theEvent == null) { throw new IllegalStateException("Matching event named " + '\'' + resultEventAsName + "' not found in event result set"); } Object value = theEvent.get(resultEventProperty); // Coerce if necessary if (isMustCoerce) { if (value != null) { value = JavaClassHelper.coerceBoxed((Number) value, coercionType); } } return value; } /** * Returns the tag used for the event property. * @return tag */ public String getResultEventAsName() { return resultEventAsName; } /** * Returns the event property name. * @return property name */ public String getResultEventProperty() { return resultEventProperty; } public final String toString() { return "resultEventProp=" + resultEventAsName + '.' + resultEventProperty; } public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof InSetOfValuesEventProp)) { return false; } InSetOfValuesEventProp other = (InSetOfValuesEventProp) obj; if ( (other.resultEventAsName.equals(this.resultEventAsName)) && (other.resultEventProperty.equals(this.resultEventProperty))) { return true; } return false; } public int hashCode() { return resultEventProperty.hashCode(); } }