⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 classfilereferenceinitializer.java

📁 出色的混淆器
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* $Id: ClassFileReferenceInitializer.java,v 1.6 2003/02/09 15:22:28 eric Exp $ * * ProGuard -- obfuscation and shrinking package for Java class files. * * Copyright (c) 2002-2003 Eric Lafortune (eric@graphics.cornell.edu) * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */package proguard.classfile.util;import proguard.classfile.*;import proguard.classfile.instruction.*;import proguard.classfile.visitor.*;/** * This ClassFileVisitor initializes the elements of all class files it visits. * The class file hierarchy must be initialized before using this visitor. * <p> * The visitor fills out the references of fields, methods, and constant pool * entries that refer to a class file or to a class member in the program class * pool. * * @see proguard.classfile.util.ClassFileHierarchyVisitor * @author Eric Lafortune */public class ClassFileReferenceInitializer  implements ClassFileVisitor,             MemberInfoVisitor,             CpInfoVisitor,             AttrInfoVisitor,             InstructionVisitor{    private ClassPool programClassPool;    private boolean   warn;    private boolean   note;    // Counters for warnings and notes.    private int       warningCount;    private int       noteCount;    // Helper class for checking whether referenced methods are Class.forName,...    private MyClassForNameFinder classForNameFinder = new MyClassForNameFinder();    // Fields to remember the previous StringCpInfo and MethodRefCpInfo objects    // while visiting all instructions (to find Class.forName, class$, and    // Class.newInstance invocations, and possible class casts afterwards).    private int ldcStringCpIndex              = -1;    private int invokestaticMethodRefCpIndex  = -1;    private int invokevirtualMethodRefCpIndex = -1;    /**     * Creates a new ClassFileReferenceInitializer that initializes the elements     * of all visited class files, printing warnings if some items can't be found.     * It also prints notes if on usage of     * <code>(SomeClass)Class.forName(variable).newInstance()</code>.     */    public ClassFileReferenceInitializer(ClassPool programClassPool)    {        this(programClassPool, true, true);    }    /**     * Creates a new ClassFileReferenceInitializer that initializes the elements     * of all visited class files, optionally printing warnings if some items     * can't be found. It also optionally prints notes if on usage of     * <code>(SomeClass)Class.forName(variable).newInstance()</code>.     */    public ClassFileReferenceInitializer(ClassPool programClassPool,                                         boolean   warn,                                         boolean   note)    {        this.programClassPool = programClassPool;        this.warn             = warn;        this.note             = note;    }    /**     * Returns the number of warnings printed about unresolved references to     * class members in program class files.     */    public int getWarningCount()    {        return warningCount;    }    /**     * Returns the number of notes printed about occurrences of     * '<code>(SomeClass)Class.forName(variable).newInstance()</code>'.     */    public int getNoteCount()    {        return noteCount;    }    // Implementations for ClassFileVisitor    public void visitProgramClassFile(ProgramClassFile programClassFile)    {        // Initialize the constant pool entries.        programClassFile.constantPoolEntriesAccept(this);        // Initialize all fields and methods.        programClassFile.fieldsAccept(this);        programClassFile.methodsAccept(this);    }    public void visitLibraryClassFile(LibraryClassFile libraryClassFile)    {        // Library class files have no elements to be initialized.    }    // Implementations for MemberInfoVisitor    public void visitProgramFieldInfo(ProgramClassFile programClassFile, ProgramFieldInfo programFieldInfo)    {        visitMemberInfo(programClassFile, programFieldInfo);    }    public void visitProgramMethodInfo(ProgramClassFile programClassFile, ProgramMethodInfo programMethodInfo)    {        visitMemberInfo(programClassFile, programMethodInfo);    }    private void visitMemberInfo(ProgramClassFile programClassFile, ProgramMemberInfo programMemberInfo)    {        programMemberInfo.referencedClassFiles =            findReferencedClassFiles(programMemberInfo.getDescriptor(programClassFile));      // Initialize the attributes.      programMemberInfo.attributesAccept(programClassFile, this);    }    public void visitLibraryFieldInfo(LibraryClassFile libraryClassFile, LibraryFieldInfo libraryFieldInfo) {}    public void visitLibraryMethodInfo(LibraryClassFile libraryClassFile, LibraryMethodInfo libraryMethodInfo) {}    // Implementations for CpInfoVisitor    public void visitIntegerCpInfo(ClassFile classFile, IntegerCpInfo integerCpInfo) {}    public void visitLongCpInfo(ClassFile classFile, LongCpInfo longCpInfo) {}    public void visitFloatCpInfo(ClassFile classFile, FloatCpInfo floatCpInfo) {}    public void visitDoubleCpInfo(ClassFile classFile, DoubleCpInfo doubleCpInfo) {}    public void visitStringCpInfo(ClassFile classFile, StringCpInfo stringCpInfo) {}    public void visitUtf8CpInfo(ClassFile classFile, Utf8CpInfo utf8CpInfo) {}    public void visitFieldrefCpInfo(ClassFile classFile, FieldrefCpInfo fieldrefCpInfo)    {        visitRefCpInfo(classFile, fieldrefCpInfo, true);    }    public void visitInterfaceMethodrefCpInfo(ClassFile classFile, InterfaceMethodrefCpInfo interfaceMethodrefCpInfo)    {        visitRefCpInfo(classFile, interfaceMethodrefCpInfo, false);    }    public void visitMethodrefCpInfo(ClassFile classFile, MethodrefCpInfo methodrefCpInfo)    {        visitRefCpInfo(classFile, methodrefCpInfo, false);    }    private void visitRefCpInfo(ClassFile classFile, RefCpInfo refCpInfo, boolean isFieldRef)    {        String className = refCpInfo.getClassName(classFile);        // See if we can find the referenced class file.        // Only look for referenced class files in the program class pool.        // Unresolved references are assumed to refer to library class files.        ProgramClassFile referencedClassFile =            (ProgramClassFile)programClassPool.getClass(className);        if (referencedClassFile != null)        {            String name = refCpInfo.getName(classFile);            String type = refCpInfo.getType(classFile);            // For efficiency, first see if we can find the member in the            // referenced class itself.            ProgramMemberInfo referencedMemberInfo = isFieldRef ?                (ProgramMemberInfo)referencedClassFile.findField(name, type) :                (ProgramMemberInfo)referencedClassFile.findMethod(name, type);            if (referencedMemberInfo != null)            {                // Save the references.                refCpInfo.referencedClassFile  = referencedClassFile;                refCpInfo.referencedMemberInfo = referencedMemberInfo;                return;            }            // We didn't find the member yet. Organize a search in the hierarchy            // of superclasses and interfaces. This can happen with classes            // compiled with "-target 1.2" (the default in JDK 1.4).            MyMemberFinder memberFinder = new MyMemberFinder();            try {                referencedClassFile.accept(                    new ClassFileUpDownTraveler(true, true, true, false,                        isFieldRef ?                            (ClassFileVisitor)new NamedFieldVisitor(memberFinder, name, type) :                            (ClassFileVisitor)new NamedMethodVisitor(memberFinder, name, type)));            }            catch (MyMemberFinder.MemberFoundException ex)            {                // Save the references.                refCpInfo.referencedClassFile  = memberFinder.programClassFile;                refCpInfo.referencedMemberInfo = memberFinder.programMemberInfo;                return;            }            // We've visited the entire hierarchy and still no member...            if (warn)            {                warningCount++;                System.err.println("Warning: " +                                   ClassUtil.externalClassName(classFile.getName()) +                                   ": can't find referenced " +                                   (isFieldRef ?                                    "field '"  + ClassUtil.externalFullFieldDescription(0, name, type) :                                    "method '" + ClassUtil.externalFullMethodDescription(referencedClassFile.getName(), 0, name, type)) +                                   "' in class " +                                   ClassUtil.externalClassName(referencedClassFile.getName()));            }        }    }    public void visitClassCpInfo(ClassFile classFile, ClassCpInfo classCpInfo)    {        // Didn't the reference get filled out already by the hierarchy initializer?        if (classCpInfo.referencedClassFile == null)        {            classCpInfo.referencedClassFile =                programClassPool.getClass(classCpInfo.getName(classFile));        }    }    public void visitNameAndTypeCpInfo(ClassFile classFile, NameAndTypeCpInfo nameAndTypeCpInfo)    {        nameAndTypeCpInfo.referencedClassFiles =            findReferencedClassFiles(nameAndTypeCpInfo.getType(classFile));    }    // Implementations for AttrInfoVisitor    public void visitUnknownAttrInfo(ClassFile classFile, UnknownAttrInfo unknownAttrInfo) {}    public void visitInnerClassesAttrInfo(ClassFile classFile, InnerClassesAttrInfo innerClassesAttrInfo) {}    public void visitConstantValueAttrInfo(ClassFile classFile, ConstantValueAttrInfo constantValueAttrInfo) {}    public void visitExceptionsAttrInfo(ClassFile classFile, ExceptionsAttrInfo exceptionsAttrInfo) {}    public void visitLineNumberTableAttrInfo(ClassFile classFile, LineNumberTableAttrInfo lineNumberTableAttrInfo) {}    public void visitLocalVariableTableAttrInfo(ClassFile classFile, LocalVariableTableAttrInfo localVariableTableAttrInfo) {}    public void visitSourceFileAttrInfo(ClassFile classFile, SourceFileAttrInfo sourceFileAttrInfo) {}    public void visitDeprecatedAttrInfo(ClassFile classFile, DeprecatedAttrInfo deprecatedAttrInfo) {}    public void visitSyntheticAttrInfo(ClassFile classFile, SyntheticAttrInfo syntheticAttrInfo) {}    public void visitCodeAttrInfo(ClassFile classFile, CodeAttrInfo codeAttrInfo)    {        codeAttrInfo.instructionsAccept(classFile, this);    }    // Implementations for InstructionVisitor

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -