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

io.hekate.messaging.internal.DefaultLoadBalancerContext Maven / Gradle / Ivy

There is a newer version: 4.1.3
Show newest version
/*
 * Copyright 2020 The Hekate Project
 *
 * The Hekate Project 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 io.hekate.messaging.internal;

import io.hekate.cluster.ClusterFilter;
import io.hekate.cluster.ClusterHash;
import io.hekate.cluster.ClusterNode;
import io.hekate.cluster.ClusterNodeFilter;
import io.hekate.cluster.ClusterNodeId;
import io.hekate.cluster.ClusterTopology;
import io.hekate.cluster.internal.TopologyContextCache;
import io.hekate.messaging.loadbalance.LoadBalancer;
import io.hekate.messaging.loadbalance.LoadBalancerContext;
import io.hekate.messaging.retry.FailedAttempt;
import io.hekate.partition.PartitionMapper;
import io.hekate.util.format.ToString;
import io.hekate.util.format.ToStringIgnore;
import java.util.Iterator;
import java.util.List;
import java.util.NavigableSet;
import java.util.Optional;
import java.util.Set;
import java.util.function.Function;
import java.util.stream.Stream;

/**
 * Default implementation of {@link LoadBalancer} interface.
 */
class DefaultLoadBalancerContext implements LoadBalancerContext {
    /** See {@link #affinity()}. */
    private final int affinity;

    /** See {@link #affinityKey()}. */
    private final Object affinityKey;

    /** See {@link #partitions()}. */
    private final PartitionMapper partitions;

    /** See {@link #topology()}. */
    private final ClusterTopology topology;

    /** See {@link #failure()}. */
    private final Optional failure;

    /** See {@link #topologyContext(Function)}. */
    @ToStringIgnore
    private final TopologyContextCache topologyCtx;

    /**
     * Constructs a new instance.
     *
     * @param affinity See {@link #affinity()}.
     * @param affinityKey See {@link #affinityKey()}.
     * @param topology See {@link #topology()}.
     * @param partitions See {@link #partitions()}.
     * @param failure See {@link #failure()}.
     * @param topologyCtx See {@link #topologyContext(Function)}.
     */
    public DefaultLoadBalancerContext(
        int affinity,
        Object affinityKey,
        ClusterTopology topology,
        PartitionMapper partitions,
        Optional failure,
        TopologyContextCache topologyCtx
    ) {
        this.affinity = affinity;
        this.affinityKey = affinityKey;
        this.topology = topology;
        this.partitions = partitions;
        this.failure = failure;
        this.topologyCtx = topologyCtx;
    }

    @Override
    public ClusterTopology topology() {
        return topology;
    }

    @Override
    public PartitionMapper partitions() {
        return partitions;
    }

    @Override
    public boolean hasAffinity() {
        return affinityKey != null;
    }

    @Override
    public int affinity() {
        return affinity;
    }

    @Override
    public Object affinityKey() {
        return affinityKey;
    }

    @Override
    public Optional failure() {
        return failure;
    }

    @Override
    public  T topologyContext(Function supplier) {
        return topologyCtx.get(topology, supplier);
    }

    @Override
    public long version() {
        return topology.version();
    }

    @Override
    public ClusterHash hash() {
        return topology.hash();
    }

    @Override
    public ClusterNode localNode() {
        return topology.localNode();
    }

    @Override
    public List nodes() {
        return topology.nodes();
    }

    @Override
    public ClusterNode first() {
        return topology.first();
    }

    @Override
    public ClusterNode last() {
        return topology.last();
    }

    @Override
    public Set nodeSet() {
        return topology.nodeSet();
    }

    @Override
    public List remoteNodes() {
        return topology.remoteNodes();
    }

    @Override
    public NavigableSet joinOrder() {
        return topology.joinOrder();
    }

    @Override
    public Stream stream() {
        return topology.stream();
    }

    @Override
    public boolean contains(ClusterNode node) {
        return topology.contains(node);
    }

    @Override
    public boolean contains(ClusterNodeId node) {
        return topology.contains(node);
    }

    @Override
    public ClusterNode get(ClusterNodeId id) {
        return topology.get(id);
    }

    @Override
    public int size() {
        return topology.size();
    }

    @Override
    public boolean isEmpty() {
        return topology.isEmpty();
    }

    @Override
    public ClusterNode oldest() {
        return topology.oldest();
    }

    @Override
    public ClusterNode youngest() {
        return topology.youngest();
    }

    @Override
    public ClusterNode random() {
        return topology.random();
    }

    @Override
    public ClusterTopology filterAll(ClusterFilter filter) {
        return topology.filterAll(filter);
    }

    @Override
    public ClusterTopology filter(ClusterNodeFilter filter) {
        return topology.filter(filter);
    }

    @Override
    public Iterator iterator() {
        return topology.iterator();
    }

    @Override
    public String toString() {
        return ToString.format(LoadBalancerContext.class, this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy