From 7c59d0c722215693839b2790a918fcc872e5ab93 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sun, 11 Feb 2024 10:53:17 +0100 Subject: [PATCH] Documentation and tracing improvements after rename --- README.md | 8 ++++---- examples/basic_sleep.rs | 6 +++--- examples/basic_spawn.rs | 6 +++--- examples/callbacks.rs | 10 +++++----- examples/exit_code.rs | 8 ++++---- examples/lots_of_threads.rs | 6 +++--- examples/scheduler_ordering.rs | 8 ++++---- examples/tracy.rs | 6 +++--- lib/functions.rs | 13 ++++++++----- lib/scheduler.rs | 8 ++++---- lib/traits.rs | 18 +++++++++--------- lib/util.rs | 2 +- 12 files changed, 51 insertions(+), 48 deletions(-) diff --git a/README.md b/README.md index 2816342..188b16b 100644 --- a/README.md +++ b/README.md @@ -76,16 +76,16 @@ lua.globals().set( ### 3. Set up scheduler, run threads ```rs -let rt = Scheduler::new(&lua)?; +let sched = Scheduler::new(&lua)?; // We can create multiple lua threads ... let sleepThread = lua.load("sleep(0.1)"); let fileThread = lua.load("readFile(\"Cargo.toml\")"); // ... spawn them both onto the scheduler ... -rt.push_thread_front(sleepThread, ()); -rt.push_thread_front(fileThread, ()); +sched.push_thread_front(sleepThread, ()); +sched.push_thread_front(fileThread, ()); // ... and run until they finish -block_on(rt.run()); +block_on(sched.run()); ``` diff --git a/examples/basic_sleep.rs b/examples/basic_sleep.rs index 57b7cf2..1e1be88 100644 --- a/examples/basic_sleep.rs +++ b/examples/basic_sleep.rs @@ -28,12 +28,12 @@ pub fn main() -> LuaResult<()> { )?; // Load the main script into a scheduler - let rt = Scheduler::new(&lua); + let sched = Scheduler::new(&lua); let main = lua.load(MAIN_SCRIPT); - rt.push_thread_front(main, ())?; + sched.push_thread_front(main, ())?; // Run until completion - block_on(rt.run()); + block_on(sched.run()); Ok(()) } diff --git a/examples/basic_spawn.rs b/examples/basic_spawn.rs index 022c839..5196bf3 100644 --- a/examples/basic_spawn.rs +++ b/examples/basic_spawn.rs @@ -47,12 +47,12 @@ pub fn main() -> LuaResult<()> { )?; // Load the main script into a scheduler - let rt = Scheduler::new(&lua); + let sched = Scheduler::new(&lua); let main = lua.load(MAIN_SCRIPT); - rt.push_thread_front(main, ())?; + sched.push_thread_front(main, ())?; // Run until completion - block_on(rt.run()); + block_on(sched.run()); Ok(()) } diff --git a/examples/callbacks.rs b/examples/callbacks.rs index 50de964..1094a15 100644 --- a/examples/callbacks.rs +++ b/examples/callbacks.rs @@ -19,8 +19,8 @@ pub fn main() -> LuaResult<()> { let lua = Lua::new(); // Create a new scheduler with custom callbacks - let rt = Scheduler::new(&lua); - rt.set_error_callback(|e| { + let sched = Scheduler::new(&lua); + sched.set_error_callback(|e| { println!( "Captured error from Lua!\n{}\n{e}\n{}", "-".repeat(15), @@ -30,13 +30,13 @@ pub fn main() -> LuaResult<()> { // Load the main script into the scheduler, and keep track of the thread we spawn let main = lua.load(MAIN_SCRIPT); - let id = rt.push_thread_front(main, ())?; + let id = sched.push_thread_front(main, ())?; // Run until completion - block_on(rt.run()); + block_on(sched.run()); // We should have gotten the error back from our script - assert!(rt.get_thread_result(id).unwrap().is_err()); + assert!(sched.get_thread_result(id).unwrap().is_err()); Ok(()) } diff --git a/examples/exit_code.rs b/examples/exit_code.rs index 2ab6c5b..6e968ef 100644 --- a/examples/exit_code.rs +++ b/examples/exit_code.rs @@ -17,20 +17,20 @@ pub fn main() -> LuaResult<()> { // Set up persistent Lua environment let lua = Lua::new(); - let rt = Scheduler::new(&lua); + let sched = Scheduler::new(&lua); let fns = Functions::new(&lua)?; lua.globals().set("exit", fns.exit)?; // Load the main script into the scheduler let main = lua.load(MAIN_SCRIPT); - rt.push_thread_front(main, ())?; + sched.push_thread_front(main, ())?; // Run until completion - block_on(rt.run()); + block_on(sched.run()); // Verify that we got a correct exit code - let code = rt.get_exit_code().unwrap_or_default(); + let code = sched.get_exit_code().unwrap_or_default(); assert!(format!("{code:?}").contains("(1)")); Ok(()) diff --git a/examples/lots_of_threads.rs b/examples/lots_of_threads.rs index 4a50d2c..7d24c0e 100644 --- a/examples/lots_of_threads.rs +++ b/examples/lots_of_threads.rs @@ -20,7 +20,7 @@ pub fn main() -> LuaResult<()> { // Set up persistent Lua environment let lua = Lua::new(); - let rt = Scheduler::new(&lua); + let sched = Scheduler::new(&lua); let fns = Functions::new(&lua)?; lua.globals().set("spawn", fns.spawn)?; @@ -36,10 +36,10 @@ pub fn main() -> LuaResult<()> { // Load the main script into the scheduler let main = lua.load(MAIN_SCRIPT); - rt.push_thread_front(main, ())?; + sched.push_thread_front(main, ())?; // Run until completion - block_on(rt.run()); + block_on(sched.run()); Ok(()) } diff --git a/examples/scheduler_ordering.rs b/examples/scheduler_ordering.rs index ea5b9e5..af6da80 100644 --- a/examples/scheduler_ordering.rs +++ b/examples/scheduler_ordering.rs @@ -19,7 +19,7 @@ pub fn main() -> LuaResult<()> { // Set up persistent Lua environment let lua = Lua::new(); - let rt = Scheduler::new(&lua); + let sched = Scheduler::new(&lua); let fns = Functions::new(&lua)?; lua.globals().set("spawn", fns.spawn)?; @@ -36,13 +36,13 @@ pub fn main() -> LuaResult<()> { // Load the main script into the scheduler, and keep track of the thread we spawn let main = lua.load(MAIN_SCRIPT); - let id = rt.push_thread_front(main, ())?; + let id = sched.push_thread_front(main, ())?; // Run until completion - block_on(rt.run()); + block_on(sched.run()); // We should have gotten proper values back from our script - let res = rt.get_thread_result(id).unwrap().unwrap(); + let res = sched.get_thread_result(id).unwrap().unwrap(); let nums = Vec::::from_lua_multi(res, &lua)?; assert_eq!(nums, vec![1, 2, 3, 4, 5, 6]); diff --git a/examples/tracy.rs b/examples/tracy.rs index 372fc67..24e7b93 100644 --- a/examples/tracy.rs +++ b/examples/tracy.rs @@ -35,7 +35,7 @@ pub fn main() -> LuaResult<()> { // Set up persistent Lua environment let lua = Lua::new(); - let rt = Scheduler::new(&lua); + let sched = Scheduler::new(&lua); let fns = Functions::new(&lua)?; lua.globals().set("spawn", fns.spawn)?; @@ -51,10 +51,10 @@ pub fn main() -> LuaResult<()> { // Load the main script into the scheduler let main = lua.load(MAIN_SCRIPT); - rt.push_thread_front(main, ())?; + sched.push_thread_front(main, ())?; // Run until completion - block_on(rt.run()); + block_on(sched.run()); Ok(()) } diff --git a/lib/functions.rs b/lib/functions.rs index 9a3ea60..05cdcb5 100644 --- a/lib/functions.rs +++ b/lib/functions.rs @@ -40,6 +40,9 @@ end /** A collection of lua functions that may be called to interact with a [`Scheduler`]. + + Note that these may all be implemented using [`LuaSchedulerExt`], however, this struct + is implemented using internal (non-public) APIs, and generally has better performance. */ pub struct Functions<'lua> { /** @@ -112,7 +115,7 @@ impl<'lua> Functions<'lua> { let resume_map = result_map.clone(); let resume = lua.create_function(move |lua, (thread, args): (LuaThread, LuaMultiValue)| { - let _span = tracing::trace_span!("lua::resume").entered(); + let _span = tracing::trace_span!("Scheduler::fn_resume").entered(); match thread.resume::<_, LuaMultiValue>(args.clone()) { Ok(v) => { if v.get(0).map(is_poll_pending).unwrap_or_default() { @@ -164,7 +167,7 @@ impl<'lua> Functions<'lua> { let spawn_map = result_map.clone(); let spawn = lua.create_function( move |lua, (tof, args): (LuaThreadOrFunction, LuaMultiValue)| { - let _span = tracing::trace_span!("lua::spawn").entered(); + let _span = tracing::trace_span!("Scheduler::fn_spawn").entered(); let thread = tof.into_thread(lua)?; if thread.status() == LuaThreadStatus::Resumable { // NOTE: We need to resume the thread once instantly for correct behavior, @@ -201,7 +204,7 @@ impl<'lua> Functions<'lua> { let defer = lua.create_function( move |lua, (tof, args): (LuaThreadOrFunction, LuaMultiValue)| { - let _span = tracing::trace_span!("lua::defer").entered(); + let _span = tracing::trace_span!("Scheduler::fn_defer").entered(); let thread = tof.into_thread(lua)?; if thread.status() == LuaThreadStatus::Resumable { defer_queue.push_item(lua, &thread, args)?; @@ -216,7 +219,7 @@ impl<'lua> Functions<'lua> { .get::<_, LuaFunction>("close")?; let close_key = lua.create_registry_value(close)?; let cancel = lua.create_function(move |lua, thread: LuaThread| { - let _span = tracing::trace_span!("lua::cancel").entered(); + let _span = tracing::trace_span!("Scheduler::fn_cancel").entered(); let close: LuaFunction = lua.registry_value(&close_key)?; match close.call(thread) { Err(LuaError::CoroutineInactive) | Ok(()) => Ok(()), @@ -228,7 +231,7 @@ impl<'lua> Functions<'lua> { ( "exit", lua.create_function(|lua, code: Option| { - let _span = tracing::trace_span!("lua::exit").entered(); + let _span = tracing::trace_span!("Scheduler::fn_exit").entered(); let code = code.map(ExitCode::from).unwrap_or_default(); lua.set_exit_code(code); Ok(()) diff --git a/lib/scheduler.rs b/lib/scheduler.rs index aab43b0..31f699e 100644 --- a/lib/scheduler.rs +++ b/lib/scheduler.rs @@ -369,7 +369,7 @@ impl<'lua> Scheduler<'lua> { // 5 let mut num_processed = 0; - let span_tick = trace_span!("scheduler::tick"); + let span_tick = trace_span!("Scheduler::tick"); let fut_tick = async { local_exec.tick().await; // NOTE: Try to do as much work as possible instead of just a single tick() @@ -398,21 +398,21 @@ impl<'lua> Scheduler<'lua> { let mut num_deferred = 0; let mut num_futures = 0; { - let _span = trace_span!("scheduler::drain_spawned").entered(); + let _span = trace_span!("Scheduler::drain_spawned").entered(); for (thread, args) in self.queue_spawn.drain_items(self.lua) { process_thread(thread, args); num_spawned += 1; } } { - let _span = trace_span!("scheduler::drain_deferred").entered(); + let _span = trace_span!("Scheduler::drain_deferred").entered(); for (thread, args) in self.queue_defer.drain_items(self.lua) { process_thread(thread, args); num_deferred += 1; } } { - let _span = trace_span!("scheduler::drain_futures").entered(); + let _span = trace_span!("Scheduler::drain_futures").entered(); for fut in fut_queue.drain_items() { local_exec.spawn(fut).detach(); num_futures += 1; diff --git a/lib/traits.rs b/lib/traits.rs index a7f23c6..cbe2e6e 100644 --- a/lib/traits.rs +++ b/lib/traits.rs @@ -182,9 +182,9 @@ pub trait LuaSpawnExt<'lua> { })? )?; - let rt = Scheduler::new(&lua); - rt.push_thread_front(lua.load("spawnBackgroundTask()"), ()); - block_on(rt.run()); + let sched = Scheduler::new(&lua); + sched.push_thread_front(lua.load("spawnBackgroundTask()"), ()); + block_on(sched.run()); Ok(()) } @@ -226,9 +226,9 @@ pub trait LuaSpawnExt<'lua> { })? )?; - let rt = Scheduler::new(&lua); - rt.push_thread_front(lua.load("spawnLocalTask()"), ()); - block_on(rt.run()); + let sched = Scheduler::new(&lua); + sched.push_thread_front(lua.load("spawnLocalTask()"), ()); + block_on(sched.run()); Ok(()) } @@ -268,9 +268,9 @@ pub trait LuaSpawnExt<'lua> { })? )?; - let rt = Scheduler::new(&lua); - rt.push_thread_front(lua.load("spawnBlockingTask()"), ()); - block_on(rt.run()); + let sched = Scheduler::new(&lua); + sched.push_thread_front(lua.load("spawnBlockingTask()"), ()); + block_on(sched.run()); Ok(()) } diff --git a/lib/util.rs b/lib/util.rs index 57d88e2..a5564d0 100644 --- a/lib/util.rs +++ b/lib/util.rs @@ -9,7 +9,7 @@ use tracing::instrument; Otherwise returns the values yielded by the thread, or the error that caused it to stop. */ -#[instrument(level = "trace", name = "scheduler::run_until_yield", skip_all)] +#[instrument(level = "trace", name = "Scheduler::run_until_yield", skip_all)] pub(crate) async fn run_until_yield<'lua>( thread: LuaThread<'lua>, args: LuaMultiValue<'lua>,