org.apache.openejb.cdi.OptimizedLoaderService Maven / Gradle / Ivy
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.openejb.cdi;
import org.apache.openejb.util.LogCategory;
import org.apache.openejb.util.Logger;
import org.apache.openejb.util.classloader.ClassLoaderAwareHandler;
import org.apache.webbeans.service.DefaultLoaderService;
import org.apache.webbeans.spi.LoaderService;
import org.apache.webbeans.spi.plugins.OpenWebBeansPlugin;
import javax.enterprise.inject.spi.Extension;
import java.lang.reflect.Proxy;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
/**
* @version $Rev$ $Date$
*/
public class OptimizedLoaderService implements LoaderService {
private static final Logger log = Logger.getInstance(LogCategory.OPENEJB.createChild("cdi"), OptimizedLoaderService.class);
public static final ThreadLocal> ADDITIONAL_EXTENSIONS = new ThreadLocal>();
private final LoaderService loaderService;
public OptimizedLoaderService() {
this(new DefaultLoaderService());
}
public OptimizedLoaderService(final LoaderService loaderService) {
this.loaderService = loaderService;
}
@Override
public List load(final Class serviceType) {
return load(serviceType, Thread.currentThread().getContextClassLoader());
}
@Override
public List load(final Class serviceType, final ClassLoader classLoader) {
// ServiceLoader is expensive (can take up to a half second). This is an optimization
if (OpenWebBeansPlugin.class.equals(serviceType)) {
return loadWebBeansPlugins(classLoader);
}
// As far as we know, this only is reached for CDI Extension discovery
if (Extension.class.equals(serviceType)) {
return (List) loadExtensions(classLoader);
}
return loaderService.load(serviceType, classLoader);
}
protected List extends Extension> loadExtensions(final ClassLoader classLoader) {
final List list = loaderService.load(Extension.class, classLoader);
final Collection additional = ADDITIONAL_EXTENSIONS.get();
if (additional != null) {
for (final String name : additional) {
try {
list.add(Extension.class.cast(classLoader.loadClass(name).newInstance()));
} catch (final Exception ignored) {
// no-op
}
}
}
return list;
}
private List loadWebBeansPlugins(final ClassLoader loader) {
final String[] knownPlugins = {
"org.apache.openejb.cdi.CdiPlugin",
"org.apache.geronimo.openejb.cdi.GeronimoWebBeansPlugin"
};
final String[] loaderAwareKnownPlugins = {
"org.apache.webbeans.jsf.plugin.OpenWebBeansJsfPlugin"
};
final List list = new ArrayList();
for (final String name : knownPlugins) {
final Class clazz;
try {
clazz = (Class) loader.loadClass(name);
} catch (final ClassNotFoundException e) {
// ignore
continue;
}
try {
list.add(clazz.newInstance());
} catch (final Exception e) {
log.error("Unable to load OpenWebBeansPlugin: " + name);
}
}
for (final String name : loaderAwareKnownPlugins) {
final Class clazz;
try {
clazz = (Class) loader.loadClass(name);
} catch (final ClassNotFoundException e) {
// ignore
continue;
}
try {
list.add((T) Proxy.newProxyInstance(loader, new Class>[]{OpenWebBeansPlugin.class}, new ClassLoaderAwareHandler(clazz.getSimpleName(), clazz.newInstance(), loader)));
} catch (final Exception e) {
log.error("Unable to load OpenWebBeansPlugin: " + name);
}
}
return list;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy