All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.airlift.discovery.client.ServiceInventory Maven / Gradle / Ivy
/*
* Copyright 2010 Proofpoint, Inc.
*
* 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.airlift.discovery.client;
import com.google.common.collect.ImmutableList;
import com.google.inject.Inject;
import io.airlift.http.client.HttpClient;
import io.airlift.http.client.Request.Builder;
import io.airlift.json.JsonCodec;
import io.airlift.log.Logger;
import io.airlift.node.NodeInfo;
import io.airlift.units.Duration;
import jakarta.annotation.PostConstruct;
import jakarta.annotation.PreDestroy;
import org.weakref.jmx.Managed;
import java.io.File;
import java.net.URI;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicReference;
import static com.google.common.base.Preconditions.checkArgument;
import static io.airlift.concurrent.Threads.daemonThreadsNamed;
import static io.airlift.http.client.JsonResponseHandler.createJsonResponseHandler;
import static io.airlift.http.client.Request.Builder.prepareGet;
import static java.nio.file.Files.readAllBytes;
import static java.util.Objects.requireNonNull;
import static java.util.concurrent.Executors.newSingleThreadScheduledExecutor;
import static java.util.stream.Collectors.toList;
public class ServiceInventory
{
private static final Logger log = Logger.get(ServiceInventory.class);
private final String environment;
private final URI serviceInventoryUri;
private final Duration updateInterval;
private final NodeInfo nodeInfo;
private final JsonCodec serviceDescriptorsCodec;
private final HttpClient httpClient;
private final AtomicReference> serviceDescriptors = new AtomicReference<>(ImmutableList.of());
private final ScheduledExecutorService executorService = newSingleThreadScheduledExecutor(daemonThreadsNamed("service-inventory-%s"));
private final AtomicBoolean serverUp = new AtomicBoolean(true);
private ScheduledFuture> scheduledFuture;
@Inject
public ServiceInventory(ServiceInventoryConfig config,
NodeInfo nodeInfo,
JsonCodec serviceDescriptorsCodec,
@ForDiscoveryClient HttpClient httpClient)
{
requireNonNull(config, "config is null");
requireNonNull(nodeInfo, "nodeInfo is null");
requireNonNull(serviceDescriptorsCodec, "serviceDescriptorsCodec is null");
requireNonNull(httpClient, "httpClient is null");
this.nodeInfo = nodeInfo;
this.environment = nodeInfo.getEnvironment();
this.serviceInventoryUri = config.getServiceInventoryUri();
updateInterval = config.getUpdateInterval();
this.serviceDescriptorsCodec = serviceDescriptorsCodec;
this.httpClient = httpClient;
if (serviceInventoryUri != null) {
String scheme = serviceInventoryUri.getScheme().toLowerCase();
checkArgument(scheme.equals("http") || scheme.equals("https") || scheme.equals("file"), "Service inventory uri must have a http, https, or file scheme");
try {
updateServiceInventory();
}
catch (Exception ignored) {
}
}
}
@PostConstruct
public synchronized void start()
{
if (serviceInventoryUri == null || scheduledFuture != null) {
return;
}
scheduledFuture = executorService.scheduleAtFixedRate(() -> {
try {
updateServiceInventory();
}
catch (Throwable e) {
log.error(e, "Unexpected exception from service inventory update");
}
}, updateInterval.toMillis(), updateInterval.toMillis(), TimeUnit.MILLISECONDS);
}
@PreDestroy
public synchronized void stop()
{
if (scheduledFuture != null) {
scheduledFuture.cancel(true);
scheduledFuture = null;
}
executorService.shutdownNow();
}
public Iterable getServiceDescriptors()
{
return serviceDescriptors.get();
}
public Iterable getServiceDescriptors(String type)
{
return serviceDescriptors.get().stream()
.filter(descriptor -> descriptor.getType().equals(type))
.collect(toList());
}
public Iterable getServiceDescriptors(String type, String pool)
{
return serviceDescriptors.get().stream()
.filter(descriptor -> descriptor.getType().equals(type))
.filter(descriptor -> descriptor.getPool().equals(pool))
.collect(toList());
}
@Managed
public final void updateServiceInventory()
{
if (serviceInventoryUri == null) {
return;
}
try {
ServiceDescriptorsRepresentation serviceDescriptorsRepresentation;
if (serviceInventoryUri.getScheme().toLowerCase().startsWith("http")) {
Builder requestBuilder = prepareGet()
.setUri(serviceInventoryUri)
.setHeader("User-Agent", nodeInfo.getNodeId());
serviceDescriptorsRepresentation = httpClient.execute(requestBuilder.build(), createJsonResponseHandler(serviceDescriptorsCodec));
}
else {
File file = new File(serviceInventoryUri);
serviceDescriptorsRepresentation = serviceDescriptorsCodec.fromJson(readAllBytes(file.toPath()));
}
if (!environment.equals(serviceDescriptorsRepresentation.getEnvironment())) {
logServerError("Expected environment to be %s, but was %s", environment, serviceDescriptorsRepresentation.getEnvironment());
}
List descriptors = new ArrayList<>(serviceDescriptorsRepresentation.getServiceDescriptors());
Collections.shuffle(descriptors);
serviceDescriptors.set(ImmutableList.copyOf(descriptors));
if (serverUp.compareAndSet(false, true)) {
log.info("ServiceInventory connect succeeded");
}
}
catch (Exception e) {
logServerError("Error loading service inventory from %s", serviceInventoryUri.toASCIIString());
}
}
private void logServerError(String message, Object... args)
{
if (serverUp.compareAndSet(true, false)) {
log.error(message, args);
}
}
}