blob: dde76539ba0de34f0e2258f5d37513a5c49c8892 [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Development Tooling"-Software
*
* Copyright 2015 GK Software AG
*
* 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.objectteams.org for updates and contact.
*
* Contributors:
* Stephan Herrmann - Initial API and implementation
**********************************************************************/
package org.eclipse.objectteams.internal.osgi.weaving;
import java.io.IOException;
import java.io.InputStream;
import java.lang.instrument.ClassDefinition;
import java.lang.instrument.IllegalClassFormatException;
import java.lang.instrument.UnmodifiableClassException;
import java.lang.reflect.InvocationTargetException;
import java.net.URL;
import java.security.ProtectionDomain;
import java.util.Collection;
import java.util.List;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.objectteams.internal.osgi.weaving.OTWeavingHook.WeavingReason;
import org.eclipse.objectteams.otredyn.bytecode.IRedefineStrategy;
import org.eclipse.objectteams.otredyn.bytecode.RedefineStrategyFactory;
import org.eclipse.objectteams.otredyn.transformer.IWeavingContext;
import org.osgi.framework.Bundle;
import org.osgi.framework.wiring.BundleWiring;
/**
* Generalization over the transformers of OTRE and OTDRE.
*/
public abstract class DelegatingTransformer {
/** Factory method for a fresh transformer. */
static @NonNull DelegatingTransformer newTransformer(boolean useDynamicWeaver, OTWeavingHook hook, BundleWiring wiring) {
if (useDynamicWeaver)
return new OTDRETransformer(getWeavingContext(hook, wiring));
else
return new OTRETransformer();
}
private static class OTRETransformer extends DelegatingTransformer {
org.eclipse.objectteams.otre.jplis.ObjectTeamsTransformer transformer = new org.eclipse.objectteams.otre.jplis.ObjectTeamsTransformer();
@Override
public void readOTAttributes(String className, InputStream inputStream, String fileName, Bundle bundle) throws ClassFormatError, IOException {
this.transformer.readOTAttributes(inputStream, fileName, bundle);
}
public Collection<String> fetchAdaptedBases() {
return this.transformer.fetchAdaptedBases();
}
public byte[] transform(Bundle bundle, String className, Class<?> classBeingRedefined, ProtectionDomain protectionDomain, byte[] bytes)
throws IllegalClassFormatException
{
return this.transformer.transform(bundle, className, classBeingRedefined, protectionDomain, bytes);
}
}
private static class OTDRETransformer extends DelegatingTransformer {
org.eclipse.objectteams.otredyn.transformer.jplis.ObjectTeamsTransformer transformer;
public OTDRETransformer(IWeavingContext weavingContext) {
RedefineStrategyFactory.setRedefineStrategy(new OTEquinoxRedefineStrategy());
transformer = new org.eclipse.objectteams.otredyn.transformer.jplis.ObjectTeamsTransformer(weavingContext);
}
@Override
public void readOTAttributes(String className, InputStream inputStream, String fileName, Bundle bundle) throws ClassFormatError, IOException {
// TODO provide classID
this.transformer.readOTAttributes(className, className.replace('.', '/'), inputStream, getBundleLoader(bundle));
}
public Collection<String> fetchAdaptedBases() {
return transformer.fetchAdaptedBases();
}
public byte[] transform(final Bundle bundle, String className, Class<?> classBeingRedefined, ProtectionDomain protectionDomain, byte[] bytes) {
// TODO provide classID
return transformer.transform(getBundleLoader(bundle), className, className.replace('.', '/'), classBeingRedefined, bytes);
}
}
/** Enable OTDRE to use the OTEquinoxDebugAgent, if present, for class redefinition. */
private static class OTEquinoxRedefineStrategy implements IRedefineStrategy {
private static final String OT_EQUINOX_DEBUG_AGENT = "org.eclipse.objectteams.otdt.internal.debug.adaptor.launching.OTEquinoxDebugAgent";
public void redefine(Class<?> clazz, byte[] bytecode) throws ClassNotFoundException, UnmodifiableClassException {
ClassDefinition arr_cd[] = { new ClassDefinition(clazz, bytecode) };
try {
reflectivelyInvoke(arr_cd);
} catch (ClassFormatError|UnmodifiableClassException e) {
// error output during redefinition tends to swallow the stack, print it now:
System.err.println("Error redefining "+clazz.getName());
e.printStackTrace();
throw e;
}
}
static void reflectivelyInvoke(ClassDefinition[] definitions) throws ClassFormatError, UnmodifiableClassException {
try {
Class<?> agentClass = ClassLoader.getSystemClassLoader().loadClass(OT_EQUINOX_DEBUG_AGENT);
java.lang.reflect.Method redefine = agentClass.getMethod("redefine", new Class<?>[]{ClassDefinition[].class});
redefine.invoke(null, new Object[]{definitions});
} catch (InvocationTargetException ite) {
Throwable cause = ite.getCause();
if (cause instanceof ClassFormatError)
throw (ClassFormatError)cause;
if (cause instanceof UnmodifiableClassException)
throw (UnmodifiableClassException)cause;
throw new UnmodifiableClassException(cause.getMessage());
} catch (Throwable t) {
throw new UnmodifiableClassException(t.getMessage());
}
}
}
static ClassLoader getBundleLoader(final Bundle bundle) {
return new ClassLoader() {
@Override
public Class<?> loadClass(String name) throws ClassNotFoundException {
return bundle.loadClass(name);
}
};
}
static IWeavingContext getWeavingContext(final OTWeavingHook hook, final BundleWiring bundleWiring) {
return new IWeavingContext() {
@Override
public boolean isWeavable(String className) {
// currently, we don't support implicit crossing of bundle boundaries,
// so check if the requested class is provided by the current bundle:
int lastDot = className.lastIndexOf('.');
String path = className.substring(0, lastDot).replace('.', '/');
String filePattern = className.substring(lastDot+1)+".class";
List<URL> entry = bundleWiring.findEntries(path, filePattern, 0);
if (entry == null || entry.isEmpty())
return false;
return hook.requiresWeaving(bundleWiring, className, null) != WeavingReason.None;
}
};
}
public abstract void readOTAttributes(String className, InputStream inputStream, String fileName, Bundle bundle) throws ClassFormatError, IOException;
public abstract byte[] transform(Bundle bundle, String className, Class<?> classBeingRedefined, ProtectionDomain protectionDomain, byte[] bytes)
throws IllegalClassFormatException;
public abstract Collection<String> fetchAdaptedBases();
}