
org.fabric3.implementation.web.introspection.WebComponentLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fabric3-web Show documentation
Show all versions of fabric3-web Show documentation
Support for web components
The newest version!
/*
* 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 .
*/
package org.fabric3.implementation.web.introspection;
import java.io.FileNotFoundException;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.util.List;
import java.util.Map;
import javax.xml.stream.Location;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;
import org.oasisopen.sca.annotation.Destroy;
import org.oasisopen.sca.annotation.EagerInit;
import org.oasisopen.sca.annotation.Init;
import org.oasisopen.sca.annotation.Reference;
import org.fabric3.host.stream.Source;
import org.fabric3.host.stream.UrlSource;
import org.fabric3.implementation.web.model.WebImplementation;
import org.fabric3.model.type.component.ComponentType;
import org.fabric3.model.type.component.Property;
import org.fabric3.model.type.component.ReferenceDefinition;
import org.fabric3.spi.introspection.DefaultIntrospectionContext;
import org.fabric3.spi.introspection.IntrospectionContext;
import org.fabric3.spi.introspection.xml.AbstractValidatingTypeLoader;
import org.fabric3.spi.introspection.xml.ElementLoadFailure;
import org.fabric3.spi.introspection.xml.InvalidValue;
import org.fabric3.spi.introspection.xml.LoaderException;
import org.fabric3.spi.introspection.xml.LoaderRegistry;
import org.fabric3.spi.introspection.xml.LoaderUtil;
/**
* Loads
from a composite.
*/
@EagerInit
public class WebComponentLoader extends AbstractValidatingTypeLoader {
private LoaderRegistry registry;
private List introspectors;
public WebComponentLoader(@Reference LoaderRegistry registry) {
this.registry = registry;
addAttributes("uri");
}
@Reference
public void setIntrospectors(List introspectors) {
this.introspectors = introspectors;
}
@Init
public void init() {
registry.registerLoader(WebImplementation.IMPLEMENTATION_WEB, this);
registry.registerLoader(WebImplementation.IMPLEMENTATION_WEBAPP, this);
}
@Destroy
public void destroy() {
registry.unregisterLoader(WebImplementation.IMPLEMENTATION_WEB);
registry.unregisterLoader(WebImplementation.IMPLEMENTATION_WEBAPP);
}
public WebImplementation load(XMLStreamReader reader, IntrospectionContext context) throws XMLStreamException {
Location startLocation = reader.getLocation();
URI uri = parseUri(reader, startLocation, context);
WebImplementation impl = new WebImplementation(uri);
validateAttributes(reader, context, impl);
for (WebImplementationIntrospector introspector : introspectors) {
introspector.introspect(impl, context);
}
try {
ComponentType type = impl.getComponentType();
// FIXME we should allow implementation to specify the component type;
ComponentType componentType = loadComponentType(context);
for (Map.Entry entry : componentType.getReferences().entrySet()) {
type.add(entry.getValue());
}
for (Map.Entry entry : componentType.getProperties().entrySet()) {
type.add(entry.getValue());
}
} catch (LoaderException e) {
if (e.getCause() instanceof FileNotFoundException) {
// ignore since we allow component types not to be specified in the web app
} else {
ElementLoadFailure failure = new ElementLoadFailure("Error loading web.componentType", e, startLocation);
context.addError(failure);
return null;
}
}
LoaderUtil.skipToEndElement(reader);
return impl;
}
private URI parseUri(XMLStreamReader reader, Location location, IntrospectionContext context) {
URI uri = null;
String uriStr = reader.getAttributeValue(null, "uri");
if (uriStr != null) {
if (uriStr.length() < 1) {
InvalidValue failure = new InvalidValue("Web component URI must specify a value", location);
context.addError(failure);
} else {
try {
uri = new URI(uriStr);
} catch (URISyntaxException e) {
InvalidValue failure = new InvalidValue("Web component URI is not a valid: " + uri, location);
context.addError(failure);
}
}
}
return uri;
}
private ComponentType loadComponentType(IntrospectionContext context) throws LoaderException {
URL url;
try {
url = new URL(context.getSourceBase(), "web.componentType");
} catch (MalformedURLException e) {
// this should not happen
throw new LoaderException(e.getMessage(), e);
}
Source source = new UrlSource(url);
IntrospectionContext childContext = new DefaultIntrospectionContext(null, context.getClassLoader(), url);
ComponentType componentType = registry.load(source, ComponentType.class, childContext);
if (childContext.hasErrors()) {
context.addErrors(childContext.getErrors());
}
if (childContext.hasWarnings()) {
context.addWarnings(childContext.getWarnings());
}
return componentType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy