equinox-agentclass-hook/src/main/java/org/netbeans/html/equinox/agentclass/AgentHook.java
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Fri, 07 Feb 2014 07:44:34 +0100
changeset 551 7ca2253fa86d
parent 400 feb094ada684
permissions -rw-r--r--
Updating copyright headers to mention current year
     1 /**
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2013-2014 Oracle and/or its affiliates. All rights reserved.
     5  *
     6  * Oracle and Java are registered trademarks of Oracle and/or its affiliates.
     7  * Other names may be trademarks of their respective owners.
     8  *
     9  * The contents of this file are subject to the terms of either the GNU
    10  * General Public License Version 2 only ("GPL") or the Common
    11  * Development and Distribution License("CDDL") (collectively, the
    12  * "License"). You may not use this file except in compliance with the
    13  * License. You can obtain a copy of the License at
    14  * http://www.netbeans.org/cddl-gplv2.html
    15  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    16  * specific language governing permissions and limitations under the
    17  * License.  When distributing the software, include this License Header
    18  * Notice in each file and include the License file at
    19  * nbbuild/licenses/CDDL-GPL-2-CP.  Oracle designates this
    20  * particular file as subject to the "Classpath" exception as provided
    21  * by Oracle in the GPL Version 2 section of the License file that
    22  * accompanied this code. If applicable, add the following below the
    23  * License Header, with the fields enclosed by brackets [] replaced by
    24  * your own identifying information:
    25  * "Portions Copyrighted [year] [name of copyright owner]"
    26  *
    27  * Contributor(s):
    28  *
    29  * The Original Software is NetBeans. The Initial Developer of the Original
    30  * Software is Oracle. Portions Copyright 2013-2014 Oracle. All Rights Reserved.
    31  *
    32  * If you wish your version of this file to be governed by only the CDDL
    33  * or only the GPL Version 2, indicate your decision by adding
    34  * "[Contributor] elects to include this software in this distribution
    35  * under the [CDDL or GPL Version 2] license." If you do not indicate a
    36  * single choice of license, a recipient has the option to distribute
    37  * your version of this file under either the CDDL, the GPL Version 2 or
    38  * to extend the choice of license to its licensees as provided above.
    39  * However, if you add GPL Version 2 code and therefore, elected the GPL
    40  * Version 2 license, then the option applies only if the new code is
    41  * made subject to such option by the copyright holder.
    42  */
    43 package org.netbeans.html.equinox.agentclass;
    44 
    45 import java.lang.instrument.IllegalClassFormatException;
    46 import java.security.ProtectionDomain;
    47 import java.util.ArrayList;
    48 import java.util.logging.Logger;
    49 
    50 import org.eclipse.osgi.baseadaptor.BaseData;
    51 import org.eclipse.osgi.baseadaptor.HookConfigurator;
    52 import org.eclipse.osgi.baseadaptor.HookRegistry;
    53 import org.eclipse.osgi.baseadaptor.bundlefile.BundleEntry;
    54 import org.eclipse.osgi.baseadaptor.hooks.ClassLoadingHook;
    55 import org.eclipse.osgi.baseadaptor.loader.BaseClassLoader;
    56 import org.eclipse.osgi.baseadaptor.loader.ClasspathEntry;
    57 import org.eclipse.osgi.baseadaptor.loader.ClasspathManager;
    58 import org.eclipse.osgi.framework.adaptor.BundleProtectionDomain;
    59 import org.eclipse.osgi.framework.adaptor.BundleWatcher;
    60 import org.eclipse.osgi.framework.adaptor.ClassLoaderDelegate;
    61 import org.osgi.framework.Bundle;
    62 import org.osgi.framework.BundleContext;
    63 import org.osgi.framework.wiring.BundleWiring;
    64 
    65 public class AgentHook implements HookConfigurator, BundleWatcher, ClassLoadingHook {
    66     private static final Logger LOG = Logger.getLogger(AgentHook.class.getName());
    67 	private boolean all;
    68 	
    69 	@Override
    70 	public void addHooks(HookRegistry hookRegistry) {
    71 		LOG.info("Agent hook for Equinox initialized!");
    72 		hookRegistry.addWatcher(this);
    73 		hookRegistry.addClassLoadingHook(this);
    74 	}
    75 
    76 	@Override
    77 	public void watchBundle(Bundle bundle, int type) {
    78 		if (!all) {
    79 			BundleContext c = bundle.getBundleContext();
    80 			if (c != null) {
    81 				Bundle[] arr = bundle.getBundleContext().getBundles();
    82 				for (Bundle b : arr) {
    83 					agentBundle(b);
    84 				}
    85 				all = true;
    86 			}
    87 		}
    88 		if (type == BundleWatcher.END_ACTIVATION) {
    89 			agentBundle(bundle);
    90 		}
    91 	}
    92 
    93 	private void agentBundle(Bundle bundle) {
    94 		String agentClass = (String)bundle.getHeaders().get("Agent-Class");
    95 		if (agentClass != null) {
    96 			Class<?> agent;
    97 			try {
    98 				agent = bundle.loadClass(agentClass);
    99 				NbInstrumentation.registerAgent(agent.getClassLoader(), agent.getName());
   100 			} catch (ClassNotFoundException e) {
   101 				throw new IllegalStateException(e);
   102 			}
   103 		}
   104 	}
   105 
   106 	@Override
   107 	public byte[] processClass(String name, byte[] bytes,
   108 			ClasspathEntry ce, BundleEntry entry,
   109 			ClasspathManager manager) {
   110         final BaseData bd = ce.getBaseData();
   111         if (bd == null) {
   112             return bytes;
   113         }
   114         final Bundle b = bd.getBundle();
   115         if (b == null) {
   116             return bytes;
   117         }
   118         BundleWiring w = (BundleWiring)b.adapt(BundleWiring.class);
   119         if (w == null) {
   120             return bytes;
   121         }
   122         ClassLoader loader = w.getClassLoader();
   123 		try {
   124 			return NbInstrumentation.patchByteCode(loader, name, ce.getDomain(), bytes);
   125 		} catch (IllegalClassFormatException e) {
   126 			return bytes;
   127 		}
   128 	}
   129 
   130 	@Override
   131 	public boolean addClassPathEntry(ArrayList cpEntries,
   132 			String cp, ClasspathManager hostmanager, BaseData sourcedata,
   133 			ProtectionDomain sourcedomain) {
   134 		// TODO Auto-generated method stub
   135 		return false;
   136 	}
   137 
   138 	@Override
   139 	public String findLibrary(BaseData data, String libName) {
   140 		// TODO Auto-generated method stub
   141 		return null;
   142 	}
   143 
   144 	@Override
   145 	public ClassLoader getBundleClassLoaderParent() {
   146 		// TODO Auto-generated method stub
   147 		return null;
   148 	}
   149 
   150 	@Override
   151 	public BaseClassLoader createClassLoader(ClassLoader parent,
   152 			ClassLoaderDelegate delegate, BundleProtectionDomain domain,
   153 			BaseData data, String[] bundleclasspath) {
   154 		// TODO Auto-generated method stub
   155 		return null;
   156 	}
   157 
   158 	@Override
   159 	public void initializedClassLoader(BaseClassLoader baseClassLoader,
   160 			BaseData data) {
   161 		// TODO Auto-generated method stub
   162 		
   163 	}
   164 }