1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

use crate::base_types::{AuthorityName, VerifiedExecutionData};
use crate::committee::Committee;
use crate::crypto::{AuthoritySignInfo, AuthoritySignature, SuiAuthoritySignature};
use crate::effects::{TransactionEffects, TransactionEffectsAPI};
use crate::gas::GasCostSummary;
use crate::messages_checkpoint::{
    CertifiedCheckpointSummary, CheckpointContents, CheckpointSummary, EndOfEpochData,
    FullCheckpointContents, VerifiedCheckpoint, VerifiedCheckpointContents,
};
use crate::transaction::VerifiedTransaction;
use fastcrypto::traits::Signer;
use std::mem;

pub trait ValidatorKeypairProvider {
    fn get_validator_key(&self, name: &AuthorityName) -> &dyn Signer<AuthoritySignature>;
    fn get_committee(&self) -> &Committee;
}

/// A utility to build consecutive checkpoints by adding transactions to the checkpoint builder.
/// It's mostly used by simulations, tests and benchmarks.
#[derive(Debug)]
pub struct MockCheckpointBuilder {
    previous_checkpoint: VerifiedCheckpoint,
    transactions: Vec<VerifiedExecutionData>,
    epoch_rolling_gas_cost_summary: GasCostSummary,
    epoch: u64,
}

impl MockCheckpointBuilder {
    pub fn new(previous_checkpoint: VerifiedCheckpoint) -> Self {
        let epoch_rolling_gas_cost_summary =
            previous_checkpoint.epoch_rolling_gas_cost_summary.clone();
        let epoch = previous_checkpoint.epoch;

        Self {
            previous_checkpoint,
            transactions: Vec::new(),
            epoch_rolling_gas_cost_summary,
            epoch,
        }
    }

    pub fn size(&self) -> usize {
        self.transactions.len()
    }

    pub fn epoch_rolling_gas_cost_summary(&self) -> &GasCostSummary {
        &self.epoch_rolling_gas_cost_summary
    }

    pub fn push_transaction(
        &mut self,
        transaction: VerifiedTransaction,
        effects: TransactionEffects,
    ) {
        self.epoch_rolling_gas_cost_summary += effects.gas_cost_summary();

        self.transactions
            .push(VerifiedExecutionData::new(transaction, effects))
    }

    /// Builds a checkpoint using internally buffered transactions.
    pub fn build(
        &mut self,
        validator_keys: &impl ValidatorKeypairProvider,
        timestamp_ms: u64,
    ) -> (
        VerifiedCheckpoint,
        CheckpointContents,
        VerifiedCheckpointContents,
    ) {
        self.build_internal(validator_keys, timestamp_ms, None)
    }

    pub fn build_end_of_epoch(
        &mut self,
        validator_keys: &impl ValidatorKeypairProvider,
        timestamp_ms: u64,
        new_epoch: u64,
        end_of_epoch_data: EndOfEpochData,
    ) -> (
        VerifiedCheckpoint,
        CheckpointContents,
        VerifiedCheckpointContents,
    ) {
        self.build_internal(
            validator_keys,
            timestamp_ms,
            Some((new_epoch, end_of_epoch_data)),
        )
    }

    fn build_internal(
        &mut self,
        validator_keys: &impl ValidatorKeypairProvider,
        timestamp_ms: u64,
        new_epoch_data: Option<(u64, EndOfEpochData)>,
    ) -> (
        VerifiedCheckpoint,
        CheckpointContents,
        VerifiedCheckpointContents,
    ) {
        let contents =
            CheckpointContents::new_with_causally_ordered_execution_data(self.transactions.iter());
        let full_contents = VerifiedCheckpointContents::new_unchecked(
            FullCheckpointContents::new_with_causally_ordered_transactions(
                mem::take(&mut self.transactions)
                    .into_iter()
                    .map(|e| e.into_inner()),
            ),
        );

        let (epoch, epoch_rolling_gas_cost_summary, end_of_epoch_data) =
            if let Some((next_epoch, end_of_epoch_data)) = new_epoch_data {
                let epoch = std::mem::replace(&mut self.epoch, next_epoch);
                assert_eq!(next_epoch, epoch + 1);
                let epoch_rolling_gas_cost_summary =
                    std::mem::take(&mut self.epoch_rolling_gas_cost_summary);

                (
                    epoch,
                    epoch_rolling_gas_cost_summary,
                    Some(end_of_epoch_data),
                )
            } else {
                (
                    self.epoch,
                    self.epoch_rolling_gas_cost_summary.clone(),
                    None,
                )
            };

        let summary = CheckpointSummary {
            epoch,
            sequence_number: self
                .previous_checkpoint
                .sequence_number
                .checked_add(1)
                .unwrap(),
            network_total_transactions: self.previous_checkpoint.network_total_transactions
                + contents.size() as u64,
            content_digest: *contents.digest(),
            previous_digest: Some(*self.previous_checkpoint.digest()),
            epoch_rolling_gas_cost_summary,
            end_of_epoch_data,
            timestamp_ms,
            version_specific_data: Vec::new(),
            checkpoint_commitments: Default::default(),
        };

        let checkpoint = Self::create_certified_checkpoint(validator_keys, summary);
        self.previous_checkpoint = checkpoint.clone();
        (checkpoint, contents, full_contents)
    }

    fn create_certified_checkpoint(
        validator_keys: &impl ValidatorKeypairProvider,
        checkpoint: CheckpointSummary,
    ) -> VerifiedCheckpoint {
        let signatures = validator_keys
            .get_committee()
            .voting_rights
            .iter()
            .map(|(name, _)| {
                let intent_msg = shared_crypto::intent::IntentMessage::new(
                    shared_crypto::intent::Intent::sui_app(
                        shared_crypto::intent::IntentScope::CheckpointSummary,
                    ),
                    &checkpoint,
                );
                let key = validator_keys.get_validator_key(name);
                let signature = AuthoritySignature::new_secure(&intent_msg, &checkpoint.epoch, key);
                AuthoritySignInfo {
                    epoch: checkpoint.epoch,
                    authority: *name,
                    signature,
                }
            })
            .collect();

        let checkpoint_cert =
            CertifiedCheckpointSummary::new(checkpoint, signatures, validator_keys.get_committee())
                .unwrap();
        VerifiedCheckpoint::new_unchecked(checkpoint_cert)
    }
}