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

io.micronaut.discovery.consul.ConsulServiceInstance Maven / Gradle / Ivy

There is a newer version: 4.5.0
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
 *
 * https://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.discovery.consul;

import io.micronaut.core.annotation.NonNull;
import io.micronaut.core.annotation.Nullable;
import io.micronaut.core.convert.value.ConvertibleValues;
import io.micronaut.core.util.CollectionUtils;
import io.micronaut.core.util.StringUtils;
import io.micronaut.discovery.ServiceInstance;
import io.micronaut.discovery.consul.client.v1.*;
import io.micronaut.discovery.exceptions.DiscoveryException;
import io.micronaut.health.HealthStatus;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.stream.Stream;

/**
 * A {@link ServiceInstance} for Consul.
 *
 * @author graemerocher
 * @since 1.0
 */
public class ConsulServiceInstance implements ServiceInstance {

    private final ConsulHealthEntry healthEntry;
    private final URI uri;
    private ConvertibleValues metadata;

    /**
     * Constructs a {@link ConsulServiceInstance} for the given {@link ConsulHealthEntry} and scheme.
     *
     * @param healthEntry The health entry
     * @param scheme      The scheme
     */
    public ConsulServiceInstance(@NonNull ConsulHealthEntry healthEntry, @Nullable String scheme) {
        Objects.requireNonNull(healthEntry, "ConsulHealthEntry cannot be null");
        this.healthEntry = healthEntry;
        ConsulServiceEntry service = healthEntry.service();
        Objects.requireNonNull(service, "ConsulHealthEntry cannot reference a null service entry");
        ConsulCatalogEntry node = healthEntry.node();
        Objects.requireNonNull(service, "ConsulHealthEntry cannot reference a null node entry");

        String inetAddress = service.address() != null ? service.address() : node.address().getHostAddress();
        int port = service.port() != null ? service.port() : -1;
        String portSuffix = port > -1 ? ":" + port : "";
        String uriStr = (scheme != null ? scheme + "://" : "http://") + inetAddress + portSuffix;
        try {
            this.uri = new URI(uriStr);
        } catch (URISyntaxException e) {
            throw new DiscoveryException("Invalid service URI: " + uriStr);
        }
    }

    /**
     * Constructs a {@link ConsulServiceInstance} for the given {@link ConsulHealthEntry} and scheme.
     *
     * @param healthEntry The health entry
     * @param scheme      The scheme
     * @deprecated use {@link ConsulServiceInstance(ConsulHealthEntry, String)} instead.
     */
    @Deprecated(since = "4.1.0", forRemoval = true)
    public ConsulServiceInstance(@NonNull HealthEntry healthEntry, @Nullable String scheme) {
        this.healthEntry = null;
        this.uri = null;
    }

    @Override
    public HealthStatus getHealthStatus() {
        List checks = healthEntry.checks();
        if (CollectionUtils.isNotEmpty(checks)) {
            Stream criticalStream = checks.stream().filter(c -> c.getStatus().equals(ConsulCheckStatus.CRITICAL.toString()));
            Optional first = criticalStream.findFirst();
            if (first.isPresent()) {
                ConsulCheck check = first.get();
                String notes = check.getNotes();
                if (StringUtils.isNotEmpty(notes)) {
                    return HealthStatus.DOWN.describe(notes);
                } else {
                    return HealthStatus.DOWN;
                }
            }
        }
        return HealthStatus.UP;
    }

    /**
     * @return The {@link ConsulHealthEntry}
     * @deprecated not used
     */
    @Deprecated(forRemoval = true, since = "4.1.0")
    public HealthEntry getHealthEntry() {
        return null;
    }

    @Override
    public String getId() {
        return healthEntry.service().id();
    }

    @Override
    public Optional getInstanceId() {
        return Optional.ofNullable(healthEntry.service().id());
    }

    @Override
    public URI getURI() {
        return uri;
    }

    @Override
    public ConvertibleValues getMetadata() {
        ConvertibleValues metadata = this.metadata;
        if (metadata == null) {
            synchronized (this) { // double check
                metadata = this.metadata;
                if (metadata == null) {
                    metadata = buildMetadata();
                    this.metadata = metadata;
                }
            }
        }
        return metadata;
    }

    private ConvertibleValues buildMetadata() {

        Map map = healthEntry.node().nodeMetadata() != null ?
            new LinkedHashMap<>(healthEntry.node().nodeMetadata()) : new LinkedHashMap<>();
        List tags = healthEntry.service().tags();
        if (tags != null) {
            for (String tag : tags) {
                int i = tag.indexOf('=');
                if (i > -1) {
                    map.put(tag.substring(0, i), tag.substring(i + 1));
                }
            }
        }

        Map meta = healthEntry.service().meta();
        if (meta != null) {
            map.putAll(meta);
        }
        return ConvertibleValues.of(map);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy