com.gs.dmn.signavio.validation.RuleDescriptionValidator Maven / Gradle / Ivy
/*
* Copyright 2016 Goldman Sachs.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
*
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
package com.gs.dmn.signavio.validation;
import com.gs.dmn.DMNModelRepository;
import com.gs.dmn.ast.*;
import com.gs.dmn.log.BuildLogger;
import com.gs.dmn.log.Slf4jBuildLogger;
import com.gs.dmn.validation.SimpleDMNValidator;
import org.apache.commons.lang3.StringUtils;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
public class RuleDescriptionValidator extends SimpleDMNValidator {
private static final Map PATTERNS = new LinkedHashMap<>();
static {
PATTERNS.put("[ ,", "[ ,");
PATTERNS.put(", ,", ", ,");
PATTERNS.put(", ]", ", ]");
PATTERNS.put("string(-)", "string(-)");
PATTERNS.put("\u00A0", "NO-BREAK SPACE");
}
public RuleDescriptionValidator() {
super(new Slf4jBuildLogger(LOGGER));
}
public RuleDescriptionValidator(BuildLogger logger) {
super(logger);
}
@Override
public List validate(DMNModelRepository repository) {
List errors = new ArrayList<>();
if (isEmpty(repository)) {
logger.warn("DMN repository is empty; validator will not run");
return errors;
}
for (TDefinitions definitions: repository.getAllDefinitions()) {
for (TDecision decision : repository.findDecisions(definitions)) {
TExpression expression = repository.expression(decision);
if (expression instanceof TDecisionTable) {
List rules = ((TDecisionTable) expression).getRule();
for (int i = 0; i < rules.size(); i++) {
TDecisionRule rule = rules.get(i);
validate(repository, definitions, decision, i, rule.getDescription(), errors);
}
}
}
}
return errors;
}
protected void validate(DMNModelRepository repository, TDefinitions definitions, TDecision decision, int ruleIndex, String description, List errors) {
if (StringUtils.isNotBlank(description)) {
for (Map.Entry entry : PATTERNS.entrySet()) {
if (description.contains(entry.getKey())) {
String errorMessage = String.format("Description of rule %d in decision '%s' contains illegal sequence '%s'", ruleIndex, decision.getName(), entry.getValue());
errors.add(makeError(repository, definitions, decision, errorMessage));
}
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy