/* Copyright (c) 2012 LinkedIn Corp. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ /* $Id$ */ package test.r2.perf.client; import com.linkedin.common.callback.Callback; import com.linkedin.common.callback.FutureCallback; import java.util.concurrent.CountDownLatch; import java.util.concurrent.atomic.AtomicReference; import test.r2.perf.Generator; /** * @author Chris Pettitt * @version $Revision$ */ /* package private */ abstract class AbstractClientRunnable<REQ, RES> implements Runnable { private final AtomicReference<Stats> _stats; private final CountDownLatch _startLatch; private final Generator<REQ> _workGen; public AbstractClientRunnable(AtomicReference<Stats> stats, CountDownLatch startLatch, Generator<REQ> reqGen) { _stats = stats; _startLatch = startLatch; _workGen = reqGen; } @Override public void run() { try { _startLatch.await(); } catch (InterruptedException e) { e.printStackTrace(); Thread.currentThread().interrupt(); throw new RuntimeException(e); } REQ nextMsg; while ((nextMsg = _workGen.nextMessage()) != null) { final FutureCallback<RES> callback = new FutureCallback<RES>(); long start = System.nanoTime(); sendMessage(nextMsg, callback); final Stats stats = _stats.get(); stats.sent(); try { callback.get(); long elapsed = System.nanoTime() - start; stats.success(elapsed); } catch (Exception e) { stats.error(e); } } } protected abstract void sendMessage(REQ nextMsg, Callback<RES> callback); }