All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gradle.configuration.internal.ListenerBuildOperationDecorator Maven / Gradle / Ivy

There is a newer version: 8.6
Show newest version
/*
 * Copyright 2018 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.configuration.internal;

import groovy.lang.Closure;
import org.gradle.BuildListener;
import org.gradle.api.Action;
import org.gradle.api.ProjectEvaluationListener;
import org.gradle.api.execution.TaskExecutionGraphListener;
import org.gradle.internal.InternalListener;

/**
 * Decorates listener functions/objects to fire {@link ExecuteListenerBuildOperationType} build operations when later executed.
 *
 * Works in conjunction with {@link UserCodeApplicationContext} to attach the current user code application ID
 * to the listener, in order to convey it as part of the operation details.
 * This allows tracking the listener back to the plugin or script that registered it.
 */
public interface ListenerBuildOperationDecorator {

    /**
     * Decorates an action listener.
     * 

* Does not decorate any action that implements {@link InternalListener}. * Does not decorate if there is not currently a script or plugin being applied on the thread. * * @param registrationPoint the place that the listener was registered - used in the operation description / details * @param action the action to decorate */ Action decorate(String registrationPoint, Action action); /** * Decorates a closure listener. *

* Does not decorate any action that implements {@link InternalListener}. * Does not decorate if there is not currently a script or plugin being applied on the thread. * * @param registrationPoint the place that the listener was registered - used in the operation description / details * @param closure the closure to decorate */ Closure decorate(String registrationPoint, Closure closure); /** * Decorates a listener type object. *

* Supports decorating {@link BuildListener}, {@link ProjectEvaluationListener} and {@link TaskExecutionGraphListener} listeners *

* Does not decorate any action that implements {@link InternalListener}. * Does not decorate if there is not currently a script or plugin being applied on the thread. * * @param cls the type of the listener * @param registrationPoint the place that the listener was registered - used in the operation description / details * @param listener the listener */ T decorate(String registrationPoint, Class cls, T listener); /** * Decorates a listener of unknown type. *

* @param registrationPoint the place that the listener was registered - used in the operation description / details * @param listener the listener object to decorate * @see #decorate(String, Class, Object) */ Object decorateUnknownListener(String registrationPoint, Object listener); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy