blob: 68924ae606c83a69f12f9da9944ba429537255c7 [file] [log] [blame]
Sebastien Hertz9006e9c2017-09-11 11:03:26 +02001// 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
5package kotlin;
6
7import java.io.File;
8import java.io.IOException;
9import java.nio.file.Path;
10import java.nio.file.Paths;
11import org.gradle.api.Action;
12import org.gradle.api.DefaultTask;
13import org.gradle.api.UncheckedIOException;
Ian Zerny793d9322018-12-18 13:24:25 +010014import org.gradle.api.file.FileCollection;
Sebastien Hertz9006e9c2017-09-11 11:03:26 +020015import org.gradle.api.file.FileTree;
16import org.gradle.api.tasks.InputFiles;
17import org.gradle.api.tasks.OutputFile;
18import org.gradle.api.tasks.TaskAction;
19import org.gradle.process.ExecSpec;
20import utils.Utils;
21
22/**
Sebastien Hertzfe97a712018-02-13 12:08:59 +010023 * Gradle task to compile Kotlin source files. By default the generated classes target Java 1.6.
Sebastien Hertz9006e9c2017-09-11 11:03:26 +020024 */
25public class Kotlinc extends DefaultTask {
26
Ian Zerny793d9322018-12-18 13:24:25 +010027 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 Hertzfe97a712018-02-13 12:08:59 +010034 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 Hertz9006e9c2017-09-11 11:03:26 +020045 private FileTree source;
46
47 @OutputFile
48 private File destination;
49
Sebastien Hertzfe97a712018-02-13 12:08:59 +010050 private KotlinTargetVersion targetVersion = KotlinTargetVersion.JAVA_6;
51
Ian Zerny793d9322018-12-18 13:24:25 +010052 @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 Hertz9006e9c2017-09-11 11:03:26 +020059 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 Hertzfe97a712018-02-13 12:08:59 +010075 public KotlinTargetVersion getTargetVersion() {
76 return targetVersion;
77 }
78
79 public void setTargetVersion(KotlinTargetVersion targetVersion) {
80 this.targetVersion = targetVersion;
81 }
82
Sebastien Hertz9006e9c2017-09-11 11:03:26 +020083 @TaskAction
84 public void compile() {
85 getProject().exec(new Action<ExecSpec>() {
86 @Override
87 public void execute(ExecSpec execSpec) {
88 try {
Sebastien Hertz9006e9c2017-09-11 11:03:26 +020089 execSpec.setExecutable(kotlincExecPath.toFile());
90 execSpec.args("-include-runtime");
91 execSpec.args("-nowarn");
Sebastien Hertzfe97a712018-02-13 12:08:59 +010092 execSpec.args("-jvm-target", targetVersion.optionName);
Sebastien Hertz9006e9c2017-09-11 11:03:26 +020093 execSpec.args("-d", destination.getCanonicalPath());
94 execSpec.args(source.getFiles());
95 } catch (IOException e) {
96 throw new UncheckedIOException(e);
97 }
98 }
99 });
100 }
101}