Class ClassMapDataEntryWriter
- java.lang.Object
-
- proguard.io.ClassMapDataEntryWriter
-
- All Implemented Interfaces:
java.lang.AutoCloseable,MemberVisitor,DataEntryWriter
public class ClassMapDataEntryWriter extends java.lang.Object implements DataEntryWriter, MemberVisitor
ThisDataEntryWriterwrites a class mapping to the given data entry, used for debugging of the configuration.Syntax of the mapping file (one line per class):
originalClassName,newClassName,hasObfuscatedMethods,hasObfuscatedFields
hasObfuscatedMethods and hasObfuscatedFields can either take the value 0 (false) or 1 (true).
-
-
Constructor Summary
Constructors Constructor Description ClassMapDataEntryWriter(ClassPool programClassPool, DataEntryWriter dataEntryWriter)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Finishes writing all data entries.booleancreateDirectory(DataEntry dataEntry)Creates a directory.java.io.OutputStreamcreateOutputStream(DataEntry dataEntry)Creates a new output stream for writing data.voidprintln(java.io.PrintWriter pw, java.lang.String prefix)Prints out the structure of the data entry writer.booleansameOutputStream(DataEntry dataEntry1, DataEntry dataEntry2)Returns whether the two given data entries would result in the same output stream.voidvisitAnyMember(Clazz clazz, Member member)Visits any Member instance.voidvisitProgramField(ProgramClass programClass, ProgramField programField)voidvisitProgramMethod(ProgramClass programClass, ProgramMethod programMethod)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface proguard.classfile.visitor.MemberVisitor
visitLibraryField, visitLibraryMember, visitLibraryMethod, visitProgramMember
-
-
-
-
Constructor Detail
-
ClassMapDataEntryWriter
public ClassMapDataEntryWriter(ClassPool programClassPool, DataEntryWriter dataEntryWriter)
-
-
Method Detail
-
close
public void close() throws java.io.IOExceptionDescription copied from interface:DataEntryWriterFinishes 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
NonClosingDataEntryWritercan 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:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfaceDataEntryWriter- Throws:
java.io.IOException
-
createDirectory
public boolean createDirectory(DataEntry dataEntry) throws java.io.IOException
Description copied from interface:DataEntryWriterCreates a directory.- Specified by:
createDirectoryin 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:DataEntryWriterReturns whether the two given data entries would result in the same output stream.- Specified by:
sameOutputStreamin 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:DataEntryWriterCreates a new output stream for writing data. The caller is responsible for closing the stream.- Specified by:
createOutputStreamin interfaceDataEntryWriter- Parameters:
dataEntry- the data entry for which the output stream is to be created.- Returns:
- the output stream. The stream may be
nullto indicate that the data entry should not be written. - Throws:
java.io.IOException
-
println
public void println(java.io.PrintWriter pw, java.lang.String prefix)Description copied from interface:DataEntryWriterPrints out the structure of the data entry writer.- Specified by:
printlnin interfaceDataEntryWriter- Parameters:
pw- the print stream to which the structure should be printed.prefix- a prefix for every printed line.
-
visitAnyMember
public void visitAnyMember(Clazz clazz, Member member)
Description copied from interface:MemberVisitorVisits any Member instance. The more specific default implementations of this interface delegate to this method.- Specified by:
visitAnyMemberin interfaceMemberVisitor
-
visitProgramMethod
public void visitProgramMethod(ProgramClass programClass, ProgramMethod programMethod)
- Specified by:
visitProgramMethodin interfaceMemberVisitor
-
visitProgramField
public void visitProgramField(ProgramClass programClass, ProgramField programField)
- Specified by:
visitProgramFieldin interfaceMemberVisitor
-
-