/* *************************************************************************************** * 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.regression.multithread; import com.espertech.esper.client.Configuration; import com.espertech.esper.client.EPServiceProvider; import com.espertech.esper.client.EPServiceProviderManager; import com.espertech.esper.client.EPStatement; import com.espertech.esper.client.scopetest.SupportUpdateListener; import com.espertech.esper.supportregression.bean.SupportCollection; import com.espertech.esper.supportregression.client.SupportConfigFactory; import junit.framework.TestCase; import java.util.Arrays; import java.util.Collection; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; import java.util.concurrent.TimeUnit; /** * Test for multithread-safety for a simple aggregation case using count(*). */ public class TestMTStmtStatelessEnummethod extends TestCase { private EPServiceProvider engine; public void setUp() { Configuration config = SupportConfigFactory.getConfiguration(); engine = EPServiceProviderManager.getProvider("TestMTStmtFilter", config); } public void tearDown() { engine.destroy(); } public void testStatelessEnmeration() throws Exception { GeneratorIteratorCallback enumCallback = new GeneratorIteratorCallback() { private final Collection<String> vals = Arrays.asList("a", "b", "c", "d", "e", "f", "g", "h", "i", "j"); public Object getObject(int numEvent) { SupportCollection bean = new SupportCollection(); bean.setStrvals(vals); return bean; } }; String enumFilter = "select strvals.anyOf(v => v = 'j') from " + SupportCollection.class.getName(); tryCount(4, 1000, enumFilter, enumCallback); } public void tryCount(int numThreads, int numMessages, String epl, GeneratorIteratorCallback generatorIteratorCallback) throws Exception { ExecutorService threadPool = Executors.newFixedThreadPool(numThreads); EPStatement stmt = engine.getEPAdministrator().createEPL(epl); SupportUpdateListener listener = new SupportUpdateListener(); stmt.addListener(listener); Future future[] = new Future[numThreads]; for (int i = 0; i < numThreads; i++) { future[i] = threadPool.submit(new SendEventCallable(i, engine, new GeneratorIterator(numMessages, generatorIteratorCallback))); } threadPool.shutdown(); threadPool.awaitTermination(10, TimeUnit.SECONDS); for (int i = 0; i < numThreads; i++) { assertTrue((Boolean) future[i].get()); } assertEquals(numMessages * numThreads, listener.getNewDataListFlattened().length); } }