This repository has been archived by the owner on Sep 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[NC-1344] Add GetReceiptsFromPeerTask (#598)
- Loading branch information
Showing
2 changed files
with
187 additions
and
0 deletions.
There are no files selected for viewing
126 changes: 126 additions & 0 deletions
126
.../src/main/java/tech/pegasys/pantheon/ethereum/eth/sync/tasks/GetReceiptsFromPeerTask.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
/* | ||
* Copyright 2019 ConsenSys AG. | ||
* | ||
* Licensed 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 tech.pegasys.pantheon.ethereum.eth.sync.tasks; | ||
|
||
import static java.util.Collections.emptyMap; | ||
import static java.util.stream.Collectors.toList; | ||
import static tech.pegasys.pantheon.ethereum.mainnet.BodyValidation.receiptsRoot; | ||
|
||
import tech.pegasys.pantheon.ethereum.core.BlockHeader; | ||
import tech.pegasys.pantheon.ethereum.core.Hash; | ||
import tech.pegasys.pantheon.ethereum.core.TransactionReceipt; | ||
import tech.pegasys.pantheon.ethereum.eth.manager.AbstractPeerRequestTask; | ||
import tech.pegasys.pantheon.ethereum.eth.manager.EthContext; | ||
import tech.pegasys.pantheon.ethereum.eth.manager.EthPeer; | ||
import tech.pegasys.pantheon.ethereum.eth.manager.RequestManager.ResponseStream; | ||
import tech.pegasys.pantheon.ethereum.eth.messages.EthPV63; | ||
import tech.pegasys.pantheon.ethereum.eth.messages.ReceiptsMessage; | ||
import tech.pegasys.pantheon.ethereum.p2p.api.MessageData; | ||
import tech.pegasys.pantheon.ethereum.p2p.api.PeerConnection.PeerNotConnected; | ||
import tech.pegasys.pantheon.metrics.LabelledMetric; | ||
import tech.pegasys.pantheon.metrics.OperationTimer; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collection; | ||
import java.util.HashMap; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.Optional; | ||
|
||
import org.apache.logging.log4j.LogManager; | ||
import org.apache.logging.log4j.Logger; | ||
|
||
public class GetReceiptsFromPeerTask | ||
extends AbstractPeerRequestTask<Map<BlockHeader, List<TransactionReceipt>>> { | ||
private static final Logger LOG = LogManager.getLogger(); | ||
|
||
private final Collection<BlockHeader> blockHeaders; | ||
private final Map<Hash, List<BlockHeader>> headersByReceiptsRoot = new HashMap<>(); | ||
|
||
private GetReceiptsFromPeerTask( | ||
final EthContext ethContext, | ||
final Collection<BlockHeader> blockHeaders, | ||
final LabelledMetric<OperationTimer> ethTasksTimer) { | ||
super(ethContext, EthPV63.GET_RECEIPTS, ethTasksTimer); | ||
this.blockHeaders = blockHeaders; | ||
blockHeaders.forEach( | ||
header -> | ||
headersByReceiptsRoot | ||
.computeIfAbsent(header.getReceiptsRoot(), key -> new ArrayList<>()) | ||
.add(header)); | ||
} | ||
|
||
public static GetReceiptsFromPeerTask forHeaders( | ||
final EthContext ethContext, | ||
final Collection<BlockHeader> blockHeaders, | ||
final LabelledMetric<OperationTimer> ethTasksTimer) { | ||
|
||
return new GetReceiptsFromPeerTask(ethContext, blockHeaders, ethTasksTimer); | ||
} | ||
|
||
@Override | ||
protected ResponseStream sendRequest(final EthPeer peer) throws PeerNotConnected { | ||
LOG.debug("Requesting {} receipts from peer {}.", blockHeaders.size(), peer); | ||
// Since we have to match up the data by receipt root, we only need to request receipts | ||
// for one of the headers with each unique receipt root. | ||
final List<Hash> blockHashes = | ||
headersByReceiptsRoot | ||
.values() | ||
.stream() | ||
.map(headers -> headers.get(0).getHash()) | ||
.collect(toList()); | ||
return peer.getReceipts(blockHashes); | ||
} | ||
|
||
@Override | ||
protected Optional<Map<BlockHeader, List<TransactionReceipt>>> processResponse( | ||
final boolean streamClosed, final MessageData message, final EthPeer peer) { | ||
if (streamClosed) { | ||
// All outstanding requests have been responded to and we still haven't found the response | ||
// we wanted. It must have been empty or contain data that didn't match. | ||
peer.recordUselessResponse(); | ||
return Optional.of(emptyMap()); | ||
} | ||
|
||
final ReceiptsMessage receiptsMessage = ReceiptsMessage.readFrom(message); | ||
final List<List<TransactionReceipt>> receiptsByBlock = receiptsMessage.receipts(); | ||
if (receiptsByBlock.isEmpty()) { | ||
return Optional.empty(); | ||
} else if (receiptsByBlock.size() > blockHeaders.size()) { | ||
return Optional.empty(); | ||
} | ||
|
||
final Map<BlockHeader, List<TransactionReceipt>> receiptsByHeader = new HashMap<>(); | ||
for (final List<TransactionReceipt> receiptsInBlock : receiptsByBlock) { | ||
final List<BlockHeader> blockHeaders = | ||
headersByReceiptsRoot.get(receiptsRoot(receiptsInBlock)); | ||
if (blockHeaders == null) { | ||
// Contains receipts that we didn't request, so mustn't be the response we're looking for. | ||
return Optional.empty(); | ||
} | ||
blockHeaders.forEach(header -> receiptsByHeader.put(header, receiptsInBlock)); | ||
} | ||
return Optional.of(receiptsByHeader); | ||
} | ||
|
||
@Override | ||
protected Optional<EthPeer> findSuitablePeer() { | ||
final long maximumRequiredBlockNumber = | ||
blockHeaders | ||
.stream() | ||
.mapToLong(BlockHeader::getNumber) | ||
.max() | ||
.orElse(BlockHeader.GENESIS_BLOCK_NUMBER); | ||
return this.ethContext.getEthPeers().idlePeer(maximumRequiredBlockNumber); | ||
} | ||
} |
61 changes: 61 additions & 0 deletions
61
.../test/java/tech/pegasys/pantheon/ethereum/eth/sync/tasks/GetReceiptsFromPeerTaskTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
* Copyright 2019 ConsenSys AG. | ||
* | ||
* Licensed 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 tech.pegasys.pantheon.ethereum.eth.sync.tasks; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
import tech.pegasys.pantheon.ethereum.core.BlockHeader; | ||
import tech.pegasys.pantheon.ethereum.core.TransactionReceipt; | ||
import tech.pegasys.pantheon.ethereum.eth.manager.AbstractPeerTask.PeerTaskResult; | ||
import tech.pegasys.pantheon.ethereum.eth.manager.EthTask; | ||
import tech.pegasys.pantheon.ethereum.eth.manager.ethtaskutils.PeerMessageTaskTest; | ||
|
||
import java.util.HashMap; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
public class GetReceiptsFromPeerTaskTest | ||
extends PeerMessageTaskTest<Map<BlockHeader, List<TransactionReceipt>>> { | ||
|
||
@Override | ||
protected Map<BlockHeader, List<TransactionReceipt>> generateDataToBeRequested() { | ||
final Map<BlockHeader, List<TransactionReceipt>> expectedData = new HashMap<>(); | ||
for (long i = 0; i < 3; i++) { | ||
final BlockHeader header = blockchain.getBlockHeader(10 + i).get(); | ||
final List<TransactionReceipt> transactionReceipts = | ||
blockchain.getTxReceipts(header.getHash()).get(); | ||
expectedData.put(header, transactionReceipts); | ||
} | ||
return expectedData; | ||
} | ||
|
||
@Override | ||
protected EthTask<PeerTaskResult<Map<BlockHeader, List<TransactionReceipt>>>> createTask( | ||
final Map<BlockHeader, List<TransactionReceipt>> requestedData) { | ||
return GetReceiptsFromPeerTask.forHeaders(ethContext, requestedData.keySet(), ethTasksTimer); | ||
} | ||
|
||
@Override | ||
protected void assertPartialResultMatchesExpectation( | ||
final Map<BlockHeader, List<TransactionReceipt>> requestedData, | ||
final Map<BlockHeader, List<TransactionReceipt>> partialResponse) { | ||
|
||
assertThat(partialResponse.size()).isLessThanOrEqualTo(requestedData.size()); | ||
assertThat(partialResponse.size()).isGreaterThan(0); | ||
partialResponse.forEach( | ||
(blockHeader, transactionReceipts) -> { | ||
assertThat(requestedData).containsKey(blockHeader); | ||
assertThat(requestedData.get(blockHeader)).isEqualTo(transactionReceipts); | ||
}); | ||
} | ||
} |