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

org.jboss.weld.xml.BeansXmlParser 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, Inc., 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.xml;

import org.jboss.weld.bootstrap.spi.BeansXml;
import org.jboss.weld.bootstrap.spi.Filter;
import org.jboss.weld.bootstrap.spi.Metadata;
import org.jboss.weld.exceptions.IllegalStateException;
import org.jboss.weld.metadata.BeansXmlImpl;
import org.jboss.weld.metadata.ScanningImpl;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import org.xml.sax.SAXNotRecognizedException;
import org.xml.sax.SAXNotSupportedException;

import javax.enterprise.inject.spi.BeanManager;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.ArrayList;
import java.util.List;

import static org.jboss.weld.bootstrap.spi.BeansXml.EMPTY_BEANS_XML;
import static org.jboss.weld.logging.messages.XmlMessage.CONFIGURATION_ERROR;
import static org.jboss.weld.logging.messages.XmlMessage.LOAD_ERROR;
import static org.jboss.weld.logging.messages.XmlMessage.PARSING_ERROR;

/**
 * Simple parser for beans.xml
 * 

* This class is NOT threadsafe, and should only be called in a single thread * * @author Pete Muir * @author Ales Justin */ public class BeansXmlParser { private static final InputSource[] EMPTY_INPUT_SOURCE_ARRAY = new InputSource[0]; private static boolean disableValidating; static { try { disableValidating = AccessController.doPrivileged(new PrivilegedAction() { public Boolean run() { return Boolean.getBoolean("org.jboss.weld.xml.disableValidating"); } }); } catch (Throwable ignored) { } } public BeansXml parse(final URL beansXml) { SAXParserFactory factory = SAXParserFactory.newInstance(); factory.setValidating(disableValidating == false); factory.setNamespaceAware(true); if (beansXml == null) { throw new IllegalStateException(LOAD_ERROR, "unknown"); } SAXParser parser; try { parser = factory.newSAXParser(); } catch (SAXException e) { throw new IllegalStateException(CONFIGURATION_ERROR, e); } catch (ParserConfigurationException e) { throw new IllegalStateException(CONFIGURATION_ERROR, e); } InputStream beansXmlInputStream = null; try { beansXmlInputStream = beansXml.openStream(); InputSource source = new InputSource(beansXmlInputStream); if (source.getByteStream().available() == 0) { // The file is just acting as a marker file return EMPTY_BEANS_XML; } BeansXmlHandler handler = new BeansXmlHandler(beansXml); try { parser.setProperty("http://java.sun.com/xml/jaxp/properties/schemaLanguage", "http://www.w3.org/2001/XMLSchema"); parser.setProperty("http://java.sun.com/xml/jaxp/properties/schemaSource", loadXsds()); } catch (IllegalArgumentException e) { // No op, we just don't validate the XML } catch (SAXNotRecognizedException e) { // No op, we just don't validate the XML } catch (SAXNotSupportedException e) { // No op, we just don't validate the XML } parser.parse(source, handler); return handler.createBeansXml(); } catch (IOException e) { throw new IllegalStateException(LOAD_ERROR, e, beansXml); } catch (SAXException e) { throw new IllegalStateException(PARSING_ERROR, beansXml, e); } finally { if (beansXmlInputStream != null) { try { beansXmlInputStream.close(); } catch (IOException e) { throw new IllegalStateException(e); } } } } public BeansXml parse(Iterable urls) { return parse(urls, false); } public BeansXml parse(Iterable urls, boolean removeDuplicates) { List> alternativeStereotypes = new ArrayList>(); List> alternativeClasses = new ArrayList>(); List> decorators = new ArrayList>(); List> interceptors = new ArrayList>(); List> includes = new ArrayList>(); List> excludes = new ArrayList>(); for (URL url : urls) { BeansXml beansXml = parse(url); addTo(alternativeStereotypes, beansXml.getEnabledAlternativeStereotypes(), removeDuplicates); addTo(alternativeClasses, beansXml.getEnabledAlternativeClasses(), removeDuplicates); addTo(decorators, beansXml.getEnabledDecorators(), removeDuplicates); addTo(interceptors, beansXml.getEnabledInterceptors(), removeDuplicates); includes.addAll(beansXml.getScanning().getIncludes()); excludes.addAll(beansXml.getScanning().getExcludes()); } return new BeansXmlImpl(alternativeClasses, alternativeStereotypes, decorators, interceptors, new ScanningImpl(includes, excludes)); } private void addTo(List> list, List> listToAdd, boolean removeDuplicates) { if (removeDuplicates) { List> filteredListToAdd = new ArrayList>(listToAdd.size()); for (Metadata metadata : listToAdd) { if (!alreadyAdded(metadata, list)) { filteredListToAdd.add(metadata); } } listToAdd = filteredListToAdd; } list.addAll(listToAdd); } private boolean alreadyAdded(Metadata metadata, List> list) { for (Metadata existing : list) { if (existing.getValue().equals(metadata.getValue())) { return true; } } return false; } private static InputSource[] loadXsds() { List xsds = new ArrayList(); // The Weld xsd InputSource weldXsd = loadXsd("beans_1_1.xsd", BeansXmlParser.class.getClassLoader()); // The CDI Xsd InputSource cdiXsd = loadXsd("beans_1_0.xsd", BeanManager.class.getClassLoader()); if (weldXsd != null) { xsds.add(weldXsd); } if (cdiXsd != null) { xsds.add(cdiXsd); } return xsds.toArray(EMPTY_INPUT_SOURCE_ARRAY); } private static InputSource loadXsd(String name, ClassLoader classLoader) { InputStream in = classLoader.getResourceAsStream(name); if (in == null) { return null; } else { return new InputSource(in); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy