Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 480
Wake background-processor on async monitor update completion#2090
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
TheBlueMatt
merged 8 commits into
lightningdevkit:main
from
TheBlueMatt:2023-03-mon-wake-bpApr 3, 2023
Uh oh!
There was an error while loading. Please reload this page.
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
2fab887
Correct `lightning-net-tokio` documentation, remove stale example
TheBlueMatt a1b5a1b
Add `CondVar::wait_{timeout_,}while` to `debug_sync`
TheBlueMatt 3284073
Do not bound callbacks by `Send` when building for `no-std`
TheBlueMatt b455fb5
Implement the ability to block on multiple futures at once
TheBlueMatt efcb5e0
Move the pub `wait` methods from `ChannelManager` to `Future`
TheBlueMatt 3acf7e2
Drop the dummy no-std `Condvar` which never sleeps
TheBlueMatt 6890e43
Wake the background processor if an async monitor update completes
TheBlueMatt 94a11f7
Expose an option to substantially reduce sleep time in futures BP
TheBlueMatt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -38,6 +38,8 @@ use lightning::routing::router::Router; | ||
| use lightning::routing::scoring::{Score, WriteableScore}; | ||
| use lightning::util::logger::Logger; | ||
| use lightning::util::persist::Persister; | ||
| #[cfg(feature = "std")] | ||
| use lightning::util::wakers::Sleeper; | ||
| use lightning_rapid_gossip_sync::RapidGossipSync; | ||
| use core::ops::Deref; | ||
| @@ -114,6 +116,13 @@ const FIRST_NETWORK_PRUNE_TIMER: u64 = 60; | ||
| #[cfg(test)] | ||
| const FIRST_NETWORK_PRUNE_TIMER: u64 = 1; | ||
| #[cfg(feature = "futures")] | ||
| /// core::cmp::min is not currently const, so we define a trivial (and equivalent) replacement | ||
| const fn min_u64(a: u64, b: u64) -> u64 { if a < b { a } else { b } } | ||
| #[cfg(feature = "futures")] | ||
| const FASTEST_TIMER: u64 = min_u64(min_u64(FRESHNESS_TIMER, PING_TIMER), | ||
| min_u64(SCORER_PERSIST_TIMER, FIRST_NETWORK_PRUNE_TIMER)); | ||
| /// Either [`P2PGossipSync`] or [`RapidGossipSync`]. | ||
| pub enum GossipSync< | ||
| P: Deref<Target = P2PGossipSync<G, U, L>>, | ||
| @@ -256,7 +265,8 @@ macro_rules! define_run_body { | ||
| ($persister: ident, $chain_monitor: ident, $process_chain_monitor_events: expr, | ||
| $channel_manager: ident, $process_channel_manager_events: expr, | ||
| $gossip_sync: ident, $peer_manager: ident, $logger: ident, $scorer: ident, | ||
| $loop_exit_check: expr, $await: expr, $get_timer: expr, $timer_elapsed: expr) | ||
| $loop_exit_check: expr, $await: expr, $get_timer: expr, $timer_elapsed: expr, | ||
| $check_slow_await: expr) | ||
| => { { | ||
| log_trace!($logger, "Calling ChannelManager's timer_tick_occurred on startup"); | ||
| $channel_manager.timer_tick_occurred(); | ||
| @@ -286,9 +296,10 @@ macro_rules! define_run_body { | ||
| // We wait up to 100ms, but track how long it takes to detect being put to sleep, | ||
| // see `await_start`'s use below. | ||
| let mut await_start = $get_timer(1); | ||
| let mut await_start = None; | ||
| if $check_slow_await { await_start = Some($get_timer(1)); } | ||
| let updates_available = $await; | ||
| let await_slow = $timer_elapsed(&mut await_start, 1); | ||
| let await_slow = if $check_slow_await { $timer_elapsed(&mut await_start.unwrap(), 1) } else { false }; | ||
| if updates_available { | ||
| log_trace!($logger, "Persisting ChannelManager..."); | ||
| @@ -388,23 +399,32 @@ pub(crate) mod futures_util { | ||
| use core::task::{Poll, Waker, RawWaker, RawWakerVTable}; | ||
| use core::pin::Pin; | ||
| use core::marker::Unpin; | ||
| pub(crate) struct Selector<A: Future<Output=()> + Unpin, B: Future<Output=bool> + Unpin> { | ||
| pub(crate) struct Selector< | ||
| A: Future<Output=()> + Unpin, B: Future<Output=()> + Unpin, C: Future<Output=bool> + Unpin | ||
| > { | ||
| pub a: A, | ||
| pub b: B, | ||
| pub c: C, | ||
| } | ||
| pub(crate) enum SelectorOutput { | ||
| A, B(bool), | ||
| A, B, C(bool), | ||
| } | ||
| impl<A: Future<Output=()> + Unpin, B: Future<Output=bool> + Unpin> Future for Selector<A, B> { | ||
| impl< | ||
| A: Future<Output=()> + Unpin, B: Future<Output=()> + Unpin, C: Future<Output=bool> + Unpin | ||
| > Future for Selector<A, B, C> { | ||
| type Output = SelectorOutput; | ||
| fn poll(mut self: Pin<&mut Self>, ctx: &mut core::task::Context<'_>) -> Poll<SelectorOutput> { | ||
| match Pin::new(&mut self.a).poll(ctx) { | ||
| Poll::Ready(()) => { return Poll::Ready(SelectorOutput::A); }, | ||
| Poll::Pending => {}, | ||
| } | ||
| match Pin::new(&mut self.b).poll(ctx) { | ||
| Poll::Ready(res) => { return Poll::Ready(SelectorOutput::B(res)); }, | ||
| Poll::Ready(()) => { return Poll::Ready(SelectorOutput::B); }, | ||
| Poll::Pending => {}, | ||
| } | ||
| match Pin::new(&mut self.c).poll(ctx) { | ||
| Poll::Ready(res) => { return Poll::Ready(SelectorOutput::C(res)); }, | ||
| Poll::Pending => {}, | ||
| } | ||
| Poll::Pending | ||
| @@ -438,6 +458,11 @@ use core::task; | ||
| /// feature, doing so will skip calling [`NetworkGraph::remove_stale_channels_and_tracking`], | ||
| /// you should call [`NetworkGraph::remove_stale_channels_and_tracking_with_time`] regularly | ||
| /// manually instead. | ||
| /// | ||
| /// The `mobile_interruptable_platform` flag should be set if we're currently running on a | ||
| /// mobile device, where we may need to check for interruption of the application regularly. If you | ||
| /// are unsure, you should set the flag, as the performance impact of it is minimal unless there | ||
| /// are hundreds or thousands of simultaneous process calls running. | ||
| #[cfg(feature = "futures")] | ||
| pub async fn process_events_async< | ||
| 'a, | ||
| @@ -473,7 +498,7 @@ pub async fn process_events_async< | ||
| >( | ||
| persister: PS, event_handler: EventHandler, chain_monitor: M, channel_manager: CM, | ||
| gossip_sync: GossipSync<PGS, RGS, G, UL, L>, peer_manager: PM, logger: L, scorer: Option<S>, | ||
| sleeper: Sleeper, | ||
| sleeper: Sleeper, mobile_interruptable_platform: bool, | ||
| ) -> Result<(), lightning::io::Error> | ||
| where | ||
| UL::Target: 'static + UtxoLookup, | ||
| @@ -514,11 +539,13 @@ where | ||
| gossip_sync, peer_manager, logger, scorer, should_break, { | ||
| let fut = Selector { | ||
| a: channel_manager.get_persistable_update_future(), | ||
| b: sleeper(Duration::from_millis(100)), | ||
| b: chain_monitor.get_update_future(), | ||
| c: sleeper(if mobile_interruptable_platform { Duration::from_millis(100) } else { Duration::from_secs(FASTEST_TIMER) }), | ||
| }; | ||
| match fut.await { | ||
| SelectorOutput::A => true, | ||
| SelectorOutput::B(exit) => { | ||
| SelectorOutput::B => false, | ||
| SelectorOutput::C(exit) => { | ||
| should_break = exit; | ||
| false | ||
| } | ||
| @@ -528,7 +555,7 @@ where | ||
| let mut waker = dummy_waker(); | ||
| let mut ctx = task::Context::from_waker(&mut waker); | ||
| core::pin::Pin::new(fut).poll(&mut ctx).is_ready() | ||
TheBlueMatt marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| }) | ||
| }, mobile_interruptable_platform) | ||
| } | ||
| #[cfg(feature = "std")] | ||
| @@ -643,8 +670,11 @@ impl BackgroundProcessor { | ||
| define_run_body!(persister, chain_monitor, chain_monitor.process_pending_events(&event_handler), | ||
| channel_manager, channel_manager.process_pending_events(&event_handler), | ||
| gossip_sync, peer_manager, logger, scorer, stop_thread.load(Ordering::Acquire), | ||
| channel_manager.await_persistable_update_timeout(Duration::from_millis(100)), | ||
| |_| Instant::now(), |time: &Instant, dur| time.elapsed().as_secs() > dur) | ||
| Sleeper::from_two_futures( | ||
| channel_manager.get_persistable_update_future(), | ||
| chain_monitor.get_update_future() | ||
| ).wait_timeout(Duration::from_millis(100)), | ||
| |_| Instant::now(), |time: &Instant, dur| time.elapsed().as_secs() > dur, false) | ||
| }); | ||
| Self { stop_thread: stop_thread_clone, thread_handle: Some(handle) } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.