WIP typechecks
This commit is contained in:
@@ -2,16 +2,28 @@ use super::container_events::EventValueType;
|
||||
use core::fmt;
|
||||
use netpod::log::*;
|
||||
use netpod::DtNano;
|
||||
use netpod::EnumVariant;
|
||||
use serde::Deserialize;
|
||||
use serde::Serialize;
|
||||
|
||||
#[allow(unused)]
|
||||
macro_rules! trace_event { ($($arg:tt)*) => ( if false { trace!($($arg)*); }) }
|
||||
|
||||
pub trait AggTimeWeightOutputAvg: fmt::Debug + Clone + Send + Serialize + for<'a> Deserialize<'a> {}
|
||||
|
||||
impl AggTimeWeightOutputAvg for u8 {}
|
||||
impl AggTimeWeightOutputAvg for u16 {}
|
||||
impl AggTimeWeightOutputAvg for u32 {}
|
||||
impl AggTimeWeightOutputAvg for u64 {}
|
||||
|
||||
impl AggTimeWeightOutputAvg for i8 {}
|
||||
impl AggTimeWeightOutputAvg for i16 {}
|
||||
impl AggTimeWeightOutputAvg for i32 {}
|
||||
impl AggTimeWeightOutputAvg for i64 {}
|
||||
impl AggTimeWeightOutputAvg for f32 {}
|
||||
|
||||
impl AggTimeWeightOutputAvg for f64 {}
|
||||
impl AggTimeWeightOutputAvg for EnumVariant {}
|
||||
impl AggTimeWeightOutputAvg for String {}
|
||||
impl AggTimeWeightOutputAvg for bool {}
|
||||
|
||||
pub trait AggregatorTimeWeight<EVT>: fmt::Debug + Send
|
||||
where
|
||||
@@ -48,7 +60,7 @@ where
|
||||
|
||||
fn ingest(&mut self, dt: DtNano, bl: DtNano, val: EVT) {
|
||||
let f = dt.ns() as f64 / bl.ns() as f64;
|
||||
trace!("INGEST {} {:?}", f, val);
|
||||
trace_event!("INGEST {} {:?}", f, val);
|
||||
self.sum += f * val.as_f64();
|
||||
}
|
||||
|
||||
@@ -71,7 +83,7 @@ impl AggregatorTimeWeight<f32> for AggregatorNumeric {
|
||||
|
||||
fn ingest(&mut self, dt: DtNano, bl: DtNano, val: f32) {
|
||||
let f = dt.ns() as f64 / bl.ns() as f64;
|
||||
trace!("INGEST {} {}", f, val);
|
||||
trace_event!("INGEST {} {}", f, val);
|
||||
self.sum += f * val as f64;
|
||||
}
|
||||
|
||||
@@ -87,6 +99,45 @@ impl AggregatorTimeWeight<f32> for AggregatorNumeric {
|
||||
}
|
||||
}
|
||||
|
||||
macro_rules! impl_agg_tw_for_agg_num {
|
||||
($evt:ty) => {
|
||||
impl AggregatorTimeWeight<$evt> for AggregatorNumeric {
|
||||
fn new() -> Self {
|
||||
Self { sum: 0. }
|
||||
}
|
||||
|
||||
fn ingest(&mut self, dt: DtNano, bl: DtNano, val: $evt) {
|
||||
let f = dt.ns() as f64 / bl.ns() as f64;
|
||||
trace!("INGEST {} {}", f, val);
|
||||
self.sum += f * val as f64;
|
||||
}
|
||||
|
||||
fn reset_for_new_bin(&mut self) {
|
||||
self.sum = 0.;
|
||||
}
|
||||
|
||||
fn result_and_reset_for_new_bin(&mut self, filled_width_fraction: f32) -> f64 {
|
||||
let sum = self.sum.clone();
|
||||
trace!(
|
||||
"result_and_reset_for_new_bin sum {} {}",
|
||||
sum,
|
||||
filled_width_fraction
|
||||
);
|
||||
self.sum = 0.;
|
||||
sum / filled_width_fraction as f64
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
impl_agg_tw_for_agg_num!(u8);
|
||||
impl_agg_tw_for_agg_num!(u16);
|
||||
impl_agg_tw_for_agg_num!(u32);
|
||||
impl_agg_tw_for_agg_num!(i8);
|
||||
impl_agg_tw_for_agg_num!(i16);
|
||||
impl_agg_tw_for_agg_num!(i32);
|
||||
impl_agg_tw_for_agg_num!(i64);
|
||||
|
||||
impl AggregatorTimeWeight<u64> for AggregatorNumeric {
|
||||
fn new() -> Self {
|
||||
Self { sum: 0. }
|
||||
|
||||
@@ -5,7 +5,11 @@ use super::___;
|
||||
use core::fmt;
|
||||
use err::thiserror;
|
||||
use err::ThisError;
|
||||
use items_0::timebin::BinningggContainerBinsDyn;
|
||||
use items_0::timebin::BinsBoxed;
|
||||
use items_0::vecpreview::VecPreview;
|
||||
use items_0::AsAnyMut;
|
||||
use items_0::WithLen;
|
||||
use netpod::TsNano;
|
||||
use serde::Deserialize;
|
||||
use serde::Serialize;
|
||||
@@ -245,6 +249,7 @@ where
|
||||
}
|
||||
|
||||
pub fn pop_front(&mut self) -> Option<BinSingle<EVT>> {
|
||||
todo!("pop_front");
|
||||
let ts1 = if let Some(x) = self.ts1s.pop_front() {
|
||||
x
|
||||
} else {
|
||||
@@ -307,6 +312,88 @@ where
|
||||
}
|
||||
}
|
||||
|
||||
impl<EVT> fmt::Display for ContainerBins<EVT>
|
||||
where
|
||||
EVT: EventValueType,
|
||||
{
|
||||
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
||||
fmt::Debug::fmt(self, fmt)
|
||||
}
|
||||
}
|
||||
|
||||
impl<EVT> AsAnyMut for ContainerBins<EVT>
|
||||
where
|
||||
EVT: EventValueType,
|
||||
{
|
||||
fn as_any_mut(&mut self) -> &mut dyn any::Any {
|
||||
self
|
||||
}
|
||||
}
|
||||
|
||||
impl<EVT> WithLen for ContainerBins<EVT>
|
||||
where
|
||||
EVT: EventValueType,
|
||||
{
|
||||
fn len(&self) -> usize {
|
||||
Self::len(self)
|
||||
}
|
||||
}
|
||||
|
||||
impl<EVT> BinningggContainerBinsDyn for ContainerBins<EVT>
|
||||
where
|
||||
EVT: EventValueType,
|
||||
{
|
||||
fn type_name(&self) -> &'static str {
|
||||
any::type_name::<Self>()
|
||||
}
|
||||
|
||||
fn empty(&self) -> BinsBoxed {
|
||||
Box::new(Self::new())
|
||||
}
|
||||
|
||||
fn clone(&self) -> BinsBoxed {
|
||||
Box::new(<Self as Clone>::clone(self))
|
||||
}
|
||||
|
||||
fn edges_iter(
|
||||
&self,
|
||||
) -> std::iter::Zip<std::collections::vec_deque::Iter<TsNano>, std::collections::vec_deque::Iter<TsNano>> {
|
||||
self.ts1s.iter().zip(self.ts2s.iter())
|
||||
}
|
||||
|
||||
fn drain_into(&mut self, dst: &mut dyn BinningggContainerBinsDyn, range: std::ops::Range<usize>) {
|
||||
let obj = dst.as_any_mut();
|
||||
if let Some(dst) = obj.downcast_mut::<Self>() {
|
||||
dst.ts1s.extend(self.ts1s.drain(range.clone()));
|
||||
} else {
|
||||
let styn = any::type_name::<EVT>();
|
||||
panic!("unexpected drain EVT {} dst {}", styn, dst.type_name());
|
||||
}
|
||||
}
|
||||
|
||||
fn to_old_time_binned(&self) -> Box<dyn items_0::timebin::TimeBinned> {
|
||||
let a = self as &dyn any::Any;
|
||||
if let Some(src) = a.downcast_ref::<ContainerBins<f64>>() {
|
||||
use items_0::Empty;
|
||||
let mut ret = crate::binsdim0::BinsDim0::<f64>::empty();
|
||||
for ((((((&ts1, &ts2), &cnt), min), max), avg), fnl) in src.zip_iter() {
|
||||
ret.push(ts1.ns(), ts2.ns(), cnt, *min, *max, *avg as f32, 0.);
|
||||
}
|
||||
Box::new(ret)
|
||||
} else if let Some(src) = a.downcast_ref::<ContainerBins<f32>>() {
|
||||
use items_0::Empty;
|
||||
let mut ret = crate::binsdim0::BinsDim0::<f32>::empty();
|
||||
for ((((((&ts1, &ts2), &cnt), min), max), avg), fnl) in src.zip_iter() {
|
||||
ret.push(ts1.ns(), ts2.ns(), cnt, *min, *max, *avg as f32, 0.);
|
||||
}
|
||||
Box::new(ret)
|
||||
} else {
|
||||
let styn = any::type_name::<EVT>();
|
||||
todo!("TODO impl for {styn}")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub struct ContainerBinsTakeUpTo<'a, EVT>
|
||||
where
|
||||
EVT: EventValueType,
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
use super::aggregator::AggTimeWeightOutputAvg;
|
||||
use super::aggregator::AggregatorNumeric;
|
||||
use super::aggregator::AggregatorTimeWeight;
|
||||
use super::timeweight::timeweight_events_dyn::BinnedEventsTimeweightDynbox;
|
||||
use super::___;
|
||||
use core::fmt;
|
||||
use err::thiserror;
|
||||
@@ -8,6 +9,7 @@ use err::ThisError;
|
||||
use items_0::timebin::BinningggContainerEventsDyn;
|
||||
use items_0::vecpreview::PreviewRange;
|
||||
use items_0::vecpreview::VecPreview;
|
||||
use netpod::BinnedRange;
|
||||
use netpod::TsNano;
|
||||
use serde::Deserialize;
|
||||
use serde::Serialize;
|
||||
@@ -28,13 +30,13 @@ pub trait Container<EVT>: fmt::Debug + Send + Clone + PreviewRange + Serialize +
|
||||
fn pop_front(&mut self) -> Option<EVT>;
|
||||
}
|
||||
|
||||
pub trait EventValueType: fmt::Debug + Clone + PartialOrd + Send {
|
||||
pub trait EventValueType: fmt::Debug + Clone + PartialOrd + Send + 'static {
|
||||
type Container: Container<Self>;
|
||||
type AggregatorTimeWeight: AggregatorTimeWeight<Self>;
|
||||
type AggTimeWeightOutputAvg: AggTimeWeightOutputAvg;
|
||||
|
||||
fn identity_sum() -> Self;
|
||||
fn add_weighted(&self, add: &Self, f: f32) -> Self;
|
||||
// fn add_weighted(&self, add: &Self, f: f32) -> Self;
|
||||
}
|
||||
|
||||
impl<EVT> Container<EVT> for VecDeque<EVT>
|
||||
@@ -54,6 +56,31 @@ where
|
||||
}
|
||||
}
|
||||
|
||||
macro_rules! impl_event_value_type {
|
||||
($evt:ty, $zero:expr) => {
|
||||
impl EventValueType for $evt {
|
||||
type Container = VecDeque<Self>;
|
||||
type AggregatorTimeWeight = AggregatorNumeric;
|
||||
type AggTimeWeightOutputAvg = f64;
|
||||
|
||||
fn identity_sum() -> Self {
|
||||
$zero
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
impl_event_value_type!(u8, 0);
|
||||
impl_event_value_type!(u16, 0);
|
||||
impl_event_value_type!(u32, 0);
|
||||
impl_event_value_type!(u64, 0);
|
||||
impl_event_value_type!(i8, 0);
|
||||
impl_event_value_type!(i16, 0);
|
||||
impl_event_value_type!(i32, 0);
|
||||
impl_event_value_type!(i64, 0);
|
||||
// impl_event_value_type!(f32, 0.);
|
||||
// impl_event_value_type!(f64, 0.);
|
||||
|
||||
impl EventValueType for f32 {
|
||||
type Container = VecDeque<Self>;
|
||||
type AggregatorTimeWeight = AggregatorNumeric;
|
||||
@@ -62,10 +89,6 @@ impl EventValueType for f32 {
|
||||
fn identity_sum() -> Self {
|
||||
0.
|
||||
}
|
||||
|
||||
fn add_weighted(&self, add: &Self, f: f32) -> Self {
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
|
||||
impl EventValueType for f64 {
|
||||
@@ -76,24 +99,6 @@ impl EventValueType for f64 {
|
||||
fn identity_sum() -> Self {
|
||||
0.
|
||||
}
|
||||
|
||||
fn add_weighted(&self, add: &Self, f: f32) -> Self {
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
|
||||
impl EventValueType for u64 {
|
||||
type Container = VecDeque<Self>;
|
||||
type AggregatorTimeWeight = AggregatorNumeric;
|
||||
type AggTimeWeightOutputAvg = f64;
|
||||
|
||||
fn identity_sum() -> Self {
|
||||
0
|
||||
}
|
||||
|
||||
fn add_weighted(&self, add: &Self, f: f32) -> Self {
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
@@ -243,7 +248,19 @@ impl<EVT> BinningggContainerEventsDyn for ContainerEvents<EVT>
|
||||
where
|
||||
EVT: EventValueType,
|
||||
{
|
||||
fn binned_events_timeweight_traitobj(&self) -> Box<dyn items_0::timebin::BinnedEventsTimeweightTrait> {
|
||||
todo!()
|
||||
fn type_name(&self) -> &'static str {
|
||||
std::any::type_name::<Self>()
|
||||
}
|
||||
|
||||
fn binned_events_timeweight_traitobj(
|
||||
&self,
|
||||
range: BinnedRange<TsNano>,
|
||||
) -> Box<dyn items_0::timebin::BinnedEventsTimeweightTrait> {
|
||||
BinnedEventsTimeweightDynbox::<EVT>::new(range)
|
||||
}
|
||||
|
||||
fn to_anybox(&mut self) -> Box<dyn std::any::Any> {
|
||||
let ret = core::mem::replace(self, Self::new());
|
||||
Box::new(ret)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,24 +5,14 @@ use crate::binning::container_bins::ContainerBins;
|
||||
use crate::binning::container_events::ContainerEvents;
|
||||
use crate::binning::container_events::ContainerEventsTakeUpTo;
|
||||
use crate::binning::container_events::EventSingle;
|
||||
use crate::channelevents::ChannelEvents;
|
||||
use core::fmt;
|
||||
use err::thiserror;
|
||||
use err::ThisError;
|
||||
use futures_util::Stream;
|
||||
use items_0::streamitem::Sitemty;
|
||||
use items_0::timebin::BinningggBinnerDyn;
|
||||
use items_0::timebin::BinningggBinnerTy;
|
||||
use netpod::log::*;
|
||||
use netpod::BinnedRange;
|
||||
use netpod::DtNano;
|
||||
use netpod::TsNano;
|
||||
use std::collections::VecDeque;
|
||||
use std::marker::PhantomData;
|
||||
use std::mem;
|
||||
use std::pin::Pin;
|
||||
use std::task::Context;
|
||||
use std::task::Poll;
|
||||
|
||||
#[allow(unused)]
|
||||
macro_rules! trace_ { ($($arg:tt)*) => ( if true { trace!($($arg)*); }) }
|
||||
@@ -34,7 +24,7 @@ macro_rules! trace_init { ($($arg:tt)*) => ( if true { trace_!($($arg)*); }) }
|
||||
macro_rules! trace_cycle { ($($arg:tt)*) => ( if true { trace_!($($arg)*); }) }
|
||||
|
||||
#[allow(unused)]
|
||||
macro_rules! trace_event_next { ($($arg:tt)*) => ( if true { trace_!($($arg)*); }) }
|
||||
macro_rules! trace_event_next { ($($arg:tt)*) => ( if false { trace_!($($arg)*); }) }
|
||||
|
||||
#[allow(unused)]
|
||||
macro_rules! trace_ingest_init_lst { ($($arg:tt)*) => ( if true { trace_!($($arg)*); }) }
|
||||
@@ -43,7 +33,7 @@ macro_rules! trace_ingest_init_lst { ($($arg:tt)*) => ( if true { trace_!($($arg
|
||||
macro_rules! trace_ingest_minmax { ($($arg:tt)*) => ( if true { trace_!($($arg)*); }) }
|
||||
|
||||
#[allow(unused)]
|
||||
macro_rules! trace_ingest_event { ($($arg:tt)*) => ( if true { trace_!($($arg)*); }) }
|
||||
macro_rules! trace_ingest_event { ($($arg:tt)*) => ( if false { trace_!($($arg)*); }) }
|
||||
|
||||
#[allow(unused)]
|
||||
macro_rules! trace_ingest_firsts { ($($arg:tt)*) => ( if true { trace_!($($arg)*); }) }
|
||||
@@ -103,7 +93,8 @@ where
|
||||
{
|
||||
// NOTE that this is also used during bin-cycle.
|
||||
fn ingest_event_with_lst_gt_range_beg_agg(&mut self, ev: EventSingle<EVT>, lst: LstRef<EVT>) {
|
||||
trace_ingest_event!("ingest_event_with_lst_gt_range_beg_agg {:?}", ev);
|
||||
let selfname = "ingest_event_with_lst_gt_range_beg_agg";
|
||||
trace_ingest_event!("{selfname} {:?}", ev);
|
||||
if DEBUG_CHECKS {
|
||||
if ev.ts <= self.active_beg {
|
||||
panic!("should never get here");
|
||||
@@ -113,7 +104,7 @@ where
|
||||
}
|
||||
}
|
||||
let dt = ev.ts.delta(self.filled_until);
|
||||
trace_ingest_event!("ingest_event_with_lst_gt_range_beg_agg dt {:?} ev {:?}", dt, ev);
|
||||
trace_ingest_event!("{selfname} dt {:?} ev {:?}", dt, ev);
|
||||
// TODO can the caller already take the value and replace it afterwards with the current value?
|
||||
// This fn could swap the value in lst and directly use it.
|
||||
// This would require that any call path does not mess with lst.
|
||||
@@ -153,7 +144,8 @@ where
|
||||
lst: LstMut<EVT>,
|
||||
minmax: &mut MinMax<EVT>,
|
||||
) -> Result<(), Error> {
|
||||
trace_ingest_event!("ingest_event_with_lst_eq_range_beg");
|
||||
let selfname = "ingest_event_with_lst_eq_range_beg";
|
||||
trace_ingest_event!("{selfname}");
|
||||
// TODO if the event is exactly on the current bin first edge, then there is no contribution to the avg yet
|
||||
// and I must initialize the min/max with the current event.
|
||||
InnerA::apply_min_max(&ev, minmax);
|
||||
@@ -167,9 +159,10 @@ where
|
||||
lst: LstMut<EVT>,
|
||||
minmax: &mut MinMax<EVT>,
|
||||
) -> Result<(), Error> {
|
||||
trace_ingest_event!("ingest_with_lst_gt_range_beg");
|
||||
let selfname = "ingest_with_lst_gt_range_beg";
|
||||
trace_ingest_event!("{selfname}");
|
||||
while let Some(ev) = evs.pop_front() {
|
||||
trace_event_next!("EVENT POP FRONT {:?} {:30}", ev, "ingest_with_lst_gt_range_beg");
|
||||
trace_event_next!("EVENT POP FRONT {:?} {:30}", ev, selfname);
|
||||
if ev.ts <= self.active_beg {
|
||||
panic!("should never get here");
|
||||
}
|
||||
@@ -188,9 +181,10 @@ where
|
||||
lst: LstMut<EVT>,
|
||||
minmax: &mut MinMax<EVT>,
|
||||
) -> Result<(), Error> {
|
||||
trace_ingest_event!("ingest_with_lst_ge_range_beg");
|
||||
let selfname = "ingest_with_lst_ge_range_beg";
|
||||
trace_ingest_event!("{selfname}");
|
||||
while let Some(ev) = evs.pop_front() {
|
||||
trace_event_next!("EVENT POP FRONT {:?} {:30}", ev, "ingest_with_lst_ge_range_beg");
|
||||
trace_event_next!("EVENT POP FRONT {:?} {:30}", ev, selfname);
|
||||
if ev.ts < self.active_beg {
|
||||
panic!("should never get here");
|
||||
}
|
||||
@@ -203,7 +197,7 @@ where
|
||||
} else {
|
||||
self.ingest_event_with_lst_gt_range_beg(ev.clone(), LstMut(lst.0), minmax)?;
|
||||
self.cnt += 1;
|
||||
trace_ingest_firsts!("ingest_with_lst_ge_range_beg now calling ingest_with_lst_gt_range_beg");
|
||||
trace_ingest_firsts!("{selfname} now calling ingest_with_lst_gt_range_beg");
|
||||
return self.ingest_with_lst_gt_range_beg(evs, LstMut(lst.0), minmax);
|
||||
}
|
||||
}
|
||||
@@ -216,11 +210,12 @@ where
|
||||
lst: LstMut<EVT>,
|
||||
minmax: &mut MinMax<EVT>,
|
||||
) -> Result<(), Error> {
|
||||
trace_ingest_event!("ingest_with_lst_minmax");
|
||||
let selfname = "ingest_with_lst_minmax";
|
||||
trace_ingest_event!("{selfname}");
|
||||
// TODO how to handle the min max? I don't take event data yet out of the container.
|
||||
if let Some(ts0) = evs.ts_first() {
|
||||
trace_ingest_event!("EVENT POP FRONT ingest_with_lst_minmax");
|
||||
trace_ingest_event!("EVENT TIMESTAMP FRONT {:?} ingest_with_lst_minmax", ts0);
|
||||
trace_ingest_event!("EVENT POP FRONT {selfname}");
|
||||
trace_ingest_event!("EVENT TIMESTAMP FRONT {:?} {selfname}", ts0);
|
||||
if ts0 < self.active_beg {
|
||||
panic!("should never get here");
|
||||
} else {
|
||||
@@ -435,9 +430,10 @@ where
|
||||
}
|
||||
|
||||
fn ingest_event_without_lst(&mut self, ev: EventSingle<EVT>) -> Result<(), Error> {
|
||||
let selfname = "ingest_event_without_lst";
|
||||
let b = &self.inner_a.inner_b;
|
||||
if ev.ts >= b.active_end {
|
||||
panic!("should never get here");
|
||||
panic!("{selfname} should never get here");
|
||||
} else {
|
||||
trace_ingest_init_lst!("ingest_event_without_lst set lst {:?}", ev);
|
||||
self.lst = Some(ev.clone());
|
||||
@@ -453,10 +449,11 @@ where
|
||||
}
|
||||
|
||||
fn ingest_without_lst(&mut self, mut evs: ContainerEventsTakeUpTo<EVT>) -> Result<(), Error> {
|
||||
let selfname = "ingest_without_lst";
|
||||
if let Some(ev) = evs.pop_front() {
|
||||
trace_event_next!("EVENT POP FRONT {:?} {:30}", ev, "ingest_without_lst");
|
||||
trace_event_next!("EVENT POP FRONT {:?} {:30}", ev, selfname);
|
||||
if ev.ts >= self.inner_a.inner_b.active_end {
|
||||
panic!("should never get here");
|
||||
panic!("{selfname} should never get here");
|
||||
} else {
|
||||
self.ingest_event_without_lst(ev)?;
|
||||
if let Some(lst) = self.lst.as_mut() {
|
||||
@@ -633,6 +630,10 @@ where
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub fn output_len(&self) -> usize {
|
||||
self.out.len()
|
||||
}
|
||||
|
||||
pub fn output(&mut self) -> ContainerBins<EVT> {
|
||||
mem::replace(&mut self.out, ContainerBins::new())
|
||||
}
|
||||
|
||||
@@ -1,11 +1,13 @@
|
||||
use super::timeweight_events::BinnedEventsTimeweight;
|
||||
use crate::binning::container_bins::ContainerBins;
|
||||
use crate::binning::container_events::ContainerEvents;
|
||||
use crate::binning::container_events::EventValueType;
|
||||
use crate::channelevents::ChannelEvents;
|
||||
use err::thiserror;
|
||||
use err::ThisError;
|
||||
use futures_util::Stream;
|
||||
use futures_util::StreamExt;
|
||||
use items_0::streamitem::LogItem;
|
||||
use items_0::streamitem::Sitemty;
|
||||
use items_0::timebin::BinnedEventsTimeweightTrait;
|
||||
use items_0::timebin::BinningggBinnerDyn;
|
||||
@@ -17,6 +19,7 @@ use items_0::timebin::EventsBoxed;
|
||||
use netpod::log::*;
|
||||
use netpod::BinnedRange;
|
||||
use netpod::TsNano;
|
||||
use std::any;
|
||||
use std::arch::x86_64;
|
||||
use std::ops::ControlFlow;
|
||||
use std::pin::Pin;
|
||||
@@ -55,23 +58,40 @@ impl<EVT> BinnedEventsTimeweightTrait for BinnedEventsTimeweightDynbox<EVT>
|
||||
where
|
||||
EVT: EventValueType,
|
||||
{
|
||||
fn ingest(&mut self, evs_all: EventsBoxed) -> Result<(), BinningggError> {
|
||||
todo!()
|
||||
fn ingest(&mut self, mut evs: EventsBoxed) -> Result<(), BinningggError> {
|
||||
// let a = (&evs as &dyn any::Any).downcast_ref::<String>();
|
||||
// evs.downcast::<String>();
|
||||
// evs.as_anybox().downcast::<ContainerEvents<f64>>();
|
||||
match evs.to_anybox().downcast::<ContainerEvents<EVT>>() {
|
||||
Ok(evs) => {
|
||||
let evs = {
|
||||
let a = evs;
|
||||
*a
|
||||
};
|
||||
Ok(self.binner.ingest(evs)?)
|
||||
}
|
||||
Err(_) => Err(BinningggError::TypeMismatch {
|
||||
have: evs.type_name().into(),
|
||||
expect: std::any::type_name::<ContainerEvents<EVT>>().into(),
|
||||
}),
|
||||
}
|
||||
}
|
||||
|
||||
fn input_done_range_final(&mut self) -> Result<(), BinningggError> {
|
||||
// self.binner.input_done_range_final()
|
||||
todo!()
|
||||
Ok(self.binner.input_done_range_final()?)
|
||||
}
|
||||
|
||||
fn input_done_range_open(&mut self) -> Result<(), BinningggError> {
|
||||
// self.binner.input_done_range_open()
|
||||
todo!()
|
||||
Ok(self.binner.input_done_range_open()?)
|
||||
}
|
||||
|
||||
fn output(&mut self) -> Result<BinsBoxed, BinningggError> {
|
||||
// self.binner.output()
|
||||
todo!()
|
||||
fn output(&mut self) -> Result<Option<BinsBoxed>, BinningggError> {
|
||||
if self.binner.output_len() == 0 {
|
||||
Ok(None)
|
||||
} else {
|
||||
let c = self.binner.output();
|
||||
Ok(Some(Box::new(c)))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -93,36 +113,36 @@ impl BinnedEventsTimeweightLazy {
|
||||
impl BinnedEventsTimeweightTrait for BinnedEventsTimeweightLazy {
|
||||
fn ingest(&mut self, evs_all: EventsBoxed) -> Result<(), BinningggError> {
|
||||
self.binned_events
|
||||
.get_or_insert_with(|| evs_all.binned_events_timeweight_traitobj())
|
||||
.get_or_insert_with(|| evs_all.binned_events_timeweight_traitobj(self.range.clone()))
|
||||
.ingest(evs_all)
|
||||
}
|
||||
|
||||
fn input_done_range_final(&mut self) -> Result<(), BinningggError> {
|
||||
debug!("TODO something to do if we miss the binner here?");
|
||||
self.binned_events
|
||||
.as_mut()
|
||||
.map(|x| x.input_done_range_final())
|
||||
.unwrap_or(Ok(()))
|
||||
.unwrap_or_else(|| {
|
||||
debug!("TODO something to do if we miss the binner here?");
|
||||
Ok(())
|
||||
})
|
||||
}
|
||||
|
||||
fn input_done_range_open(&mut self) -> Result<(), BinningggError> {
|
||||
debug!("TODO something to do if we miss the binner here?");
|
||||
self.binned_events
|
||||
.as_mut()
|
||||
.map(|x| x.input_done_range_open())
|
||||
.unwrap_or(Ok(()))
|
||||
}
|
||||
|
||||
fn output(&mut self) -> Result<BinsBoxed, BinningggError> {
|
||||
debug!("TODO something to do if we miss the binner here?");
|
||||
// TODO change trait because without binner we can not produce any container here
|
||||
todo!()
|
||||
fn output(&mut self) -> Result<Option<BinsBoxed>, BinningggError> {
|
||||
self.binned_events.as_mut().map(|x| x.output()).unwrap_or(Ok(None))
|
||||
}
|
||||
}
|
||||
|
||||
enum StreamState {
|
||||
Reading,
|
||||
Done,
|
||||
Invalid,
|
||||
}
|
||||
|
||||
pub struct BinnedEventsTimeweightStream {
|
||||
@@ -158,13 +178,14 @@ impl BinnedEventsTimeweightStream {
|
||||
ChannelEvents::Events(evs) => match self.binned_events.ingest(evs.to_container_events()) {
|
||||
Ok(()) => {
|
||||
match self.binned_events.output() {
|
||||
Ok(x) => {
|
||||
Ok(Some(x)) => {
|
||||
if x.len() == 0 {
|
||||
Continue(())
|
||||
} else {
|
||||
Break(Ready(Some(Ok(DataItem(Data(x))))))
|
||||
}
|
||||
}
|
||||
Ok(None) => Continue(()),
|
||||
Err(e) => Break(Ready(Some(Err(::err::Error::from_string(e))))),
|
||||
}
|
||||
// Continue(())
|
||||
@@ -192,19 +213,54 @@ impl BinnedEventsTimeweightStream {
|
||||
}
|
||||
|
||||
fn handle_eos(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Option<<Self as Stream>::Item>> {
|
||||
debug!("handle_eos");
|
||||
use items_0::streamitem::RangeCompletableItem::*;
|
||||
use items_0::streamitem::StreamItem::*;
|
||||
use Poll::*;
|
||||
self.state = StreamState::Done;
|
||||
if self.range_complete {
|
||||
self.binned_events.input_done_range_final();
|
||||
self.binned_events
|
||||
.input_done_range_final()
|
||||
.map_err(::err::Error::from_string)?;
|
||||
} else {
|
||||
self.binned_events.input_done_range_open();
|
||||
self.binned_events
|
||||
.input_done_range_open()
|
||||
.map_err(::err::Error::from_string)?;
|
||||
}
|
||||
match self.binned_events.output() {
|
||||
Ok(x) => Ready(Some(Ok(DataItem(Data(x))))),
|
||||
Err(e) => Ready(Some(Err(::err::Error::from_string(e)))),
|
||||
match self.binned_events.output().map_err(::err::Error::from_string)? {
|
||||
Some(x) => {
|
||||
debug!("seeing ready bins {:?}", x);
|
||||
Ready(Some(Ok(DataItem(Data(x)))))
|
||||
}
|
||||
None => {
|
||||
let item = LogItem::from_node(888, Level::INFO, format!("no bins ready on eos"));
|
||||
Ready(Some(Ok(Log(item))))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn handle_main(mut self: Pin<&mut Self>, cx: &mut Context) -> ControlFlow<Poll<Option<<Self as Stream>::Item>>> {
|
||||
use ControlFlow::*;
|
||||
use Poll::*;
|
||||
let ret = match &self.state {
|
||||
StreamState::Reading => match self.as_mut().inp.poll_next_unpin(cx) {
|
||||
Ready(Some(x)) => self.as_mut().handle_sitemty(x, cx),
|
||||
Ready(None) => Break(self.as_mut().handle_eos(cx)),
|
||||
Pending => Break(Pending),
|
||||
},
|
||||
StreamState::Done => {
|
||||
self.state = StreamState::Invalid;
|
||||
Break(Ready(None))
|
||||
}
|
||||
StreamState::Invalid => {
|
||||
panic!("StreamState::Invalid")
|
||||
}
|
||||
};
|
||||
if let Break(Ready(Some(Err(_)))) = ret {
|
||||
self.state = StreamState::Done;
|
||||
}
|
||||
ret
|
||||
}
|
||||
}
|
||||
|
||||
impl Stream for BinnedEventsTimeweightStream {
|
||||
@@ -212,15 +268,10 @@ impl Stream for BinnedEventsTimeweightStream {
|
||||
|
||||
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Option<Self::Item>> {
|
||||
use ControlFlow::*;
|
||||
use Poll::*;
|
||||
loop {
|
||||
break match self.as_mut().inp.poll_next_unpin(cx) {
|
||||
Ready(Some(x)) => match self.as_mut().handle_sitemty(x, cx) {
|
||||
Continue(()) => continue,
|
||||
Break(x) => x,
|
||||
},
|
||||
Ready(None) => self.handle_eos(cx),
|
||||
Pending => Pending,
|
||||
break match self.as_mut().handle_main(cx) {
|
||||
Break(x) => x,
|
||||
Continue(()) => continue,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
use super::aggregator::AggregatorTimeWeight;
|
||||
use super::binnedvaluetype::BinnedNumericValue;
|
||||
use super::container_events::Container;
|
||||
use super::container_events::EventValueType;
|
||||
use core::fmt;
|
||||
@@ -88,9 +87,4 @@ impl EventValueType for EnumVariant {
|
||||
fn identity_sum() -> Self {
|
||||
todo!()
|
||||
}
|
||||
|
||||
// TODO also remove from trait, push it to a more specialized trait for the plain numeric cases.
|
||||
fn add_weighted(&self, add: &Self, f: f32) -> Self {
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -882,6 +882,18 @@ impl<STY: ScalarOps> EventsNonObj for EventsDim0<STY> {
|
||||
}
|
||||
}
|
||||
|
||||
macro_rules! try_to_container_events {
|
||||
($sty:ty, $this:expr) => {
|
||||
if let Some(evs) = $this.as_any_ref().downcast_ref::<EventsDim0<$sty>>() {
|
||||
use crate::binning::container_events::ContainerEvents;
|
||||
let tss = $this.tss.iter().map(|&x| TsNano::from_ns(x)).collect();
|
||||
let vals = evs.values.clone();
|
||||
let ret = ContainerEvents::<$sty>::from_constituents(tss, vals);
|
||||
return Box::new(ret);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
impl<STY: ScalarOps> Events for EventsDim0<STY> {
|
||||
fn as_time_binnable_ref(&self) -> &dyn TimeBinnable {
|
||||
self
|
||||
@@ -1105,15 +1117,32 @@ impl<STY: ScalarOps> Events for EventsDim0<STY> {
|
||||
}
|
||||
|
||||
fn to_container_events(&self) -> Box<dyn ::items_0::timebin::BinningggContainerEventsDyn> {
|
||||
use crate::binning::container_events::ContainerEvents;
|
||||
let tss = self.tss.iter().map(|&x| TsNano::from_ns(x)).collect();
|
||||
if let Some(evs) = self.as_any_ref().downcast_ref::<EventsDim0<f64>>() {
|
||||
let vals = evs.values.clone();
|
||||
let ret = ContainerEvents::<f64>::from_constituents(tss, vals);
|
||||
Box::new(ret)
|
||||
} else {
|
||||
todo!()
|
||||
}
|
||||
try_to_container_events!(u8, self);
|
||||
try_to_container_events!(u16, self);
|
||||
try_to_container_events!(u32, self);
|
||||
try_to_container_events!(u64, self);
|
||||
try_to_container_events!(f32, self);
|
||||
try_to_container_events!(f64, self);
|
||||
let styn = any::type_name::<STY>();
|
||||
todo!("TODO for {styn}")
|
||||
}
|
||||
}
|
||||
|
||||
fn try_to_container_events_fn<STY, EVT>(
|
||||
this: &EventsDim0<STY>,
|
||||
) -> Option<Box<dyn ::items_0::timebin::BinningggContainerEventsDyn>>
|
||||
where
|
||||
STY: ScalarOps,
|
||||
EVT: crate::binning::container_events::EventValueType<Container = std::collections::VecDeque<STY>>,
|
||||
{
|
||||
use crate::binning::container_events::ContainerEvents;
|
||||
if let Some(evs) = this.as_any_ref().downcast_ref::<EventsDim0<STY>>() {
|
||||
let tss = this.tss.iter().map(|&x| TsNano::from_ns(x)).collect();
|
||||
let vals = evs.values.clone();
|
||||
let ret = ContainerEvents::<EVT>::from_constituents(tss, vals);
|
||||
Some(Box::new(ret))
|
||||
} else {
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,6 @@ pub mod test;
|
||||
pub mod testgen;
|
||||
pub mod timebin;
|
||||
pub mod transform;
|
||||
pub mod vecpreview;
|
||||
|
||||
use channelevents::ChannelEvents;
|
||||
use futures_util::Stream;
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
|
||||
Reference in New Issue
Block a user