reth_engine_tree/chain.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
use crate::backfill::{BackfillAction, BackfillEvent, BackfillSync};
use futures::Stream;
use reth_stages_api::{ControlFlow, PipelineTarget};
use std::{
fmt::{Display, Formatter, Result},
pin::Pin,
task::{Context, Poll},
};
use tracing::*;
/// The type that drives the chain forward.
///
/// A state machine that orchestrates the components responsible for advancing the chain
///
///
/// ## Control flow
///
/// The [`ChainOrchestrator`] is responsible for controlling the backfill sync and additional hooks.
/// It polls the given `handler`, which is responsible for advancing the chain, how is up to the
/// handler. However, due to database restrictions (e.g. exclusive write access), following
/// invariants apply:
/// - If the handler requests a backfill run (e.g. [`BackfillAction::Start`]), the handler must
/// ensure that while the backfill sync is running, no other write access is granted.
/// - At any time the [`ChainOrchestrator`] can request exclusive write access to the database
/// (e.g. if pruning is required), but will not do so until the handler has acknowledged the
/// request for write access.
///
/// The [`ChainOrchestrator`] polls the [`ChainHandler`] to advance the chain and handles the
/// emitted events. Requests and events are passed to the [`ChainHandler`] via
/// [`ChainHandler::on_event`].
#[must_use = "Stream does nothing unless polled"]
#[derive(Debug)]
pub struct ChainOrchestrator<T, P>
where
T: ChainHandler,
P: BackfillSync,
{
/// The handler for advancing the chain.
handler: T,
/// Controls backfill sync.
backfill_sync: P,
}
impl<T, P> ChainOrchestrator<T, P>
where
T: ChainHandler + Unpin,
P: BackfillSync + Unpin,
{
/// Creates a new [`ChainOrchestrator`] with the given handler and backfill sync.
pub const fn new(handler: T, backfill_sync: P) -> Self {
Self { handler, backfill_sync }
}
/// Returns the handler
pub const fn handler(&self) -> &T {
&self.handler
}
/// Returns a mutable reference to the handler
pub fn handler_mut(&mut self) -> &mut T {
&mut self.handler
}
/// Triggers a backfill sync for the __valid__ given target.
///
/// CAUTION: This function should be used with care and with a valid target.
pub fn start_backfill_sync(&mut self, target: impl Into<PipelineTarget>) {
self.backfill_sync.on_action(BackfillAction::Start(target.into()));
}
/// Internal function used to advance the chain.
///
/// Polls the `ChainOrchestrator` for the next event.
#[tracing::instrument(level = "debug", name = "ChainOrchestrator::poll", skip(self, cx))]
fn poll_next_event(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<ChainEvent<T::Event>> {
let this = self.get_mut();
// This loop polls the components
//
// 1. Polls the backfill sync to completion, if active.
// 2. Advances the chain by polling the handler.
'outer: loop {
// try to poll the backfill sync to completion, if active
match this.backfill_sync.poll(cx) {
Poll::Ready(backfill_sync_event) => match backfill_sync_event {
BackfillEvent::Started(_) => {
// notify handler that backfill sync started
this.handler.on_event(FromOrchestrator::BackfillSyncStarted);
return Poll::Ready(ChainEvent::BackfillSyncStarted);
}
BackfillEvent::Finished(res) => {
return match res {
Ok(ctrl) => {
tracing::debug!(?ctrl, "backfill sync finished");
// notify handler that backfill sync finished
this.handler.on_event(FromOrchestrator::BackfillSyncFinished(ctrl));
Poll::Ready(ChainEvent::BackfillSyncFinished)
}
Err(err) => {
tracing::error!( %err, "backfill sync failed");
Poll::Ready(ChainEvent::FatalError)
}
}
}
BackfillEvent::TaskDropped(err) => {
tracing::error!( %err, "backfill sync task dropped");
return Poll::Ready(ChainEvent::FatalError);
}
},
Poll::Pending => {}
}
// poll the handler for the next event
match this.handler.poll(cx) {
Poll::Ready(handler_event) => {
match handler_event {
HandlerEvent::BackfillAction(action) => {
// forward action to backfill_sync
this.backfill_sync.on_action(action);
continue 'outer
}
HandlerEvent::Event(ev) => {
// bubble up the event
return Poll::Ready(ChainEvent::Handler(ev));
}
HandlerEvent::FatalError => {
error!(target: "engine::tree", "Fatal error");
return Poll::Ready(ChainEvent::FatalError)
}
}
}
Poll::Pending => {
// no more events to process
break 'outer
}
}
}
Poll::Pending
}
}
impl<T, P> Stream for ChainOrchestrator<T, P>
where
T: ChainHandler + Unpin,
P: BackfillSync + Unpin,
{
type Item = ChainEvent<T::Event>;
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
self.as_mut().poll_next_event(cx).map(Some)
}
}
/// Event emitted by the [`ChainOrchestrator`]
///
/// These are meant to be used for observability and debugging purposes.
#[derive(Debug)]
pub enum ChainEvent<T> {
/// Backfill sync started
BackfillSyncStarted,
/// Backfill sync finished
BackfillSyncFinished,
/// Fatal error
FatalError,
/// Event emitted by the handler
Handler(T),
}
impl<T: Display> Display for ChainEvent<T> {
fn fmt(&self, f: &mut Formatter<'_>) -> Result {
match self {
Self::BackfillSyncStarted => {
write!(f, "BackfillSyncStarted")
}
Self::BackfillSyncFinished => {
write!(f, "BackfillSyncFinished")
}
Self::FatalError => {
write!(f, "FatalError")
}
Self::Handler(event) => {
write!(f, "Handler({event})")
}
}
}
}
/// A trait that advances the chain by handling actions.
///
/// This is intended to be implement the chain consensus logic, for example `engine` API.
///
/// ## Control flow
///
/// The [`ChainOrchestrator`] is responsible for advancing this handler through
/// [`ChainHandler::poll`] and handling the emitted events, for example
/// [`HandlerEvent::BackfillAction`] to start a backfill sync. Events from the [`ChainOrchestrator`]
/// are passed to the handler via [`ChainHandler::on_event`], e.g.
/// [`FromOrchestrator::BackfillSyncStarted`] once the backfill sync started or finished.
pub trait ChainHandler: Send + Sync {
/// Event generated by this handler that orchestrator can bubble up;
type Event: Send;
/// Informs the handler about an event from the [`ChainOrchestrator`].
fn on_event(&mut self, event: FromOrchestrator);
/// Polls for actions that [`ChainOrchestrator`] should handle.
fn poll(&mut self, cx: &mut Context<'_>) -> Poll<HandlerEvent<Self::Event>>;
}
/// Events/Requests that the [`ChainHandler`] can emit to the [`ChainOrchestrator`].
#[derive(Clone, Debug)]
pub enum HandlerEvent<T> {
/// Request an action to backfill sync
BackfillAction(BackfillAction),
/// Other event emitted by the handler
Event(T),
/// Fatal error
FatalError,
}
/// Internal events issued by the [`ChainOrchestrator`].
#[derive(Clone, Debug)]
pub enum FromOrchestrator {
/// Invoked when backfill sync finished
BackfillSyncFinished(ControlFlow),
/// Invoked when backfill sync started
BackfillSyncStarted,
}