reth_optimism_payload_builder/config.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
//! Additional configuration for the OP builder
use std::sync::{atomic::AtomicU64, Arc};
/// Settings for the OP builder.
#[derive(Debug, Clone, Default)]
pub struct OpBuilderConfig {
/// Data availability configuration for the OP builder.
pub da_config: OpDAConfig,
}
impl OpBuilderConfig {
/// Creates a new OP builder configuration with the given data availability configuration.
pub const fn new(da_config: OpDAConfig) -> Self {
Self { da_config }
}
/// Returns the Data Availability configuration for the OP builder, if it has configured
/// constraints.
pub fn constrained_da_config(&self) -> Option<&OpDAConfig> {
if self.da_config.is_empty() {
None
} else {
Some(&self.da_config)
}
}
}
/// Contains the Data Availability configuration for the OP builder.
///
/// This type is shareable and can be used to update the DA configuration for the OP payload
/// builder.
#[derive(Debug, Clone, Default)]
pub struct OpDAConfig {
inner: Arc<OpDAConfigInner>,
}
impl OpDAConfig {
/// Creates a new Data Availability configuration with the given maximum sizes.
pub fn new(max_da_tx_size: u64, max_da_block_size: u64) -> Self {
let this = Self::default();
this.set_max_da_size(max_da_tx_size, max_da_block_size);
this
}
/// Returns whether the configuration is empty.
pub fn is_empty(&self) -> bool {
self.max_da_tx_size().is_none() && self.max_da_block_size().is_none()
}
/// Returns the max allowed data availability size per transactions, if any.
pub fn max_da_tx_size(&self) -> Option<u64> {
let val = self.inner.max_da_tx_size.load(std::sync::atomic::Ordering::Relaxed);
if val == 0 {
None
} else {
Some(val)
}
}
/// Returns the max allowed data availability size per block, if any.
pub fn max_da_block_size(&self) -> Option<u64> {
let val = self.inner.max_da_block_size.load(std::sync::atomic::Ordering::Relaxed);
if val == 0 {
None
} else {
Some(val)
}
}
/// Sets the maximum data availability size currently allowed for inclusion. 0 means no maximum.
pub fn set_max_da_size(&self, max_da_tx_size: u64, max_da_block_size: u64) {
self.set_max_tx_size(max_da_tx_size);
self.set_max_block_size(max_da_block_size);
}
/// Sets the maximum data availability size per transaction currently allowed for inclusion. 0
/// means no maximum.
pub fn set_max_tx_size(&self, max_da_tx_size: u64) {
self.inner.max_da_tx_size.store(max_da_tx_size, std::sync::atomic::Ordering::Relaxed);
}
/// Sets the maximum data availability size per block currently allowed for inclusion. 0 means
/// no maximum.
pub fn set_max_block_size(&self, max_da_block_size: u64) {
self.inner.max_da_block_size.store(max_da_block_size, std::sync::atomic::Ordering::Relaxed);
}
}
#[derive(Debug, Default)]
struct OpDAConfigInner {
/// Don't include any transactions with data availability size larger than this in any built
/// block
///
/// 0 means no limit.
max_da_tx_size: AtomicU64,
/// Maximum total data availability size for a block
///
/// 0 means no limit.
max_da_block_size: AtomicU64,
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_da() {
let da = OpDAConfig::default();
assert_eq!(da.max_da_tx_size(), None);
assert_eq!(da.max_da_block_size(), None);
da.set_max_da_size(100, 200);
assert_eq!(da.max_da_tx_size(), Some(100));
assert_eq!(da.max_da_block_size(), Some(200));
da.set_max_da_size(0, 0);
assert_eq!(da.max_da_tx_size(), None);
assert_eq!(da.max_da_block_size(), None);
}
#[test]
fn test_da_constrained() {
let config = OpBuilderConfig::default();
assert!(config.constrained_da_config().is_none());
}
}