mirror of
https://github.com/lune-org/mlua-luau-scheduler.git
synced 2025-04-04 10:30:56 +01:00
* Minimize dependencies, no longer depending on smol directly, only async-excecutor and its utility crates * Error callback is no longer thread safe, but faster * Improved documentation and panic messages for internal workings of runtime * Depend on mlua exact version needed and serialize feature * Change crate name
43 lines
1.1 KiB
Rust
43 lines
1.1 KiB
Rust
use std::io::ErrorKind;
|
|
|
|
use async_fs::read_to_string;
|
|
use async_io::block_on;
|
|
|
|
use mlua::prelude::*;
|
|
use mlua_luau_runtime::*;
|
|
|
|
const MAIN_SCRIPT: &str = include_str!("./lua/basic_spawn.luau");
|
|
|
|
pub fn main() -> LuaResult<()> {
|
|
// Set up persistent lua environment
|
|
let lua = Lua::new();
|
|
lua.globals().set(
|
|
"readFile",
|
|
lua.create_async_function(|lua, path: String| async move {
|
|
// Spawn background task that does not take up resources on the lua thread
|
|
let task = lua.spawn(async move {
|
|
match read_to_string(path).await {
|
|
Ok(s) => Ok(Some(s)),
|
|
Err(e) if e.kind() == ErrorKind::NotFound => Ok(None),
|
|
Err(e) => Err(e),
|
|
}
|
|
});
|
|
task.await.into_lua_err()
|
|
})?,
|
|
)?;
|
|
|
|
// Load the main script into a runtime
|
|
let rt = Runtime::new(&lua)?;
|
|
let main = lua.load(MAIN_SCRIPT);
|
|
rt.spawn_thread(main, ())?;
|
|
|
|
// Run until completion
|
|
block_on(rt.run());
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn test_basic_spawn() -> LuaResult<()> {
|
|
main()
|
|
}
|