|
| 1 | +/* |
| 2 | + * #%L |
| 3 | + * SciJava Common shared library for SciJava software. |
| 4 | + * %% |
| 5 | + * Copyright (C) 2009 - 2015 Board of Regents of the University of |
| 6 | + * Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck |
| 7 | + * Institute of Molecular Cell Biology and Genetics. |
| 8 | + * %% |
| 9 | + * Redistribution and use in source and binary forms, with or without |
| 10 | + * modification, are permitted provided that the following conditions are met: |
| 11 | + * |
| 12 | + * 1. Redistributions of source code must retain the above copyright notice, |
| 13 | + * this list of conditions and the following disclaimer. |
| 14 | + * 2. Redistributions in binary form must reproduce the above copyright notice, |
| 15 | + * this list of conditions and the following disclaimer in the documentation |
| 16 | + * and/or other materials provided with the distribution. |
| 17 | + * |
| 18 | + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 19 | + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE |
| 22 | + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 23 | + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 24 | + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 25 | + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 26 | + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 28 | + * POSSIBILITY OF SUCH DAMAGE. |
| 29 | + * #L% |
| 30 | + */ |
| 31 | + |
| 32 | +package org.scijava.console; |
| 33 | + |
| 34 | +import java.io.IOException; |
| 35 | +import java.io.OutputStream; |
| 36 | +import java.util.ArrayList; |
| 37 | + |
| 38 | +/** |
| 39 | + * A {@code MultiOutputStream} is a collection of constituent |
| 40 | + * {@link OutputStream} objects, to which all output is forwarded. |
| 41 | + * <p> |
| 42 | + * Thanks to Ian F. Darwin for <a href= |
| 43 | + * "http://www.java2s.com/Code/Java/File-Input-Output/TeePrintStreamteesallPrintStreamoperationsintoafileratherliketheUNIXtee1command.htm" |
| 44 | + * >his implementation of a similar concept</a>. |
| 45 | + * </p> |
| 46 | + * |
| 47 | + * @author Curtis Rueden |
| 48 | + */ |
| 49 | +public class MultiOutputStream extends OutputStream { |
| 50 | + |
| 51 | + private final ArrayList<OutputStream> streams; |
| 52 | + |
| 53 | + /** |
| 54 | + * Forwards output to a list of output streams. |
| 55 | + * |
| 56 | + * @param os Output streams which will receive this stream's output. |
| 57 | + */ |
| 58 | + public MultiOutputStream(final OutputStream... os) { |
| 59 | + streams = new ArrayList<OutputStream>(os.length); |
| 60 | + for (int i = 0; i < os.length; i++) { |
| 61 | + streams.add(os[i]); |
| 62 | + } |
| 63 | + } |
| 64 | + |
| 65 | + // -- MultiOutputStream methods -- |
| 66 | + |
| 67 | + /** Adds an output stream to those receiving this stream's output. */ |
| 68 | + public void addOutputStream(final OutputStream os) { |
| 69 | + synchronized (streams) { |
| 70 | + streams.add(os); |
| 71 | + } |
| 72 | + } |
| 73 | + |
| 74 | + /** Removes an output stream from those receiving this stream's output. */ |
| 75 | + public void removeOutputStream(final OutputStream os) { |
| 76 | + synchronized (streams) { |
| 77 | + streams.remove(os); |
| 78 | + } |
| 79 | + } |
| 80 | + |
| 81 | + // -- OutputStream methods -- |
| 82 | + |
| 83 | + @Override |
| 84 | + public void write(final int b) throws IOException { |
| 85 | + for (final OutputStream stream : streams) |
| 86 | + stream.write(b); |
| 87 | + } |
| 88 | + |
| 89 | + @Override |
| 90 | + public void write(final byte[] buf, final int off, final int len) |
| 91 | + throws IOException |
| 92 | + { |
| 93 | + for (final OutputStream stream : streams) |
| 94 | + stream.write(buf, off, len); |
| 95 | + } |
| 96 | + |
| 97 | + // -- Closeable methods -- |
| 98 | + |
| 99 | + @Override |
| 100 | + public void close() throws IOException { |
| 101 | + for (final OutputStream stream : streams) |
| 102 | + stream.close(); |
| 103 | + } |
| 104 | + |
| 105 | + // -- Flushable methods -- |
| 106 | + |
| 107 | + @Override |
| 108 | + public void flush() throws IOException { |
| 109 | + for (final OutputStream stream : streams) |
| 110 | + stream.flush(); |
| 111 | + } |
| 112 | + |
| 113 | +} |
0 commit comments