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  import org.apache.maven.surefire.util.internal.ByteBuffer;
26  
27  /**
28   * Deals with system.out/err.
29   * <p/>
30   */
31  public class ConsoleOutputCapture
32  {
33      public static void startCapture( ConsoleOutputReceiver target )
34      {
35          System.setOut( new ForwardingPrintStream( true, target ) );
36  
37          System.setErr( new ForwardingPrintStream( false, target ) );
38      }
39  
40      private static class ForwardingPrintStream
41          extends PrintStream
42      {
43          private final boolean isStdout;
44  
45          private final ConsoleOutputReceiver target;
46  
47          ForwardingPrintStream( boolean stdout, ConsoleOutputReceiver target )
48          {
49              super( new ByteArrayOutputStream() );
50              isStdout = stdout;
51              this.target = target;
52          }
53  
54          public void write( byte[] buf, int off, int len )
55          {
56              target.writeTestOutput( buf, off, len, isStdout );
57          }
58  
59          public void write( byte[] b )
60              throws IOException
61          {
62              target.writeTestOutput( b, 0, b.length, isStdout );
63          }
64  
65          public void write( int b )
66          {
67              byte[] buf = new byte[1];
68              buf[0] = (byte) b;
69              try
70              {
71                  write( buf );
72              }
73              catch ( IOException e )
74              {
75                  setError();
76              }
77          }
78  
79          static final byte[] newline = new byte[]{ (byte) '\n' };
80  
81          public void println( String s )
82          {
83              if (s == null){
84                  s = "null"; // Shamelessy taken from super.print
85              }
86              final byte[] bytes = s.getBytes();
87              final byte[] join = ByteBuffer.join( bytes, 0, bytes.length, newline, 0, 1 );
88              target.writeTestOutput( join, 0, join.length, isStdout );
89          }
90  
91          public void close()
92          {
93          }
94  
95          public void flush()
96          {
97          }
98      }
99  
100 }