ProposalPayload.java
/*
* Copyright 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.
*
* SPDX-License-Identifier: Apache-2.0
*/
package org.hyperledger.besu.consensus.ibft.payload;
import org.hyperledger.besu.consensus.common.bft.ConsensusRoundIdentifier;
import org.hyperledger.besu.consensus.ibft.messagedata.IbftV2;
import org.hyperledger.besu.datatypes.Hash;
import org.hyperledger.besu.ethereum.rlp.RLPInput;
import org.hyperledger.besu.ethereum.rlp.RLPOutput;
import java.util.Objects;
import java.util.StringJoiner;
/** The Proposal payload. */
public class ProposalPayload extends IbftPayload {
private static final int TYPE = IbftV2.PROPOSAL;
private final ConsensusRoundIdentifier roundIdentifier;
private final Hash digest;
/**
* Instantiates a new Proposal payload.
*
* @param roundIdentifier the round identifier
* @param digest the digest
*/
public ProposalPayload(final ConsensusRoundIdentifier roundIdentifier, final Hash digest) {
this.roundIdentifier = roundIdentifier;
this.digest = digest;
}
/**
* Read from rlp input and return proposal payload.
*
* @param rlpInput the rlp input
* @return the proposal payload
*/
public static ProposalPayload readFrom(final RLPInput rlpInput) {
rlpInput.enterList();
final ConsensusRoundIdentifier roundIdentifier = ConsensusRoundIdentifier.readFrom(rlpInput);
final Hash digest = Hash.wrap(rlpInput.readBytes32());
rlpInput.leaveList();
return new ProposalPayload(roundIdentifier, digest);
}
@Override
public void writeTo(final RLPOutput rlpOutput) {
rlpOutput.startList();
roundIdentifier.writeTo(rlpOutput);
rlpOutput.writeBytes(digest);
rlpOutput.endList();
}
/**
* Gets digest.
*
* @return the digest
*/
public Hash getDigest() {
return digest;
}
@Override
public int getMessageType() {
return TYPE;
}
@Override
public ConsensusRoundIdentifier getRoundIdentifier() {
return roundIdentifier;
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final ProposalPayload that = (ProposalPayload) o;
return Objects.equals(roundIdentifier, that.roundIdentifier)
&& Objects.equals(digest, that.digest);
}
@Override
public int hashCode() {
return Objects.hash(roundIdentifier, digest);
}
@Override
public String toString() {
return new StringJoiner(", ", ProposalPayload.class.getSimpleName() + "[", "]")
.add("roundIdentifier=" + roundIdentifier)
.add("digest=" + digest)
.toString();
}
}