Start sketching out runner runtime

This commit is contained in:
Isaac Clayton 2022-06-01 11:15:06 +02:00
parent 627d067e57
commit 8293b6971d
5 changed files with 114 additions and 0 deletions

37
crates/runner/src/lib.rs Normal file
View file

@ -0,0 +1,37 @@
use mlua::{Error, FromLua, Lua, ToLua, UserData};
pub mod runtime;
pub use runtime::*;
impl Runtime for Lua {
type Module = String;
// type Error = Error;
type Interface = LuaInterface;
fn init(module: Self::Module) -> Option<Self> {
let lua = Lua::new();
lua.load(&module).exec().ok()?;
return Some(lua);
}
fn interface(&self) -> Self::Interface {
todo!()
}
fn val<'lua, K: ToLua<'lua>, V: FromLua<'lua>>(&'lua self, key: K) -> Option<V> {
self.globals().get(key).ok()
}
}
pub struct LuaInterface {
funs: Vec<String>,
vals: Vec<String>,
}
impl Interface for LuaInterface {
type Handle = String;
fn handles(&self) -> &[Self::Handle] {
todo!()
}
}