PreparedCertificate.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.payload.SignedData;
import org.hyperledger.besu.ethereum.rlp.RLPInput;
import org.hyperledger.besu.ethereum.rlp.RLPOutput;
import java.util.Collection;
import java.util.List;
import java.util.Objects;
import java.util.StringJoiner;
/** The Prepared certificate. */
public class PreparedCertificate {
private final SignedData<ProposalPayload> proposalPayload;
private final List<SignedData<PreparePayload>> preparePayloads;
/**
* Instantiates a new Prepared certificate.
*
* @param proposalPayload the proposal payload
* @param preparePayloads the prepare payloads
*/
public PreparedCertificate(
final SignedData<ProposalPayload> proposalPayload,
final List<SignedData<PreparePayload>> preparePayloads) {
this.proposalPayload = proposalPayload;
this.preparePayloads = preparePayloads;
}
/**
* Read from rlp input.
*
* @param rlpInput the rlp input
* @return the prepared certificate
*/
public static PreparedCertificate readFrom(final RLPInput rlpInput) {
final SignedData<ProposalPayload> proposalMessage;
final List<SignedData<PreparePayload>> prepareMessages;
rlpInput.enterList();
proposalMessage = PayloadDeserializers.readSignedProposalPayloadFrom(rlpInput);
prepareMessages = rlpInput.readList(PayloadDeserializers::readSignedPreparePayloadFrom);
rlpInput.leaveList();
return new PreparedCertificate(proposalMessage, prepareMessages);
}
/**
* Write to rlp output.
*
* @param rlpOutput the rlp output
*/
public void writeTo(final RLPOutput rlpOutput) {
rlpOutput.startList();
proposalPayload.writeTo(rlpOutput);
rlpOutput.writeList(preparePayloads, SignedData::writeTo);
rlpOutput.endList();
}
/**
* Gets proposal payload.
*
* @return the proposal payload
*/
public SignedData<ProposalPayload> getProposalPayload() {
return proposalPayload;
}
/**
* Gets prepare payloads.
*
* @return the prepare payloads
*/
public Collection<SignedData<PreparePayload>> getPreparePayloads() {
return preparePayloads;
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final PreparedCertificate that = (PreparedCertificate) o;
return Objects.equals(proposalPayload, that.proposalPayload)
&& Objects.equals(preparePayloads, that.preparePayloads);
}
@Override
public int hashCode() {
return Objects.hash(proposalPayload, preparePayloads);
}
@Override
public String toString() {
return new StringJoiner(", ", PreparedCertificate.class.getSimpleName() + "[", "]")
.add("proposalPayload=" + proposalPayload)
.add("preparePayloads=" + preparePayloads)
.toString();
}
}