pub use eth2::types::{EventKind, SseBlock, SseFinalizedCheckpoint, SseHead}; use slog::{trace, Logger}; use tokio::sync::broadcast; use tokio::sync::broadcast::{error::SendError, Receiver, Sender}; use types::EthSpec; const DEFAULT_CHANNEL_CAPACITY: usize = 16; pub struct ServerSentEventHandler { attestation_tx: Sender>, block_tx: Sender>, finalized_tx: Sender>, head_tx: Sender>, exit_tx: Sender>, log: Logger, } impl ServerSentEventHandler { pub fn new(log: Logger) -> Self { let (attestation_tx, _) = broadcast::channel(DEFAULT_CHANNEL_CAPACITY); let (block_tx, _) = broadcast::channel(DEFAULT_CHANNEL_CAPACITY); let (finalized_tx, _) = broadcast::channel(DEFAULT_CHANNEL_CAPACITY); let (head_tx, _) = broadcast::channel(DEFAULT_CHANNEL_CAPACITY); let (exit_tx, _) = broadcast::channel(DEFAULT_CHANNEL_CAPACITY); Self { attestation_tx, block_tx, finalized_tx, head_tx, exit_tx, log, } } pub fn new_with_capacity(log: Logger, capacity: usize) -> Self { let (attestation_tx, _) = broadcast::channel(capacity); let (block_tx, _) = broadcast::channel(capacity); let (finalized_tx, _) = broadcast::channel(capacity); let (head_tx, _) = broadcast::channel(capacity); let (exit_tx, _) = broadcast::channel(capacity); Self { attestation_tx, block_tx, finalized_tx, head_tx, exit_tx, log, } } pub fn register(&self, kind: EventKind) { let result = match kind { EventKind::Attestation(attestation) => self .attestation_tx .send(EventKind::Attestation(attestation)) .map(|count| trace!(self.log, "Registering server-sent attestation event"; "receiver_count" => count)), EventKind::Block(block) => self.block_tx.send(EventKind::Block(block)) .map(|count| trace!(self.log, "Registering server-sent block event"; "receiver_count" => count)), EventKind::FinalizedCheckpoint(checkpoint) => self.finalized_tx .send(EventKind::FinalizedCheckpoint(checkpoint)) .map(|count| trace!(self.log, "Registering server-sent finalized checkpoint event"; "receiver_count" => count)), EventKind::Head(head) => self.head_tx.send(EventKind::Head(head)) .map(|count| trace!(self.log, "Registering server-sent head event"; "receiver_count" => count)), EventKind::VoluntaryExit(exit) => self.exit_tx.send(EventKind::VoluntaryExit(exit)) .map(|count| trace!(self.log, "Registering server-sent voluntary exit event"; "receiver_count" => count)), }; if let Err(SendError(event)) = result { trace!(self.log, "No receivers registered to listen for event"; "event" => ?event); } } pub fn subscribe_attestation(&self) -> Receiver> { self.attestation_tx.subscribe() } pub fn subscribe_block(&self) -> Receiver> { self.block_tx.subscribe() } pub fn subscribe_finalized(&self) -> Receiver> { self.finalized_tx.subscribe() } pub fn subscribe_head(&self) -> Receiver> { self.head_tx.subscribe() } pub fn subscribe_exit(&self) -> Receiver> { self.exit_tx.subscribe() } pub fn has_attestation_subscribers(&self) -> bool { self.attestation_tx.receiver_count() > 0 } pub fn has_block_subscribers(&self) -> bool { self.block_tx.receiver_count() > 0 } pub fn has_finalized_subscribers(&self) -> bool { self.finalized_tx.receiver_count() > 0 } pub fn has_head_subscribers(&self) -> bool { self.head_tx.receiver_count() > 0 } pub fn has_exit_subscribers(&self) -> bool { self.exit_tx.receiver_count() > 0 } }