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

software.amazon.kinesis.multilang.config.RetrievalMode Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2019 Amazon.com, Inc. or its affiliates.
 * 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 software.amazon.kinesis.multilang.config;

import java.util.Arrays;
import java.util.function.Function;
import java.util.stream.Collectors;

import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.Validate;

@Slf4j
public enum RetrievalMode {
    FANOUT(MultiLangDaemonConfiguration::getFanoutConfig),
    POLLING(MultiLangDaemonConfiguration::getPollingConfig),
    DEFAULT(RetrievalMode::decideForDefault);

    private final Function builderFor;

    public RetrievalConfigBuilder builder(MultiLangDaemonConfiguration configuration) {
        return builderFor.apply(configuration);
    }

    RetrievalMode(Function builderFor) {
        this.builderFor = builderFor;
    }

    public static RetrievalMode from(String source) {
        Validate.notEmpty(source);
        try {
            return RetrievalMode.valueOf(source.toUpperCase());
        } catch (IllegalArgumentException iae) {
            throw new IllegalArgumentException(
                    "Unknown retrieval type '" + source + "'. Available retrieval types: " + availableRetrievalModes());
        }
    }

    private static String availableRetrievalModes() {
        return "(" + Arrays.stream(RetrievalMode.values()).map(Enum::name).collect(Collectors.joining(", ")) + ")";
    }

    private static RetrievalConfigBuilder decideForDefault(MultiLangDaemonConfiguration configuration) {
        if (configuration.getPollingConfig().anyPropertiesSet()) {
            log.warn("Some polling properties have been set, defaulting to polling. "
                    + "To switch to Fanout either add `RetrievalMode=FANOUT` to your "
                    + "properties or remove the any configuration for polling.");
            return configuration.getPollingConfig();
        }
        return configuration.getFanoutConfig();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy