org.evosuite.seeding.CastClassAnalyzer Maven / Gradle / Ivy
/**
* Copyright (C) 2010-2018 Gordon Fraser, Andrea Arcuri and EvoSuite
* contributors
*
* This file is part of EvoSuite.
*
* EvoSuite is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3.0 of the License, or
* (at your option) any later version.
*
* EvoSuite 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
* Lesser Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with EvoSuite. If not, see .
*/
package org.evosuite.seeding;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.evosuite.Properties;
import org.evosuite.setup.DependencyAnalysis;
import org.objectweb.asm.Opcodes;
import org.objectweb.asm.Type;
import org.objectweb.asm.signature.SignatureReader;
import org.objectweb.asm.tree.AbstractInsnNode;
import org.objectweb.asm.tree.ClassNode;
import org.objectweb.asm.tree.InsnList;
import org.objectweb.asm.tree.LdcInsnNode;
import org.objectweb.asm.tree.MethodNode;
import org.objectweb.asm.tree.TypeInsnNode;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class CastClassAnalyzer {
private static final Logger logger = LoggerFactory.getLogger(CastClassAnalyzer.class);
private final Map castClassMap = new HashMap();
public Map analyze(String className) {
ClassNode targetClass = DependencyAnalysis.getClassNode(className);
if (targetClass != null)
handle(targetClass, 0);
if (Properties.INSTRUMENT_PARENT) {
handleSuperClasses(targetClass);
}
return castClassMap;
}
/**
* If we want to have the calltree also for the superclasses, we need to
* determine which methods are callable
*
* @param targetClass
*/
@SuppressWarnings("unchecked")
public void handleSuperClasses(ClassNode targetClass) {
String superClassName = targetClass.superName;
if (superClassName == null || superClassName.isEmpty())
return;
if (superClassName.equals("java/lang/Object"))
return;
logger.debug("Getting casts for superclass: " + superClassName);
ClassNode superClass = DependencyAnalysis.getClassNode(superClassName);
List methods = superClass.methods;
for (MethodNode mn : methods) {
logger.debug("Method: " + mn.name);
// Do not check super-constructors
if (mn.name.equals(""))
continue;
if (mn.name.equals(""))
continue;
// Skip abstract etc
if ((mn.access & Opcodes.ACC_ABSTRACT) == Opcodes.ACC_ABSTRACT)
continue;
// Do not handle classes if they are overridden by the subclass
if ((mn.access & Opcodes.ACC_PUBLIC) == Opcodes.ACC_PUBLIC) {
handleMethodNode(superClass, mn, 0);
}
}
handleSuperClasses(superClass);
}
private void handleClassSignature(ClassNode cn) {
CollectParameterTypesVisitor visitor = new CollectParameterTypesVisitor(cn.name);
if (cn.signature != null) {
new SignatureReader(cn.signature).accept(visitor);
for (Type castType : visitor.getClasses()) {
if (!castClassMap.containsKey(castType)) {
logger.debug("Adding new cast class from signature visitor: "
+ castType);
castClassMap.put(castType, 1);
}
}
}
}
@SuppressWarnings("unchecked")
public void handle(ClassNode targetClass, int depth) {
handleClassSignature(targetClass);
List methods = targetClass.methods;
for (MethodNode mn : methods) {
logger.debug("Method: " + mn.name);
handleMethodNode(targetClass, mn, depth);
}
}
@SuppressWarnings("unchecked")
public void handle(ClassNode targetClass, String methodName, int depth) {
handleClassSignature(targetClass);
List methods = targetClass.methods;
for (MethodNode mn : methods) {
if (methodName.equals(mn.name + mn.desc))
handleMethodNode(targetClass, mn, depth);
}
}
public void handle(String className, String methodName, int depth) {
ClassNode cn = DependencyAnalysis.getClassNode(className);
if (cn == null)
return;
handle(cn, methodName, depth);
}
/**
* Add all possible calls for a given method
*
* @param mn
*/
@SuppressWarnings("unchecked")
public void handleMethodNode(ClassNode cn, MethodNode mn, int depth) {
if (mn.signature != null) {
logger.debug("Visiting signature: " + mn.signature);
CollectParameterTypesVisitor visitor = new CollectParameterTypesVisitor(
cn.name);
new SignatureReader(mn.signature).accept(visitor);
for (Type castType : visitor.getClasses()) {
if (!castClassMap.containsKey(castType)) {
logger.debug("Adding new cast class from signature visitor: "
+ castType);
castClassMap.put(castType, depth + 1);
}
}
}
InsnList instructions = mn.instructions;
Iterator iterator = instructions.iterator();
// TODO: This really shouldn't be here but in its own class
while (iterator.hasNext()) {
AbstractInsnNode insn = iterator.next();
if (insn.getOpcode() == Opcodes.CHECKCAST) {
TypeInsnNode typeNode = (TypeInsnNode) insn;
Type castType = Type.getObjectType(typeNode.desc);
while (castType.getSort() == Type.ARRAY) {
castType = castType.getElementType();
}
logger.debug("Adding new cast class from cast: " + castType);
if (!castClassMap.containsKey(castType))
castClassMap.put(castType, depth + 1);
} else if (insn.getOpcode() == Opcodes.INSTANCEOF) {
TypeInsnNode typeNode = (TypeInsnNode) insn;
Type castType = Type.getObjectType(typeNode.desc);
while (castType.getSort() == Type.ARRAY) {
castType = castType.getElementType();
}
logger.debug("Adding new cast class from instanceof: " + castType);
if (!castClassMap.containsKey(castType))
castClassMap.put(castType, depth + 1);
} else if (insn.getOpcode() == Opcodes.LDC) {
LdcInsnNode ldcNode = (LdcInsnNode) insn;
if (ldcNode.cst instanceof Type) {
Type type = (Type) ldcNode.cst;
while (type.getSort() == Type.ARRAY) {
type = type.getElementType();
}
if (!castClassMap.containsKey(type))
castClassMap.put(type, depth + 1);
}
}
}
}
}