sui_indexer_alt_jsonrpc/data/
kv_loader.rs

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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

use async_graphql::dataloader::DataLoader;
use std::collections::HashMap;
use std::sync::Arc;
use sui_indexer_alt_schema::transactions::StoredTransaction;
use sui_kvstore::TransactionData as KVTransactionData;
use sui_types::base_types::ObjectID;
use sui_types::digests::TransactionDigest;
use sui_types::effects::TransactionEffects;
use sui_types::signature::GenericSignature;
use sui_types::transaction::TransactionData;
use sui_types::{
    crypto::AuthorityQuorumSignInfo,
    event::Event,
    messages_checkpoint::{CheckpointContents, CheckpointSummary},
    object::Object,
};

use super::{
    bigtable_reader::BigtableReader, checkpoints::CheckpointKey, error::Error,
    objects::VersionedObjectKey, pg_reader::PgReader, transactions::TransactionKey,
};

/// A loader for point lookups in kv stores backed by either Bigtable or Postgres.
/// Supported lookups:
/// - Objects by id and version
/// - Checkpoints by sequence number
/// - Transactions by digest
#[derive(Clone)]
pub(crate) enum KvLoader {
    Bigtable(Arc<DataLoader<BigtableReader>>),
    Pg(Arc<DataLoader<PgReader>>),
}

/// A wrapper for the contents of a transaction, either from Bigtable or Postgres.
pub(crate) enum TransactionContents {
    Bigtable(KVTransactionData),
    Pg(StoredTransaction),
}

impl KvLoader {
    pub(crate) fn new_with_bigtable(bigtable_loader: Arc<DataLoader<BigtableReader>>) -> Self {
        Self::Bigtable(bigtable_loader)
    }

    pub(crate) fn new_with_pg(pg_loader: Arc<DataLoader<PgReader>>) -> Self {
        Self::Pg(pg_loader)
    }

    pub(crate) async fn load_one_object(
        &self,
        id: ObjectID,
        version: u64,
    ) -> Result<Option<Object>, Arc<Error>> {
        let key = VersionedObjectKey(id, version);
        match self {
            Self::Bigtable(loader) => loader.load_one(key).await,
            Self::Pg(loader) => loader
                .load_one(key)
                .await?
                .and_then(|stored| {
                    stored.serialized_object.map(
                        |serialized_object| -> Result<Object, Arc<Error>> {
                            bcs::from_bytes(serialized_object.as_slice())
                                .map_err(|e| Arc::new(Error::Serde(e.into())))
                        },
                    )
                })
                .transpose(),
        }
    }

    pub(crate) async fn load_many_objects(
        &self,
        keys: Vec<VersionedObjectKey>,
    ) -> Result<HashMap<VersionedObjectKey, Object>, Arc<Error>> {
        match self {
            Self::Bigtable(loader) => loader.load_many(keys).await,
            Self::Pg(loader) => loader
                .load_many(keys)
                .await?
                .into_iter()
                .flat_map(|(key, stored)| {
                    stored.serialized_object.map(
                        |serialized_object| -> Result<(VersionedObjectKey, Object), Arc<Error>> {
                            Ok((
                                key,
                                bcs::from_bytes(serialized_object.as_slice())
                                    .map_err(|e| Arc::new(Error::Serde(e.into())))?,
                            ))
                        },
                    )
                })
                .collect(),
        }
    }

    pub(crate) async fn load_one_checkpoint(
        &self,
        sequence_number: u64,
    ) -> Result<
        Option<(
            CheckpointSummary,
            CheckpointContents,
            AuthorityQuorumSignInfo<true>,
        )>,
        Arc<Error>,
    > {
        let key = CheckpointKey(sequence_number);
        match self {
            Self::Bigtable(loader) => loader.load_one(key).await,
            Self::Pg(loader) => loader
                .load_one(key)
                .await?
                .map(|stored| {
                    let summary: CheckpointSummary = bcs::from_bytes(&stored.checkpoint_summary)
                        .map_err(|e| Error::Serde(e.into()))?;

                    let contents: CheckpointContents = bcs::from_bytes(&stored.checkpoint_contents)
                        .map_err(|e| Error::Serde(e.into()))?;

                    let signature: AuthorityQuorumSignInfo<true> =
                        bcs::from_bytes(&stored.validator_signatures)
                            .map_err(|e| Error::Serde(e.into()))?;

                    Ok((summary, contents, signature))
                })
                .transpose(),
        }
    }

