/*
* This file is part of Mixin, licensed under the MIT License (MIT).
*
* Copyright (c) SpongePowered <https://www.spongepowered.org>
* Copyright (c) contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package org.spongepowered.asm.mixin.transformer.verify;
import java.util.List;
import org.spongepowered.asm.lib.Type;
import org.spongepowered.asm.lib.tree.analysis.SimpleVerifier;
import org.spongepowered.asm.mixin.transformer.ClassInfo;
/**
* Verifier which handles class info lookups via {@link ClassInfo}
*/
public class MixinVerifier extends SimpleVerifier {
private Type currentClass;
private Type currentSuperClass;
private List<Type> currentClassInterfaces;
private boolean isInterface;
public MixinVerifier(Type currentClass, Type currentSuperClass, List<Type> currentClassInterfaces, boolean isInterface) {
super(currentClass, currentSuperClass, currentClassInterfaces, isInterface);
this.currentClass = currentClass;
this.currentSuperClass = currentSuperClass;
this.currentClassInterfaces = currentClassInterfaces;
this.isInterface = isInterface;
}
@Override
protected boolean isInterface(final Type type) {
if (this.currentClass != null && type.equals(this.currentClass)) {
return this.isInterface;
}
return ClassInfo.forType(type).isInterface();
}
@Override
protected Type getSuperClass(final Type type) {
if (this.currentClass != null && type.equals(this.currentClass)) {
return this.currentSuperClass;
}
ClassInfo c = ClassInfo.forType(type).getSuperClass();
return c == null ? null : Type.getType("L" + c.getName() + ";");
}
@Override
protected boolean isAssignableFrom(final Type type, final Type other) {
if (type.equals(other)) {
return true;
}
if (this.currentClass != null && type.equals(this.currentClass)) {
if (this.getSuperClass(other) == null) {
return false;
}
if (this.isInterface) {
return other.getSort() == Type.OBJECT || other.getSort() == Type.ARRAY;
}
return this.isAssignableFrom(type, this.getSuperClass(other));
}
if (this.currentClass != null && other.equals(this.currentClass)) {
if (this.isAssignableFrom(type, this.currentSuperClass)) {
return true;
}
if (this.currentClassInterfaces != null) {
for (int i = 0; i < this.currentClassInterfaces.size(); ++i) {
Type v = this.currentClassInterfaces.get(i);
if (this.isAssignableFrom(type, v)) {
return true;
}
}
}
return false;
}
ClassInfo typeInfo = ClassInfo.forType(type);
if (typeInfo == null) {
return false;
}
if (typeInfo.isInterface()) {
typeInfo = ClassInfo.forName("java/lang/Object");
}
return ClassInfo.forType(other).hasSuperClass(typeInfo);
}
}