152 lines
4.4 KiB
Java
152 lines
4.4 KiB
Java
/*
|
|
* 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
|
|
*
|
|
* https://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.
|
|
*
|
|
*/
|
|
|
|
package org.apache.ant.antunit;
|
|
|
|
import java.io.ByteArrayInputStream;
|
|
import java.io.InputStream;
|
|
import java.io.IOException;
|
|
|
|
import org.apache.tools.ant.Project;
|
|
import org.apache.tools.ant.types.LogLevel;
|
|
import org.apache.tools.ant.types.Resource;
|
|
|
|
/**
|
|
* Exposes AntUnit log content as a (read-only) Resource.
|
|
*/
|
|
public class LogContent extends Resource {
|
|
|
|
private LogLevel level;
|
|
private boolean mergeLines;
|
|
|
|
/**
|
|
* Create a new LogContent resource.
|
|
*/
|
|
public LogContent() {
|
|
this(null, LogLevel.INFO);
|
|
}
|
|
|
|
/**
|
|
* Create a new LogContent resource, specifying Project and log level.
|
|
* <p>This constructor is provided primarily for convenience during
|
|
* programmatic usage.</p>
|
|
* @param p the test project
|
|
* @param level the LogLevel.
|
|
*/
|
|
public LogContent(Project p, LogLevel level) {
|
|
this(p, level, true);
|
|
}
|
|
|
|
/**
|
|
* Create a new LogContent resource, specifying Project and log level.
|
|
* <p>This constructor is provided primarily for convenience during
|
|
* programmatic usage.</p>
|
|
* @param p the test project
|
|
* @param level the LogLevel.
|
|
* @param mergeLines whether to merge messages into a single line
|
|
* or split them into multiple lines
|
|
* @since AntUnit 1.3
|
|
*/
|
|
public LogContent(Project p, LogLevel level, boolean mergeLines) {
|
|
setProject(p);
|
|
setLevel(level);
|
|
setMergeLines(mergeLines);
|
|
}
|
|
|
|
/**
|
|
* Set the desired log level.
|
|
* @param level a LogLevel enumerated attribute.
|
|
*/
|
|
public final void setLevel(LogLevel level) {
|
|
this.level = level;
|
|
setName(level.getValue());
|
|
}
|
|
|
|
/**
|
|
* Whether to merge messages into a single line or split them into
|
|
* multiple lines.
|
|
* @since AntUnit 1.3
|
|
* @param b whether to merge messages into a single line
|
|
*/
|
|
public final void setMergeLines(boolean b) {
|
|
mergeLines = b;
|
|
}
|
|
|
|
//inherit doc
|
|
public InputStream getInputStream() throws IOException {
|
|
if (isReference()) {
|
|
return ((Resource) getCheckedRef()).getInputStream();
|
|
}
|
|
LogCapturer lc = getLogCapturer();
|
|
if (lc != null) {
|
|
return getLogStream(lc);
|
|
}
|
|
throw new IllegalStateException("antunit log unavailable");
|
|
}
|
|
|
|
//inherit doc
|
|
public boolean isExists() {
|
|
return getLogCapturer() != null;
|
|
}
|
|
|
|
//inherit doc
|
|
public boolean equals(Object o) {
|
|
if (o == this) {
|
|
return true;
|
|
}
|
|
if (!(o instanceof LogContent)) {
|
|
return false;
|
|
}
|
|
LogContent olc = (LogContent) o;
|
|
return olc.getProject() == getProject()
|
|
&& olc.level.getLevel() == level.getLevel();
|
|
}
|
|
|
|
private LogCapturer getLogCapturer() {
|
|
Object o = getProject().getReference(LogCapturer.REFERENCE_ID);
|
|
return o instanceof LogCapturer ? (LogCapturer) o : null;
|
|
}
|
|
|
|
private InputStream getLogStream(LogCapturer lc) {
|
|
String log = null;
|
|
switch (level.getLevel()) {
|
|
case Project.MSG_ERR:
|
|
log = lc.getErrLog(mergeLines);
|
|
break;
|
|
case Project.MSG_WARN:
|
|
log = lc.getWarnLog(mergeLines);
|
|
break;
|
|
case Project.MSG_INFO:
|
|
log = lc.getInfoLog(mergeLines);
|
|
break;
|
|
case Project.MSG_VERBOSE:
|
|
log = lc.getVerboseLog(mergeLines);
|
|
break;
|
|
case Project.MSG_DEBUG:
|
|
log = lc.getDebugLog(mergeLines);
|
|
break;
|
|
default:
|
|
throw new IllegalStateException("how possible?");
|
|
}
|
|
return new ByteArrayInputStream(log.getBytes());
|
|
}
|
|
|
|
}
|