Sebastien Hertz | 9006e9c | 2017-09-11 11:03:26 +0200 | [diff] [blame] | 1 | // Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file |
| 2 | // for details. All rights reserved. Use of this source code is governed by a |
| 3 | // BSD-style license that can be found in the LICENSE file. |
| 4 | |
| 5 | package kotlin; |
| 6 | |
| 7 | import java.io.File; |
| 8 | import java.io.IOException; |
| 9 | import java.nio.file.Path; |
| 10 | import java.nio.file.Paths; |
| 11 | import org.gradle.api.Action; |
| 12 | import org.gradle.api.DefaultTask; |
| 13 | import org.gradle.api.UncheckedIOException; |
Ian Zerny | 793d932 | 2018-12-18 13:24:25 +0100 | [diff] [blame] | 14 | import org.gradle.api.file.FileCollection; |
Sebastien Hertz | 9006e9c | 2017-09-11 11:03:26 +0200 | [diff] [blame] | 15 | import org.gradle.api.file.FileTree; |
| 16 | import org.gradle.api.tasks.InputFiles; |
| 17 | import org.gradle.api.tasks.OutputFile; |
| 18 | import org.gradle.api.tasks.TaskAction; |
| 19 | import org.gradle.process.ExecSpec; |
| 20 | import utils.Utils; |
| 21 | |
| 22 | /** |
Sebastien Hertz | fe97a71 | 2018-02-13 12:08:59 +0100 | [diff] [blame] | 23 | * Gradle task to compile Kotlin source files. By default the generated classes target Java 1.6. |
Sebastien Hertz | 9006e9c | 2017-09-11 11:03:26 +0200 | [diff] [blame] | 24 | */ |
| 25 | public class Kotlinc extends DefaultTask { |
| 26 | |
Ian Zerny | 793d932 | 2018-12-18 13:24:25 +0100 | [diff] [blame] | 27 | private static final String kotlincExecName = Utils.toolsDir().equals("windows") |
| 28 | ? "kotlinc.bat" |
| 29 | : "kotlinc"; |
| 30 | |
| 31 | private static final Path kotlincExecPath = Paths |
| 32 | .get("third_party", "kotlin", "kotlinc", "bin", kotlincExecName); |
| 33 | |
Sebastien Hertz | fe97a71 | 2018-02-13 12:08:59 +0100 | [diff] [blame] | 34 | enum KotlinTargetVersion { |
| 35 | JAVA_6("1.6"), |
| 36 | JAVA_8("1.8"); |
| 37 | |
| 38 | private final String optionName; |
| 39 | |
| 40 | KotlinTargetVersion(String optionName) { |
| 41 | this.optionName = optionName; |
| 42 | } |
| 43 | } |
| 44 | |
Sebastien Hertz | 9006e9c | 2017-09-11 11:03:26 +0200 | [diff] [blame] | 45 | private FileTree source; |
| 46 | |
| 47 | @OutputFile |
| 48 | private File destination; |
| 49 | |
Sebastien Hertz | fe97a71 | 2018-02-13 12:08:59 +0100 | [diff] [blame] | 50 | private KotlinTargetVersion targetVersion = KotlinTargetVersion.JAVA_6; |
| 51 | |
Ian Zerny | 793d932 | 2018-12-18 13:24:25 +0100 | [diff] [blame] | 52 | @InputFiles |
| 53 | public FileCollection getInputFiles() { |
| 54 | // Note: Using Path object directly causes stack overflow. |
| 55 | // See: https://github.com/gradle/gradle/issues/1973 |
| 56 | return source.plus(getProject().files(kotlincExecPath.toFile())); |
| 57 | } |
| 58 | |
Sebastien Hertz | 9006e9c | 2017-09-11 11:03:26 +0200 | [diff] [blame] | 59 | public FileTree getSource() { |
| 60 | return source; |
| 61 | } |
| 62 | |
| 63 | public void setSource(FileTree source) { |
| 64 | this.source = source; |
| 65 | } |
| 66 | |
| 67 | public File getDestination() { |
| 68 | return destination; |
| 69 | } |
| 70 | |
| 71 | public void setDestination(File destination) { |
| 72 | this.destination = destination; |
| 73 | } |
| 74 | |
Sebastien Hertz | fe97a71 | 2018-02-13 12:08:59 +0100 | [diff] [blame] | 75 | public KotlinTargetVersion getTargetVersion() { |
| 76 | return targetVersion; |
| 77 | } |
| 78 | |
| 79 | public void setTargetVersion(KotlinTargetVersion targetVersion) { |
| 80 | this.targetVersion = targetVersion; |
| 81 | } |
| 82 | |
Sebastien Hertz | 9006e9c | 2017-09-11 11:03:26 +0200 | [diff] [blame] | 83 | @TaskAction |
| 84 | public void compile() { |
| 85 | getProject().exec(new Action<ExecSpec>() { |
| 86 | @Override |
| 87 | public void execute(ExecSpec execSpec) { |
| 88 | try { |
Sebastien Hertz | 9006e9c | 2017-09-11 11:03:26 +0200 | [diff] [blame] | 89 | execSpec.setExecutable(kotlincExecPath.toFile()); |
| 90 | execSpec.args("-include-runtime"); |
| 91 | execSpec.args("-nowarn"); |
Sebastien Hertz | fe97a71 | 2018-02-13 12:08:59 +0100 | [diff] [blame] | 92 | execSpec.args("-jvm-target", targetVersion.optionName); |
Sebastien Hertz | 9006e9c | 2017-09-11 11:03:26 +0200 | [diff] [blame] | 93 | execSpec.args("-d", destination.getCanonicalPath()); |
| 94 | execSpec.args(source.getFiles()); |
| 95 | } catch (IOException e) { |
| 96 | throw new UncheckedIOException(e); |
| 97 | } |
| 98 | } |
| 99 | }); |
| 100 | } |
| 101 | } |