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

com.quorum.tessera.discovery.AutoDiscovery Maven / Gradle / Ivy

Go to download

Tessera is a stateless Java system that is used to enable the encryption, decryption, and distribution of private transactions for Quorum.

There is a newer version: 24.4.2
Show newest version
package com.quorum.tessera.discovery;

import com.quorum.tessera.encryption.PublicKey;
import com.quorum.tessera.partyinfo.node.NodeInfo;
import com.quorum.tessera.partyinfo.node.Recipient;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.net.URI;
import java.util.Objects;
import java.util.Set;
import java.util.stream.Collectors;

public class AutoDiscovery implements Discovery {

    private static final Logger LOGGER = LoggerFactory.getLogger(AutoDiscovery.class);

    private final NetworkStore networkStore;

    public AutoDiscovery(NetworkStore networkStore) {
        this.networkStore = Objects.requireNonNull(networkStore);
    }

    @Override
    public void onUpdate(final NodeInfo nodeInfo) {

        LOGGER.debug("Processing node info {}", nodeInfo);

        final NodeUri callerNodeUri = NodeUri.create(nodeInfo.getUrl());

        LOGGER.debug("Update node {}", callerNodeUri);

        final Set keys = nodeInfo.getRecipients().stream()
            .filter(r -> NodeUri.create(r.getUrl()).equals(callerNodeUri))
            .map(Recipient::getKey)
            .collect(Collectors.toSet());

        final ActiveNode activeNode =
                ActiveNode.Builder.create()
                        .withUri(callerNodeUri)
                        .withKeys(keys)
                        .withSupportedVersions(nodeInfo.supportedApiVersions())
                        .build();

        networkStore.store(activeNode);
    }

    @Override
    public void onDisconnect(URI nodeUri) {
        networkStore.remove(NodeUri.create(nodeUri));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy