org.gradle.tooling.internal.consumer.connection.ProgressLoggingConsumerActionExecutor 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 2011 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.tooling.internal.consumer.connection;
import org.gradle.internal.event.ListenerManager;
import org.gradle.internal.logging.progress.ProgressLogger;
import org.gradle.internal.logging.events.ProgressCompleteEvent;
import org.gradle.internal.logging.events.ProgressEvent;
import org.gradle.internal.logging.progress.ProgressListener;
import org.gradle.internal.logging.events.ProgressStartEvent;
import org.gradle.tooling.internal.consumer.LoggingProvider;
import org.gradle.tooling.internal.consumer.parameters.ConsumerOperationParameters;
import org.gradle.tooling.internal.protocol.ProgressListenerVersion1;
/**
* Provides some high-level progress information.
*/
public class ProgressLoggingConsumerActionExecutor implements ConsumerActionExecutor {
private final ConsumerActionExecutor actionExecutor;
private final LoggingProvider loggingProvider;
public ProgressLoggingConsumerActionExecutor(ConsumerActionExecutor actionExecutor, LoggingProvider loggingProvider) {
this.actionExecutor = actionExecutor;
this.loggingProvider = loggingProvider;
}
public void stop() {
actionExecutor.stop();
}
public String getDisplayName() {
return actionExecutor.getDisplayName();
}
public T run(ConsumerAction action) throws UnsupportedOperationException, IllegalStateException {
ConsumerOperationParameters parameters = action.getParameters();
ProgressListenerAdapter listener = new ProgressListenerAdapter(parameters.getProgressListener());
ListenerManager listenerManager = loggingProvider.getListenerManager();
listenerManager.addListener(listener);
try {
ProgressLogger progressLogger = loggingProvider.getProgressLoggerFactory().newOperation(ProgressLoggingConsumerActionExecutor.class);
progressLogger.setDescription("Build");
progressLogger.started();
try {
return actionExecutor.run(action);
} finally {
progressLogger.completed();
}
} finally {
listenerManager.removeListener(listener);
}
}
private static class ProgressListenerAdapter implements ProgressListener {
private final ProgressListenerVersion1 progressListener;
public ProgressListenerAdapter(ProgressListenerVersion1 progressListener) {
this.progressListener = progressListener;
}
public void started(ProgressStartEvent event) {
progressListener.onOperationStart(event.getDescription());
}
public void progress(ProgressEvent event) {
}
public void completed(ProgressCompleteEvent event) {
progressListener.onOperationEnd();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy