blob: ad608f3734975c8780ed76a68a2e01d2ff4cf82f [file] [log] [blame]
package org.eclipse.debug.internal.core;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* Monitors a system process, wiating for it to terminate, and
* then notifies the associated runtime process.
*/
public class ProcessMonitor {
/**
* The underlying <code>java.lang.Process</code> being monitored.
*/
protected Process fOSProcess;
/**
* The <code>IProcess</code> which will be informed when this
* monitor detects that the underlying process has terminated.
*/
protected RuntimeProcess fProcess;
/**
* The <code>Thread</code> which is monitoring the underlying process.
*/
protected Thread fThread;
/**
* Creates a new process monitor and starts monitoring the process
* for termination.
*/
public ProcessMonitor(RuntimeProcess process) {
fProcess= process;
fOSProcess= process.getSystemProcess();
startMonitoring();
}
/**
* Monitors the underlying process for termination. When the underlying
* process terminates (or if the monitoring thread is interrupted),
* inform the <code>IProcess</code> that it has terminated.
*/
private void monitorProcess() {
while (fOSProcess != null) {
try {
fOSProcess.waitFor();
} catch (InterruptedException ie) {
} finally {
fOSProcess = null;
fProcess.terminated();
}
}
}
/**
* Starts monitoring the underlying process to determine
* if it has terminated.
*/
private void startMonitoring() {
if (fThread == null) {
fThread= new Thread(new Runnable() {
public void run() {
monitorProcess();
}
}, DebugCoreMessages.getString("ProcessMonitor.label")); //$NON-NLS-1$
fThread.start();
}
}
/**
* Kills the monitoring thread.
*
* This method is to be useful for dealing with the error
* case of an underlying process which has not informed this
* monitor of its termination.
*/
protected void killMonitoring() {
fThread.interrupt();
}
}