mirror of
https://github.com/lune-org/mlua-luau-scheduler.git
synced 2025-04-03 01:50:57 +01:00
Use event primitive instead of smol channels in thread queue
This commit is contained in:
parent
df2747bae3
commit
bc6909acd4
4 changed files with 20 additions and 38 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -518,6 +518,7 @@ name = "smol-mlua"
|
|||
version = "0.0.0"
|
||||
dependencies = [
|
||||
"concurrent-queue",
|
||||
"event-listener 4.0.3",
|
||||
"mlua",
|
||||
"smol",
|
||||
]
|
||||
|
|
|
@ -5,6 +5,7 @@ edition = "2021"
|
|||
|
||||
[dependencies]
|
||||
concurrent-queue = "2.4"
|
||||
event-listener = "4.0"
|
||||
smol = "2.0"
|
||||
mlua = { version = "0.9", features = ["luau", "luau-jit", "async"] }
|
||||
|
||||
|
|
30
lib/queue.rs
30
lib/queue.rs
|
@ -1,8 +1,8 @@
|
|||
use std::sync::Arc;
|
||||
|
||||
use concurrent_queue::ConcurrentQueue;
|
||||
use event_listener::Event;
|
||||
use mlua::prelude::*;
|
||||
use smol::channel::{unbounded, Receiver, Sender};
|
||||
|
||||
use crate::IntoLuaThread;
|
||||
|
||||
|
@ -17,22 +17,17 @@ const ERR_OOM: &str = "out of memory";
|
|||
#[derive(Debug, Clone)]
|
||||
pub struct ThreadQueue {
|
||||
queue: Arc<ConcurrentQueue<ThreadWithArgs>>,
|
||||
signal_tx: Sender<()>,
|
||||
signal_rx: Receiver<()>,
|
||||
event: Arc<Event>,
|
||||
}
|
||||
|
||||
impl ThreadQueue {
|
||||
pub fn new() -> Self {
|
||||
let queue = Arc::new(ConcurrentQueue::unbounded());
|
||||
let (signal_tx, signal_rx) = unbounded();
|
||||
Self {
|
||||
queue,
|
||||
signal_tx,
|
||||
signal_rx,
|
||||
}
|
||||
let event = Arc::new(Event::new());
|
||||
Self { queue, event }
|
||||
}
|
||||
|
||||
pub fn push<'lua>(
|
||||
pub fn push_item<'lua>(
|
||||
&self,
|
||||
lua: &'lua Lua,
|
||||
thread: impl IntoLuaThread<'lua>,
|
||||
|
@ -43,12 +38,12 @@ impl ThreadQueue {
|
|||
let stored = ThreadWithArgs::new(lua, thread, args);
|
||||
|
||||
self.queue.push(stored).unwrap();
|
||||
self.signal_tx.try_send(()).unwrap();
|
||||
self.event.notify(usize::MAX);
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub fn drain<'outer, 'lua>(
|
||||
pub fn drain_items<'outer, 'lua>(
|
||||
&'outer self,
|
||||
lua: &'lua Lua,
|
||||
) -> impl Iterator<Item = (LuaThread<'lua>, LuaMultiValue<'lua>)> + 'outer
|
||||
|
@ -58,14 +53,9 @@ impl ThreadQueue {
|
|||
self.queue.try_iter().map(|stored| stored.into_inner(lua))
|
||||
}
|
||||
|
||||
pub async fn listen(&self) {
|
||||
self.signal_rx.recv().await.unwrap();
|
||||
// Drain any pending receives
|
||||
loop {
|
||||
match self.signal_rx.try_recv() {
|
||||
Ok(_) => continue,
|
||||
Err(_) => break,
|
||||
}
|
||||
pub async fn wait_for_item(&self) {
|
||||
if self.queue.is_empty() {
|
||||
self.event.listen().await;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -67,12 +67,7 @@ impl<'lua> Runtime<'lua> {
|
|||
thread: impl IntoLuaThread<'lua>,
|
||||
args: impl IntoLuaMulti<'lua>,
|
||||
) -> LuaResult<()> {
|
||||
let thread = thread.into_lua_thread(self.lua)?;
|
||||
let args = args.into_lua_multi(self.lua)?;
|
||||
|
||||
self.queue_spawn.push(self.lua, thread, args)?;
|
||||
|
||||
Ok(())
|
||||
self.queue_spawn.push_item(self.lua, thread, args)
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -87,12 +82,7 @@ impl<'lua> Runtime<'lua> {
|
|||
thread: impl IntoLuaThread<'lua>,
|
||||
args: impl IntoLuaMulti<'lua>,
|
||||
) -> LuaResult<()> {
|
||||
let thread = thread.into_lua_thread(self.lua)?;
|
||||
let args = args.into_lua_multi(self.lua)?;
|
||||
|
||||
self.queue_defer.push(self.lua, thread, args)?;
|
||||
|
||||
Ok(())
|
||||
self.queue_defer.push_item(self.lua, thread, args)
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -115,7 +105,7 @@ impl<'lua> Runtime<'lua> {
|
|||
.map(|l| l == Lua::poll_pending())
|
||||
.unwrap_or_default()
|
||||
{
|
||||
spawn_queue.push(lua, &thread, args)?;
|
||||
spawn_queue.push_item(lua, &thread, args)?;
|
||||
}
|
||||
}
|
||||
Err(e) => {
|
||||
|
@ -141,7 +131,7 @@ impl<'lua> Runtime<'lua> {
|
|||
move |lua, (tof, args): (LuaThreadOrFunction, LuaMultiValue)| {
|
||||
let thread = tof.into_thread(lua)?;
|
||||
if thread.status() == LuaThreadStatus::Resumable {
|
||||
defer_queue.push(lua, &thread, args)?;
|
||||
defer_queue.push_item(lua, &thread, args)?;
|
||||
}
|
||||
Ok(thread)
|
||||
},
|
||||
|
@ -184,8 +174,8 @@ impl<'lua> Runtime<'lua> {
|
|||
loop {
|
||||
// Wait for a new thread to arrive __or__ next futures step, prioritizing
|
||||
// new threads, so we don't accidentally exit when there is more work to do
|
||||
let fut_spawn = self.queue_spawn.listen();
|
||||
let fut_defer = self.queue_defer.listen();
|
||||
let fut_spawn = self.queue_spawn.wait_for_item();
|
||||
let fut_defer = self.queue_defer.wait_for_item();
|
||||
let fut_tick = async {
|
||||
lua_exec.tick().await;
|
||||
// Do as much work as possible
|
||||
|
@ -221,10 +211,10 @@ impl<'lua> Runtime<'lua> {
|
|||
};
|
||||
|
||||
// Process spawned threads first, then deferred threads
|
||||
for (thread, args) in self.queue_spawn.drain(self.lua) {
|
||||
for (thread, args) in self.queue_spawn.drain_items(self.lua) {
|
||||
process_thread(thread, args);
|
||||
}
|
||||
for (thread, args) in self.queue_defer.drain(self.lua) {
|
||||
for (thread, args) in self.queue_defer.drain_items(self.lua) {
|
||||
process_thread(thread, args);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue