mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-30 09:38:24 -05:00
74 lines
2.8 KiB
Rust
74 lines
2.8 KiB
Rust
//! Payload service component for the node builder.
|
|
|
|
use crate::{BuilderContext, FullNodeTypes, NodeTypesWithEngine};
|
|
use reth_basic_payload_builder::{BasicPayloadJobGenerator, BasicPayloadJobGeneratorConfig};
|
|
use reth_chain_state::CanonStateSubscriptions;
|
|
use reth_node_api::PayloadBuilderFor;
|
|
use reth_payload_builder::{PayloadBuilderHandle, PayloadBuilderService};
|
|
use reth_transaction_pool::TransactionPool;
|
|
use std::future::Future;
|
|
|
|
/// A type that knows how to spawn the payload service.
|
|
pub trait PayloadServiceBuilder<Node: FullNodeTypes, Pool: TransactionPool>: Send + Sized {
|
|
/// Payload builder implementation.
|
|
type PayloadBuilder: PayloadBuilderFor<Node::Types> + Unpin + 'static;
|
|
|
|
/// Spawns the payload service and returns the handle to it.
|
|
///
|
|
/// The [`BuilderContext`] is provided to allow access to the node's configuration.
|
|
fn build_payload_builder(
|
|
&self,
|
|
ctx: &BuilderContext<Node>,
|
|
pool: Pool,
|
|
) -> impl Future<Output = eyre::Result<Self::PayloadBuilder>> + Send;
|
|
|
|
/// Spawns the [`PayloadBuilderService`] and returns the handle to it for use by the engine.
|
|
///
|
|
/// We provide default implementation via [`BasicPayloadJobGenerator`] but it can be overridden
|
|
/// for custom job orchestration logic,
|
|
fn spawn_payload_builder_service(
|
|
self,
|
|
ctx: &BuilderContext<Node>,
|
|
payload_builder: Self::PayloadBuilder,
|
|
) -> eyre::Result<PayloadBuilderHandle<<Node::Types as NodeTypesWithEngine>::Engine>> {
|
|
let conf = ctx.config().builder.clone();
|
|
|
|
let payload_job_config = BasicPayloadJobGeneratorConfig::default()
|
|
.interval(conf.interval)
|
|
.deadline(conf.deadline)
|
|
.max_payload_tasks(conf.max_payload_tasks);
|
|
|
|
let payload_generator = BasicPayloadJobGenerator::with_builder(
|
|
ctx.provider().clone(),
|
|
ctx.task_executor().clone(),
|
|
payload_job_config,
|
|
payload_builder,
|
|
);
|
|
let (payload_service, payload_service_handle) =
|
|
PayloadBuilderService::new(payload_generator, ctx.provider().canonical_state_stream());
|
|
|
|
ctx.task_executor().spawn_critical("payload builder service", Box::pin(payload_service));
|
|
|
|
Ok(payload_service_handle)
|
|
}
|
|
}
|
|
|
|
impl<Node, F, Fut, Pool, Builder> PayloadServiceBuilder<Node, Pool> for F
|
|
where
|
|
Node: FullNodeTypes,
|
|
Pool: TransactionPool,
|
|
F: Fn(&BuilderContext<Node>, Pool) -> Fut + Send,
|
|
Fut: Future<Output = eyre::Result<Builder>> + Send,
|
|
Builder: PayloadBuilderFor<Node::Types> + Unpin + 'static,
|
|
{
|
|
type PayloadBuilder = Builder;
|
|
|
|
fn build_payload_builder(
|
|
&self,
|
|
ctx: &BuilderContext<Node>,
|
|
pool: Pool,
|
|
) -> impl Future<Output = eyre::Result<Self::PayloadBuilder>> + Send {
|
|
self(ctx, pool)
|
|
}
|
|
}
|