/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2009, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * 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. */ package org.geotoolkit.wps.converters.outputs.references; import org.apache.sis.util.UnconvertibleObjectException; import org.geotoolkit.nio.IOUtilities; import org.geotoolkit.wps.io.WPSIO; import org.geotoolkit.wps.xml.Reference; import org.geotoolkit.wps.xml.WPSXmlFactory; import java.io.File; import java.io.IOException; import java.nio.file.Path; import java.nio.file.Paths; import java.util.Map; /** * * @author Quentin Boileau (Geomatys). */ public class FileToReferenceConverter extends AbstractReferenceOutputConverter<File> { private static FileToReferenceConverter INSTANCE; private FileToReferenceConverter(){ } public static synchronized FileToReferenceConverter getInstance(){ if(INSTANCE == null){ INSTANCE = new FileToReferenceConverter(); } return INSTANCE; } @Override public Class<File> getSourceClass() { return File.class; } @Override public Reference convert(File source, Map<String, Object> params) throws UnconvertibleObjectException { if (params.get(TMP_DIR_PATH) == null) { throw new UnconvertibleObjectException("The output directory should be defined."); } if (source == null) { throw new UnconvertibleObjectException("The output data should be defined."); } final WPSIO.IOType ioType = WPSIO.IOType.valueOf((String) params.get(IOTYPE)); String wpsVersion = (String) params.get(WPSVERSION); if (wpsVersion == null) { LOGGER.warning("No WPS version set using default 1.0.0"); wpsVersion = "1.0.0"; } Reference reference = WPSXmlFactory.buildInOutReference(wpsVersion, ioType); reference.setMimeType((String) params.get(MIME)); reference.setEncoding((String) params.get(ENCODING)); reference.setSchema((String) params.get(SCHEMA)); final Path targetDirectory = Paths.get((String) params.get(TMP_DIR_PATH)); try { final Path target = targetDirectory.resolve(source.getName()); if(source.getAbsolutePath().startsWith((String) params.get(TMP_DIR_PATH))) { reference.setHref(source.getAbsolutePath().replace((String) params.get(TMP_DIR_PATH), (String) params.get(TMP_DIR_URL))); } else { IOUtilities.copy(source.toPath(),target); reference.setHref((String) params.get(TMP_DIR_URL) + "/" +source.getName()); } } catch (IOException ex) { throw new UnconvertibleObjectException("Error during moving file to output directory.", ex); } return reference; } }