
org.sca4j.loader.composite.IncludeLoader Maven / Gradle / Ivy
/**
* SCA4J
* Copyright (c) 2009 - 2099 Service Symphony Ltd
*
* Licensed to you under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. A copy of the license
* is included in this distrubtion or you may obtain a copy at
*
* http://www.opensource.org/licenses/apache2.0.php
*
* 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.
*
* This project contains code licensed from the Apache Software Foundation under
* the Apache License, Version 2.0 and original code from project contributors.
*
*
* Original Codehaus Header
*
* Copyright (c) 2007 - 2008 fabric3 project contributors
*
* Licensed to you under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. A copy of the license
* is included in this distrubtion or you may obtain a copy at
*
* http://www.opensource.org/licenses/apache2.0.php
*
* 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.
*
* This project contains code licensed from the Apache Software Foundation under
* the Apache License, Version 2.0 and original code from project contributors.
*
* Original Apache Header
*
* Copyright (c) 2005 - 2006 The Apache Software Foundation
*
* Apache Tuscany is an effort undergoing incubation at The Apache Software
* Foundation (ASF), sponsored by the Apache Web Services PMC. Incubation is
* required of all newly accepted projects until a further review indicates that
* the infrastructure, communications, and decision making process have stabilized
* in a manner consistent with other successful ASF projects. While incubation
* status is not necessarily a reflection of the completeness or stability of the
* code, it does indicate that the project has yet to be fully endorsed by the ASF.
*
* This product includes software developed by
* The Apache Software Foundation (http://www.apache.org/).
*/
/*
* 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.sca4j.loader.composite;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URL;
import java.util.HashMap;
import java.util.Map;
import javax.xml.namespace.QName;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;
import org.oasisopen.sca.annotation.Reference;
import org.sca4j.introspection.DefaultIntrospectionContext;
import org.sca4j.introspection.IntrospectionContext;
import org.sca4j.introspection.xml.ElementLoadFailure;
import org.sca4j.introspection.xml.InvalidValue;
import org.sca4j.introspection.xml.Loader;
import org.sca4j.introspection.xml.LoaderException;
import org.sca4j.introspection.xml.LoaderUtil;
import org.sca4j.introspection.xml.MissingAttribute;
import org.sca4j.introspection.xml.TypeLoader;
import org.sca4j.introspection.xml.UnrecognizedAttribute;
import org.sca4j.scdl.Composite;
import org.sca4j.scdl.Include;
import org.sca4j.spi.services.contribution.CompositeResourceElement;
import org.sca4j.spi.services.contribution.MetaDataStore;
import org.sca4j.spi.services.contribution.MetaDataStoreException;
/**
* Loader that handles <include> elements.
*
* @version $Rev: 5134 $ $Date: 2008-08-02 07:33:02 +0100 (Sat, 02 Aug 2008) $
*/
public class IncludeLoader implements TypeLoader {
private static final Map ATTRIBUTES = new HashMap();
static {
ATTRIBUTES.put("name", "name");
ATTRIBUTES.put("scdlLocation", "scdlLocation");
ATTRIBUTES.put("scdlResource", "scdlResource");
ATTRIBUTES.put("requires", "requires");
}
private final Loader loader;
private MetaDataStore store;
public IncludeLoader(@Reference Loader loader, @Reference(required = false)MetaDataStore store) {
this.loader = loader;
this.store = store;
}
public Include load(XMLStreamReader reader, IntrospectionContext context) throws XMLStreamException {
validateAttributes(reader, context);
String nameAttr = reader.getAttributeValue(null, "name");
if (nameAttr == null || nameAttr.length() == 0) {
MissingAttribute failure = new MissingAttribute("Missing name attribute", "name", reader);
context.addError(failure);
return null;
}
QName name = LoaderUtil.getQName(nameAttr, context.getTargetNamespace(), reader.getNamespaceContext());
String scdlLocation = reader.getAttributeValue(null, "scdlLocation");
String scdlResource = reader.getAttributeValue(null, "scdlResource");
LoaderUtil.skipToEndElement(reader);
ClassLoader cl = context.getTargetClassLoader();
URI contributionUri = context.getContributionUri();
URL url;
if (scdlLocation != null) {
try {
url = new URL(context.getSourceBase(), scdlLocation);
return loadFromSideFile(name, cl, contributionUri, url, reader, context);
} catch (MalformedURLException e) {
MissingComposite failure = new MissingComposite("Error parsing composite url: " + scdlResource, scdlResource, reader);
context.addError(failure);
return null;
}
} else if (scdlResource != null) {
url = cl.getResource(scdlResource);
if (url == null) {
MissingComposite failure = new MissingComposite("Composite file not found: " + scdlResource, scdlResource, reader);
context.addError(failure);
return null;
}
return loadFromSideFile(name, cl, contributionUri, url, reader, context);
} else {
if (store == null) {
// throw error as this is invalid in a bootstrap environment
throw new UnsupportedOperationException("scdlLocation or scdlResource must be supplied as no MetaDataStore is available");
}
try {
CompositeResourceElement element = store.resolve(contributionUri, CompositeResourceElement.class, name, context);
if (element == null) {
String id = name.toString();
MissingComposite failure = new MissingComposite("Composite file not found: " + id, id, reader);
context.addError(failure);
return null;
}
Composite composite = element.getComposite();
Include include = new Include();
include.setName(name);
include.setIncluded(composite);
return include;
} catch (MetaDataStoreException e) {
ElementLoadFailure failure = new ElementLoadFailure("Error loading element", e, reader);
context.addError(failure);
return null;
}
}
}
private Include loadFromSideFile(QName name, ClassLoader cl, URI contributionUri, URL url, XMLStreamReader reader, IntrospectionContext context) {
Include include = new Include();
IntrospectionContext childContext = new DefaultIntrospectionContext(cl, contributionUri, url);
Composite composite;
try {
composite = loader.load(url, Composite.class, childContext);
} catch (LoaderException e) {
InvalidValue failure = new InvalidValue("Error loading include", null, reader);
context.addError(failure);
return include;
}
if (childContext.hasErrors()) {
context.addErrors(childContext.getErrors());
}
if (childContext.hasWarnings()) {
context.addWarnings(childContext.getWarnings());
}
include.setName(name);
include.setScdlLocation(url);
include.setIncluded(composite);
return include;
}
private void validateAttributes(XMLStreamReader reader, IntrospectionContext context) {
for (int i = 0; i < reader.getAttributeCount(); i++) {
String name = reader.getAttributeLocalName(i);
if (!ATTRIBUTES.containsKey(name)) {
context.addError(new UnrecognizedAttribute(name, reader));
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy