-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
spawn instrumented task contextually (#14)
- Loading branch information
Showing
10 changed files
with
439 additions
and
216 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// Copyright 2023 RisingWave Labs | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
//! This example shows how to spawn tasks with `await_tree::spawn` that are automatically registered | ||
//! to the current registry of the scope. | ||
|
||
use std::time::Duration; | ||
|
||
use await_tree::{Config, InstrumentAwait, Registry}; | ||
use futures::future::pending; | ||
use tokio::time::sleep; | ||
|
||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] | ||
struct Actor(usize); | ||
|
||
async fn actor(i: usize) { | ||
// Since we're already inside the scope of a registered/instrumented task, we can directly spawn | ||
// new tasks with `await_tree::spawn` to also register them in the same registry. | ||
await_tree::spawn_anonymous(format!("background task {i}"), async { | ||
pending::<()>().await; | ||
}) | ||
.instrument_await("waiting for background task") | ||
.await | ||
.unwrap(); | ||
} | ||
|
||
#[tokio::main] | ||
async fn main() { | ||
let registry = Registry::new(Config::default()); | ||
|
||
for i in 0..3 { | ||
let root = registry.register(Actor(i), format!("actor {i}")); | ||
tokio::spawn(root.instrument(actor(i))); | ||
} | ||
|
||
sleep(Duration::from_secs(1)).await; | ||
|
||
for (_actor, tree) in registry.collect::<Actor>() { | ||
// actor 0 [1.004s] | ||
// waiting for background task [1.004s] | ||
println!("{tree}"); | ||
} | ||
for tree in registry.collect_anonymous() { | ||
// background task 0 [1.004s] | ||
println!("{tree}"); | ||
} | ||
} |
This file contains 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 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 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 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 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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// Copyright 2023 RisingWave Labs | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
use std::future::Future; | ||
use std::sync::Arc; | ||
|
||
use crate::context::TreeContext; | ||
use crate::registry::WeakRegistry; | ||
use crate::Registry; | ||
|
||
/// The root of an await-tree. | ||
pub struct TreeRoot { | ||
pub(crate) context: Arc<TreeContext>, | ||
pub(crate) registry: WeakRegistry, | ||
} | ||
|
||
tokio::task_local! { | ||
pub(crate) static ROOT: TreeRoot | ||
} | ||
|
||
pub(crate) fn current_context() -> Option<Arc<TreeContext>> { | ||
ROOT.try_with(|r| r.context.clone()).ok() | ||
} | ||
|
||
pub(crate) fn current_registry() -> Option<Registry> { | ||
ROOT.try_with(|r| r.registry.upgrade()).ok().flatten() | ||
} | ||
|
||
impl TreeRoot { | ||
/// Instrument the given future with the context of this tree root. | ||
pub async fn instrument<F: Future>(self, future: F) -> F::Output { | ||
ROOT.scope(self, future).await | ||
} | ||
} |
This file contains 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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
// Copyright 2023 RisingWave Labs | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// TODO: should we consider exposing `current_registry` | ||
// so that users can not only spawn tasks but also get and collect trees? | ||
|
||
// TODO: should we support "global registry" for users to quick start? | ||
|
||
use std::future::Future; | ||
|
||
use tokio::task::JoinHandle; | ||
|
||
use crate::root::current_registry; | ||
use crate::{Key, Span}; | ||
|
||
/// Spawns a new asynchronous task instrumented with the given root [`Span`], returning a | ||
/// [`JoinHandle`] for it. | ||
/// | ||
/// The spawned task will be registered in the current [`Registry`](crate::Registry) with the given | ||
/// [`Key`], if it exists. Otherwise, this is equivalent to [`tokio::spawn`]. | ||
pub fn spawn<T>(key: impl Key, root_span: impl Into<Span>, future: T) -> JoinHandle<T::Output> | ||
where | ||
T: Future + Send + 'static, | ||
T::Output: Send + 'static, | ||
{ | ||
if let Some(registry) = current_registry() { | ||
tokio::spawn(registry.register(key, root_span).instrument(future)) | ||
} else { | ||
tokio::spawn(future) | ||
} | ||
} | ||
|
||
/// Spawns a new asynchronous task instrumented with the given root [`Span`], returning a | ||
/// [`JoinHandle`] for it. | ||
/// | ||
/// The spawned task will be registered in the current [`Registry`](crate::Registry) anonymously, if | ||
/// it exists. Otherwise, this is equivalent to [`tokio::spawn`]. | ||
pub fn spawn_anonymous<T>(root_span: impl Into<Span>, future: T) -> JoinHandle<T::Output> | ||
where | ||
T: Future + Send + 'static, | ||
T::Output: Send + 'static, | ||
{ | ||
if let Some(registry) = current_registry() { | ||
tokio::spawn(registry.register_anonymous(root_span).instrument(future)) | ||
} else { | ||
tokio::spawn(future) | ||
} | ||
} |
Oops, something went wrong.