blob: 58c649dabcdc96e4584f677130c93a9cdee32967 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM - Initial API and implementation
*******************************************************************************/
package org.eclipse.core.tests.runtime.jobs;
import java.util.Random;
import org.eclipse.core.runtime.jobs.ILock;
public class LockAcquiringRunnable implements Runnable {
private ILock[] locks;
private Random random = new Random();
private boolean alive;
private boolean done;
/**
* This runnable will randomly acquire the given lock for
* random periods of time, in the given order
*/
public LockAcquiringRunnable(ILock[] locks) {
this.locks = locks;
this.alive = true;
done = false;
}
public void kill() {
alive = false;
}
@Override
public void run() {
while (alive) {
try {
Thread.sleep(random.nextInt(500));
} catch (InterruptedException e) {
//ignore
}
for (ILock lock : locks) {
lock.acquire();
try {
Thread.sleep(random.nextInt(500));
} catch (InterruptedException e1) {
//ignore
}
}
//release all locks
for (int i = locks.length; --i >= 0;) {
locks[i].release();
}
}
done = true;
}
public void isDone() {
while (!done) {
try {
Thread.yield();
Thread.sleep(100);
Thread.yield();
} catch (InterruptedException e) {
//ignore
}
}
}
}