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

cdm.regulation.validation.DerivInstrmAttrbtsValidator Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.89
Show newest version
package cdm.regulation.validation;

import cdm.regulation.DerivInstrmAttrbts;
import cdm.regulation.UndrlygInstrm;
import com.google.common.collect.Lists;
import com.rosetta.model.lib.expression.ComparisonResult;
import com.rosetta.model.lib.path.RosettaPath;
import com.rosetta.model.lib.validation.ValidationResult;
import com.rosetta.model.lib.validation.ValidationResult.ValidationType;
import com.rosetta.model.lib.validation.Validator;
import java.util.List;

import static com.google.common.base.Strings.isNullOrEmpty;
import static com.rosetta.model.lib.expression.ExpressionOperators.checkCardinality;
import static com.rosetta.model.lib.validation.ValidationResult.failure;
import static com.rosetta.model.lib.validation.ValidationResult.success;
import static java.util.stream.Collectors.joining;
import static java.util.stream.Collectors.toList;

public class DerivInstrmAttrbtsValidator implements Validator {

	private List getComparisonResults(DerivInstrmAttrbts o) {
		return Lists.newArrayList(
				checkCardinality("xpryDt", (String) o.getXpryDt() != null ? 1 : 0, 1, 1), 
				checkCardinality("pricMltplr", (String) o.getPricMltplr() != null ? 1 : 0, 1, 1), 
				checkCardinality("undrlygInstrm", (UndrlygInstrm) o.getUndrlygInstrm() != null ? 1 : 0, 1, 1), 
				checkCardinality("dlvryTp", (String) o.getDlvryTp() != null ? 1 : 0, 1, 1)
			);
	}

	@Override
	public ValidationResult validate(RosettaPath path, DerivInstrmAttrbts o) {
		String error = getComparisonResults(o)
			.stream()
			.filter(res -> !res.get())
			.map(res -> res.getError())
			.collect(joining("; "));

		if (!isNullOrEmpty(error)) {
			return failure("DerivInstrmAttrbts", ValidationType.CARDINALITY, "DerivInstrmAttrbts", path, "", error);
		}
		return success("DerivInstrmAttrbts", ValidationType.CARDINALITY, "DerivInstrmAttrbts", path, "");
	}

	@Override
	public List> getValidationResults(RosettaPath path, DerivInstrmAttrbts o) {
		return getComparisonResults(o)
			.stream()
			.map(res -> {
				if (!isNullOrEmpty(res.getError())) {
					return failure("DerivInstrmAttrbts", ValidationType.CARDINALITY, "DerivInstrmAttrbts", path, "", res.getError());
				}
				return success("DerivInstrmAttrbts", ValidationType.CARDINALITY, "DerivInstrmAttrbts", path, "");
			})
			.collect(toList());
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy