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

com.quorum.tessera.p2p.resend.TransactionRequesterImpl Maven / Gradle / Ivy

package com.quorum.tessera.p2p.resend;

import com.quorum.tessera.enclave.Enclave;
import com.quorum.tessera.encryption.PublicKey;
import java.util.Objects;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

class TransactionRequesterImpl implements TransactionRequester {

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

  private final Enclave enclave;

  private final ResendClient client;

  TransactionRequesterImpl(final Enclave enclave, final ResendClient client) {
    this.enclave = Objects.requireNonNull(enclave);
    this.client = Objects.requireNonNull(client);
  }

  @Override
  public boolean requestAllTransactionsFromNode(final String uri) {
    return this.enclave.getPublicKeys().stream()
        .map(this::createRequestAllEntity)
        .allMatch(req -> this.makeRequest(uri, req));
  }

  /**
   * Will make the desired request until succeeds or max tries has been reached
   *
   * @param uri the URI to call
   * @param request the request object to send
   */
  private boolean makeRequest(final String uri, final ResendRequest request) {
    LOGGER.debug("Requesting a resend to {} for key {}", uri, request.getPublicKey());

    try {
      return client.makeResendRequest(uri, request);
    } catch (final Exception ex) {
      LOGGER.warn(
          "Failed to make resend request to node {} for key {}, due to {}",
          uri,
          request.getPublicKey(),
          ex.getMessage());
      return false;
    }
  }

  /**
   * Creates the entity that should be sent to the target URL
   *
   * @param key the public key that transactions should be resent for
   * @return the request to be sent
   */
  private ResendRequest createRequestAllEntity(final PublicKey key) {

    final ResendRequest request = new ResendRequest();
    final String encoded = key.encodeToBase64();
    request.setPublicKey(encoded);
    request.setType("ALL");

    return request;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy