-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmod.rs
261 lines (224 loc) · 9.83 KB
/
mod.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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
use std::thread;
use anyhow::{anyhow, Context as AnyhowContext};
use futures::StreamExt;
use reqwest_eventsource::Event;
use tokio::{sync::mpsc, task::JoinHandle};
use tracing::{debug, error, info};
use crate::{
args::Args,
clients::{
beacon::types::{BlockId, FinalizedCheckpointEventData, HeadBlockEventData, Topic},
blobscan::types::BlockchainSyncState,
},
context::{Config as ContextConfig, Context},
env::Environment,
synchronizer::{Synchronizer, SynchronizerBuilder},
};
use self::{
error::{IndexerError, IndexingTaskError},
types::{IndexerResult, IndexerTaskResult},
};
pub mod error;
pub mod types;
pub struct Indexer {
context: Context,
lowest_indexed_slot: u32,
num_threads: u32,
slots_checkpoint: Option<u32>,
}
impl Indexer {
pub fn try_new(env: &Environment, args: &Args) -> IndexerResult<Self> {
let context = match Context::try_new(ContextConfig::from(env)) {
Ok(c) => c,
Err(error) => {
error!(target = "indexer", ?error, "Failed to create context");
return Err(error.into());
}
};
let num_threads = match args.num_threads {
Some(num_threads) => num_threads,
None => thread::available_parallelism()
.map_err(|err| anyhow!("Failed to get number of available threads: {:?}", err))?
.get() as u32,
};
let lowest_indexed_slot = env.lowest_indexed_slot.unwrap_or(0);
Ok(Self {
context,
num_threads,
slots_checkpoint: args.slots_per_save,
lowest_indexed_slot,
})
}
pub async fn run(&mut self, custom_start_block_id: Option<BlockId>) -> IndexerResult<()> {
let sync_state = match self.context.blobscan_client().get_sync_state().await {
Ok(state) => state,
Err(error) => {
error!(target = "indexer", ?error, "Failed to fetch sync state");
return Err(error.into());
}
};
let current_lower_block_id = match custom_start_block_id.clone() {
Some(block_id) => block_id,
None => match &sync_state {
Some(state) => match state.last_lower_synced_slot {
Some(slot) => BlockId::Slot(slot - 1),
None => BlockId::Head,
},
None => BlockId::Head,
},
};
let current_upper_block_id = match custom_start_block_id {
Some(block_id) => block_id,
None => match &sync_state {
Some(state) => match state.last_upper_synced_slot {
Some(slot) => BlockId::Slot(slot + 1),
None => BlockId::Head,
},
None => BlockId::Head,
},
};
info!(
target = "indexer",
?current_lower_block_id,
?current_upper_block_id,
"Starting indexer…",
);
let (tx, mut rx) = mpsc::channel(32);
let tx1 = tx.clone();
self._start_historical_sync_task(tx1, current_lower_block_id);
self._start_realtime_sync_task(tx, current_upper_block_id);
while let Some(message) = rx.recv().await {
if let Err(error) = message {
error!(target = "indexer", ?error, "Indexer error occurred");
return Err(error.into());
}
}
Ok(())
}
fn _start_historical_sync_task(
&self,
tx: mpsc::Sender<IndexerTaskResult>,
start_block_id: BlockId,
) -> JoinHandle<IndexerTaskResult> {
let mut synchronizer = self._create_synchronizer();
let lowest_indexed_slot = self.lowest_indexed_slot;
tokio::spawn(async move {
let result = synchronizer
.run(&start_block_id, &BlockId::Slot(lowest_indexed_slot))
.await;
if let Err(error) = result {
// TODO: Find a better way to handle this error
tx.send(Err(IndexingTaskError::FailedIndexingTask {
task_name: "historical_sync".to_string(),
error: error.into(),
}))
.await
.unwrap();
};
Ok(())
})
}
fn _start_realtime_sync_task(
&self,
tx: mpsc::Sender<IndexerTaskResult>,
start_block_id: BlockId,
) -> JoinHandle<IndexerTaskResult> {
let task_context = self.context.clone();
let mut synchronizer = self._create_synchronizer();
tokio::spawn(async move {
let result: Result<(), IndexerError> = async {
let beacon_client = task_context.beacon_client();
let blobscan_client = task_context.blobscan_client();
let mut event_source = task_context
.beacon_client()
.subscribe_to_events(vec![Topic::Head, Topic::FinalizedCheckpoint])?;
let mut is_initial_sync_to_head = true;
while let Some(event) = event_source.next().await {
match event {
Ok(Event::Open) => {
debug!(target = "indexer", "Listening for head and finalized block events…")
}
Ok(Event::Message(event)) => {
match event.event.as_str() {
"head" => {
let head_block_data =
serde_json::from_str::<HeadBlockEventData>(&event.data)?;
let head_block_id = &BlockId::Slot(head_block_data.slot);
let initial_block_id = if is_initial_sync_to_head {
is_initial_sync_to_head = false;
&start_block_id
} else {
head_block_id
};
synchronizer.run(initial_block_id, head_block_id).await?;
blobscan_client
.update_sync_state(BlockchainSyncState {
last_finalized_block: None,
last_lower_synced_slot: None,
last_upper_synced_slot: Some(head_block_data.slot),
})
.await?;
}
"finalized_checkpoint" => {
let finalized_checkpoint_data =
serde_json::from_str::<FinalizedCheckpointEventData>(
&event.data,
)?;
let block_hash = finalized_checkpoint_data.block;
let full_block_hash = format!("0x{:x}", block_hash);
let last_finalized_block_number = beacon_client
.get_block(&BlockId::Hash(block_hash))
.await?
.with_context(|| {
anyhow!("Finalized block with hash {full_block_hash} not found")
})?
.message.body.execution_payload
.with_context(|| {
anyhow!("Finalized block with hash {full_block_hash} has no execution payload")
})?.block_number;
blobscan_client
.update_sync_state(BlockchainSyncState {
last_lower_synced_slot: None,
last_upper_synced_slot: None,
last_finalized_block: Some(
last_finalized_block_number
),
})
.await?;
info!(target = "indexer", "Finalized block {full_block_hash} detected and stored");
},
unexpected_event_id => {
return Err(IndexerError::UnexpectedEvent { event: unexpected_event_id.to_string() })
}
}
},
Err(error) => {
event_source.close();
return Err(error.into());
}
}
}
Ok(())
}
.await;
if let Err(error) = result {
// TODO: Find a better way to handle this error
tx.send(Err(IndexingTaskError::FailedIndexingTask {
task_name: "realtime_head_block_sync".to_string(),
error,
}))
.await
.unwrap();
};
Ok(())
})
}
fn _create_synchronizer(&self) -> Synchronizer {
let mut synchronizer_builder = SynchronizerBuilder::new();
synchronizer_builder.with_num_threads(self.num_threads);
if let Some(slots_checkpoint) = self.slots_checkpoint {
synchronizer_builder.with_slots_checkpoint(slots_checkpoint);
}
synchronizer_builder.build(self.context.clone())
}
}