All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.weld.environment.servlet.deployment.WebAppBeanDeploymentArchive Maven / Gradle / Ivy

There is a newer version: 3.0.0.Alpha1
Show newest version
/**
 * JBoss, Home of Professional Open Source
 * Copyright 2008, Red Hat Middleware LLC, and individual contributors
 * by the @authors tag. See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * Licensed 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.jboss.weld.environment.servlet.deployment;

import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;

import javax.servlet.ServletContext;

import org.jboss.weld.bootstrap.api.Bootstrap;
import org.jboss.weld.bootstrap.api.ServiceRegistry;
import org.jboss.weld.bootstrap.api.helpers.SimpleServiceRegistry;
import org.jboss.weld.bootstrap.spi.BeanDeploymentArchive;
import org.jboss.weld.bootstrap.spi.BeansXml;
import org.jboss.weld.ejb.spi.EjbDescriptor;
import org.jboss.weld.environment.servlet.util.Reflections;
import org.jboss.weld.environment.servlet.util.Servlets;

/**
 * The means by which Web Beans are discovered on the classpath. This will only
 * discover simple web beans - there is no EJB/Servlet/JPA integration.
 *
 * @author Peter Royle
 * @author Pete Muir
 * @author Ales Justin
 */
public class WebAppBeanDeploymentArchive implements BeanDeploymentArchive {
    public static final String META_INF_BEANS_XML = "META-INF/beans.xml";
    public static final String WEB_INF_BEANS_XML = "/WEB-INF/beans.xml";
    public static final String WEB_INF_CLASSES = "/WEB-INF/classes";

    private final Set classes;
    private final BeansXml beansXml;
    private final ServiceRegistry services;

    public WebAppBeanDeploymentArchive(ServletContext servletContext, Bootstrap bootstrap) {
        this.services = new SimpleServiceRegistry();
        this.classes = new HashSet();
        Set urls = new HashSet();
        URLScanner scanner = createScanner(servletContext);
        scanner.scanResources(new String[]{META_INF_BEANS_XML}, classes, urls);
        try {
            URL beans = servletContext.getResource(WEB_INF_BEANS_XML);
            if (beans != null) {
                urls.add(beans); // this is consistent with how the JBoss weld.deployer works
                File webInfClasses = Servlets.getRealFile(servletContext, WEB_INF_CLASSES);
                if (webInfClasses != null) {
                    File[] files = {webInfClasses};
                    scanner.scanDirectories(files, classes, urls);
                } else {
                    URL url = servletContext.getResource(WEB_INF_CLASSES);
                    if (url != null) {
                        scanner.scanURLs(new URL[]{url}, classes, urls);
                    }
                }
            }
        } catch (MalformedURLException e) {
            throw new IllegalStateException("Error loading resources from servlet context ", e);
        }
        this.beansXml = bootstrap.parse(urls, true);
    }

    protected URLScanner createScanner(ServletContext context) {
        URLScanner scanner = (URLScanner) context.getAttribute(URLScanner.class.getName());
        if (scanner == null) {
            ClassLoader cl = Reflections.getClassLoader();
            scanner = new URLScanner(cl);
        } else {
            // cleanup
            context.removeAttribute(URLScanner.class.getName());
        }
        return scanner;
    }

    public Collection getBeanClasses() {
        return classes;
    }

    public Collection getBeanDeploymentArchives() {
        return Collections.emptySet();
    }

    public BeansXml getBeansXml() {
        return beansXml;
    }

    public Collection> getEjbs() {
        return Collections.emptySet();
    }

    public ServiceRegistry getServices() {
        return services;
    }

    public String getId() {
        // Use "flat" to allow us to continue to use ManagerObjectFactory
        return "flat";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy