
org.zeroturnaround.exec.close.StandardProcessCloser Maven / Gradle / Ivy
/*
* Copyright (C) 2014 ZeroTurnaround
* Contains fragments of code from Apache Commons Exec, rights owned
* by Apache Software Foundation (ASF).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.zeroturnaround.exec.close;
import java.io.IOException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.zeroturnaround.exec.stream.ExecuteStreamHandler;
/**
* Stops {@link ExecuteStreamHandler} from pumping the streams and closes them.
*/
public class StandardProcessCloser implements ProcessCloser {
private static final Logger log = LoggerFactory.getLogger(StandardProcessCloser.class);
protected final ExecuteStreamHandler streams;
public StandardProcessCloser(ExecuteStreamHandler streams) {
this.streams = streams;
}
public void close(Process process) throws IOException, InterruptedException {
if (streams != null) {
streams.stop();
}
closeStreams(process);
}
/**
* Close the streams belonging to the given Process.
*/
private void closeStreams(final Process process) throws IOException {
IOException caught = null;
try {
process.getOutputStream().close();
}
catch (IOException e) {
log.error("Failed to close process output stream:", e);
caught = e;
}
try {
process.getInputStream().close();
}
catch (IOException e) {
log.error("Failed to close process input stream:", e);
caught = e;
}
try {
process.getErrorStream().close();
}
catch (IOException e) {
log.error("Failed to close process error stream:", e);
caught = e;
}
if (caught != null) {
throw caught;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy