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.
- Loading branch information
tmohay
committed
Nov 13, 2018
1 parent
4a75fb7
commit 46409d2
Showing
10 changed files
with
250 additions
and
56 deletions.
There are no files selected for viewing
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
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
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
116 changes: 116 additions & 0 deletions
116
...main/java/tech/pegasys/pantheon/consensus/ibft/blockcreation/IbftBlockCreatorFactory.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,116 @@ | ||
/* | ||
* Copyright 2018 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.consensus.ibft.blockcreation; | ||
|
||
import tech.pegasys.pantheon.consensus.common.VoteTally; | ||
import tech.pegasys.pantheon.consensus.common.VoteType; | ||
import tech.pegasys.pantheon.consensus.ibft.IbftContext; | ||
import tech.pegasys.pantheon.consensus.ibft.IbftExtraData; | ||
import tech.pegasys.pantheon.consensus.ibft.IbftVoteType; | ||
import tech.pegasys.pantheon.consensus.ibft.Vote; | ||
import tech.pegasys.pantheon.ethereum.ProtocolContext; | ||
import tech.pegasys.pantheon.ethereum.core.Address; | ||
import tech.pegasys.pantheon.ethereum.core.BlockHeader; | ||
import tech.pegasys.pantheon.ethereum.core.MiningParameters; | ||
import tech.pegasys.pantheon.ethereum.core.PendingTransactions; | ||
import tech.pegasys.pantheon.ethereum.core.Wei; | ||
import tech.pegasys.pantheon.ethereum.mainnet.ProtocolSchedule; | ||
import tech.pegasys.pantheon.util.bytes.BytesValue; | ||
import tech.pegasys.pantheon.util.bytes.BytesValues; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.Optional; | ||
import java.util.function.Function; | ||
|
||
public class IbftBlockCreatorFactory { | ||
|
||
private final Function<Long, Long> gasLimitCalculator; | ||
private final PendingTransactions pendingTransactions; | ||
protected final ProtocolContext<IbftContext> protocolContext; | ||
protected final ProtocolSchedule<IbftContext> protocolSchedule; | ||
private final Address localAddress; | ||
|
||
private volatile BytesValue vanityData; | ||
private volatile Wei minTransactionGasPrice; | ||
|
||
public IbftBlockCreatorFactory( | ||
final Function<Long, Long> gasLimitCalculator, | ||
final PendingTransactions pendingTransactions, | ||
final ProtocolContext<IbftContext> protocolContext, | ||
final ProtocolSchedule<IbftContext> protocolSchedule, | ||
final MiningParameters miningParams, | ||
final Address localAddress) { | ||
this.gasLimitCalculator = gasLimitCalculator; | ||
this.pendingTransactions = pendingTransactions; | ||
this.protocolContext = protocolContext; | ||
this.protocolSchedule = protocolSchedule; | ||
this.localAddress = localAddress; | ||
this.minTransactionGasPrice = miningParams.getMinTransactionGasPrice(); | ||
this.vanityData = miningParams.getExtraData(); | ||
} | ||
|
||
public IbftBlockCreator create(final BlockHeader parentHeader, final int round) { | ||
return new IbftBlockCreator( | ||
localAddress, | ||
ph -> createExtraData(round), | ||
pendingTransactions, | ||
protocolContext, | ||
protocolSchedule, | ||
gasLimitCalculator, | ||
minTransactionGasPrice, | ||
parentHeader); | ||
} | ||
|
||
public void setExtraData(final BytesValue extraData) { | ||
this.vanityData = extraData.copy(); | ||
} | ||
|
||
public void setMinTransactionGasPrice(final Wei minTransactionGasPrice) { | ||
this.minTransactionGasPrice = minTransactionGasPrice.copy(); | ||
} | ||
|
||
public Wei getMinTransactionGasPrice() { | ||
return minTransactionGasPrice; | ||
} | ||
|
||
public BytesValue createExtraData(final int round) { | ||
final VoteTally voteTally = protocolContext.getConsensusState().getVoteTally(); | ||
Optional<Map.Entry<Address, VoteType>> proposal = | ||
protocolContext.getConsensusState().getVoteProposer().getVote(localAddress, voteTally); | ||
|
||
// TODO(tmm): This needs to be reworked to not always be "add" | ||
// TODO(tmm): The Vote type probably shouldn't know about serialisation values, should bein the | ||
// extra data content. | ||
Optional<Vote> vote = | ||
proposal | ||
.map(p -> Optional.of(new Vote(p.getKey(), IbftVoteType.ADD))) | ||
.orElse(Optional.empty()); | ||
|
||
List<Address> validators = new ArrayList<>(voteTally.getCurrentValidators()); | ||
|
||
IbftExtraData extraData = | ||
new IbftExtraData( | ||
createCorrectlySizedVanityData(), new ArrayList<>(), vote, round, validators); | ||
|
||
return extraData.encode(); | ||
} | ||
|
||
// TODO(tmm): Copied from CliqueMinerExecutor | ||
private BytesValue createCorrectlySizedVanityData() { | ||
final int vanityPadding = Math.max(0, IbftExtraData.EXTRA_VANITY_LENGTH - vanityData.size()); | ||
return BytesValues.concatenate(BytesValue.wrap(new byte[vanityPadding]), vanityData) | ||
.slice(0, IbftExtraData.EXTRA_VANITY_LENGTH); | ||
} | ||
} |
50 changes: 50 additions & 0 deletions
50
...c/main/java/tech/pegasys/pantheon/consensus/ibft/blockcreation/IbftMiningCoordinator.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,50 @@ | ||
/* | ||
* Copyright 2018 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.consensus.ibft.blockcreation; | ||
|
||
import tech.pegasys.pantheon.ethereum.blockcreation.MiningCoordinator; | ||
import tech.pegasys.pantheon.ethereum.core.Wei; | ||
import tech.pegasys.pantheon.util.bytes.BytesValue; | ||
|
||
public class IbftMiningCoordinator implements MiningCoordinator { | ||
|
||
private final IbftBlockCreatorFactory blockCreatorFactory; | ||
|
||
public IbftMiningCoordinator(final IbftBlockCreatorFactory blockCreatorFactory) { | ||
this.blockCreatorFactory = blockCreatorFactory; | ||
} | ||
|
||
@Override | ||
public void enable() {} | ||
|
||
@Override | ||
public void disable() {} | ||
|
||
@Override | ||
public boolean isRunning() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public void setMinTransactionGasPrice(final Wei minGasPrice) {} | ||
|
||
@Override | ||
public Wei getMinTransactionGasPrice() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public void setExtraData(final BytesValue extraData) { | ||
blockCreatorFactory.setExtraData(extraData); | ||
} | ||
} |
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
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
Oops, something went wrong.