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

org.ethereum.sync.SyncQueueIfc Maven / Gradle / Ivy

Go to download

Java implementation of the Ethereum protocol adapted to use for Hedera Smart Contract Service

The newest version!
/*
 * Copyright (c) [2016] [  ]
 * This file is part of the ethereumJ library.
 *
 * The ethereumJ library is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * The ethereumJ library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with the ethereumJ library. If not, see .
 */
package org.ethereum.sync;

import org.ethereum.core.Block;
import org.ethereum.core.BlockHeader;
import org.ethereum.core.BlockHeaderWrapper;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.util.Collection;
import java.util.Collections;
import java.util.List;

/**
 * Created by Anton Nashatyrev on 27.05.2016.
 */
public interface SyncQueueIfc {

    /**
     * Wanted headers
     */
    interface HeadersRequest {

        long getStart();

        byte[] getHash();

        int getCount();

        boolean isReverse();

        List split(int maxCount);

        int getStep();
    }

    /**
     * Wanted blocks
     */
    interface BlocksRequest {
        List split(int count);

        List getBlockHeaders();
    }

    /**
     * Handles result of {@link #addHeadersAndValidate(Collection)} invocation.
     *
     * 

* If {@code valid} is true then validation passed successfully * and {@code headers} list contains the same result as if {@link #addHeaders(Collection)} was called. * Otherwise, the list contains invalid headers. */ class ValidatedHeaders { public static final ValidatedHeaders Empty = new ValidatedHeaders(Collections.emptyList(), true); private final List headers; private final boolean valid; private final String reason; public ValidatedHeaders(List headers, boolean valid, String reason) { this.headers = headers; this.valid = valid; this.reason = reason; } public ValidatedHeaders(List headers, boolean valid) { this(headers, valid, ""); } public boolean isValid() { return valid; } @Nonnull public List getHeaders() { return headers; } public String getReason() { return reason; } @Nullable public byte[] getNodeId() { if (headers.isEmpty()) return null; return headers.get(0).getNodeId(); } @Nullable public BlockHeader getHeader() { if (headers.isEmpty()) return null; return headers.get(0).getHeader(); } } /** * Returns wanted headers requests * @param maxSize Maximum number of headers in a singles request * @param maxRequests Maximum number of requests * @param maxTotalHeaders The total maximum of cached headers in the implementation * @return null if the end of headers reached (e.g. when download is limited with a block number) * empty list if no headers for now (e.g. max allowed number of cached headers reached) */ List requestHeaders(int maxSize, int maxRequests, int maxTotalHeaders); /** * Adds received headers. * Headers themselves need to be verified (except parent hash) * The list can be in any order and shouldn't correspond to prior headers request * @return If this is 'header-only' SyncQueue then the next chain of headers * is popped from SyncQueue and returned * The reverse implementation should return headers in revers order (N, N-1, ...) * If this instance is for headers+blocks downloading then null returned */ List addHeaders(Collection headers); /** * In general, does the same work as {@link #addHeaders(Collection)} does. * But before trimming, the longest chain is checked with parent header validator. * If validation is failed, the chain is erased from the queue. * *

* Note: in reverse queue falls to {@link #addHeaders(Collection)} invocation * * @return check {@link ValidatedHeaders} for details */ ValidatedHeaders addHeadersAndValidate(Collection headers); /** * Returns wanted blocks hashes */ BlocksRequest requestBlocks(int maxSize); /** * Adds new received blocks to the queue * The blocks need to be verified but can be passed in any order and need not correspond * to prior returned block request * @return blocks ready to be imported in the valid import order. */ List addBlocks(Collection blocks); /** * Returns approximate header count waiting for their blocks */ int getHeadersCount(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy