org.gradle.play.tasks.RoutesCompile 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 2014 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.play.tasks;
import org.gradle.api.Incubating;
import org.gradle.api.file.FileTree;
import org.gradle.api.tasks.Input;
import org.gradle.api.tasks.Internal;
import org.gradle.api.tasks.Nested;
import org.gradle.api.tasks.OutputDirectory;
import org.gradle.api.tasks.PathSensitive;
import org.gradle.api.tasks.PathSensitivity;
import org.gradle.api.tasks.SourceTask;
import org.gradle.api.tasks.TaskAction;
import org.gradle.api.tasks.compile.BaseForkOptions;
import org.gradle.language.base.internal.compile.Compiler;
import org.gradle.platform.base.internal.toolchain.ToolProvider;
import org.gradle.play.internal.CleaningPlayToolCompiler;
import org.gradle.play.internal.routes.DefaultRoutesCompileSpec;
import org.gradle.play.internal.routes.RoutesCompileSpec;
import org.gradle.play.internal.toolchain.PlayToolChainInternal;
import org.gradle.play.platform.PlayPlatform;
import org.gradle.play.toolchain.PlayToolChain;
import javax.inject.Inject;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
/**
* Task for compiling routes templates into Scala code.
*
* This task is usually created as one of the build tasks when building a Play application with the {@link org.gradle.play.plugins.PlayPlugin} plugin.
*
* Explicit configuration of this task is not expected and should be performed on the equivalent settings at the {@link org.gradle.play.PlayApplicationSpec} level.
*
*/
@Incubating
public class RoutesCompile extends SourceTask {
/**
* Target directory for the compiled route files.
*/
private File outputDirectory;
/**
* Additional imports used for by generated files.
*/
private List additionalImports = new ArrayList();
private boolean namespaceReverseRouter;
private boolean generateReverseRoutes = true;
private PlayPlatform platform;
private BaseForkOptions forkOptions;
private boolean injectedRoutesGenerator;
/**
* {@inheritDoc}
*/
@Override
@PathSensitive(PathSensitivity.RELATIVE)
public FileTree getSource() {
return super.getSource();
}
/**
* Returns the directory to generate the parser source files into.
*
* @return The output directory.
*/
@OutputDirectory
public File getOutputDirectory() {
return outputDirectory;
}
/**
* Specifies the directory to generate the parser source files into.
*
* @param outputDirectory The output directory. Must not be null.
*/
public void setOutputDirectory(File outputDirectory) {
this.outputDirectory = outputDirectory;
}
/**
* Returns the additional imports of the Play Routes compiler.
*
* @return The additional imports.
*/
@Input
public List getAdditionalImports() {
return additionalImports;
}
/**
* Specifies the additional imports of the Play Routes compiler.
*/
public void setAdditionalImports(List additionalImports) {
this.additionalImports.addAll(additionalImports);
}
@TaskAction
void compile() {
RoutesCompileSpec spec = new DefaultRoutesCompileSpec(getSource().getFiles(), getOutputDirectory(), getForkOptions(), isJavaProject(), isNamespaceReverseRouter(), isGenerateReverseRoutes(), getInjectedRoutesGenerator(), getAdditionalImports());
new CleaningPlayToolCompiler(getCompiler(), getOutputs()).execute(spec);
}
private Compiler getCompiler() {
ToolProvider select = ((PlayToolChainInternal) getToolChain()).select(platform);
return select.newCompiler(RoutesCompileSpec.class);
}
@Internal
public boolean isJavaProject() {
return false;
}
public void setPlatform(PlayPlatform platform) {
this.platform = platform;
}
/**
* Returns the tool chain that will be used to compile the routes source.
*
* @return The tool chain.
*/
@Inject
public PlayToolChain getToolChain() {
throw new UnsupportedOperationException();
}
/**
* The fork options to be applied to the Routes compiler.
*
* @return The fork options for the Routes compiler.
*/
@Nested
public BaseForkOptions getForkOptions() {
if (forkOptions == null) {
forkOptions = new BaseForkOptions();
}
return forkOptions;
}
/**
* Whether the reverse router should be namespaced.
*/
@Input
public boolean isNamespaceReverseRouter() {
return namespaceReverseRouter;
}
/**
* Sets whether or not the reverse router should be namespaced.
*/
public void setNamespaceReverseRouter(boolean namespaceReverseRouter) {
this.namespaceReverseRouter = namespaceReverseRouter;
}
/**
* Whether a reverse router should be generated. Default is true.
*/
@Input
public boolean isGenerateReverseRoutes() {
return generateReverseRoutes;
}
/**
* Sets whether or not a reverse router should be generated.
*/
public void setGenerateReverseRoutes(boolean generateReverseRoutes) {
this.generateReverseRoutes = generateReverseRoutes;
}
/**
* Is the injected routes generator (play.routes.compiler.InjectedRoutesGenerator
) used for
* generating routes? Default is false.
*
* @return false if StaticRoutesGenerator will be used to generate routes,
* true if InjectedRoutesGenerator will be used to generate routes.
*/
@Input
public boolean getInjectedRoutesGenerator() {
return injectedRoutesGenerator;
}
/**
* Configure if the injected routes generator should be used to generate routes.
*
* @param injectedRoutesGenerator false - use StaticRoutesGenerator
* true - use InjectedRoutesGenerator
*/
public void setInjectedRoutesGenerator(boolean injectedRoutesGenerator) {
this.injectedRoutesGenerator = injectedRoutesGenerator;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy