blob: c70a507b0440f12c5feb7e701d45e7b9727721ea [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.remote.rse;
import java.io.InputStream;
import java.io.OutputStream;
import org.eclipse.ptp.remote.AbstractRemoteProcess;
public class RSEProcess extends AbstractRemoteProcess {
private Process rseProcess;
public RSEProcess(Process proc) {
rseProcess = proc;
}
/* (non-Javadoc)
* @see java.lang.Process#destroy()
*/
@Override
public void destroy() {
rseProcess.destroy();
}
/* (non-Javadoc)
* @see java.lang.Process#exitValue()
*/
@Override
public int exitValue() {
return rseProcess.exitValue();
}
/* (non-Javadoc)
* @see java.lang.Process#getErrorStream()
*/
@Override
public InputStream getErrorStream() {
return rseProcess.getErrorStream();
}
/* (non-Javadoc)
* @see java.lang.Process#getInputStream()
*/
@Override
public InputStream getInputStream() {
return rseProcess.getInputStream();
}
/* (non-Javadoc)
* @see java.lang.Process#getOutputStream()
*/
@Override
public OutputStream getOutputStream() {
return rseProcess.getOutputStream();
}
/* (non-Javadoc)
* @see java.lang.Process#waitFor()
*/
@Override
public int waitFor() throws InterruptedException {
return rseProcess.waitFor();
}
/* (non-Javadoc)
* @see org.eclipse.ptp.remote.AbstractRemoteProcess#isCompleted()
*/
public boolean isCompleted() {
try {
rseProcess.exitValue();
return true;
} catch (IllegalThreadStateException e) {
return false;
}
}
}