#![allow(clippy::type_complexity)]
use std::sync::Arc;
use tari_node_components::blocks::ChainBlock;
use crate::base_node::sync::{SyncPeer, horizon_state_sync::HorizonSyncInfo};
#[derive(Default)]
pub(super) struct Hooks {
on_starting: Vec<Box<dyn FnOnce(&SyncPeer) + Send + Sync>>,
on_progress_header: Vec<Box<dyn Fn(u64, u64, &SyncPeer) + Send + Sync>>,
on_progress_block: Vec<Box<dyn Fn(Arc<ChainBlock>, u64, &SyncPeer) + Send + Sync>>,
on_progress_horizon_sync: Vec<Box<dyn Fn(HorizonSyncInfo) + Send + Sync>>,
on_complete: Vec<Box<dyn Fn(Arc<ChainBlock>, u64) + Send + Sync>>,
on_rewind: Vec<Box<dyn Fn(Vec<Arc<ChainBlock>>) + Send + Sync>>,
}
impl Hooks {
pub fn add_on_starting_hook<H>(&mut self, hook: H)
where H: FnOnce(&SyncPeer) + Send + Sync + 'static {
self.on_starting.push(Box::new(hook));
}
pub fn call_on_starting_hook(&mut self, sync_peer: &SyncPeer) {
self.on_starting.drain(..).for_each(|f| (f)(sync_peer));
}
pub fn add_on_progress_header_hook<H>(&mut self, hook: H)
where H: Fn(u64, u64, &SyncPeer) + Send + Sync + 'static {
self.on_progress_header.push(Box::new(hook));
}
pub fn call_on_progress_header_hooks(&self, local_height: u64, remote_height: u64, sync_peer: &SyncPeer) {
self.on_progress_header
.iter()
.for_each(|f| (*f)(local_height, remote_height, sync_peer));
}
pub fn add_on_progress_block_hook<H>(&mut self, hook: H)
where H: Fn(Arc<ChainBlock>, u64, &SyncPeer) + Send + Sync + 'static {
self.on_progress_block.push(Box::new(hook));
}
pub fn call_on_progress_block_hooks(&self, block: Arc<ChainBlock>, remote_tip_height: u64, sync_peer: &SyncPeer) {
self.on_progress_block
.iter()
.for_each(|f| (*f)(block.clone(), remote_tip_height, sync_peer));
}
pub fn add_on_progress_horizon_hook<H>(&mut self, hook: H)
where H: Fn(HorizonSyncInfo) + Send + Sync + 'static {
self.on_progress_horizon_sync.push(Box::new(hook));
}
pub fn call_on_progress_horizon_hooks(&self, info: HorizonSyncInfo) {
self.on_progress_horizon_sync.iter().for_each(|f| (*f)(info.clone()));
}
pub fn add_on_complete_hook<H>(&mut self, hook: H)
where H: Fn(Arc<ChainBlock>, u64) + Send + Sync + 'static {
self.on_complete.push(Box::new(hook));
}
pub fn call_on_complete_hooks(&self, final_block: Arc<ChainBlock>, starting_height: u64) {
self.on_complete
.iter()
.for_each(|f| (*f)(final_block.clone(), starting_height));
}
pub fn add_on_rewind_hook<H>(&mut self, hook: H)
where H: Fn(Vec<Arc<ChainBlock>>) + Send + Sync + 'static {
self.on_rewind.push(Box::new(hook));
}
pub fn call_on_rewind_hooks(&mut self, blocks: Vec<Arc<ChainBlock>>) {
self.on_rewind.iter().for_each(|f| (*f)(blocks.clone()));
}
}