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

org.gradle.api.plugins.scala.ScalaBasePlugin Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2016 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.plugins.scala;

import com.google.common.annotations.VisibleForTesting;
import org.codehaus.groovy.runtime.InvokerHelper;
import org.gradle.BuildAdapter;
import org.gradle.api.Action;
import org.gradle.api.Plugin;
import org.gradle.api.Project;
import org.gradle.api.artifacts.Configuration;
import org.gradle.api.file.FileCollection;
import org.gradle.api.file.FileTreeElement;
import org.gradle.api.file.SourceDirectorySet;
import org.gradle.api.internal.file.SourceDirectorySetFactory;
import org.gradle.api.internal.tasks.DefaultScalaSourceSet;
import org.gradle.api.invocation.Gradle;
import org.gradle.api.plugins.Convention;
import org.gradle.api.plugins.JavaBasePlugin;
import org.gradle.api.plugins.JavaPluginConvention;
import org.gradle.api.reporting.ReportingExtension;
import org.gradle.api.specs.Spec;
import org.gradle.api.tasks.ScalaRuntime;
import org.gradle.api.tasks.ScalaSourceSet;
import org.gradle.api.tasks.SourceSet;
import org.gradle.api.tasks.scala.IncrementalCompileOptions;
import org.gradle.api.tasks.scala.ScalaCompile;
import org.gradle.api.tasks.scala.ScalaDoc;
import org.gradle.jvm.tasks.Jar;
import org.gradle.language.scala.internal.toolchain.DefaultScalaToolProvider;

import javax.inject.Inject;
import java.io.File;
import java.util.concurrent.Callable;

