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

org.gradle.apitransform.TransformAction Maven / Gradle / Ivy

There is a newer version: 8.6
Show newest version
/*
 * Copyright 2019 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.api.artifacts.transform;

import org.gradle.api.Action;
import org.gradle.api.Incubating;

import javax.inject.Inject;

/**
 * Interface for artifact transform actions.
 *
 * 

* A transform action implementation is an abstract class implementing the {@link #transform(TransformOutputs)} method. * A minimal implementation may look like this: *

* *
 * import org.gradle.api.artifacts.transform.TransformParameters;
 *
 * public abstract class MyTransform implements TransformAction<TransformParameters.None> {
 *     {@literal @}InputArtifact
 *     public abstract Provider<FileSystemLocation> getInputArtifact();
 *
 *     {@literal @}Override
 *     public void transform(TransformOutputs outputs) {
 *         File input = getInputArtifact().get().getAsFile();
 *         File output = outputs.file(input.getName() + ".transformed");
 *         // Do something to generate output from input
 *     }
 * }
 * 
* * Implementations of TransformAction are subject to the following constraints: *
    *
  • Do not implement {@link #getParameters()} in your class, the method will be implemented by Gradle.
  • *
  • Implementations may only have a default constructor.
  • *
* * Implementations can receive parameters by using annotated abstract getter methods. *
    *
  • An abstract getter annotated with {@link InputArtifact} will receive the input artifact location, which is the file or directory that the transform should be applied to.
  • *
  • An abstract getter with {@link InputArtifactDependencies} will receive the dependencies of its input artifact.
  • *
* * @param Parameter type for the transform action. Should be {@link TransformParameters.None} if the action does not have parameters. * @since 5.3 */ @Incubating public interface TransformAction { /** * The object provided by {@link TransformSpec#getParameters()} when registering the artifact transform. * *

* Do not implement this method in your subclass. * Gradle provides the implementation when registering the transform action via {@link org.gradle.api.artifacts.dsl.DependencyHandler#registerTransform(Class, Action)}. *

*/ @Inject T getParameters(); /** * Executes the transform. * *

This method must be implemented in the subclass.

* * @param outputs Receives the outputs of the transform. */ void transform(TransformOutputs outputs); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy