use crate::{block::Block, vote_data::VoteData};
use aptos_crypto::hash::{TransactionAccumulatorHasher, ACCUMULATOR_PLACEHOLDER_HASH};
use aptos_crypto_derive::{BCSCryptoHash, CryptoHasher};
use aptos_types::{
epoch_state::EpochState,
proof::{accumulator::InMemoryAccumulator, AccumulatorExtensionProof},
};
use serde::{Deserialize, Serialize};
use std::fmt::{Display, Formatter};
#[derive(Clone, Debug, CryptoHasher, Deserialize, BCSCryptoHash, Serialize)]
pub struct VoteProposal {
accumulator_extension_proof: AccumulatorExtensionProof<TransactionAccumulatorHasher>,
#[serde(bound(deserialize = "Block: Deserialize<'de>"))]
block: Block,
next_epoch_state: Option<EpochState>,
decoupled_execution: bool,
}
impl VoteProposal {
pub fn new(
accumulator_extension_proof: AccumulatorExtensionProof<TransactionAccumulatorHasher>,
block: Block,
next_epoch_state: Option<EpochState>,
decoupled_execution: bool,
) -> Self {
Self {
accumulator_extension_proof,
block,
next_epoch_state,
decoupled_execution,
}
}
pub fn accumulator_extension_proof(
&self,
) -> &AccumulatorExtensionProof<TransactionAccumulatorHasher> {
&self.accumulator_extension_proof
}
pub fn block(&self) -> &Block {
&self.block
}
pub fn next_epoch_state(&self) -> Option<&EpochState> {
self.next_epoch_state.as_ref()
}
fn vote_data_ordering_only(&self) -> VoteData {
VoteData::new(
self.block().gen_block_info(
*ACCUMULATOR_PLACEHOLDER_HASH,
0,
self.next_epoch_state().cloned(),
),
self.block().quorum_cert().certified_block().clone(),
)
}
fn vote_data_with_extension_proof(
&self,
new_tree: &InMemoryAccumulator<TransactionAccumulatorHasher>,
) -> VoteData {
VoteData::new(
self.block().gen_block_info(
new_tree.root_hash(),
new_tree.version(),
self.next_epoch_state().cloned(),
),
self.block().quorum_cert().certified_block().clone(),
)
}
pub fn gen_vote_data(&self) -> anyhow::Result<VoteData> {
if self.decoupled_execution {
Ok(self.vote_data_ordering_only())
} else {
let proposed_block = self.block();
let new_tree = self.accumulator_extension_proof().verify(
proposed_block
.quorum_cert()
.certified_block()
.executed_state_id(),
)?;
Ok(self.vote_data_with_extension_proof(&new_tree))
}
}
}
impl Display for VoteProposal {
fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {
write!(f, "VoteProposal[block: {}]", self.block,)
}
}