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

com.powsybl.computation.GroupCommandImpl Maven / Gradle / Ivy

There is a newer version: 6.6.0
Show newest version
/**
 * Copyright (c) 2016, All partners of the iTesla project (http://www.itesla-project.eu/consortium)
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 * SPDX-License-Identifier: MPL-2.0
 */
package com.powsybl.computation;

import com.google.common.collect.ImmutableList;

import java.util.List;
import java.util.function.Function;

/**
 *
 * @author Geoffroy Jamgotchian {@literal }
 */
class GroupCommandImpl extends AbstractCommand implements GroupCommand {

    private final List subCommands;

    static class SubCommandImpl implements SubCommand {

        private final String program;

        private final Function> args;

        private final int timeout;

        SubCommandImpl(String program, Function> args, int timeout) {
            this.program = program;
            this.args = args;
            this.timeout = timeout;
        }

        @Override
        public String getProgram() {
            return program;
        }

        @Override
        public List getArgs(int executionNumber) {
            return args.apply(executionNumber);
        }

        @Override
        public int getTimeout() {
            return timeout;
        }

        @Override
        public String toString(int executionNumber) {
            return ImmutableList.builder()
                .add(program)
                .addAll(getArgs(executionNumber))
                .build().toString();
        }

    }

    GroupCommandImpl(String id, List subCommands,
                     List inputFiles, List outputFiles) {
        super(id, inputFiles, outputFiles);
        this.subCommands = subCommands;
    }

    @Override
    public List getSubCommands() {
        return subCommands;
    }

    @Override
    public CommandType getType() {
        return CommandType.GROUP;
    }

    @Override
    public String toString(final int executionNumber) {
        return subCommands.stream()
                .map(subCommand -> subCommand.toString(executionNumber))
                .toList()
                .toString();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy