Package proguard.io
Class DexDataEntryWriter
- java.lang.Object
-
- proguard.io.DexDataEntryWriter
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,DataEntryWriter
- Direct Known Subclasses:
D8BasedDexDataEntryWriter
public abstract class DexDataEntryWriter extends java.lang.Object implements DataEntryWriter
This DataEntryWriter finds received class entries in the given class pool, collects them in a dex file, and writes it out to the given data entry writer. For resource entries, it returns valid output streams. For class entries, it returns output streams that must not be used.- See Also:
IdleRewriter
-
-
Field Summary
Fields Modifier and Type Field Description protected DataEntryWriter
dexDataEntryWriter
protected java.lang.String
dexFileName
protected DataEntryWriter
otherDataEntryWriter
-
Constructor Summary
Constructors Constructor Description DexDataEntryWriter(ClassPool classPool, StringMatcher classNameFilter, java.lang.String dexFileName, boolean forceDex, DataEntryReader extraDexDataEntryVisitor, DataEntryWriter dexDataEntryWriter, DataEntryWriter otherDataEntryWriter)
Creates a new DexDataEntryWriter.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Field Detail
-
dexFileName
protected final java.lang.String dexFileName
-
dexDataEntryWriter
protected final DataEntryWriter dexDataEntryWriter
-
otherDataEntryWriter
protected final DataEntryWriter otherDataEntryWriter
-
-
Constructor Detail
-
DexDataEntryWriter
public DexDataEntryWriter(ClassPool classPool, StringMatcher classNameFilter, java.lang.String dexFileName, boolean forceDex, DataEntryReader extraDexDataEntryVisitor, DataEntryWriter dexDataEntryWriter, DataEntryWriter otherDataEntryWriter)
Creates a new DexDataEntryWriter.- Parameters:
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.
-
-
Method Detail
-
createDirectory
public boolean createDirectory(DataEntry dataEntry) throws java.io.IOException
Description copied from interface:DataEntryWriter
Creates a directory.- Specified by:
createDirectory
in interfaceDataEntryWriter
- Parameters:
dataEntry
- the data entry for which the directory is to be created.- Returns:
- whether the directory has been created.
- Throws:
java.io.IOException
-
sameOutputStream
public boolean sameOutputStream(DataEntry dataEntry1, DataEntry dataEntry2) throws java.io.IOException
Description copied from interface:DataEntryWriter
Returns whether the two given data entries would result in the same output stream.- Specified by:
sameOutputStream
in interfaceDataEntryWriter
- Parameters:
dataEntry1
- the first data entry.dataEntry2
- the second data entry.- Throws:
java.io.IOException
-
createOutputStream
public java.io.OutputStream createOutputStream(DataEntry dataEntry) throws java.io.IOException
Description copied from interface:DataEntryWriter
Creates a new output stream for writing data. The caller is responsible for closing the stream.- Specified by:
createOutputStream
in interfaceDataEntryWriter
- Parameters:
dataEntry
- the data entry for which the output stream is to be created.- Returns:
- the output stream. The stream may be
null
to indicate that the data entry should not be written. - Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException
Description copied from interface:DataEntryWriter
Finishes writing all data entries.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 callDataEntryWriter.createOutputStream(DataEntry)
whileDataEntryWriter.close()
is in progress.- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfaceDataEntryWriter
- Throws:
java.io.IOException
-
println
public void println(java.io.PrintWriter pw, java.lang.String prefix)
Description copied from interface:DataEntryWriter
Prints out the structure of the data entry writer.- Specified by:
println
in interfaceDataEntryWriter
- Parameters:
pw
- the print stream to which the structure should be printed.prefix
- a prefix for every printed line.
-
writeDex
protected abstract void writeDex(java.io.OutputStream outputStream) throws java.io.IOException
Creates a new Dex instance from the collected classes.- Throws:
java.io.IOException
-
-