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

io.hekate.messaging.internal.AggregateContext 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.ClusterNode;
import io.hekate.messaging.MessageTimeoutException;
import io.hekate.messaging.operation.AggregateFuture;
import io.hekate.messaging.operation.AggregateResult;
import io.hekate.messaging.operation.Response;
import io.hekate.util.format.ToString;
import io.hekate.util.format.ToStringIgnore;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import static java.util.Collections.emptyMap;

class AggregateContext implements AggregateResult {
    private final T request;

    private final Map results;

    @ToStringIgnore
    private final List nodes;

    @ToStringIgnore
    private final AggregateFuture future;

    private Map errors;

    public AggregateContext(T request, List nodes, AggregateFuture future) {
        this.request = request;
        this.nodes = new ArrayList<>(nodes); // Copy since node list can be modified.
        this.future = future;
        this.results = new HashMap<>(nodes.size(), 1.0f);
    }

    @Override
    public T request() {
        return request;
    }

    @Override
    public List nodes() {
        synchronized (this) {
            return nodes;
        }
    }

    @Override
    public Map errors() {
        synchronized (this) {
            return errors == null ? emptyMap() : errors;
        }
    }

    @Override
    public Map resultsByNode() {
        synchronized (this) {
            return results;
        }
    }

    boolean forgetNode(ClusterNode node) {
        synchronized (this) {
            nodes.remove(node);

            return isReady();
        }
    }

    boolean onReplySuccess(ClusterNode node, Response rsp) {
        synchronized (this) {
            results.put(node, rsp.payload());

            return isReady();
        }
    }

    boolean onReplyFailure(ClusterNode node, Throwable error) {
        synchronized (this) {
            if (errors == null) {
                errors = new HashMap<>(nodes.size(), 1.0f);
            }

            errors.put(node, error);

            return isReady();
        }
    }

    void complete() {
        future.complete(this);
    }

    boolean isReady() {
        assert Thread.holdsLock(this) : "Thread must hold lock on mutex.";

        return nodes.size() == results.size() + (errors == null ? 0 : errors.size());
    }

    boolean isTimedOut() {
        return errors().values().stream().anyMatch(e -> e instanceof MessageTimeoutException);
    }

    AggregateFuture future() {
        return future;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy