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

org.mycore.common.content.transformer.MCRXSL2JAXBTransformer Maven / Gradle / Ivy

There is a newer version: 2024.02
Show newest version
/*
 * This file is part of ***  M y C o R e  ***
 * See http://www.mycore.de/ for details.
 *
 * MyCoRe 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.
 *
 * MyCoRe 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 MyCoRe.  If not, see .
 */

package org.mycore.common.content.transformer;

import java.io.IOException;
import java.util.LinkedList;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.JAXBException;
import javax.xml.bind.util.JAXBResult;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.TransformerConfigurationException;
import javax.xml.transform.sax.TransformerHandler;

import org.mycore.common.config.MCRConfiguration2;
import org.mycore.common.config.MCRConfigurationException;
import org.mycore.common.content.MCRContent;
import org.mycore.common.content.MCRJAXBContent;
import org.mycore.common.xsl.MCRParameterCollector;
import org.xml.sax.SAXException;
import org.xml.sax.XMLReader;

/**
 * Transforms XML content using a static XSL stylesheet.
 * The stylesheet is configured via
 * 
 * MCR.ContentTransformer.{ID}.Stylesheet
 *
 * JAXBContext contextPath is configured via
 * 
 * MCR.ContentTransformer.{ID}.Context
 *
 * @author Thomas Scheffler (yagee)
 * @see JAXBContext#newInstance(String, ClassLoader)
 */
public class MCRXSL2JAXBTransformer extends MCRXSLTransformer {

    private JAXBContext context;

    public MCRXSL2JAXBTransformer() {
        super();
    }

    public MCRXSL2JAXBTransformer(JAXBContext context, String... stylesheets) {
        super(stylesheets);
        this.context = context;
    }

    public MCRXSL2JAXBTransformer(JAXBContext context) {
        super();
        this.context = context;
    }

    @Override
    protected MCRContent getTransformedContent(MCRContent source, XMLReader reader,
        TransformerHandler transformerHandler) throws IOException, SAXException {
        T result;
        try {
            result = getJAXBObject(source, reader, transformerHandler);
        } catch (JAXBException e) {
            throw new IOException(e);
        }
        return new MCRJAXBContent<>(context, result);
    }

    private T getJAXBObject(MCRContent source, XMLReader reader, TransformerHandler transformerHandler)
        throws JAXBException, IOException, SAXException {
        checkContext();
        JAXBResult result = new JAXBResult(context);
        transformerHandler.setResult(result);
        // Parse the source XML, and send the parse events to the
        // TransformerHandler.
        reader.parse(source.getInputSource());
        Object parsedResult = result.getResult();
        if (parsedResult instanceof JAXBElement) {
            @SuppressWarnings("unchecked")
            JAXBElement jaxbElement = (JAXBElement) parsedResult;
            return jaxbElement.getValue();
        }
        @SuppressWarnings("unchecked")
        T jaxbResult = (T) result.getResult();
        return jaxbResult;
    }

    public T getJAXBObject(MCRContent source, MCRParameterCollector parameter)
        throws TransformerConfigurationException, SAXException, JAXBException, IOException,
        ParserConfigurationException {
        LinkedList transformHandlerList = getTransformHandlerList(parameter);
        XMLReader reader = getXMLReader(transformHandlerList);
        TransformerHandler lastTransformerHandler = transformHandlerList.getLast();
        return getJAXBObject(source, reader, lastTransformerHandler);
    }

    public JAXBContext getContext() {
        return context;
    }

    public void setContext(JAXBContext context) {
        this.context = context;
    }

    private void checkContext() {
        if (this.context == null) {
            throw new NullPointerException("No JAXBContext defined!");
        }
    }

    @Override
    public void init(String id) {
        super.init(id);
        String property = "MCR.ContentTransformer." + id + ".Context";
        String contextPath = MCRConfiguration2.getStringOrThrow(property);
        try {
            JAXBContext context = JAXBContext.newInstance(contextPath, getClass().getClassLoader());
            setContext(context);
        } catch (JAXBException e) {
            throw new MCRConfigurationException("Error while creating JAXBContext.", e);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy