org.gradle.internal.logging.progress.DefaultProgressLoggerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2016 the original author or authors.
*
* Licensed 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.
*/
package org.gradle.internal.logging.progress;
import org.gradle.internal.TimeProvider;
import org.gradle.internal.logging.events.OperationIdentifier;
import org.gradle.internal.logging.events.ProgressCompleteEvent;
import org.gradle.internal.logging.events.ProgressEvent;
import org.gradle.internal.logging.events.ProgressStartEvent;
import org.gradle.util.GUtil;
import java.util.concurrent.atomic.AtomicLong;
public class DefaultProgressLoggerFactory implements ProgressLoggerFactory {
private final ProgressListener progressListener;
private final TimeProvider timeProvider;
private final AtomicLong nextId = new AtomicLong();
private final ThreadLocal current = new ThreadLocal();
public DefaultProgressLoggerFactory(ProgressListener progressListener, TimeProvider timeProvider) {
this.progressListener = progressListener;
this.timeProvider = timeProvider;
}
public ProgressLogger newOperation(Class loggerCategory) {
return newOperation(loggerCategory.getName());
}
public ProgressLogger newOperation(String loggerCategory) {
return init(loggerCategory, null);
}
public ProgressLogger newOperation(Class loggerClass, ProgressLogger parent) {
return init(loggerClass.toString(), parent);
}
private ProgressLogger init(String loggerCategory, ProgressLogger parentOperation) {
if (parentOperation != null && !(parentOperation instanceof ProgressLoggerImpl)) {
throw new IllegalArgumentException("Unexpected parent logger.");
}
return new ProgressLoggerImpl((ProgressLoggerImpl) parentOperation, nextId.getAndIncrement(), loggerCategory, progressListener, timeProvider);
}
private enum State { idle, started, completed }
private class ProgressLoggerImpl implements ProgressLogger {
private final OperationIdentifier id;
private final String category;
private final ProgressListener listener;
private final TimeProvider timeProvider;
private ProgressLoggerImpl parent;
private String description;
private String shortDescription;
private String loggingHeader;
private State state = State.idle;
public ProgressLoggerImpl(ProgressLoggerImpl parent, long id, String category, ProgressListener listener, TimeProvider timeProvider) {
this.parent = parent;
this.id = new OperationIdentifier(id);
this.category = category;
this.listener = listener;
this.timeProvider = timeProvider;
}
@Override
public String toString() {
return category + " - " + description;
}
public String getDescription() {
return description;
}
public ProgressLogger setDescription(String description) {
assertCanConfigure();
this.description = description;
return this;
}
public String getShortDescription() {
return shortDescription;
}
public ProgressLogger setShortDescription(String shortDescription) {
assertCanConfigure();
this.shortDescription = shortDescription;
return this;
}
public String getLoggingHeader() {
return loggingHeader;
}
public ProgressLogger setLoggingHeader(String loggingHeader) {
assertCanConfigure();
this.loggingHeader = loggingHeader;
return this;
}
public ProgressLogger start(String description, String shortDescription) {
setDescription(description);
setShortDescription(shortDescription);
started();
return this;
}
public void started() {
started(null);
}
public void started(String status) {
if (!GUtil.isTrue(description)) {
throw new IllegalStateException("A description must be specified before this operation is started.");
}
assertNotStarted();
state = State.started;
if (parent == null) {
parent = current.get();
} else {
parent.assertRunning();
}
current.set(this);
listener.started(new ProgressStartEvent(id, parent == null ? null : parent.id, timeProvider.getCurrentTime(), category, description, shortDescription, loggingHeader, toStatus(status)));
}
public void progress(String status) {
assertRunning();
listener.progress(new ProgressEvent(id, timeProvider.getCurrentTime(), category, toStatus(status)));
}
public void completed() {
completed(null);
}
public void completed(String status) {
assertRunning();
state = State.completed;
current.set(parent);
listener.completed(new ProgressCompleteEvent(id, timeProvider.getCurrentTime(), category, description, toStatus(status)));
}
private String toStatus(String status) {
return status == null ? "" : status;
}
private void assertNotStarted() {
if (state == State.started) {
throw new IllegalStateException(String.format("This operation (%s) has already been started.", this));
}
if (state == State.completed) {
throw new IllegalStateException(String.format("This operation (%s) has already completed.", this));
}
}
private void assertRunning() {
if (state == State.idle) {
throw new IllegalStateException(String.format("This operation (%s) has not been started.", this));
}
if (state == State.completed) {
throw new IllegalStateException(String.format("This operation (%s) has already been completed.", this));
}
}
private void assertCanConfigure() {
if (state != State.idle) {
throw new IllegalStateException(String.format("Cannot configure this operation (%s) once it has started.", this));
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy