aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-osgi-testrunner/src/main/java/com/yahoo/vespa/testrunner/TeeStream.java
blob: 48dd1e1959dcf9d209205d38c710f215cc1b0ce3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.testrunner;

import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintStream;
import java.util.concurrent.atomic.AtomicReference;

/**
 * Used to replace System.out and System.err, providing the ability to forward output to an additional sink.
 *
 * @author jonmv
 */
public class TeeStream extends OutputStream {

    private final AtomicReference<OutputStream> tee = new AtomicReference<>();
    private final OutputStream original;

    private TeeStream(OutputStream original) {
        this.original = original;
    }

    public static TeeStream ofSystemOut() {
        TeeStream teed = new TeeStream(System.out);
        System.setOut(new PrintStream(teed));
        return teed;
    }

    public static TeeStream ofSystemErr() {
        TeeStream teed = new TeeStream(System.err);
        System.setErr(new PrintStream(teed));
        return teed;
    }

    public void setTee(OutputStream tee) {
        if ( ! this.tee.compareAndSet(null, tee)) throw new IllegalStateException("tee already set");
    }

    public OutputStream clearTee() {
        OutputStream tee = this.tee.getAndSet(null);
        if (tee == null) throw new IllegalStateException("tee not set");
        return tee;
    }

    @Override
    public void write(int b) throws IOException {
        OutputStream maybe = tee.get();
        if (maybe != null) maybe.write(b);
        original.write(b);
    }

    @Override
    public void write(byte[] b, int off, int len) throws IOException {
        OutputStream maybe = tee.get();
        if (maybe != null) maybe.write(b, off, len);
        original.write(b, off, len);
    }

    @Override
    public void flush() throws IOException {
        OutputStream maybe = tee.get();
        if (maybe != null) maybe.flush();
        original.flush();
    }

}