1 21 package proguard; 22 23 import proguard.classfile.*; 24 import proguard.classfile.util.*; 25 import proguard.classfile.visitor.*; 26 import proguard.optimize.KeepMarker; 27 28 import java.util.List ; 29 30 31 37 public class DescriptorKeepChecker 38 extends SimplifiedVisitor 39 implements MemberVisitor, 40 ClassVisitor 41 { 42 private ClassPool programClassPool; 43 private ClassPool libraryClassPool; 44 private WarningPrinter notePrinter; 45 46 private Clazz referencingClass; 48 private Member referencingMember; 49 private boolean isField; 50 51 52 55 public DescriptorKeepChecker(ClassPool programClassPool, 56 ClassPool libraryClassPool, 57 WarningPrinter notePrinter) 58 { 59 this.programClassPool = programClassPool; 60 this.libraryClassPool = libraryClassPool; 61 this.notePrinter = notePrinter; 62 } 63 64 65 69 public void checkClassSpecifications(List keepSpecifications) 70 { 71 programClassPool.classesAccept(new ClassCleaner()); 73 libraryClassPool.classesAccept(new ClassCleaner()); 74 75 KeepMarker keepMarker = new KeepMarker(); 77 ClassPoolVisitor classPoolvisitor = 78 ClassSpecificationVisitorFactory.createClassPoolVisitor(keepSpecifications, 79 keepMarker, 80 keepMarker, 81 false, 82 true, 83 true); 84 programClassPool.accept(classPoolvisitor); 86 libraryClassPool.accept(classPoolvisitor); 87 88 programClassPool.classesAccept(new AllMemberVisitor(this)); 90 } 91 92 93 95 public void visitProgramField(ProgramClass programClass, ProgramField programField) 96 { 97 if (KeepMarker.isKept(programField)) 98 { 99 referencingClass = programClass; 100 referencingMember = programField; 101 isField = true; 102 103 } 106 } 107 108 109 public void visitProgramMethod(ProgramClass programClass, ProgramMethod programMethod) 110 { 111 if (KeepMarker.isKept(programMethod)) 112 { 113 referencingClass = programClass; 114 referencingMember = programMethod; 115 isField = false; 116 117 121 Clazz[] referencedClasses = programMethod.referencedClasses; 122 if (referencedClasses != null) 123 { 124 for (int index = 0; index < referencedClasses.length-1; index++) 125 { 126 if (referencedClasses[index] != null) 127 { 128 referencedClasses[index].accept(this); 129 } 130 } 131 } 132 } 133 } 134 135 136 138 public void visitProgramClass(ProgramClass programClass) 139 { 140 if (!KeepMarker.isKept(programClass)) 141 { 142 notePrinter.print("Note: the configuration keeps the entry point '" + 143 ClassUtil.externalClassName(referencingClass.getName()) + 144 " { " + 145 (isField ? 146 ClassUtil.externalFullFieldDescription(0, 147 referencingMember.getName(referencingClass), 148 referencingMember.getDescriptor(referencingClass)) : 149 ClassUtil.externalFullMethodDescription(referencingClass.getName(), 150 0, 151 referencingMember.getName(referencingClass), 152 referencingMember.getDescriptor(referencingClass))) + 153 "; }', but not the descriptor class '" + 154 ClassUtil.externalClassName(programClass.getName()) + 155 "'"); 156 } 157 } 158 159 160 public void visitLibraryClass(LibraryClass libraryClass) {} 161 } 162
| Popular Tags
|