blob: cf70d1746da86914ec7cd28bce3fe62e71c493ba [file] [log] [blame]
package org.apache.maven.surefire.junitcore;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
import org.apache.maven.surefire.api.report.ConsoleOutputReceiver;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;
/**
* A stream-like object that preserves ordering between stdout/stderr
*/
final class LogicalStream
{
private final Queue<Entry> output = new ConcurrentLinkedQueue<>();
private static final class Entry
{
private final boolean stdout;
private final String text;
private final boolean newLine;
Entry( boolean stdout, String text, boolean newLine )
{
this.stdout = stdout;
this.text = text;
this.newLine = newLine;
}
}
synchronized void write( boolean stdout, String text, boolean newLine )
{
output.add( new Entry( stdout, text, newLine ) );
}
void writeDetails( ConsoleOutputReceiver outputReceiver )
{
for ( Entry entry = output.poll(); entry != null; entry = output.poll() )
{
outputReceiver.writeTestOutput( entry.text, entry.newLine, entry.stdout );
}
}
}