org.structr.media.ConverterProcess.java Source code

Java tutorial

Introduction

Here is the source code for org.structr.media.ConverterProcess.java

Source

/**
 * Copyright (C) 2010-2018 Structr GmbH
 *
 * This file is part of Structr <http://structr.org>.
 *
 * Structr is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * Structr 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with Structr.  If not, see <http://www.gnu.org/licenses/>.
 */
package org.structr.media;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.StandardCopyOption;
import org.apache.commons.lang.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.structr.api.config.Settings;
import org.structr.common.SecurityContext;
import org.structr.common.error.FrameworkException;
import org.structr.core.app.App;
import org.structr.core.app.StructrApp;
import org.structr.core.graph.Tx;
import org.structr.util.AbstractProcess;
import org.structr.web.common.FileHelper;

/**
 * A video converter process that calls a predefined script with a given
 * set of parameters. The script(s) can be declared in the structr.conf
 * configuration file. Each script represents a single conversion
 * process. The script must take two parameters: the input file name
 * on disk and the output file name on disk, e.g.
 *
 * transcode.sh [input] [output]
 *
 *
 */

public class ConverterProcess extends AbstractProcess<VideoFile> {

    private static final Logger logger = LoggerFactory.getLogger(ConverterProcess.class.getName());

    private VideoFile newFile = null;
    private VideoFile inputFile = null;
    private String outputFileName = null;
    private String scriptName = null;
    private String fileExtension = null;

    public ConverterProcess(final SecurityContext securityContext, final VideoFile inputFile,
            final String outputFileName, final String scriptName) {

        super(securityContext);

        this.inputFile = inputFile;
        this.outputFileName = outputFileName;
        this.scriptName = scriptName;
        this.fileExtension = ".tmp-" + System.currentTimeMillis();
    }

    @Override
    public void preprocess() {

        try (final Tx tx = StructrApp.getInstance(securityContext).tx()) {

            // create an empty file to store the converted video
            newFile = FileHelper.createFile(securityContext, new byte[0], null, VideoFile.class, outputFileName);

            // obtain destination path of new file
            outputFileName = newFile.getFileOnDisk().getAbsolutePath();

            tx.success();

        } catch (FrameworkException | IOException fex) {
            logger.warn("", fex);
        }
    }

    @Override
    public StringBuilder getCommandLine() {

        final String scriptNameFromConfig = Settings.getOrCreateStringSetting("VideoFile", scriptName).getValue();
        if (StringUtils.isNotBlank(scriptNameFromConfig)) {

            final StringBuilder commandLine = new StringBuilder(scriptNameFromConfig);

            // build command line from builder options
            commandLine.append(" ");
            commandLine.append(inputFile.getDiskFilePath(securityContext));
            commandLine.append(" ");
            commandLine.append(outputFileName);
            commandLine.append(fileExtension);

            return commandLine;

        } else {

            logger.warn("No VideoFile.{} registered in structr.conf.", scriptName);
        }

        return null;
    }

    @Override
    public VideoFile processExited(int exitCode) {

        final App app = StructrApp.getInstance(securityContext);

        if (exitCode == 0) {

            try (final Tx tx = app.tx()) {

                // move converted file into place
                final java.io.File diskFile = new java.io.File(outputFileName + fileExtension);
                final java.io.File dstFile = new java.io.File(outputFileName);
                if (diskFile.exists()) {

                    Files.move(diskFile.toPath(), dstFile.toPath(), StandardCopyOption.REPLACE_EXISTING);
                    FileHelper.updateMetadata(newFile);

                    // create link between the two videos
                    newFile.setProperty(StructrApp.key(VideoFile.class, "originalVideo"), inputFile);
                }

                tx.success();

            } catch (FrameworkException | IOException fex) {
                logger.warn("", fex);
            }

        } else {

            // delete file, conversion has failed
            try (final Tx tx = app.tx()) {

                app.delete(newFile);
                tx.success();

            } catch (FrameworkException fex) {
                logger.warn("", fex);
            }

        }

        return newFile;
    }
}