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

cdm.observable.asset.validation.IndexValidator Maven / Gradle / Ivy

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

import cdm.observable.asset.CreditIndex;
import cdm.observable.asset.EquityIndex;
import cdm.observable.asset.ForeignExchangeRateIndex;
import cdm.observable.asset.Index;
import cdm.observable.asset.OtherIndex;
import cdm.observable.asset.metafields.FieldWithMetaFloatingRateIndex;
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 IndexValidator implements Validator {

	private List getComparisonResults(Index o) {
		return Lists.newArrayList(
				checkCardinality("CreditIndex", (CreditIndex) o.getCreditIndex() != null ? 1 : 0, 0, 1), 
				checkCardinality("EquityIndex", (EquityIndex) o.getEquityIndex() != null ? 1 : 0, 0, 1), 
				checkCardinality("FloatingRateIndex", (FieldWithMetaFloatingRateIndex) o.getFloatingRateIndex() != null ? 1 : 0, 0, 1), 
				checkCardinality("ForeignExchangeRateIndex", (ForeignExchangeRateIndex) o.getForeignExchangeRateIndex() != null ? 1 : 0, 0, 1), 
				checkCardinality("OtherIndex", (OtherIndex) o.getOtherIndex() != null ? 1 : 0, 0, 1)
			);
	}

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

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy