cz.cas.lib.proarc.common.process.KakaduCompress.java Source code

Java tutorial

Introduction

Here is the source code for cz.cas.lib.proarc.common.process.KakaduCompress.java

Source

/*
 * Copyright (C) 2014 Jan Pokorsky
 *
 * 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 3 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, see <http://www.gnu.org/licenses/>.
 */
package cz.cas.lib.proarc.common.process;

import cz.cas.lib.proarc.common.config.AppConfiguration;
import cz.cas.lib.proarc.common.config.AppConfigurationFactory;
import cz.cas.lib.proarc.common.imports.ImportProfile;
import java.io.File;
import java.util.HashMap;
import java.util.List;
import org.apache.commons.configuration.Configuration;

/**
 * Runs kdu_compress. Requires kdu libraries in the environment.
 *
 * @author Jan Pokorsky
 */
public class KakaduCompress extends ExternalProcess {

    public static final String ID = "kdu_compress";
    private final File input;
    private final File output;

    public static void main(String[] args) throws Exception {
        if (args != null && args.length > 2) {
            HashMap<String, String> env = new HashMap<String, String>();
            env.put(AppConfiguration.PROPERTY_APP_HOME, args[0]);
            AppConfiguration conf = AppConfigurationFactory.getInstance().create(env);
            Configuration config = conf.getAuthenticators();
            config = new ImportProfile(config).getNdkArchivalProcessor();
            ExternalProcess ep = new KakaduCompress(config, new File(args[1]), new File(args[2]));
            ep.run();
        }
    }

    public KakaduCompress(Configuration conf, File input, File output) {
        super(conf);
        this.input = input;
        this.output = output;
    }

    @Override
    public void run() {
        if (!input.exists()) {
            throw new IllegalStateException(input.getAbsolutePath() + " not exists!");
        }
        if (output.exists()) {
            throw new IllegalStateException(output.getAbsolutePath() + " exists!");
        }
        super.run();
    }

    @Override
    public boolean isOk() {
        return super.isOk() && output.exists() && output.length() > 0;
    }

    @Override
    protected List<String> buildCmdLine(Configuration conf) {
        String inputFile = input.getAbsolutePath();
        String outputFile = output.getAbsolutePath();
        List<String> cmdLine = super.buildCmdLine(conf);
        cmdLine.add("-i");
        cmdLine.add(inputFile);
        cmdLine.add("-o");
        cmdLine.add(outputFile);
        return cmdLine;
    }

}