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

org.gradle.api.file.SourceDirectorySet Maven / Gradle / Ivy

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

import org.gradle.api.Describable;
import org.gradle.api.Incubating;
import org.gradle.api.Named;
import org.gradle.api.Task;
import org.gradle.api.model.ReplacedBy;
import org.gradle.api.provider.Provider;
import org.gradle.api.tasks.TaskProvider;
import org.gradle.api.tasks.util.PatternFilterable;
import org.gradle.model.internal.core.UnmanagedStruct;

import java.io.File;
import java.util.Set;
import java.util.function.Function;

/**
 * 

A {@code SourceDirectorySet} represents a set of source files composed from a set of source directories, along * with associated include and exclude patterns.

* *

{@code SourceDirectorySet} extends {@link FileTree}. The contents of the file tree represent the source files of this set, arranged in a hierarchy. The file tree is live and reflects changes to the source directories and their contents.

* *

You can create an instance of {@code SourceDirectorySet} using the {@link org.gradle.api.model.ObjectFactory#sourceDirectorySet(String, String)} method.

*/ @UnmanagedStruct public interface SourceDirectorySet extends FileTree, PatternFilterable, Named, Describable { /** * A concise name for the source directory set (typically used to identify it in a collection). */ @Override String getName(); /** * Adds the given source directory to this set. The given directory does not need to exist. Directories that do not exist are ignored. * * @param srcPath The source directory. This is evaluated as per {@link org.gradle.api.Project#files(Object...)} * @return this */ SourceDirectorySet srcDir(Object srcPath); /** * Adds the given source directories to this set. The given directories do not need to exist. Directories that do not exist are ignored. * * @param srcPaths The source directories. These are evaluated as per {@link org.gradle.api.Project#files(Object...)} * @return this */ SourceDirectorySet srcDirs(Object... srcPaths); /** * Returns the source directories that make up this set. Does not filter source directories that do not exist. * * @return The source directories. Returns an empty set when this set contains no source directories. */ Set getSrcDirs(); /** * Sets the source directories for this set. * * @param srcPaths The source directories. These are evaluated as per {@link org.gradle.api.Project#files(Object...)} * @return this */ SourceDirectorySet setSrcDirs(Iterable srcPaths); /** * Adds the given source to this set. * * @param source The source to add. * @return this */ SourceDirectorySet source(SourceDirectorySet source); /** * Returns the source directories that make up this set, represented as a {@link FileCollection}. Does not filter source directories that do not exist. * Generally, it is preferable to use this method instead of {@link #getSrcDirs()}, as this method does not require the source directories to be calculated when it is called. Instead, the source directories are calculated when queried. The return value of this method also maintains dependency information. * *

The returned collection is live and reflects changes to this source directory set. */ FileCollection getSourceDirectories(); /** * Returns the source directory trees that make up this set. Does not filter source directories that do not exist. * * @return The source directory trees. Returns an empty set when this set contains no source directories. */ Set getSrcDirTrees(); /** * Returns the filter used to select the source from the source directories. These filter patterns are applied after * the include and exclude patterns of this source directory set. Generally, the filter patterns are used to * restrict the contents to certain types of files, eg {@code *.java}. * * @return The filter patterns. */ PatternFilterable getFilter(); /** * Configure the directory to assemble the compiled classes into. * * @return The destination directory property for this set of sources. * @since 6.1 */ @Incubating DirectoryProperty getDestinationDirectory(); /** * Returns the directory property that is bound to the task that produces the output via {@link #compiledBy(TaskProvider, Function)}. * Use this as part of a classpath or input to another task to ensure that the output is created before it is used. * * Note: To define the path of the output folder use {@link #getDestinationDirectory()} * * @return The output directory property for this set of sources. * @since 6.1 */ @Incubating Provider getClassesDirectory(); /** * Define the task responsible for processing the source. * * @param taskProvider the task responsible for compiling the sources (.e.g. compileJava) * @param mapping a mapping from the task to the task's output directory (e.g. AbstractCompile::getDestinationDirectory) * @since 6.1 */ @Incubating void compiledBy(TaskProvider taskProvider, Function mapping); /** * Returns the directory to put the output for these sources. * * @return The output directory for this set of sources. * @since 4.0 */ @ReplacedBy("classesDirectory") File getOutputDir(); /** * Sets the provider that gives the directory to assemble the compiled classes into. * @param provider provides output directory for this source directory set * @since 4.0 */ @ReplacedBy("destinationDirectory") void setOutputDir(Provider provider); /** * Sets the directory to assemble the compiled classes into. * * @param outputDir output directory for this source directory set * @since 4.0 */ @ReplacedBy("destinationDirectory") void setOutputDir(File outputDir); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy