org.bidib.wizard.common.script.node.CvGetAssertEqualsCommand Maven / Gradle / Ivy
package org.bidib.wizard.common.script.node;
import java.util.ArrayList;
import java.util.Collections;
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.jbidibc.core.node.ConfigurationVariable;
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.CvType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* The get CV and assertEquals value command.
*/
public class CvGetAssertEqualsCommand extends AbstractScriptCommand {
private static final Logger LOGGER = LoggerFactory.getLogger(CvGetAssertEqualsCommand.class);
public static final String KEY = "cvGetAssertEquals";
public static final String HELP =
CODE_BLOCK_START + KEY + prepareHelpHtml(" [--V:P] [--all] = [= ...]")
+ DIV_END + prepareHelpHtml("\nGet the CV value(s) and compare the read values with the provided values.");
private int[] vidPid;
private boolean processAllNodes;
private final List cvValues;
public CvGetAssertEqualsCommand(final ConsoleService consoleService) {
super(consoleService, KEY, HELP);
this.cvValues = new ArrayList<>();
}
@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("\\w+=\\w+");
Matcher matcher = pattern.matcher(arguments);
while (matcher.find()) {
String cvPair = matcher.group();
String[] values = cvPair.split("=");
cvValues.add(new CvType(values[0], values[1]));
}
}
LOGGER.info("Parsed command, cvValues: {}", cvValues);
}
public List getCvValues() {
return Collections.unmodifiableList(cvValues);
}
public int[] getVidPid() {
return vidPid;
}
public boolean isProcessAllNodes() {
return processAllNodes;
}
@Override
protected void internalExecute(final T scripting, final ApplicationContext context) {
LOGGER.info("Get the cv values: {}", cvValues);
final List nodes = new ArrayList<>();
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 CV values.");
throw new ScriptExecutionException("No registered node in execution context.", this);
}
final List cvTypes = cvValues;
boolean errorDetected = false;
for (NodeInterface node : nodes) {
final List cvReadList =
scripting.getCv(node.getUniqueId(), cvTypes.toArray(new CvType[0]));
for (CvType currentCv : cvValues) {
final String cvNumber = currentCv.getCvNumber();
ConfigurationVariable readCv =
cvReadList.stream().filter(cv -> cvNumber.equals(cv.getName())).findFirst().orElse(null);
if (readCv == null) {
errorDetected = true;
addError(context, "No CV value returned for CV number: " + cvNumber);
}
else if (!currentCv.getCvValue().equals(readCv.getValue())) {
errorDetected = true;
addError(context, "CV value does not match expected value, cvNumber: " + cvNumber + ", expected: "
+ currentCv.getCvValue() + ", read: " + readCv.getValue());
}
}
}
if (errorDetected) {
throw new IllegalStateException("CV value does not match expected value!");
}
}
}