use crossbeam_channel::{bounded, Receiver as CbReceiver, RecvTimeoutError, Sender as CbSender};
use std::collections::{HashMap, VecDeque};
use std::sync::atomic::{AtomicU32, Ordering};
use std::sync::{Arc, Mutex, OnceLock, RwLock};
use crate::instant::Instant;
pub(crate) mod wrapper;
use crate::batch::{EventProducer, EventQueueRegistry};
use crate::channels::{resolve_label, LOGS_LIMIT};
use crate::json::JsonStreamEntry;
pub(crate) use crate::json::{ChannelState, DataFlowLogEntry, StreamLogs};
use crate::lib_on::hotpath_guard::DRAIN_INTERVAL_MS;
use crate::metrics_server::METRICS_SERVER_PORT;
pub use crate::Format;
static STREAM_ID_COUNTER: AtomicU32 = AtomicU32::new(1);
#[cfg_attr(feature = "hotpath-meta", hotpath_meta::measure(log = true))]
pub(crate) fn next_stream_id() -> u32 {
STREAM_ID_COUNTER.fetch_add(1, Ordering::Relaxed)
}
#[derive(Debug, Clone)]
pub(crate) struct StreamStats {
pub(crate) id: u32,
pub(crate) source: &'static str,
pub(crate) label: Option<String>,
pub(crate) state: ChannelState, pub(crate) items_yielded: u64,
pub(crate) type_name: &'static str,
pub(crate) type_size: usize,
pub(crate) iter: u32,
}
#[cfg_attr(feature = "hotpath-meta", hotpath_meta::measure_all)]
impl StreamStats {
fn new(
id: u32,
source: &'static str,
label: Option<String>,
type_name: &'static str,
type_size: usize,
iter: u32,
) -> Self {
Self {
id,
source,
label,
state: ChannelState::Active,
items_yielded: 0,
type_name,
type_size,
iter,
}
}
}
#[derive(Debug)]
pub(crate) struct StreamStatsLogs {
pub(crate) logs: VecDeque<DataFlowLogEntry>,
}
impl StreamStatsLogs {
fn new() -> Self {
Self {
logs: VecDeque::with_capacity(*LOGS_LIMIT),
}
}
}
pub(crate) struct StreamsInternalState {
pub(crate) stats: HashMap<u32, StreamStats>,
pub(crate) logs: HashMap<u32, StreamStatsLogs>,
}
impl From<&StreamStats> for JsonStreamEntry {
fn from(stats: &StreamStats) -> Self {
let label = resolve_label(stats.source, stats.label.as_deref(), Some(stats.iter));
JsonStreamEntry {
id: stats.id,
source: stats.source.to_string(),
label,
has_custom_label: stats.label.is_some(),
state: stats.state.as_str().to_string(),
items_yielded: stats.items_yielded,
type_name: stats.type_name.to_string(),
type_size: stats.type_size,
iter: stats.iter,
}
}
}
#[derive(Debug)]
pub(crate) enum StreamEvent {
Created {
id: u32,
source: &'static str,
display_label: Option<String>,
type_name: &'static str,
type_size: usize,
},
Yielded {
id: u32,
log: Option<String>,
timestamp: Instant,
},
Completed {
id: u32,
},
}
pub(crate) struct StreamsState {
pub(crate) inner: Arc<RwLock<StreamsInternalState>>,
pub(crate) shutdown_tx: Mutex<Option<CbSender<()>>>,
pub(crate) completion_rx: Mutex<Option<CbReceiver<()>>>,
}
pub(crate) static STREAMS_STATE: OnceLock<StreamsState> = OnceLock::new();
static EVENT_QUEUES: EventQueueRegistry<StreamEvent> = EventQueueRegistry::new();
thread_local! {
static EVENT_PRODUCER: EventProducer<StreamEvent> = EVENT_QUEUES.register();
}
#[inline]
pub(crate) fn send_stream_event(event: StreamEvent) {
if !EVENT_QUEUES.is_active() {
return;
}
let _suspend = crate::lib_on::SuspendAllocTracking::new();
let _ = EVENT_PRODUCER.try_with(|producer| producer.push(event));
}
pub(crate) fn stop_stream_events() {
EVENT_QUEUES.set_active(false);
}
fn placeholder_stream_stats(id: u32) -> StreamStats {
StreamStats::new(id, "", None, "", 0, 0)
}
#[cfg_attr(feature = "hotpath-meta", hotpath_meta::measure(log = true))]
fn process_stream_event(state: &mut StreamsInternalState, event: StreamEvent) {
match event {
StreamEvent::Created {
id,
source,
display_label,
type_name,
type_size,
} => {
let iter = state.stats.values().filter(|s| s.source == source).count() as u32;
let entry = state
.stats
.entry(id)
.or_insert_with(|| placeholder_stream_stats(id));
entry.source = source;
entry.label = display_label;
entry.type_name = type_name;
entry.type_size = type_size;
entry.iter = iter;
state.logs.entry(id).or_insert_with(StreamStatsLogs::new);
}
StreamEvent::Yielded { id, log, timestamp } => {
let stream_stats = state
.stats
.entry(id)
.or_insert_with(|| placeholder_stream_stats(id));
stream_stats.items_yielded += 1;
let items_yielded = stream_stats.items_yielded;
let entry_logs = state.logs.entry(id).or_insert_with(StreamStatsLogs::new);
let limit = *crate::channels::LOGS_LIMIT;
if entry_logs.logs.len() >= limit {
entry_logs.logs.pop_front();
}
entry_logs.logs.push_back(DataFlowLogEntry::new(
items_yielded,
crate::channels::timestamp_nanos(timestamp),
log,
None,
None,
None,
));
}
StreamEvent::Completed { id } => {
state
.stats
.entry(id)
.or_insert_with(|| placeholder_stream_stats(id))
.state = ChannelState::Closed;
}
}
}
fn flush_stream_buffer(buffer: &mut Vec<StreamEvent>, inner: &Arc<RwLock<StreamsInternalState>>) {
if buffer.is_empty() {
return;
}
if let Ok(mut shared) = inner.write() {
for e in buffer.drain(..) {
process_stream_event(&mut shared, e);
}
}
}
#[cfg_attr(feature = "hotpath-meta", hotpath_meta::measure)]
pub(crate) fn init_streams_state() -> &'static StreamsState {
STREAMS_STATE.get_or_init(|| {
crate::lib_on::START_TIME.get_or_init(Instant::now);
let (shutdown_tx, shutdown_rx) = bounded::<()>(1);
let (completion_tx, completion_rx) = bounded::<()>(1);
let inner = Arc::new(RwLock::new(StreamsInternalState {
stats: HashMap::new(),
logs: HashMap::new(),
}));
let inner_clone = Arc::clone(&inner);
EVENT_QUEUES.set_active(true);
std::thread::Builder::new()
.name("hp-streams".into())
.spawn(move || {
let flush_interval = std::time::Duration::from_millis(*DRAIN_INTERVAL_MS);
let mut swept: Vec<StreamEvent> = Vec::new();
loop {
let shutdown = !matches!(
shutdown_rx.recv_timeout(flush_interval),
Err(RecvTimeoutError::Timeout)
);
if shutdown {
EVENT_QUEUES.drain_all(&mut swept);
flush_stream_buffer(&mut swept, &inner_clone);
break;
}
EVENT_QUEUES.sweep(&mut swept);
flush_stream_buffer(&mut swept, &inner_clone);
}
let _ = completion_tx.send(());
})
.expect("Failed to spawn stream-stats-collector thread");
crate::metrics_server::start_metrics_server_once(*METRICS_SERVER_PORT);
StreamsState {
inner,
shutdown_tx: Mutex::new(Some(shutdown_tx)),
completion_rx: Mutex::new(Some(completion_rx)),
}
})
}
#[doc(hidden)]
pub trait InstrumentStream {
type Output;
fn instrument_stream(self, source: &'static str, label: Option<String>) -> Self::Output;
}
#[doc(hidden)]
pub trait InstrumentStreamLog {
type Output;
fn instrument_stream_log(self, source: &'static str, label: Option<String>) -> Self::Output;
}
impl<S> InstrumentStream for S
where
S: futures_util::Stream,
{
type Output = crate::streams::wrapper::InstrumentedStream<S>;
fn instrument_stream(self, source: &'static str, label: Option<String>) -> Self::Output {
crate::streams::wrapper::InstrumentedStream::new(self, source, label)
}
}
impl<S> InstrumentStreamLog for S
where
S: futures_util::Stream,
S::Item: std::fmt::Debug,
{
type Output = crate::streams::wrapper::InstrumentedStreamLog<S>;
fn instrument_stream_log(self, source: &'static str, label: Option<String>) -> Self::Output {
crate::streams::wrapper::InstrumentedStreamLog::new(self, source, label)
}
}
#[macro_export]
macro_rules! stream {
($expr:expr) => {{
const STREAM_ID: &'static str = concat!(file!(), ":", line!());
$crate::InstrumentStream::instrument_stream($expr, STREAM_ID, None)
}};
($expr:expr, label = $label:expr) => {{
const STREAM_ID: &'static str = concat!(file!(), ":", line!());
$crate::InstrumentStream::instrument_stream($expr, STREAM_ID, Some($label.to_string()))
}};
($expr:expr, log = true) => {{
const STREAM_ID: &'static str = concat!(file!(), ":", line!());
$crate::InstrumentStreamLog::instrument_stream_log($expr, STREAM_ID, None)
}};
($expr:expr, label = $label:expr, log = true) => {{
const STREAM_ID: &'static str = concat!(file!(), ":", line!());
$crate::InstrumentStreamLog::instrument_stream_log(
$expr,
STREAM_ID,
Some($label.to_string()),
)
}};
($expr:expr, log = true, label = $label:expr) => {{
const STREAM_ID: &'static str = concat!(file!(), ":", line!());
$crate::InstrumentStreamLog::instrument_stream_log(
$expr,
STREAM_ID,
Some($label.to_string()),
)
}};
}
#[cfg_attr(feature = "hotpath-meta", hotpath_meta::measure(log = true))]
pub(crate) fn compare_stream_stats(a: &StreamStats, b: &StreamStats) -> std::cmp::Ordering {
let a_has_label = a.label.is_some();
let b_has_label = b.label.is_some();
match (a_has_label, b_has_label) {
(true, false) => std::cmp::Ordering::Less,
(false, true) => std::cmp::Ordering::Greater,
(true, true) => a
.label
.as_ref()
.unwrap()
.cmp(b.label.as_ref().unwrap())
.then_with(|| a.iter.cmp(&b.iter)),
(false, false) => a.source.cmp(b.source).then_with(|| a.iter.cmp(&b.iter)),
}
}
#[cfg_attr(feature = "hotpath-meta", hotpath_meta::measure(log = true))]
pub(crate) fn get_sorted_stream_stats() -> Vec<StreamStats> {
let Some(state) = STREAMS_STATE.get() else {
return Vec::new();
};
let guard = state.inner.read().unwrap();
let mut stats: Vec<StreamStats> = guard.stats.values().cloned().collect();
stats.sort_by(compare_stream_stats);
stats
}
#[cfg_attr(feature = "hotpath-meta", hotpath_meta::measure(log = true))]
pub(crate) fn get_streams_json() -> crate::json::JsonStreamsList {
let data = get_sorted_stream_stats()
.iter()
.map(JsonStreamEntry::from)
.collect();
crate::json::JsonStreamsList {
current_elapsed_ns: crate::lib_on::current_elapsed_ns(),
data,
}
}
#[cfg_attr(feature = "hotpath-meta", hotpath_meta::measure(log = true))]
pub(crate) fn get_stream_logs(id: u32) -> Option<StreamLogs> {
let state = STREAMS_STATE.get()?;
let guard = state.inner.read().unwrap();
let entry_logs = guard.logs.get(&id)?;
let mut yielded_logs: Vec<DataFlowLogEntry> = entry_logs.logs.iter().cloned().collect();
yielded_logs.sort_by_key(|entry| std::cmp::Reverse(entry.index));
Some(StreamLogs {
id,
logs: yielded_logs,
})
}