/* *************************************************************************************** * Copyright (C) 2006 EsperTech, Inc. All rights reserved. * * http://www.espertech.com/esper * * 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.collection.MultiKeyUntyped; import com.espertech.esper.metrics.instrumentation.InstrumentationHelper; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.*; import java.util.concurrent.locks.ReadWriteLock; /** * Index for filter parameter constants to match using the 'in' operator to match against a supplied set of values * (i.e. multiple possible exact matches). * The implementation is based on a regular HashMap. */ public final class FilterParamIndexIn extends FilterParamIndexLookupableBase { private final Map<Object, List<EventEvaluator>> constantsMap; private final Map<MultiKeyUntyped, EventEvaluator> evaluatorsMap; private final ReadWriteLock constantsMapRWLock; public FilterParamIndexIn(FilterSpecLookupable lookupable, ReadWriteLock readWriteLock) { super(FilterOperator.IN_LIST_OF_VALUES, lookupable); constantsMap = new HashMap<Object, List<EventEvaluator>>(); evaluatorsMap = new HashMap<MultiKeyUntyped, EventEvaluator>(); constantsMapRWLock = readWriteLock; } public final EventEvaluator get(Object filterConstant) { MultiKeyUntyped keyValues = (MultiKeyUntyped) filterConstant; return evaluatorsMap.get(keyValues); } public final void put(Object filterConstant, EventEvaluator evaluator) { // Store evaluator keyed to set of values MultiKeyUntyped keys = (MultiKeyUntyped) filterConstant; // make sure to remove the old evaluator for this constant EventEvaluator oldEvaluator = evaluatorsMap.put(keys, evaluator); // Store each value to match against in Map with it's evaluator as a list Object[] keyValues = keys.getKeys(); for (int i = 0; i < keyValues.length; i++) { List<EventEvaluator> evaluators = constantsMap.get(keyValues[i]); if (evaluators == null) { evaluators = new LinkedList<EventEvaluator>(); constantsMap.put(keyValues[i], evaluators); } else { if (oldEvaluator != null) { evaluators.remove(oldEvaluator); } } evaluators.add(evaluator); } } public final void remove(Object filterConstant) { MultiKeyUntyped keys = (MultiKeyUntyped) filterConstant; // remove the mapping of value set to evaluator EventEvaluator eval = evaluatorsMap.remove(keys); Object[] keyValues = keys.getKeys(); for (int i = 0; i < keyValues.length; i++) { List<EventEvaluator> evaluators = constantsMap.get(keyValues[i]); if (evaluators != null) { // could be removed already as same-value constants existed evaluators.remove(eval); if (evaluators.isEmpty()) { constantsMap.remove(keyValues[i]); } } } } public final int sizeExpensive() { return constantsMap.size(); } public boolean isEmpty() { return constantsMap.isEmpty(); } public final ReadWriteLock getReadWriteLock() { return constantsMapRWLock; } public final void matchEvent(EventBean theEvent, Collection<FilterHandle> matches) { Object attributeValue = lookupable.getGetter().get(theEvent); if (InstrumentationHelper.ENABLED) { InstrumentationHelper.get().qFilterReverseIndex(this, attributeValue); } if (attributeValue == null) { if (InstrumentationHelper.ENABLED) { InstrumentationHelper.get().aFilterReverseIndex(false); } return; } // Look up in hashtable constantsMapRWLock.readLock().lock(); List<EventEvaluator> evaluators = constantsMap.get(attributeValue); // No listener found for the value, return if (evaluators == null) { constantsMapRWLock.readLock().unlock(); if (InstrumentationHelper.ENABLED) { InstrumentationHelper.get().aFilterReverseIndex(false); } return; } try { for (EventEvaluator evaluator : evaluators) { evaluator.matchEvent(theEvent, matches); } } finally { constantsMapRWLock.readLock().unlock(); } if (InstrumentationHelper.ENABLED) { InstrumentationHelper.get().aFilterReverseIndex(null); } } private static final Logger log = LoggerFactory.getLogger(FilterParamIndexIn.class); }