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

org.fabric3.introspection.xml.LoaderRegistryImpl Maven / Gradle / Ivy

/*
 * Fabric3
 * Copyright (c) 2009-2013 Metaform Systems
 *
 * Fabric3 is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, either version 3 of
 * the License, or (at your option) any later version, with the
 * following exception:
 *
 * Linking this software statically or dynamically with other
 * modules is making a combined work based on this software.
 * Thus, the terms and conditions of the GNU General Public
 * License cover the whole combination.
 *
 * As a special exception, the copyright holders of this software
 * give you permission to link this software with independent
 * modules to produce an executable, regardless of the license
 * terms of these independent modules, and to copy and distribute
 * the resulting executable under terms of your choice, provided
 * that you also meet, for each linked independent module, the
 * terms and conditions of the license of that module. An
 * independent module is a module which is not derived from or
 * based on this software. If you modify this software, you may
 * extend this exception to your version of the software, but
 * you are not obligated to do so. If you do not wish to do so,
 * delete this exception statement from your version.
 *
 * Fabric3 is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty
 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU General Public License for more details.
 *
 * You should have received a copy of the
 * GNU General Public License along with Fabric3.
 * If not, see .
 *
 * ----------------------------------------------------
 *
 * Portions originally based on Apache Tuscany 2007
 * licensed under the Apache 2.0 license.
 *
 */
package org.fabric3.introspection.xml;

import javax.xml.namespace.QName;
import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.HashMap;
import java.util.Map;

import org.fabric3.host.stream.Source;
import org.fabric3.spi.introspection.IntrospectionContext;
import org.fabric3.spi.introspection.xml.LoaderException;
import org.fabric3.spi.introspection.xml.LoaderRegistry;
import org.fabric3.spi.introspection.xml.TypeLoader;
import org.fabric3.spi.introspection.xml.UnrecognizedElement;
import org.fabric3.spi.xml.XMLFactory;
import org.oasisopen.sca.annotation.EagerInit;
import org.oasisopen.sca.annotation.Reference;

/**
 * The default implementation of a loader registry
 */
@EagerInit
public class LoaderRegistryImpl implements LoaderRegistry {
    private final XMLInputFactory xmlFactory;
    private Map> mappedLoaders = new HashMap>();
    private final Map> loaders = new HashMap>();

    public LoaderRegistryImpl(@Reference XMLFactory factory) {
        this.xmlFactory = factory.newInputFactoryInstance();
    }

    @Reference(required = false)
    public void setLoaders(Map> mappedLoaders) {
        this.mappedLoaders = mappedLoaders;
    }

    public void registerLoader(QName element, TypeLoader loader) {
        if (loaders.containsKey(element)) {
            throw new IllegalStateException("Loader already registered for " + element);
        }
        loaders.put(element, loader);
    }

    public void unregisterLoader(QName element) {
        loaders.remove(element);
    }

    public boolean isRegistered(QName element) {
        return mappedLoaders.containsKey(element) || loaders.containsKey(element);
    }

    public  O load(XMLStreamReader reader, Class type, IntrospectionContext introspectionContext) throws XMLStreamException {
        QName name = reader.getName();
        TypeLoader loader = loaders.get(name);
        if (loader == null) {
            loader = mappedLoaders.get(name);
        }
        if (loader == null) {
            UnrecognizedElement failure = new UnrecognizedElement(reader, reader.getLocation());
            introspectionContext.addError(failure);
            return null;
        }
        return type.cast(loader.load(reader, introspectionContext));
    }

    public  O load(Source source, Class type, IntrospectionContext ctx) throws LoaderException {
        String id = source.getSystemId();
        InputStream stream;
        try {
            stream = source.openStream();
        } catch (IOException e) {
            throw new LoaderException("Invalid source: " + id, e);
        }
        try {
            try {
                return load(id, stream, type, ctx);
            } catch (XMLStreamException e) {
                throw new LoaderException("Invalid source: " + id, e);
            }
        } finally {
            try {
                stream.close();
            } catch (IOException e) {
                // ignore
            }
        }
    }

    private  O load(String id, InputStream stream, Class type, IntrospectionContext ctx) throws XMLStreamException {
        XMLStreamReader reader;
        // if the id is a URL, use it as the system id
        if (isURL(id)) {
            reader = xmlFactory.createXMLStreamReader(id, stream);
        } else {
            reader = xmlFactory.createXMLStreamReader(stream);
        }

        try {
            reader.nextTag();
            return load(reader, type, ctx);
        } finally {
            if (reader != null) {
                try {
                    reader.close();
                } catch (XMLStreamException e) {
                    // ignore
                }
            }
        }
    }

    /**
     * Tests to see if a string can be parsed as a URL
     *
     * @param path the string as a path
     * @return true if the string can be parsed as a URL
     */
    private boolean isURL(String path) {
        try {
            new URL(path);
            return true;
        } catch (MalformedURLException ex) {
            return false;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy