proguard.classfile.editor.TargetInfoCopier Maven / Gradle / Ivy
The newest version!
/*
* ProGuard -- shrinking, optimization, obfuscation, and preverification
* of Java bytecode.
*
* Copyright (c) 2002-2019 Guardsquare NV
*
* 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.editor;
import proguard.classfile.*;
import proguard.classfile.attribute.CodeAttribute;
import proguard.classfile.attribute.annotation.TypeAnnotation;
import proguard.classfile.attribute.annotation.target.*;
import proguard.classfile.attribute.annotation.target.visitor.TargetInfoVisitor;
import proguard.classfile.util.SimplifiedVisitor;
/**
* This TargetInfoVisitor copies the target info instances that it visits to
* the given type annotation (each time overwriting any previous target info).
*
* @author Eric Lafortune
*/
public class TargetInfoCopier
extends SimplifiedVisitor
implements TargetInfoVisitor
{
private final ProgramClass targetClass;
private final TypeAnnotation targetTypeAnnotation;
/**
* Creates a new TargetInfoCopier that will copy target info instances
* to the given target type annotation.
*/
public TargetInfoCopier(ProgramClass targetClass,
TypeAnnotation targetTypeAnnotation)
{
this.targetClass = targetClass;
this.targetTypeAnnotation = targetTypeAnnotation;
}
// Implementations for TargetInfoVisitor.
public void visitTypeParameterTargetInfo(Clazz clazz, TypeAnnotation typeAnnotation, TypeParameterTargetInfo typeParameterTargetInfo)
{
targetTypeAnnotation.targetInfo =
new TypeParameterTargetInfo(typeParameterTargetInfo.u1targetType,
typeParameterTargetInfo.u1typeParameterIndex);
}
public void visitSuperTypeTargetInfo(Clazz clazz, TypeAnnotation typeAnnotation, SuperTypeTargetInfo superTypeTargetInfo)
{
// TODO: The supertype index (= interface number) is probably different in the target class.
targetTypeAnnotation.targetInfo =
new SuperTypeTargetInfo(superTypeTargetInfo.u1targetType,
superTypeTargetInfo.u2superTypeIndex);
}
public void visitTypeParameterBoundTargetInfo(Clazz clazz, TypeAnnotation typeAnnotation, TypeParameterBoundTargetInfo typeParameterBoundTargetInfo)
{
targetTypeAnnotation.targetInfo =
new TypeParameterBoundTargetInfo(typeParameterBoundTargetInfo.u1targetType,
typeParameterBoundTargetInfo.u1typeParameterIndex,
typeParameterBoundTargetInfo.u1boundIndex);
}
public void visitEmptyTargetInfo(Clazz clazz, Member member, TypeAnnotation typeAnnotation, EmptyTargetInfo emptyTargetInfo)
{
targetTypeAnnotation.targetInfo =
new EmptyTargetInfo(emptyTargetInfo.u1targetType);
}
public void visitFormalParameterTargetInfo(Clazz clazz, Method method, TypeAnnotation typeAnnotation, FormalParameterTargetInfo formalParameterTargetInfo)
{
targetTypeAnnotation.targetInfo =
new FormalParameterTargetInfo(formalParameterTargetInfo.u1targetType,
formalParameterTargetInfo.u1formalParameterIndex);
}
public void visitThrowsTargetInfo(Clazz clazz, Method method, TypeAnnotation typeAnnotation, ThrowsTargetInfo throwsTargetInfo)
{
targetTypeAnnotation.targetInfo =
new ThrowsTargetInfo(throwsTargetInfo.u1targetType,
throwsTargetInfo.u2throwsTypeIndex);
}
public void visitLocalVariableTargetInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, LocalVariableTargetInfo localVariableTargetInfo)
{
LocalVariableTargetElement[] table =
localVariableTargetInfo.table;
LocalVariableTargetElement[] newTable =
new LocalVariableTargetElement[localVariableTargetInfo.u2tableLength];
LocalVariableTargetInfo newLocalVariableTargetInfo =
new LocalVariableTargetInfo(localVariableTargetInfo.u1targetType,
localVariableTargetInfo.u2tableLength,
newTable);
for (int index = 0; index < localVariableTargetInfo.u2tableLength; index++)
{
LocalVariableTargetElement element =
localVariableTargetInfo.table[index];
LocalVariableTargetElement newElement =
new LocalVariableTargetElement(element.u2startPC,
element.u2length,
element.u2index);
newTable[index] = newElement;
}
newLocalVariableTargetInfo.table = newTable;
targetTypeAnnotation.targetInfo = newLocalVariableTargetInfo;
}
public void visitCatchTargetInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, CatchTargetInfo catchTargetInfo)
{
targetTypeAnnotation.targetInfo =
new CatchTargetInfo(catchTargetInfo.u1targetType,
catchTargetInfo.u2exceptionTableIndex);
}
public void visitOffsetTargetInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, OffsetTargetInfo offsetTargetInfo)
{
targetTypeAnnotation.targetInfo =
new OffsetTargetInfo(offsetTargetInfo.u1targetType,
offsetTargetInfo.u2offset);
}
public void visitTypeArgumentTargetInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, TypeArgumentTargetInfo typeArgumentTargetInfo)
{
targetTypeAnnotation.targetInfo =
new TypeArgumentTargetInfo(typeArgumentTargetInfo.u1targetType,
typeArgumentTargetInfo.u2offset,
typeArgumentTargetInfo.u1typeArgumentIndex);
}
}