public abstract class DexDataEntryWriter extends java.lang.Object implements DataEntryWriter
IdleRewriter
Modifier and Type | Field and Description |
---|---|
protected DataEntryWriter |
dexDataEntryWriter |
protected java.lang.String |
dexFileName |
protected DataEntryWriter |
otherDataEntryWriter |
Constructor and Description |
---|
DexDataEntryWriter(ClassPool classPool,
StringMatcher classNameFilter,
java.lang.String dexFileName,
boolean forceDex,
DataEntryReader extraDexDataEntryVisitor,
DataEntryWriter dexDataEntryWriter,
DataEntryWriter otherDataEntryWriter)
Creates a new DexDataEntryWriter.
|
Modifier and Type | Method and Description |
---|---|
void |
close()
Finishes writing all data entries.
|
boolean |
createDirectory(DataEntry dataEntry)
Creates a directory.
|
java.io.OutputStream |
createOutputStream(DataEntry dataEntry)
Creates a new output stream for writing data.
|
void |
println(java.io.PrintWriter pw,
java.lang.String prefix)
Prints out the structure of the data entry writer.
|
boolean |
sameOutputStream(DataEntry dataEntry1,
DataEntry dataEntry2)
Returns whether the two given data entries would result in the same output stream.
|
protected abstract void |
writeDex(java.io.OutputStream outputStream)
Creates a new Dex instance from the collected classes.
|
protected final java.lang.String dexFileName
protected final DataEntryWriter dexDataEntryWriter
protected final DataEntryWriter otherDataEntryWriter
public DexDataEntryWriter(ClassPool classPool, StringMatcher classNameFilter, java.lang.String dexFileName, boolean forceDex, DataEntryReader extraDexDataEntryVisitor, DataEntryWriter dexDataEntryWriter, DataEntryWriter otherDataEntryWriter)
classPool
- the class pool from which classes are collected.classNameFilter
- an optional filter for classes to be written.dexFileName
- the dex file name.forceDex
- specifies whether the dex files should always be written, even if they don't
contain any code.dexDataEntryWriter
- the writer to which the converted dex file is written.otherDataEntryWriter
- the writer to which other data entries are written.public boolean createDirectory(DataEntry dataEntry) throws java.io.IOException
DataEntryWriter
createDirectory
in interface DataEntryWriter
dataEntry
- the data entry for which the directory is to be created.java.io.IOException
public boolean sameOutputStream(DataEntry dataEntry1, DataEntry dataEntry2) throws java.io.IOException
DataEntryWriter
sameOutputStream
in interface DataEntryWriter
dataEntry1
- the first data entry.dataEntry2
- the second data entry.java.io.IOException
public java.io.OutputStream createOutputStream(DataEntry dataEntry) throws java.io.IOException
DataEntryWriter
createOutputStream
in interface DataEntryWriter
dataEntry
- the data entry for which the output stream is to be created.null
to indicate that the data entry
should not be written.java.io.IOException
public void close() throws java.io.IOException
DataEntryWriter
Implementations typically create graphs of writers that can split and merge again, possibly even with cycles.
For splits and merges, implementations need to be idempotent; once closed, subsequent
attempts to close a writer have no effect. If needed, the wrapper NonClosingDataEntryWriter
can avoid closing a branch prematurely.
For cycles, implementations must perform any custom behavior, then delegate DataEntryWriter.close()
invocations, and only finally clean up. It is possible that delegates call DataEntryWriter.createOutputStream(DataEntry)
while DataEntryWriter.close()
is in progress.
close
in interface java.lang.AutoCloseable
close
in interface DataEntryWriter
java.io.IOException
public void println(java.io.PrintWriter pw, java.lang.String prefix)
DataEntryWriter
println
in interface DataEntryWriter
pw
- the print stream to which the structure should be printed.prefix
- a prefix for every printed line.protected abstract void writeDex(java.io.OutputStream outputStream) throws java.io.IOException
java.io.IOException