fedimint_client_module/sm/notifier.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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
use std::marker::PhantomData;
use std::sync::Arc;
use fedimint_core::core::{ModuleInstanceId, OperationId};
use fedimint_core::util::broadcaststream::BroadcastStream;
use fedimint_core::util::BoxStream;
use fedimint_logging::LOG_CLIENT;
use futures::StreamExt as _;
use tracing::{debug, error, trace};
use super::{DynState, State};
use crate::module::FinalClientIface;
use crate::sm::executor::{ActiveStateKey, InactiveStateKey};
use crate::sm::{ActiveStateMeta, InactiveStateMeta};
/// State transition notifier for a specific module instance that can only
/// subscribe to transitions belonging to that module
#[derive(Debug, Clone)]
pub struct ModuleNotifier<S> {
broadcast: tokio::sync::broadcast::Sender<DynState>,
module_instance: ModuleInstanceId,
client: FinalClientIface,
/// `S` limits the type of state that can be subscribed to the one
/// associated with the module instance
_pd: PhantomData<S>,
}
impl<S> ModuleNotifier<S>
where
S: State,
{
pub fn new(
broadcast: tokio::sync::broadcast::Sender<DynState>,
module_instance: ModuleInstanceId,
client: FinalClientIface,
) -> Self {
Self {
broadcast,
module_instance,
client,
_pd: PhantomData,
}
}
// TODO: remove duplicates and order old transitions
/// Subscribe to state transitions belonging to an operation and module
/// (module context contained in struct).
///
/// The returned stream will contain all past state transitions that
/// happened before the subscription and are read from the database, after
/// these the stream will contain all future state transitions. The states
/// loaded from the database are not returned in a specific order. There may
/// also be duplications.
pub async fn subscribe(&self, operation_id: OperationId) -> BoxStream<'static, S> {
let to_typed_state = |state: DynState| {
state
.as_any()
.downcast_ref::<S>()
.expect("Tried to subscribe to wrong state type")
.clone()
};
// It's important to start the subscription first and then query the database to
// not lose any transitions in the meantime.
let new_transitions = self.subscribe_all_operations();
let client_strong = self.client.get();
let db_states = {
let mut dbtx = client_strong.db().begin_transaction_nc().await;
let active_states = client_strong
.read_operation_active_states(operation_id, self.module_instance, &mut dbtx)
.await
.map(|(key, val): (ActiveStateKey, ActiveStateMeta)| {
(to_typed_state(key.state), val.created_at)
})
.collect::<Vec<(S, _)>>()
.await;
let inactive_states = self
.client
.get()
.read_operation_inactive_states(operation_id, self.module_instance, &mut dbtx)
.await
.map(|(key, val): (InactiveStateKey, InactiveStateMeta)| {
(to_typed_state(key.state), val.created_at)
})
.collect::<Vec<(S, _)>>()
.await;
// FIXME: don't rely on SystemTime for ordering and introduce a state transition
// index instead (dpc was right again xD)
let mut all_states_timed = active_states
.into_iter()
.chain(inactive_states)
.collect::<Vec<(S, _)>>();
all_states_timed.sort_by(|(_, t1), (_, t2)| t1.cmp(t2));
debug!(
operation_id = %operation_id.fmt_short(),
num = all_states_timed.len(),
"Returning state transitions from DB for notifier subscription",
);
all_states_timed
.into_iter()
.map(|(s, _)| s)
.collect::<Vec<S>>()
};
let new_transitions = new_transitions.filter_map({
let db_states: Arc<_> = Arc::new(db_states.clone());
move |state: S| {
let db_states = db_states.clone();
async move {
if state.operation_id() == operation_id {
trace!(operation_id = %operation_id.fmt_short(), ?state, "Received state transition notification");
// Deduplicate events that might have both come from the DB and streamed,
// due to subscribing to notifier before querying the DB.
//
// Note: linear search should be good enough in practice for many reasons.
// Eg. states tend to have all the states in the DB, or all streamed "live",
// so the overlap here should be minimal.
// And we'll rewrite the whole thing anyway and use only db as a reference.
if db_states.iter().any(|db_s| db_s == &state) {
debug!(operation_id = %operation_id.fmt_short(), ?state, "Ignoring duplicated event");
return None;
}
Some(state)
} else {
None
}
}
}
});
Box::pin(futures::stream::iter(db_states).chain(new_transitions))
}
/// Subscribe to all state transitions belonging to the module instance.
pub fn subscribe_all_operations(&self) -> BoxStream<'static, S> {
let module_instance_id = self.module_instance;
Box::pin(
BroadcastStream::new(self.broadcast.subscribe())
.take_while(|res| {
let cont = if let Err(err) = res {
error!(target: LOG_CLIENT, ?err, "ModuleNotifier stream stopped on error");
false
} else {
true
};
std::future::ready(cont)
})
.filter_map(move |res| async move {
let s = res.expect("We filtered out errors above");
if s.module_instance_id() == module_instance_id {
Some(
s.as_any()
.downcast_ref::<S>()
.expect("Tried to subscribe to wrong state type")
.clone(),
)
} else {
None
}
}),
)
}
}