org.apache.openejb.cdi.CdiScanner 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.BeanContext;
import org.apache.openejb.assembler.classic.AppInfo;
import org.apache.openejb.assembler.classic.BeansInfo;
import org.apache.openejb.assembler.classic.EjbJarInfo;
import org.apache.openejb.core.ParentClassLoaderFinder;
import org.apache.openejb.loader.SystemInstance;
import org.apache.openejb.util.PropertyPlaceHolderHelper;
import org.apache.openejb.util.classloader.ClassLoaderComparator;
import org.apache.openejb.util.classloader.DefaultClassLoaderComparator;
import org.apache.webbeans.config.WebBeansContext;
import org.apache.webbeans.decorator.DecoratorsManager;
import org.apache.webbeans.exception.WebBeansConfigurationException;
import org.apache.webbeans.inject.AlternativesManager;
import org.apache.webbeans.intercept.InterceptorsManager;
import org.apache.webbeans.spi.BDABeansXmlScanner;
import org.apache.webbeans.spi.ScannerService;
import java.io.IOException;
import java.net.URL;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set;
/**
* @version $Rev:$ $Date:$
*/
public class CdiScanner implements ScannerService {
public static final String OPENEJB_CDI_FILTER_CLASSLOADER = "openejb.cdi.filter.classloader";
public static final ThreadLocal> ADDITIONAL_CLASSES = new ThreadLocal>();
private static final Map> CONTAINER_CLASSES = new HashMap>();
static { // load container classes lists
final Properties props = new Properties();
try {
props.load(CdiScanner.class.getResourceAsStream("/container-cdi-classes.properties"));
} catch (final IOException e) {
// no-op
}
for (final String key : props.stringPropertyNames()) {
final Collection set = new HashSet();
CONTAINER_CLASSES.put(key, set);
Collections.addAll(set, props.getProperty(key).split(","));
}
}
// TODO add all annotated class
private ClassLoader containerLoader;
private final Set> classes = new HashSet>();
@Override
public void init(final Object object) {
if (!StartupObject.class.isInstance (object)) {
return;
}
containerLoader = ParentClassLoaderFinder.Helper.get();
final StartupObject startupObject = StartupObject.class.cast(object);
final AppInfo appInfo = startupObject.getAppInfo();
final ClassLoader classLoader = startupObject.getClassLoader();
final ClassLoaderComparator comparator;
if (classLoader instanceof ClassLoaderComparator) {
comparator = (ClassLoaderComparator) classLoader;
} else {
comparator = new DefaultClassLoaderComparator(classLoader);
}
final WebBeansContext webBeansContext = startupObject.getWebBeansContext();
final AlternativesManager alternativesManager = webBeansContext.getAlternativesManager();
final DecoratorsManager decoratorsManager = webBeansContext.getDecoratorsManager();
final InterceptorsManager interceptorsManager = webBeansContext.getInterceptorsManager();
for (final EjbJarInfo ejbJar : appInfo.ejbJars) {
final BeansInfo beans = ejbJar.beans;
if (beans == null || "false".equalsIgnoreCase(ejbJar.properties.getProperty("openejb.cdi.activated"))) {
continue;
}
if (startupObject.isFromWebApp()) { // deploy only the related ejbmodule
if (!ejbJar.moduleId.equals(startupObject.getWebContext().getId())) {
continue;
}
} else if (ejbJar.webapp && !appInfo.webAppAlone) {
continue;
}
// fail fast
final StringBuilder errors = new StringBuilder("You must not declare the same class multiple times in the beans.xml: ");
if (addErrors(errors, "alternative classes", beans.duplicatedAlternativeClasses)
|| addErrors(errors, "alternative stereotypes", beans.duplicatedAlternativeStereotypes)
|| addErrors(errors, "decorators", beans.duplicatedDecorators)
|| addErrors(errors, "interceptors", beans.duplicatedInterceptors)) {
throw new WebBeansConfigurationException(errors.toString());
}
// no more need of errors so clear them
beans.duplicatedAlternativeStereotypes.clear();
beans.duplicatedAlternativeClasses.clear();
beans.duplicatedDecorators.clear();
beans.duplicatedInterceptors.clear();
for (final String className : beans.interceptors) {
final Class> clazz = load(PropertyPlaceHolderHelper.simpleValue(className), classLoader);
if (clazz != null) {
if (!interceptorsManager.isInterceptorClassEnabled(clazz)) {
interceptorsManager.addEnabledInterceptorClass(clazz);
classes.add(clazz);
} /* else { don't do it, check is done when we know the beans.xml path --> org.apache.openejb.config.DeploymentLoader.addBeansXmls
throw new WebBeansConfigurationException("Interceptor class : " + clazz.getName() + " is already defined");
}*/
} else if (shouldThrowCouldNotLoadException(startupObject)) {
throw new WebBeansConfigurationException("Could not load interceptor class: " + className);
}
}
for (final String className : beans.decorators) {
final Class> clazz = load(PropertyPlaceHolderHelper.simpleValue(className), classLoader);
if (clazz != null) {
if (!decoratorsManager.isDecoratorEnabled(clazz)) {
decoratorsManager.addEnabledDecorator(clazz);
classes.add(clazz);
} // same than interceptors regarding throw new WebBeansConfigurationException("Decorator class : " + clazz.getName() + " is already defined");
} else if (shouldThrowCouldNotLoadException(startupObject)) {
throw new WebBeansConfigurationException("Could not load decorator class: " + className);
}
}
for (final String className : beans.alternativeStereotypes) {
final Class> clazz = load(PropertyPlaceHolderHelper.simpleValue(className), classLoader);
if (clazz != null) {
alternativesManager.addStereoTypeAlternative(clazz, null, null);
classes.add(clazz);
} else if (shouldThrowCouldNotLoadException(startupObject)) {
throw new WebBeansConfigurationException("Could not load alternativeStereotype class: " + className);
}
}
for (final String className : beans.alternativeClasses) {
final Class> clazz = load(PropertyPlaceHolderHelper.simpleValue(className), classLoader);
if (clazz != null) {
alternativesManager.addClazzAlternative(clazz, null, null);
classes.add(clazz);
} else if (shouldThrowCouldNotLoadException(startupObject)) {
throw new WebBeansConfigurationException("Could not load alternative class: " + className);
}
}
// here for ears we need to skip classes in the parent classloader
final ClassLoader scl = ClassLoader.getSystemClassLoader();
final boolean filterByClassLoader = "true".equals(
ejbJar.properties.getProperty(OPENEJB_CDI_FILTER_CLASSLOADER,
SystemInstance.get().getProperty(OPENEJB_CDI_FILTER_CLASSLOADER, "true")));
final Iterator it = beans.managedClasses.iterator();
while (it.hasNext()) {
process(classLoader, it, startupObject, comparator, scl, filterByClassLoader);
}
final Collection otherClasses = ADDITIONAL_CLASSES.get();
if (otherClasses != null) {
final Iterator it2 = otherClasses.iterator();
while (it2.hasNext()) {
process(classLoader, it2, startupObject, comparator, scl, filterByClassLoader);
}
}
if (startupObject.getBeanContexts() != null) { // ensure ejbs are in managed beans otherwise they will not be deployed in CDI
for (final BeanContext bc : startupObject.getBeanContexts()) {
final String name = bc.getBeanClass().getName();
if (BeanContext.Comp.class.getName().equals(name)) {
continue;
}
final Class> load = load(name, classLoader);
if (load != null && !classes.contains(load)) {
classes.add(load);
}
}
}
addContainerCdiClasses(classLoader, appInfo);
}
}
private void addContainerCdiClasses(final ClassLoader loader, final AppInfo app) {
if (!"true".equalsIgnoreCase(app.properties.getProperty("CdiContainer", "true"))) {
return;
}
addContainerClasses(app.properties, loader, "BVal");
/* useless since MyFaces uses Extension to register beans
if (ejbJar.webapp && "true".equalsIgnoreCase(app.properties.getProperty("Jsf.MyFaces", "true"))) {
addContainerClasses(app.properties, loader, "MyFaces");
}
*/
}
private void addContainerClasses(final Properties appProps, final ClassLoader loader, final String key) {
if (!"true".equalsIgnoreCase(appProps.getProperty("CdiContainer." + key, "true"))) {
return;
}
for (final String clazz : CONTAINER_CLASSES.get(key)) {
try {
classes.add(loader.loadClass(clazz));
} catch (final Throwable th) { // classnotfoundexception ot noclassdeffounderror
// no-op
}
}
}
private static boolean shouldThrowCouldNotLoadException(final StartupObject startupObject) {
final AppInfo appInfo = startupObject.getAppInfo();
return appInfo.webAppAlone || appInfo.webApps.size() == 0 || startupObject.isFromWebApp();
}
private void process(final ClassLoader classLoader, final Iterator it, final StartupObject startupObject, final ClassLoaderComparator comparator, final ClassLoader scl, final boolean filterByClassLoader) {
final String className = it.next();
final Class clazz = load(className, classLoader);
if (clazz == null) {
return;
}
final boolean isNotEarWebApp = startupObject.getWebContext() == null;
final ClassLoader cl = clazz.getClassLoader();
// 1. this classloader is the good one
// 2. the classloader is the appclassloader one and we are in the ear parent
// 3. it is a container class so if it is here it is designed
//
// main case it tries to filter is ear one ie lib classes shouldn't be in webapp classes
// but embedded other cases should still work
if (!filterByClassLoader
|| comparator.isSame(cl)
|| ((cl.equals(scl) || cl == containerLoader) && isNotEarWebApp)) {
classes.add(clazz);
} else {
it.remove();
}
}
private boolean addErrors(final StringBuilder errors, final String msg, final List list) {
if (!list.isEmpty()) {
errors.append("[ ").append(msg).append(" --> ");
for (final String s : list) {
errors.append(s).append(" ");
}
errors.append("]");
return true;
} else {
return false;
}
}
public boolean isBDABeansXmlScanningEnabled() {
return false;
}
public BDABeansXmlScanner getBDABeansXmlScanner() {
return null;
}
/**
* @param className name of class to load
* @param classLoader classloader to (try to) load it from
* @return the loaded class if possible, or null if loading fails.
*/
private Class load(final String className, final ClassLoader classLoader) {
try {
return classLoader.loadClass(className);
} catch (final ClassNotFoundException e) {
return null;
} catch (final NoClassDefFoundError e) {
return null;
}
}
@Override
public void scan() {
// Unused
}
@Override
public Set getBeanXmls() {
return Collections.emptySet(); // Unused
}
@Override
public Set> getBeanClasses() {
return classes;
}
@Override
public void release() {
classes.clear();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy