com.googlecode.d2j.smali.Baksmali Maven / Gradle / Ivy
The newest version!
/*
* dex2jar - Tools to work with android .dex and java .class files
* Copyright (c) 2009-2013 Panxiaobo
*
* 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 com.googlecode.d2j.smali;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.nio.ByteBuffer;
import java.nio.file.Path;
import com.googlecode.d2j.reader.DexFileReader;
import com.googlecode.d2j.reader.zip.ZipUtil;
public class Baksmali {
private Baksmali() {
}
public static Baksmali from(byte[] in) throws IOException {
return from(new DexFileReader(in));
}
public static Baksmali from(ByteBuffer in) throws IOException {
return from(new DexFileReader(in));
}
public static Baksmali from(DexFileReader reader) {
return new Baksmali(reader);
}
public static Baksmali from(File in) throws IOException {
return from(ZipUtil.readDex(in));
}
public static Baksmali from(Path in) throws IOException {
return from(ZipUtil.readDex(in));
}
public static Baksmali from(InputStream in) throws IOException {
return from(ZipUtil.readDex(in));
}
public static Baksmali from(String in) throws IOException {
return from(new File(in));
}
boolean noDebug = false;
boolean parameterRegisters = true;
DexFileReader reader;
boolean useLocals = false;
private Baksmali(DexFileReader reader) {
this.reader = reader;
}
/**
*
* -b,--no-debug-info don't write out debug info (.local, .param, .line, etc.)
*
*
* @return
*/
public Baksmali noDebug() {
this.noDebug = true;
return this;
}
/**
*
* -p,--no-parameter-registers use the v syntax instead of the p syntax for registers mapped to method parameters
*
*
* @return
*/
public Baksmali noParameterRegisters() {
this.parameterRegisters = false;
return this;
}
public void to(final File dir) {
to(dir.toPath());
}
public void to(final Path base) {
final BaksmaliDumper bs = new BaksmaliDumper(parameterRegisters, useLocals);
reader.accept(new BaksmaliDexFileVisitor(base, bs), this.noDebug ? DexFileReader.SKIP_CODE : 0);
}
/**
*
* -l,--use-locals output the .locals directive with the number of non-parameter registers, rather than the .register
*
*
* @return
*/
public Baksmali useLocals() {
this.useLocals = true;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy