blob: 41f6b588809776ddfae03cbfd4320123aa8364ab [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Dynamic Runtime Environment"
*
* Copyright 2009, 2012 Oliver Frank and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Please visit http://www.eclipse.org/objectteams for updates and contact.
*
* Contributors:
* Oliver Frank - Initial API and implementation
* Stephan Herrmann - Initial API and implementation
**********************************************************************/
package org.eclipse.objectteams.otredyn.bytecode;
import java.lang.instrument.ClassDefinition;
import java.lang.instrument.UnmodifiableClassException;
import org.eclipse.objectteams.otredyn.transformer.jplis.otreAgent;
/**
* This implementation of {@link IRedefineStrategy} uses the
* JPLIS agent {@link otreAgent} to redefine classes.
* @author Oliver Frank
*/
public class OtreRedefineStrategy implements IRedefineStrategy {
public void redefine(Class<?> clazz, byte[] bytecode) throws ClassNotFoundException, UnmodifiableClassException {
ClassDefinition arr_cd[] = { new ClassDefinition(clazz, bytecode) };
try {
otreAgent.getInstrumentation().redefineClasses(arr_cd);
} catch (ClassFormatError cfe) {
// error output during redefinition tends to swallow the stack, print it now:
System.err.println("Error redifining "+clazz.getName());
cfe.printStackTrace();
throw cfe;
}
}
}