/* * Copyright 2000-2004 The Apache Software Foundation * * 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.apache.tools.ant.taskdefs; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; /** * Copies standard output and error of subprocesses to standard output and * error of the parent process. * * @since Ant 1.2 */ public class PumpStreamHandler implements ExecuteStreamHandler { private Thread outputThread; private Thread errorThread; private Thread inputThread; private OutputStream out; private OutputStream err; private InputStream input; /** * Construct a new PumpStreamHandler. * @param out the output OutputStream. * @param err the error OutputStream. * @param input the input InputStream. */ public PumpStreamHandler(OutputStream out, OutputStream err, InputStream input) { this.out = out; this.err = err; this.input = input; } /** * Construct a new PumpStreamHandler. * @param out the output OutputStream. * @param err the error OutputStream. */ public PumpStreamHandler(OutputStream out, OutputStream err) { this(out, err, null); } /** * Construct a new PumpStreamHandler. * @param outAndErr the output/error OutputStream. */ public PumpStreamHandler(OutputStream outAndErr) { this(outAndErr, outAndErr); } /** * Construct a new PumpStreamHandler. */ public PumpStreamHandler() { this(System.out, System.err); } /** * Set the InputStream from which to read the * standard output of the process. * @param is the InputStream. */ public void setProcessOutputStream(InputStream is) { createProcessOutputPump(is, out); } /** * Set the InputStream from which to read the * standard error of the process. * @param is the InputStream. */ public void setProcessErrorStream(InputStream is) { if (err != null) { createProcessErrorPump(is, err); } } /** * Set the OutputStream by means of which * input can be sent to the process. * @param os the OutputStream. */ public void setProcessInputStream(OutputStream os) { if (input != null) { inputThread = createPump(input, os, true); } else { try { os.close(); } catch (IOException e) { //ignore } } } /** * Start the Threads. */ public void start() { outputThread.start(); errorThread.start(); if (inputThread != null) { inputThread.start(); } } /** * Stop pumping the streams. */ public void stop() { try { outputThread.join(); } catch (InterruptedException e) { // ignore } try { errorThread.join(); } catch (InterruptedException e) { // ignore } if (inputThread != null) { try { inputThread.join(); } catch (InterruptedException e) { // ignore } } try { err.flush(); } catch (IOException e) { // ignore } try { out.flush(); } catch (IOException e) { // ignore } } /** * Get the error stream. * @return OutputStream. */ protected OutputStream getErr() { return err; } /** * Get the output stream. * @return OutputStream. */ protected OutputStream getOut() { return out; } /** * Create the pump to handle process output. * @param is the InputStream. * @param os the OutputStream. */ protected void createProcessOutputPump(InputStream is, OutputStream os) { outputThread = createPump(is, os); } /** * Create the pump to handle error output. * @param is the InputStream. * @param os the OutputStream. */ protected void createProcessErrorPump(InputStream is, OutputStream os) { errorThread = createPump(is, os); } /** * Creates a stream pumper to copy the given input stream to the * given output stream. */ protected Thread createPump(InputStream is, OutputStream os) { return createPump(is, os, false); } /** * Creates a stream pumper to copy the given input stream to the * given output stream. */ protected Thread createPump(InputStream is, OutputStream os, boolean closeWhenExhausted) { final Thread result = new Thread(new StreamPumper(is, os, closeWhenExhausted)); result.setDaemon(true); return result; } }