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

com.sportradar.unifiedodds.sdk.impl.oddsentities.markets.FlexAdjustedMarketMappingDataImpl Maven / Gradle / Ivy

/*
 * Copyright (C) Sportradar AG. See LICENSE for full license governing this code
 */

package com.sportradar.unifiedodds.sdk.impl.oddsentities.markets;

import com.sportradar.unifiedodds.sdk.entities.markets.MarketMappingData;
import com.sportradar.unifiedodds.sdk.entities.markets.OutcomeMappingData;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.Map;
import java.util.stream.Collectors;

/**
 * A flex adjustment class used to modify the "raw" mapping data
 */
class FlexAdjustedMarketMappingDataImpl extends AdjustedMarketMappingDataImpl implements MarketMappingData {
    private static final Logger logger = LoggerFactory.getLogger(FlexAdjustedMarketMappingDataImpl.class);

    private final Map marketSpecifiers;

    FlexAdjustedMarketMappingDataImpl(MarketMappingData mapping, Map marketSpecifiers) {
        super(mapping);

        this.marketSpecifiers = marketSpecifiers;
    }

    /**
     * Returns a {@link Map} of valid adjusted outcome mappings for this {@link MarketMappingData}
     *
     * @return a {@link Map} of valid adjusted outcome mappings
     */
    @Override
    public Map getOutcomeMappings() {
        if (marketSpecifiers == null) {
            logger.warn("Processing mapping adjustments for a flex market without specifiers, outcome mappings will be skipped");
            return super.getOutcomeMappings();
        }

        return super.getOutcomeMappings().values().stream()
                .map(mOutcome -> new FlexAdjustedOutcomeMappingDataImpl(mOutcome, marketSpecifiers))
                .collect(
                        Collectors.toMap(
                                AdjustmentOutcomeMappingDataImpl::getOutcomeId,
                                v -> v
                        ));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy