blob: cbd5a3b1416e7a44bc6ff66b1d4a9cc628f22aac [file] [log] [blame]
/*
* Copyright (C) 2008 The Android Open Source Project
*
* 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 util.build;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
public class JackDexBuildStep extends BuildStep {
private final boolean deleteInputFileAfterBuild;
JackDexBuildStep(BuildFile inputFile, BuildFile outputFile,
boolean deleteInputFileAfterBuild) {
super(inputFile, outputFile);
this.deleteInputFileAfterBuild = deleteInputFileAfterBuild;
}
@Override
boolean build() {
if (super.build()) {
String outputFilePath = outputFile.fileName.getAbsolutePath();
if (outputFilePath.endsWith(".dex")) {
throw new AssertionError(
"JackDexBuildStep does not support dex output outside of an archive");
}
File outDir = outputFile.fileName.getParentFile();
if (!outDir.exists() && !outDir.mkdirs()) {
System.err.println("failed to create output dir: "
+ outDir.getAbsolutePath());
return false;
}
File tmpOutDir = new File(outDir, outputFile.fileName.getName() + ".dexTmp");
if (!tmpOutDir.exists() && !tmpOutDir.mkdirs()) {
System.err.println("failed to create temp dir: "
+ tmpOutDir.getAbsolutePath());
return false;
}
File tmpDex = new File(tmpOutDir, "classes.dex");
try {
List<String> commandLine = new ArrayList<String>(4);
commandLine.add("--verbose");
commandLine.add("error");
commandLine.add("--output-dex");
commandLine.add(tmpOutDir.getAbsolutePath());
commandLine.add("--import");
commandLine.add(inputFile.fileName.getAbsolutePath());
ExecuteFile exec = new ExecuteFile(JackBuildDalvikSuite.JACK,
commandLine.toArray(new String[commandLine.size()]));
exec.setErr(System.err);
exec.setOut(System.out);
if (!exec.run()) {
return false;
}
JarBuildStep jarStep = new JarBuildStep(
new BuildFile(tmpDex),
"classes.dex",
outputFile,
/* deleteInputFileAfterBuild = */ true);
if (!jarStep.build()) {
throw new IOException("Failed to make jar: " + outputFile.getPath());
}
if (deleteInputFileAfterBuild) {
inputFile.fileName.delete();
}
return true;
} catch (Throwable ex) {
System.err.println("exception while dexing "
+ inputFile.fileName.getAbsolutePath() + " to "
+ outputFile.fileName.getAbsolutePath());
ex.printStackTrace();
} finally {
tmpDex.delete();
tmpOutDir.delete();
}
}
return false;
}
@Override
public int hashCode() {
return inputFile.hashCode() ^ outputFile.hashCode();
}
@Override
public boolean equals(Object obj) {
if (super.equals(obj)) {
JackDexBuildStep other = (JackDexBuildStep) obj;
return inputFile.equals(other.inputFile)
&& outputFile.equals(other.outputFile);
}
return false;
}
}