org.evosuite.instrumentation.PrintBytecodeTransformer Maven / Gradle / Ivy
The newest version!
/**
* 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.instrumentation;
import java.io.PrintWriter;
import java.lang.instrument.ClassFileTransformer;
import java.lang.instrument.IllegalClassFormatException;
import java.security.ProtectionDomain;
import org.evosuite.Properties;
import org.evosuite.classpath.ResourceList;
import org.objectweb.asm.ClassReader;
import org.objectweb.asm.ClassVisitor;
import org.objectweb.asm.ClassWriter;
import org.objectweb.asm.util.TraceClassVisitor;
/**
* PrintBytecodeTransformer class.
*
* @author Gordon Fraser
*/
public class PrintBytecodeTransformer implements ClassFileTransformer {
private static String target_class = Properties.TARGET_CLASS;
/* (non-Javadoc)
* @see java.lang.instrument.ClassFileTransformer#transform(java.lang.ClassLoader, java.lang.String, java.lang.Class, java.security.ProtectionDomain, byte[])
*/
/** {@inheritDoc} */
@Override
public byte[] transform(ClassLoader loader, String className,
Class> classBeingRedefined, ProtectionDomain protectionDomain,
byte[] classfileBuffer) throws IllegalClassFormatException {
if (className != null) {
try {
String classNameWithDots = ResourceList.getClassNameFromResourcePath(className);
ClassReader reader = new ClassReader(classfileBuffer);
ClassWriter writer = new ClassWriter(org.objectweb.asm.ClassWriter.COMPUTE_MAXS);
ClassVisitor cv = writer;
if(classNameWithDots.equals(target_class) || (classNameWithDots.startsWith(target_class+"$"))) {
// if (classNameWithDots.startsWith(Properties.PROJECT_PREFIX)) {
cv = new TraceClassVisitor(cv, new PrintWriter(System.out));
}
reader.accept(cv, ClassReader.SKIP_FRAMES);
classfileBuffer = writer.toByteArray();
return classfileBuffer;
} catch (Throwable t) {
throw new Error(t);
}
}
return classfileBuffer;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy