org.milyn.javabean.dynamic.resolvers.AbstractResolver Maven / Gradle / Ivy
/*
Milyn - Copyright (C) 2006 - 2010
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License (version 2.1) as published by the Free Software
Foundation.
This library 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 Lesser General Public License for more details:
http://www.gnu.org/licenses/lgpl.txt
*/
package org.milyn.javabean.dynamic.resolvers;
import java.io.InputStream;
import java.util.List;
import java.util.Properties;
import org.milyn.javabean.dynamic.Descriptor;
import org.milyn.util.ClassUtil;
import org.xml.sax.EntityResolver;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
/**
* Abstract descriptor resource resolver.
*
* @author [email protected]
*/
public abstract class AbstractResolver implements EntityResolver {
private List descriptors;
private ClassLoader classLoader = AbstractResolver.class.getClassLoader();
protected AbstractResolver(List descriptors) {
this.descriptors = descriptors;
}
protected List getDescriptors() {
return descriptors;
}
public ClassLoader getClassLoader() {
return classLoader;
}
public void setClassLoader(ClassLoader classLoader) {
this.classLoader = classLoader;
}
protected InputSource resolveSchemaLocation(String systemId) throws SAXException {
String namespaceId = Descriptor.getNamespaceId(systemId, descriptors);
if(namespaceId != null) {
String schemaLocation = Descriptor.getSchemaLocation(namespaceId, descriptors);
if(schemaLocation == null) {
throw new SAXException("Failed to resolve schemaLocation for namespace '" + systemId + "'.");
}
InputStream stream = ClassUtil.getResourceAsStream(schemaLocation, classLoader);
if(stream == null) {
throw new SAXException("schemaLocation '" + schemaLocation + "' for namespace '" + systemId + "' does not resolve to a Classpath resource.");
}
return new InputSource(stream);
} else {
return null;
}
}
protected InputSource resolveBindingConfigLocation(String systemId) throws SAXException {
String namespaceId = Descriptor.getNamespaceId(systemId, descriptors);
if(namespaceId != null) {
String bindingConfigLocation = Descriptor.getBindingConfigLocation(namespaceId, descriptors);
if(bindingConfigLocation == null) {
throw new SAXException("Failed to resolve bindingConfigLocation for namespace '" + systemId + "'.");
}
InputStream stream = ClassUtil.getResourceAsStream(bindingConfigLocation, classLoader);
if(stream == null) {
throw new SAXException("bindingConfigLocation '" + bindingConfigLocation + "' for namespace '" + systemId + "' does not resolve to a Classpath resource.");
}
return new InputSource(stream);
} else {
return null;
}
}
}