    pub(crate) async fn load_one_transaction(
        &self,
        digest: TransactionDigest,
    ) -> Result<Option<TransactionContents>, Arc<Error>> {
        let key = TransactionKey(digest);
        match self {
            Self::Bigtable(loader) => Ok(loader
                .load_one(key)
                .await?
                .map(TransactionContents::Bigtable)),
            Self::Pg(loader) => Ok(loader.load_one(key).await?.map(TransactionContents::Pg)),
        }
    }
}

impl TransactionContents {
    pub(crate) fn data(&self) -> anyhow::Result<TransactionData> {
        match self {
            Self::Pg(stored) => {
                let data: TransactionData =
                    bcs::from_bytes(&stored.raw_transaction).map_err(|e| {
                        anyhow::anyhow!("Failed to deserialize transaction data: {}", e)
                    })?;

                Ok(data)
            }
            Self::Bigtable(kv) => Ok(kv.transaction.data().transaction_data().clone()),
        }
    }

    pub(crate) fn digest(&self) -> anyhow::Result<TransactionDigest> {
        match self {
            Self::Pg(stored) => {
                let digest =
                    TransactionDigest::try_from(stored.tx_digest.clone()).map_err(|e| {
                        anyhow::anyhow!("Failed to deserialize transaction digest: {}", e)
                    })?;

                Ok(digest)
            }
            Self::Bigtable(kv) => Ok(*kv.transaction.digest()),
        }
    }

    pub(crate) fn signatures(&self) -> anyhow::Result<Vec<GenericSignature>> {
        match self {
            Self::Pg(stored) => {
                let signatures: Vec<GenericSignature> = bcs::from_bytes(&stored.user_signatures)
                    .map_err(|e| anyhow::anyhow!("Failed to deserialize signatures: {}", e))?;

                Ok(signatures)
            }
            Self::Bigtable(kv) => Ok(kv.transaction.tx_signatures().to_vec()),
        }
    }

    pub(crate) fn effects(&self) -> anyhow::Result<TransactionEffects> {
        match self {
            Self::Pg(stored) => {
                let effects: TransactionEffects = bcs::from_bytes(&stored.raw_effects)
                    .map_err(|e| anyhow::anyhow!("Failed to deserialize effects: {}", e))?;

                Ok(effects)
            }
            Self::Bigtable(kv) => Ok(kv.effects.clone()),
        }
    }

    pub(crate) fn events(&self) -> anyhow::Result<Vec<Event>> {
        match self {
            Self::Pg(stored) => {
                let events: Vec<Event> = bcs::from_bytes(&stored.events)
                    .map_err(|e| anyhow::anyhow!("Failed to deserialize events: {}", e))?;

                Ok(events)
            }
            Self::Bigtable(kv) => Ok(kv.events.clone().unwrap_or_default().data),
        }
    }

    pub(crate) fn raw_transaction(&self) -> anyhow::Result<Vec<u8>> {
        match self {
            Self::Pg(stored) => Ok(stored.raw_transaction.clone()),
            Self::Bigtable(kv) => bcs::to_bytes(kv.transaction.data().transaction_data())
                .map_err(|e| anyhow::anyhow!("Failed to serialize transaction: {}", e)),
        }
    }

    pub(crate) fn raw_effects(&self) -> anyhow::Result<Vec<u8>> {
        match self {
            Self::Pg(stored) => Ok(stored.raw_effects.clone()),
            Self::Bigtable(kv) => bcs::to_bytes(&kv.effects)
                .map_err(|e| anyhow::anyhow!("Failed to serialize effects: {}", e)),
        }
    }

    pub(crate) fn timestamp_ms(&self) -> u64 {
        match self {
            Self::Pg(stored) => stored.timestamp_ms as u64,
            Self::Bigtable(kv) => kv.timestamp,
        }
    }

    pub(crate) fn cp_sequence_number(&self) -> u64 {
        match self {
            Self::Pg(stored) => stored.cp_sequence_number as u64,
            Self::Bigtable(kv) => kv.checkpoint_number,
        }
    }
}