/******************************************************************************* * Copyright 2014, * Luis Pina <luis@luispina.me>, * Michael Hicks <mwh@cs.umd.edu> * * This file is part of Rubah. * * Rubah is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Rubah is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Rubah. If not, see <http://www.gnu.org/licenses/>. *******************************************************************************/ package rubah.runtime.state; import java.util.concurrent.locks.Condition; import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReentrantLock; import rubah.RubahException; import rubah.RubahThread; import rubah.io.RubahIO; import rubah.runtime.state.UpdateState.StoppedThread; public class StoppingThreads extends RubahState { private Lock stateLock = new ReentrantLock(); private Condition runningChanged = this.stateLock.newCondition(); public StoppingThreads(UpdateState state) { super(state); } @Override public void doStart() { long time = System.currentTimeMillis(); this.state.setUpdateTime(time); // Interrupt threads waiting on IO RubahIO.interruptThreads(); System.out.print("Waiting for threads "); this.state.printRunningThreads(); // Wait untill all threads reach an update point this.stateLock.lock(); try { while(!this.state.getRunning().isEmpty()) { this.state.printRunningThreads(); try { this.runningChanged.await(); } catch (InterruptedException e) { continue; } } } finally { this.stateLock.unlock(); } time = System.currentTimeMillis() - time; System.out.println("Stopped " + this.state.getStopped().size() + " threads in " + time + "ms"); } @Override public void registerRunningThread(RubahThread t) { this.stateLock.lock(); try { super.registerRunningThread(t); } finally { this.stateLock.unlock(); } } @Override public void deregisterRunningThread(RubahThread t, RubahException e) { this.stateLock.lock(); try { super.deregisterRunningThread(t,e); if (e == null) { return; // Thread did not stop in update point } this.state.getStopped().add(new StoppedThread(Thread.currentThread(), t, e.getUpdatePoint(), t.getName())); this.runningChanged.signalAll(); } finally { this.stateLock.unlock(); } } @Override public void update(String updatePoint) { System.out.println("Thread " + Thread.currentThread() + " reached update point \"" + updatePoint + "\""); throw new RubahException(updatePoint); } @Override public boolean isUpdating() { return false; } @Override public boolean isUpdateRequested() { return true; } }