blob: a07bb69de2bbdf5edb26bde026644100eee4afa9 [file] [log] [blame]
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package util.build;
18
19import com.sun.tools.javac.Main;
20
21import java.io.File;
22import java.io.PrintWriter;
23import java.util.HashSet;
24import java.util.Set;
25
Yohann Roussel3570d4d2014-09-25 10:13:32 +020026public class JavacBuildStep extends SourceBuildStep {
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -070027
28 private final String destPath;
29 private final String classPath;
30 private final Set<String> sourceFiles = new HashSet<String>();
31 public JavacBuildStep(String destPath, String classPath) {
32 this.destPath = destPath;
33 this.classPath = classPath;
34 }
Yohann Roussel3570d4d2014-09-25 10:13:32 +020035
36 @Override
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -070037 public void addSourceFile(String sourceFile)
38 {
39 sourceFiles.add(sourceFile);
40 }
Yohann Roussel3570d4d2014-09-25 10:13:32 +020041
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -070042 @Override
43 boolean build() {
44 if (super.build())
45 {
46 if (sourceFiles.isEmpty())
47 {
48 return true;
49 }
Yohann Roussel3570d4d2014-09-25 10:13:32 +020050
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -070051 File destFile = new File(destPath);
52 if (!destFile.exists() && !destFile.mkdirs())
53 {
54 System.err.println("failed to create destination dir");
55 return false;
56 }
Neil Fullerece00bc2015-08-12 14:31:43 +010057 int args = 8;
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -070058 String[] commandLine = new String[sourceFiles.size()+args];
59 commandLine[0] = "-classpath";
60 commandLine[1] = classPath;
61 commandLine[2] = "-d";
62 commandLine[3] = destPath;
Neil Fullerece00bc2015-08-12 14:31:43 +010063 commandLine[4] = "-source";
64 commandLine[5] = "1.7";
65 commandLine[6] = "-target";
66 commandLine[7] = "1.7";
Yohann Roussel3570d4d2014-09-25 10:13:32 +020067
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -070068 String[] files = new String[sourceFiles.size()];
69 sourceFiles.toArray(files);
Yohann Roussel3570d4d2014-09-25 10:13:32 +020070
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -070071 System.arraycopy(files, 0, commandLine, args, files.length);
Yohann Roussel3570d4d2014-09-25 10:13:32 +020072
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -070073 return Main.compile(commandLine, new PrintWriter(System.err)) == 0;
74 }
75 return false;
76 }
77
78 @Override
79 public boolean equals(Object obj) {
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -070080 if (super.equals(obj))
81 {
82 JavacBuildStep other = (JavacBuildStep) obj;
Yohann Roussel3570d4d2014-09-25 10:13:32 +020083 return destPath.equals(other.destPath)
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -070084 && classPath.equals(other.classPath)
85 && sourceFiles.equals(other.sourceFiles);
86 }
87 return false;
88 }
Yohann Roussel3570d4d2014-09-25 10:13:32 +020089
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -070090 @Override
91 public int hashCode() {
92 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode();
93 }
94}