Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2009 the original author or authors.
*
* 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.openehealth.ipf.commons.xml;
import lombok.Getter;
import lombok.Setter;
import net.sf.saxon.lib.StandardURIResolver;
import org.openehealth.ipf.commons.core.modules.api.Transmogrifier;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.xml.transform.*;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
/**
* Xslt Processor transforming a {@link Source} into an object of type T. The stylesheet to be used is passed with the
* {@link #zap(Source, Object...)} call, however, the Xslt Template object is cached for subsequent transformations
* using this stylesheet.
*
* Xslt parameters can be passed in as Map parameter.
*
* Note: This class is thread-safe and reentrant.
*
* @author Christian Ohr
*/
public class XsltTransmogrifier extends AbstractCachingXmlProcessor implements Transmogrifier {
private static final Logger log = LoggerFactory.getLogger(XsltTransmogrifier.class);
private static final ConcurrentMap> XSLT_CACHE = new ConcurrentHashMap<>();
@Getter @Setter private Map staticParams;
private final TransformerFactory factory;
private final URIResolver resolver;
private final Class outputFormat;
@SuppressWarnings("unchecked")
public XsltTransmogrifier() {
this((Class) String.class, null, null);
}
public XsltTransmogrifier(Class outputFormat) {
this(outputFormat, null, null);
}
public XsltTransmogrifier(Class outputFormat, ClassLoader classLoader) {
this(outputFormat, classLoader, null);
}
public XsltTransmogrifier(Class outputFormat, Map staticParams) {
this(outputFormat, null, staticParams);
}
public TransformerFactory getFactory() {
return factory;
}
@Override
protected ConcurrentMap> getCache() {
return XSLT_CACHE;
}
/**
* @param outputFormat
* currently supported: String, Writer, OutputStream
* @param classLoader
* class loader for resource retrieval, may be null
* @param staticParams
* static Xslt parameters
*/
public XsltTransmogrifier(
Class outputFormat,
ClassLoader classLoader,
Map staticParams)
{
super(classLoader);
factory = TransformerFactory.newInstance();
// Wrap the default resolver if available
if (factory.getURIResolver() != null) {
resolver = new ClasspathUriResolver(factory.getURIResolver());
} else {
resolver = new ClasspathUriResolver(new StandardURIResolver());
}
factory.setURIResolver(resolver);
this.outputFormat = outputFormat;
this.staticParams = staticParams;
}
/**
* Converts a Source into a Result using a XSL processor.
*
* The XSL stylesheet resource location is mandatory in the first extra parameter.
* XSL Parameters may be passed as a Map in the second parameter.
*
* @see Transmogrifier#zap(java.lang.Object, java.lang.Object[])
*/
@Override
public T zap(Source source, Object... params) {
var accessor = ResultHolderFactory.create(outputFormat);
if (accessor == null) throw new IllegalArgumentException("Format " + outputFormat + " is not supported");
var result = accessor.createResult();
doZap(source, result, params);
return accessor.getResult();
}
private void doZap(Source source, Result result, Object... params) {
if (params.length == 0) {
throw new IllegalArgumentException("Expected XSL location in first parameter");
}
try {
var template = resource(params);
var transformer = template.newTransformer();
transformer.setURIResolver(resolver);
setXsltParameters(transformer, staticParams);
setXsltParameters(transformer, resourceParameters(params));
transformer.transform(source, result);
} catch (Exception e) {
throw new RuntimeException("XSLT processing failed", e);
}
}
/**
* Sets the parameter to the {@link Transformer} object
*/
protected void setXsltParameters(Transformer transformer, Map param) {
if (param == null) {
return;
}
for (var entry : param.entrySet()) {
log.debug("Add new parameter for transformer: {}", entry.getKey());
transformer.setParameter(entry.getKey(), entry.getValue());
}
}
@Override
protected Templates createResource(Object... params) {
try {
return factory.newTemplates(resourceContent(params));
} catch (TransformerConfigurationException e) {
throw new IllegalArgumentException("Could not initialize XSLT template", e);
}
}
}