/**
 * 

A {@link Plugin} which compiles and tests Scala sources.

*/ public class ScalaBasePlugin implements Plugin { @VisibleForTesting public static final String ZINC_CONFIGURATION_NAME = "zinc"; public static final String SCALA_RUNTIME_EXTENSION_NAME = "scalaRuntime"; private final SourceDirectorySetFactory sourceDirectorySetFactory; @Inject public ScalaBasePlugin(SourceDirectorySetFactory sourceDirectorySetFactory) { this.sourceDirectorySetFactory = sourceDirectorySetFactory; } public void apply(Project project) { project.getPluginManager().apply(JavaBasePlugin.class); configureConfigurations(project); ScalaRuntime scalaRuntime = configureScalaRuntimeExtension(project); configureCompileDefaults(project, scalaRuntime); configureSourceSetDefaults(project, sourceDirectorySetFactory); configureScaladoc(project, scalaRuntime); } private static void configureConfigurations(Project project) { project.getConfigurations().create(ZINC_CONFIGURATION_NAME).setVisible(false).setDescription("The Zinc incremental compiler to be used for this Scala project."); } private static ScalaRuntime configureScalaRuntimeExtension(Project project) { return project.getExtensions().create(SCALA_RUNTIME_EXTENSION_NAME, ScalaRuntime.class, project); } private static void configureSourceSetDefaults(final Project project, final SourceDirectorySetFactory sourceDirectorySetFactory) { final JavaBasePlugin javaPlugin = project.getPlugins().getPlugin(JavaBasePlugin.class); project.getConvention().getPlugin(JavaPluginConvention.class).getSourceSets().all(new Action() { @Override public void execute(final SourceSet sourceSet) { String displayName = (String) InvokerHelper.invokeMethod(sourceSet, "getDisplayName", null); Convention sourceSetConvention = (Convention) InvokerHelper.getProperty(sourceSet, "convention"); DefaultScalaSourceSet scalaSourceSet = new DefaultScalaSourceSet(displayName, sourceDirectorySetFactory); sourceSetConvention.getPlugins().put("scala", scalaSourceSet); final SourceDirectorySet scalaDirectorySet = scalaSourceSet.getScala(); scalaDirectorySet.srcDir(new Callable() { @Override public File call() throws Exception { return project.file("src/" + sourceSet.getName() + "/scala"); } }); sourceSet.getAllJava().source(scalaDirectorySet); sourceSet.getAllSource().source(scalaDirectorySet); sourceSet.getResources().getFilter().exclude(new Spec() { @Override public boolean isSatisfiedBy(FileTreeElement element) { return scalaDirectorySet.contains(element.getFile()); } }); configureScalaCompile(project, javaPlugin, sourceSet); } }); } private static void configureScalaCompile(final Project project, JavaBasePlugin javaPlugin, final SourceSet sourceSet) { String taskName = sourceSet.getCompileTaskName("scala"); final ScalaCompile scalaCompile = project.getTasks().create(taskName, ScalaCompile.class); scalaCompile.dependsOn(sourceSet.getCompileJavaTaskName()); javaPlugin.configureForSourceSet(sourceSet, scalaCompile); Convention scalaConvention = (Convention) InvokerHelper.getProperty(sourceSet, "convention"); ScalaSourceSet scalaSourceSet = scalaConvention.findPlugin(ScalaSourceSet.class); scalaCompile.setDescription("Compiles the " + scalaSourceSet.getScala() + "."); scalaCompile.setSource(scalaSourceSet.getScala()); project.getTasks().getByName(sourceSet.getClassesTaskName()).dependsOn(taskName); // cannot use convention mapping because the resulting object won't be serializable // cannot compute at task execution time because we need association with source set project.getGradle().addBuildListener(new BuildAdapter() { @Override public void projectsEvaluated(Gradle gradle) { IncrementalCompileOptions incrementalOptions = scalaCompile.getScalaCompileOptions().getIncrementalOptions(); if (incrementalOptions.getAnalysisFile() == null) { String analysisFilePath = project.getBuildDir().getPath() + "/tmp/scala/compilerAnalysis/" + scalaCompile.getName() + ".analysis"; incrementalOptions.setAnalysisFile(new File(analysisFilePath)); } if (incrementalOptions.getPublishedCode() == null) { Jar jarTask = (Jar) project.getTasks().findByName(sourceSet.getJarTaskName()); incrementalOptions.setPublishedCode(jarTask == null ? null : jarTask.getArchivePath()); } } }); } private static void configureCompileDefaults(final Project project, final ScalaRuntime scalaRuntime) { project.getTasks().withType(ScalaCompile.class, new Action() { @Override public void execute(final ScalaCompile compile) { compile.getConventionMapping().map("scalaClasspath", new Callable() { @Override public FileCollection call() throws Exception { return scalaRuntime.inferScalaClasspath(compile.getClasspath()); } }); compile.getConventionMapping().map("zincClasspath", new Callable() { @Override public Configuration call() throws Exception { Configuration config = project.getConfigurations().getAt(ZINC_CONFIGURATION_NAME); if (config.getDependencies().isEmpty()) { project.getDependencies().add("zinc", "com.typesafe.zinc:zinc:" + DefaultScalaToolProvider.DEFAULT_ZINC_VERSION); } return config; } }); } }); } private static void configureScaladoc(final Project project, final ScalaRuntime scalaRuntime) { project.getTasks().withType(ScalaDoc.class, new Action() { @Override public void execute(final ScalaDoc scalaDoc) { scalaDoc.getConventionMapping().map("destinationDir", new Callable() { @Override public File call() throws Exception { File docsDir = project.getConvention().getPlugin(JavaPluginConvention.class).getDocsDir(); return project.file(docsDir.getPath() + "/scaladoc"); } }); scalaDoc.getConventionMapping().map("title", new Callable() { @Override public String call() throws Exception { return project.getExtensions().getByType(ReportingExtension.class).getApiDocTitle(); } }); scalaDoc.getConventionMapping().map("scalaClasspath", new Callable() { @Override public FileCollection call() throws Exception { return scalaRuntime.inferScalaClasspath(scalaDoc.getClasspath()); } }); } }); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy