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

io.micronaut.management.endpoint.beans.impl.RxJavaBeanDefinitionDataCollector Maven / Gradle / Ivy

There is a newer version: 4.6.5
Show newest version
/*
 * Copyright 2017-2020 original authors
 *
 * 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 io.micronaut.management.endpoint.beans.impl;

import io.micronaut.context.annotation.Requires;
import io.micronaut.inject.BeanDefinition;
import io.micronaut.management.endpoint.beans.BeanDefinitionData;
import io.micronaut.management.endpoint.beans.BeanDefinitionDataCollector;
import io.micronaut.management.endpoint.beans.BeansEndpoint;
import io.micronaut.scheduling.TaskExecutors;
import io.reactivex.Flowable;
import io.reactivex.Single;
import io.reactivex.schedulers.Schedulers;
import org.reactivestreams.Publisher;

import javax.inject.Named;
import javax.inject.Singleton;
import java.util.Collection;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.concurrent.ExecutorService;

/**
 * The default {@link BeanDefinitionDataCollector} implementation. Returns a {@link Map} with
 * a single key, "beans" that has a key of the bean definition class name.
 *
 * @author James Kleeh
 * @since 1.0
 */
@Singleton
@Requires(beans = BeansEndpoint.class)
public class RxJavaBeanDefinitionDataCollector implements BeanDefinitionDataCollector> {

    private BeanDefinitionData beanDefinitionData;
    private ExecutorService executorService;

    /**
     * @param beanDefinitionData The {@link BeanDefinitionData}
     * @param executorService    The Executor service
     */
    RxJavaBeanDefinitionDataCollector(BeanDefinitionData beanDefinitionData,
                                      @Named(TaskExecutors.IO) ExecutorService executorService) {
        this.beanDefinitionData = beanDefinitionData;
        this.executorService = executorService;
    }

    @Override
    public Publisher> getData(Collection> beanDefinitions) {
        return getBeans(beanDefinitions).map((beans) -> {
            Map beanData = new LinkedHashMap<>(1);
            beanData.put("beans", beans);
            return beanData;
        }).toFlowable();
    }

    /**
     * @param definitions The bean definitions
     * @return A {@link Single} that wraps a Map
     */
    protected Single> getBeans(Collection> definitions) {
        Map beans = new LinkedHashMap<>(definitions.size());

        return Flowable
            .fromIterable(definitions)
            .subscribeOn(Schedulers.from(executorService))
            .collectInto(beans, (map, definition) ->
                map.put(definition.getClass().getName(), beanDefinitionData.getData(definition))
            );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy