View Javadoc

1   package org.apache.maven.surefire.report;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *     http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import java.io.ByteArrayOutputStream;
23  import java.io.IOException;
24  import java.io.PrintStream;
25  
26  /**
27   * Deals with system.out/err.
28   * <p/>
29   */
30  public class ConsoleOutputCapture
31  {
32  
33      private static final PrintStream oldOut = System.out;
34  
35      private static final PrintStream oldErr = System.err;
36  
37      public ConsoleOutputCapture( ConsoleOutputReceiver target )
38      {
39          System.setOut( new ForwardingPrintStream( true, target ) );
40  
41          System.setErr( new ForwardingPrintStream( false, target ) );
42      }
43  
44      public void restoreStreams()
45      {
46          System.setOut( oldOut );
47          System.setErr( oldErr );
48      }
49  
50      static class ForwardingPrintStream
51          extends PrintStream
52      {
53          private final boolean isStdout;
54  
55          private final ConsoleOutputReceiver target;
56  
57          ForwardingPrintStream( boolean stdout, ConsoleOutputReceiver target )
58          {
59              super( new ByteArrayOutputStream() );
60              isStdout = stdout;
61              this.target = target;
62          }
63  
64          public void write( byte[] buf, int off, int len )
65          {
66              target.writeTestOutput( buf, off, len, isStdout );
67          }
68  
69          public void write( byte[] b )
70              throws IOException
71          {
72              target.writeTestOutput( b, 0, b.length, isStdout );
73          }
74  
75          public void close()
76          {
77          }
78  
79          public void flush()
80          {
81          }
82      }
83  
84  }