mirror of https://github.com/hyperledger/besu
Split IbftProcessor into looping and event processing (#612)
Signed-off-by: Adrian Sutton <adrian.sutton@consensys.net>pull/2/head
parent
300556c5fd
commit
f0f8c54501
@ -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.consensus.ibft; |
||||
|
||||
import tech.pegasys.pantheon.consensus.ibft.ibftevent.BlockTimerExpiry; |
||||
import tech.pegasys.pantheon.consensus.ibft.ibftevent.IbftEvent; |
||||
import tech.pegasys.pantheon.consensus.ibft.ibftevent.IbftReceivedMessageEvent; |
||||
import tech.pegasys.pantheon.consensus.ibft.ibftevent.NewChainHead; |
||||
import tech.pegasys.pantheon.consensus.ibft.ibftevent.RoundExpiry; |
||||
import tech.pegasys.pantheon.consensus.ibft.statemachine.IbftController; |
||||
|
||||
import org.apache.logging.log4j.LogManager; |
||||
import org.apache.logging.log4j.Logger; |
||||
|
||||
public class EventMultiplexer { |
||||
|
||||
private static final Logger LOG = LogManager.getLogger(); |
||||
|
||||
private final IbftController ibftController; |
||||
|
||||
public EventMultiplexer(final IbftController ibftController) { |
||||
this.ibftController = ibftController; |
||||
} |
||||
|
||||
public void handleIbftEvent(final IbftEvent ibftEvent) { |
||||
try { |
||||
switch (ibftEvent.getType()) { |
||||
case MESSAGE: |
||||
final IbftReceivedMessageEvent rxEvent = (IbftReceivedMessageEvent) ibftEvent; |
||||
ibftController.handleMessageEvent(rxEvent); |
||||
break; |
||||
case ROUND_EXPIRY: |
||||
final RoundExpiry roundExpiryEvent = (RoundExpiry) ibftEvent; |
||||
ibftController.handleRoundExpiry(roundExpiryEvent); |
||||
break; |
||||
case NEW_CHAIN_HEAD: |
||||
final NewChainHead newChainHead = (NewChainHead) ibftEvent; |
||||
ibftController.handleNewBlockEvent(newChainHead); |
||||
break; |
||||
case BLOCK_TIMER_EXPIRY: |
||||
final BlockTimerExpiry blockTimerExpiry = (BlockTimerExpiry) ibftEvent; |
||||
ibftController.handleBlockTimerExpiry(blockTimerExpiry); |
||||
break; |
||||
default: |
||||
throw new RuntimeException("Illegal event in queue."); |
||||
} |
||||
} catch (final Exception e) { |
||||
LOG.error("State machine threw exception while processing event {" + ibftEvent + "}", e); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue