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

com.github.eirslett.maven.plugins.frontend.lib.YarnExecutor Maven / Gradle / Ivy

package com.github.eirslett.maven.plugins.frontend.lib;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import org.slf4j.Logger;

final class YarnExecutor {

    private final ProcessExecutor executor;

    public YarnExecutor(YarnExecutorConfig config, List arguments,
        Map additionalEnvironment) {
        final String yarn = config.getYarnPath().getAbsolutePath();
        List localPaths = new ArrayList<>();
        localPaths.add(config.getYarnPath().getParent());
        localPaths.add(config.getNodePath().getParent());
        executor = new ProcessExecutor(config.getWorkingDirectory(), localPaths,
            Utils.prepend(yarn, arguments), config.getPlatform(), additionalEnvironment);
    }

    public String executeAndGetResult(final Logger logger) throws ProcessExecutionException {
        return executor.executeAndGetResult(logger);
    }

    public int executeAndRedirectOutput(final Logger logger) throws ProcessExecutionException {
        return executor.executeAndRedirectOutput(logger);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy