Package org.goobi.production.export

Source Code of org.goobi.production.export.ExportDocket

package org.goobi.production.export;

/**
* This file is part of the Goobi Application - a Workflow tool for the support of mass digitization.
*
* Visit the websites for more information.
*         - http://www.goobi.org
*         - http://launchpad.net/goobi-production
*         - http://gdz.sub.uni-goettingen.de
*       - http://www.intranda.com
*       - http://digiverso.com
*
* This program 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 2 of the License, or (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software Foundation, Inc., 59
* Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions
* of the GNU General Public License cover the whole combination. As a special exception, the copyright holders of this library give you permission to
* link this library 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 library. If you modify this
* library, you may extend this exception to your version of the library, but you are not obliged to do so. If you do not wish to do so, delete this
* exception statement from your version.
*/
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.List;

import javax.xml.transform.Result;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerConfigurationException;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.sax.SAXResult;
import javax.xml.transform.stream.StreamSource;

import org.apache.fop.apps.FOPException;
import org.apache.fop.apps.FOUserAgent;
import org.apache.fop.apps.Fop;
import org.apache.fop.apps.FopFactory;
import org.apache.fop.apps.MimeConstants;
import org.goobi.production.IProcessDataExport;

import de.sub.goobi.beans.Prozess;
import de.sub.goobi.helper.exceptions.ExportFileException;

/**
* This class provides generating a run note based on the generated xml log
*
* @author Steffen Hankiewicz
*/
public class ExportDocket implements IProcessDataExport {

  /**
   * This method exports the production metadata as run note to a given stream. the docket.xsl has to be in the config-folder
   *
   * @param process
   *            the process to export
   * @param os
   *            the OutputStream to write the contents to
   * @throws IOException
   * @throws ExportFileException
   */
  @Override
  public void startExport(Prozess process, OutputStream os, String xsltfile) throws IOException {

    ExportXmlLog exl = new ExportXmlLog();
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    exl.startExport(process, out, null);

    // generate pdf file
    StreamSource source = new StreamSource(new ByteArrayInputStream(out.toByteArray()));
    StreamSource transformSource = new StreamSource(xsltfile);
    FopFactory fopFactory = FopFactory.newInstance();
    FOUserAgent foUserAgent = fopFactory.newFOUserAgent();
    ByteArrayOutputStream outStream = new ByteArrayOutputStream();
    // transform xml
    Transformer xslfoTransformer = getTransformer(transformSource);
    try {
      Fop fop = fopFactory.newFop(MimeConstants.MIME_PDF, foUserAgent, outStream);
      Result res = new SAXResult(fop.getDefaultHandler());
      xslfoTransformer.transform(source, res);
    } catch (FOPException e) {
      throw new IOException("FOPException occurred", e);
    } catch (TransformerException e) {
      throw new IOException("TransformerException occurred", e);
    }

    // write the content to output stream
    byte[] pdfBytes = outStream.toByteArray();
    os.write(pdfBytes);
  }

  public void startExport(List<Prozess> processList, OutputStream os, String xsltfile) throws IOException {

    ExportXmlLog exl = new ExportXmlLog();
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    exl.startExport(processList, out, null);

   
   
    // generate pdf file
    StreamSource source = new StreamSource(new ByteArrayInputStream(out.toByteArray()));
    StreamSource transformSource = new StreamSource(xsltfile);
    FopFactory fopFactory = FopFactory.newInstance();
    ByteArrayOutputStream outStream = new ByteArrayOutputStream();
    // transform xml
    try {
      Transformer xslfoTransformer = TransformerFactory.newInstance().newTransformer(transformSource);
      Fop fop = fopFactory.newFop(MimeConstants.MIME_PDF, outStream);
      Result res = new SAXResult(fop.getDefaultHandler());
      xslfoTransformer.transform(source, res);
    } catch (FOPException e) {
      throw new IOException("FOPException occurred", e);
    } catch (TransformerException e) {
      throw new IOException("TransformerException occurred", e);
    }

    // write the content to output stream
    byte[] pdfBytes = outStream.toByteArray();
    os.write(pdfBytes);
  }

  private static Transformer getTransformer(StreamSource streamSource) {
    // setup the xslt transformer
    net.sf.saxon.TransformerFactoryImpl impl = new net.sf.saxon.TransformerFactoryImpl();
    try {
      return impl.newTransformer(streamSource);
    } catch (TransformerConfigurationException e) {
    }
    return null;
  }


}
TOP

Related Classes of org.goobi.production.export.ExportDocket

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.