blob: e1d29bbb3e312b6ef4e34385ca9beb1564ad221c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2016 SSI Schaefer 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:
* SSI Schaefer
*******************************************************************************/
package org.eclipse.debug.internal.core.groups.observer;
import java.util.concurrent.Callable;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.debug.core.model.IProcess;
/**
* The {@code ProcessObserver} observes a given {@linkplain IProcess process} instance and notifies
* a {@linkplain CountDownLatch synchronization object} when the process terminates.
*/
public final class ProcessObserver implements Callable<Integer> {
private final IProcess p;
private final IProgressMonitor pMonitor;
private final CountDownLatch countDownLatch;
public ProcessObserver(IProgressMonitor monitor, IProcess p, CountDownLatch countDownLatch) {
this.p = p;
this.pMonitor = monitor;
this.countDownLatch = countDownLatch;
}
@Override
public Integer call() throws Exception {
try {
while (!p.isTerminated() && !pMonitor.isCanceled()) {
TimeUnit.MILLISECONDS.sleep(250);
if (countDownLatch.getCount() == 0) {
break;
}
}
// check if terminated or timeout
if (p.isTerminated()) {
return p.getExitValue();
}
return 0;
} finally {
countDownLatch.countDown();
}
}
}