com.espertech.esper.multithread.VariableReadWriteCallable.java Source code

Java tutorial

Introduction

Here is the source code for com.espertech.esper.multithread.VariableReadWriteCallable.java

Source

/*
 * *************************************************************************************
 *  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.multithread;

import com.espertech.esper.client.EPServiceProvider;
import com.espertech.esper.client.scopetest.SupportUpdateListener;
import com.espertech.esper.support.bean.SupportMarketDataBean;
import com.espertech.esper.support.bean.SupportBean;
import com.espertech.esper.support.bean.SupportBean_A;
import com.espertech.esper.client.EventBean;

import java.util.concurrent.Callable;

import junit.framework.Assert;
import junit.framework.AssertionFailedError;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

public class VariableReadWriteCallable implements Callable {
    private final EPServiceProvider engine;
    private final int numRepeats;
    private final int threadNum;
    private final SupportUpdateListener selectListener;

    public VariableReadWriteCallable(int threadNum, EPServiceProvider engine, int numRepeats) {
        this.engine = engine;
        this.numRepeats = numRepeats;
        this.threadNum = threadNum;

        selectListener = new SupportUpdateListener();
        String stmtText = "select var1, var2, var3 from " + SupportBean_A.class.getName() + "(id='" + threadNum
                + "')";
        engine.getEPAdministrator().createEPL(stmtText).addListener(selectListener);
    }

    public Object call() throws Exception {
        try {
            for (int loop = 0; loop < numRepeats; loop++) {
                long newValue = threadNum * 1000000 + loop;
                Object theEvent;

                if (loop % 2 == 0) {
                    theEvent = new SupportMarketDataBean("", 0, newValue, "");
                } else {
                    SupportBean bean = new SupportBean();
                    bean.setLongPrimitive(newValue);
                    theEvent = bean;
                }

                // Changes the variable values through either of the set-statements
                engine.getEPRuntime().sendEvent(theEvent);

                // Select the variable value back, another thread may have changed it, we are only
                // determining if the set operation is atomic
                engine.getEPRuntime().sendEvent(new SupportBean_A(Integer.toString(threadNum)));
                EventBean received = selectListener.assertOneGetNewAndReset();
                Assert.assertEquals(received.get("var1"), received.get("var2"));
            }
        } catch (AssertionFailedError ex) {
            log.fatal("Assertion error in thread " + Thread.currentThread().getId(), ex);
            return false;
        } catch (Exception ex) {
            log.fatal("Error in thread " + Thread.currentThread().getId(), ex);
            return false;
        }
        return true;
    }

    private static final Log log = LogFactory.getLog(VariableReadWriteCallable.class);
}