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

org.bidib.wizard.common.script.node.FeatureSetCommand Maven / Gradle / Ivy

package org.bidib.wizard.common.script.node;

import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import org.apache.commons.collections4.CollectionUtils;
import org.bidib.wizard.api.context.ApplicationContext;
import org.bidib.wizard.api.model.NodeInterface;
import org.bidib.wizard.api.service.console.ConsoleService;
import org.bidib.wizard.common.script.AbstractScriptCommand;
import org.bidib.wizard.common.script.DefaultScriptContext;
import org.bidib.wizard.common.script.ScriptExecutionException;
import org.bidib.wizard.common.script.ScriptUtils;
import org.bidib.wizard.common.script.node.types.FeatureType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * The set feature command.
 */
public class FeatureSetCommand extends AbstractScriptCommand {
    private static final Logger LOGGER = LoggerFactory.getLogger(FeatureSetCommand.class);

    public static final String KEY = "featureSet";

    public static final String HELP =
        CODE_BLOCK_START + KEY
            + prepareHelpHtml(
                " [--V:P] [--all] = [= ...]")
            + DIV_END;

    private int[] vidPid;

    private boolean processAllNodes;

    private List features;

    public FeatureSetCommand(final ConsoleService consoleService) {
        super(consoleService, KEY, HELP);
        this.features = new LinkedList<>();
    }

    @Override
    public void parse(String commandLine) {
        try (Scanner scanner = new Scanner(commandLine)) {
            if (!getKey().equals(scanner.next())) {
                LOGGER.info("Invalid command is scanned, key does not match.");
                throw new IllegalArgumentException("Invalid command is scanned, key does not match.");
            }

            line = commandLine.trim();

            String arguments = line.substring(KEY.length() + 1);

            try {
                vidPid = ScriptUtils.scanVidPid(scanner, true);
                if (vidPid != null) {
                    LOGGER.info("Current vidPid: {}:{}", vidPid[0], vidPid[1]);
                }
            }
            catch (IllegalArgumentException ex) {
                LOGGER.info("Parse VID/PID failed.", ex);
                throw new IllegalArgumentException("Parse VID/PID failed.\n" + getHelpHtml());
            }

            if (arguments.indexOf("--all") > -1) {
                LOGGER.info("Process all nodes is activated.");
                processAllNodes = true;
            }

            Pattern pattern = Pattern.compile("\\d+=\\d+");
            Matcher matcher = pattern.matcher(arguments);
            while (matcher.find()) {
                String featurePair = matcher.group();

                String[] values = featurePair.split("=");

                features.add(new FeatureType(Integer.parseInt(values[0]), Integer.parseInt(values[1])));
            }
        }

        LOGGER.info("Parsed command, features: {}", features);
    }

    public List getFeatures() {
        return Collections.unmodifiableList(features);
    }

    @Override
    protected void internalExecute(final T scripting, final ApplicationContext context) {
        LOGGER.info("Set the features: {}", features);

        final List nodes = new LinkedList<>();

        if (vidPid != null) {
            List currentNodes = scripting.getNodesByVidAndPid(vidPid[0], vidPid[1]);
            if (CollectionUtils.isNotEmpty(currentNodes)) {
                if (processAllNodes) {
                    nodes.addAll(currentNodes);
                }
                else {
                    nodes.add(currentNodes.get(0));
                }
            }
            else {
                addError(context, "No matching node with provided VID/PID found.");
                return;
            }
        }
        else {
            NodeInterface node = context.get(DefaultScriptContext.KEY_SELECTED_NODE, NodeInterface.class);
            LOGGER.info("Fetched the registered selected node: {}", node);
            nodes.add(node);
        }

        if (CollectionUtils.isEmpty(nodes)) {
            LOGGER.warn("No node selected and registered in context. Skip set features.");
            throw new ScriptExecutionException("No registered node in execution context.", this);
        }

        for (NodeInterface node : nodes) {
            scripting.setFeature(node.getUniqueId(), features.toArray(new FeatureType[0]));
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy