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

io.atleon.spring.ConfiguredAloStreamStatusService Maven / Gradle / Ivy

There is a newer version: 0.28.3
Show newest version
package io.atleon.spring;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.Collection;
import java.util.Optional;
import java.util.SortedMap;
import java.util.TreeMap;
import java.util.function.Function;
import java.util.stream.Collectors;

public class ConfiguredAloStreamStatusService implements AloStreamStatusService {

    private static final Logger LOGGER = LoggerFactory.getLogger(ConfiguredAloStreamStatusService.class);

    private final SortedMap streamsByName;

    public ConfiguredAloStreamStatusService(Collection streams) {
        this.streamsByName = streams.stream().collect(Collectors.toMap(
            ConfiguredAloStream::name,
            Function.identity(),
            ConfiguredAloStreamStatusService::logConflictingStreamsAndChooseFirst,
            TreeMap::new
        ));
    }

    @Override
    public Collection getAllStatuses() {
        return streamsByName.values().stream().map(this::createDto).collect(Collectors.toList());
    }

    @Override
    public Optional getStatus(String name) {
        return Optional.ofNullable(streamsByName.get(name)).map(this::createDto);
    }

    @Override
    public Optional start(String name) {
        Optional foundStream = Optional.ofNullable(streamsByName.get(name));
        foundStream.ifPresent(ConfiguredAloStream::start);
        return foundStream.map(this::createDto);
    }

    @Override
    public Optional stop(String name) {
        Optional foundStream = Optional.ofNullable(streamsByName.get(name));
        foundStream.ifPresent(ConfiguredAloStream::stop);
        return foundStream.map(this::createDto);
    }

    private AloStreamStatusDto createDto(ConfiguredAloStream stream) {
        return new AloStreamStatusDto(stream.name(), stream.state().name());
    }

    private static ConfiguredAloStream logConflictingStreamsAndChooseFirst(
        ConfiguredAloStream first,
        ConfiguredAloStream second
    ) {
        LOGGER.warn("Conflicting Streams! Choosing first. name={} first={} second={}", first.name(), first, second);
        return first;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy