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

org.apache.camel.impl.health.RoutesHealthCheckRepository Maven / Gradle / Ivy

There is a newer version: 4.6.0
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.camel.impl.health;

import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.CopyOnWriteArrayList;
import java.util.stream.Stream;

import org.apache.camel.CamelContext;
import org.apache.camel.CamelContextAware;
import org.apache.camel.Route;
import org.apache.camel.api.management.mbean.ManagedRouteMBean;
import org.apache.camel.health.HealthCheck;
import org.apache.camel.health.HealthCheckRepository;

public class RoutesHealthCheckRepository implements CamelContextAware, HealthCheckRepository {
    private final ConcurrentMap checks;
    private Set blacklist;
    private List> evaluators;
    private ConcurrentMap>> evaluatorMap;
    private volatile CamelContext context;

    public RoutesHealthCheckRepository() {
        this.checks = new ConcurrentHashMap<>();
    }

    @Override
    public void setCamelContext(CamelContext camelContext) {
        this.context = camelContext;
    }

    @Override
    public CamelContext getCamelContext() {
        return context;
    }

    public void setBlacklistedRoutes(Collection blacklistedRoutes) {
        blacklistedRoutes.forEach(this::addBlacklistedRoute);
    }

    public void addBlacklistedRoute(String routeId) {
        if (this.blacklist == null) {
            this.blacklist = new HashSet<>();
        }

        this.blacklist.add(routeId);
    }

    public void setEvaluators(Collection> evaluators) {
        evaluators.forEach(this::addEvaluator);
    }

    public void addEvaluator(PerformanceCounterEvaluator evaluator) {
        if (this.evaluators == null) {
            this.evaluators = new CopyOnWriteArrayList<>();
        }

        this.evaluators.add(evaluator);
    }

    public void setRoutesEvaluators(Map>> evaluators) {
        evaluators.forEach(this::setRouteEvaluators);
    }

    public void setRouteEvaluators(String routeId, Collection> evaluators) {
        evaluators.forEach(evaluator -> addRouteEvaluator(routeId, evaluator));
    }

    public void addRouteEvaluator(String routeId, PerformanceCounterEvaluator evaluator) {
        if (this.evaluatorMap == null) {
            this.evaluatorMap = new ConcurrentHashMap<>();
        }

        this.evaluatorMap.computeIfAbsent(routeId, id -> new CopyOnWriteArrayList<>()).add(evaluator);
    }

    public Stream> evaluators() {
        return this.evaluators != null
            ? this.evaluators.stream()
            : Stream.empty();
    }

    public Stream> evaluators(String routeId) {
        return this.evaluatorMap != null
            ? evaluatorMap.getOrDefault(routeId, Collections.emptyList()).stream()
            : Stream.empty();
    }

    @Override
    public Stream stream() {
        // This is not really efficient as getRoutes() creates a copy of the routes
        // array for each invocation. It would be nice to have more stream oriented
        // operation on CamelContext i.e.
        //
        // interface CamelContext {
        //
        //     Stream routes();
        //
        //     void forEachRoute(Consumer consumer);
        // }
        //
        return this.context != null
            ? this.context.getRoutes()
                .stream()
                .filter(route -> route.getId() != null)
                .filter(route -> isNotBlacklisted(route))
                .map(this::toRouteHealthCheck)
            : Stream.empty();
    }

    // *****************************
    // Helpers
    // *****************************

    private boolean isNotBlacklisted(Route route) {
        return this.blacklist != null
            ? !this.blacklist.contains(route.getId())
            : true;
    }

    private HealthCheck toRouteHealthCheck(Route route) {
        return checks.computeIfAbsent(
            route,
            r -> {
                HealthCheck check = new RouteHealthCheck(
                    route,
                    evaluatorMap != null
                        ? evaluatorMap.getOrDefault(r.getId(), evaluators)
                        : evaluators
                );

                check.getConfiguration().setEnabled(true);

                return check;
            }
        );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy