com.linecorp.armeria.client.endpoint.DynamicEndpointGroup.java Source code

Java tutorial

Introduction

Here is the source code for com.linecorp.armeria.client.endpoint.DynamicEndpointGroup.java

Source

/*
 * Copyright 2017 LINE Corporation
 *
 * LINE Corporation 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 com.linecorp.armeria.client.endpoint;

import static com.google.common.collect.ImmutableList.toImmutableList;

import java.util.List;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;

import com.google.common.collect.ImmutableList;

import com.linecorp.armeria.client.Endpoint;
import com.linecorp.armeria.common.util.AbstractListenable;

/**
 * A dynamic {@link EndpointGroup}. The list of {@link Endpoint}s can be updated dynamically.
 */
public class DynamicEndpointGroup extends AbstractListenable<List<Endpoint>> implements EndpointGroup {
    private volatile List<Endpoint> endpoints = ImmutableList.of();
    private final Lock endpointsLock = new ReentrantLock();

    @Override
    public final List<Endpoint> endpoints() {
        return endpoints;
    }

    /**
     * Adds the specified {@link Endpoint} to current {@link Endpoint} list.
     */
    protected final void addEndpoint(Endpoint e) {
        endpointsLock.lock();
        try {
            ImmutableList.Builder<Endpoint> newEndpointsBuilder = ImmutableList.builder();
            newEndpointsBuilder.addAll(endpoints);
            newEndpointsBuilder.add(e);
            endpoints = newEndpointsBuilder.build();
            notifyListeners(endpoints);
        } finally {
            endpointsLock.unlock();
        }
    }

    /**
     * Removes the specified {@link Endpoint} from current {@link Endpoint} list.
     */
    protected final void removeEndpoint(Endpoint e) {
        endpointsLock.lock();
        try {
            endpoints = endpoints.stream().filter(endpoint -> !endpoint.equals(e)).collect(toImmutableList());
            notifyListeners(endpoints);
        } finally {
            endpointsLock.unlock();
        }
    }

    /**
     * Sets the specified {@link Endpoint}s as current {@link Endpoint} list.
     */
    protected final void setEndpoints(Iterable<Endpoint> endpoints) {
        endpointsLock.lock();
        try {
            this.endpoints = ImmutableList.copyOf(endpoints);
            notifyListeners(this.endpoints);
        } finally {
            endpointsLock.unlock();
        }
    }
}