codemp/src/ffi/lua/workspace.rs

101 lines
2.9 KiB
Rust
Raw Normal View History

2024-09-17 23:00:30 +02:00
use crate::prelude::*;
2024-10-01 00:42:57 +02:00
use mlua::prelude::*;
use mlua_codemp_patch as mlua;
2024-09-17 23:00:30 +02:00
use super::ext::a_sync::a_sync;
use super::ext::from_lua_serde;
impl LuaUserData for CodempWorkspace {
fn add_methods<M: LuaUserDataMethods<Self>>(methods: &mut M) {
2024-10-01 00:42:57 +02:00
methods.add_meta_method(LuaMetaMethod::ToString, |_, this, ()| {
Ok(format!("{:?}", this))
});
methods.add_method(
"create",
|_, this, (name,): (String,)| a_sync! { this => this.create(&name).await? },
2024-09-17 23:00:30 +02:00
);
2024-10-01 00:42:57 +02:00
methods.add_method(
"attach",
|_, this, (name,): (String,)| a_sync! { this => this.attach(&name).await? },
2024-09-17 23:00:30 +02:00
);
2024-10-01 00:42:57 +02:00
methods.add_method("detach", |_, this, (name,): (String,)| {
Ok(this.detach(&name))
2024-10-01 00:42:57 +02:00
});
2024-09-17 23:00:30 +02:00
2024-10-01 00:42:57 +02:00
methods.add_method(
"delete",
|_, this, (name,): (String,)| a_sync! { this => this.delete(&name).await? },
2024-09-17 23:00:30 +02:00
);
2024-10-01 00:42:57 +02:00
methods.add_method("get_buffer", |_, this, (name,): (String,)| {
Ok(this.buffer_by_name(&name))
});
2024-09-17 23:00:30 +02:00
2024-10-03 04:06:54 +02:00
methods.add_method(
"fetch_buffers",
|_, this, ()| a_sync! { this => this.fetch_buffers().await? },
2024-09-17 23:00:30 +02:00
);
2024-10-01 00:42:57 +02:00
methods.add_method(
"fetch_users",
|_, this, ()| a_sync! { this => this.fetch_users().await? },
2024-09-17 23:00:30 +02:00
);
2024-10-01 00:42:57 +02:00
methods.add_method(
"filetree",
|_, this, (filter, strict): (Option<String>, Option<bool>)| {
Ok(this.filetree(filter.as_deref(), strict.unwrap_or(false)))
},
2024-09-17 23:00:30 +02:00
);
2024-10-03 04:06:54 +02:00
methods.add_method("user_list", |_, this, ()| Ok(this.user_list()));
2024-10-03 04:06:54 +02:00
methods.add_method("recv", |_, this, ()| a_sync! { this => this.recv().await? });
2024-10-03 04:06:54 +02:00
methods.add_method(
"try_recv",
|_, this, ()| a_sync! { this => this.try_recv().await? },
);
2024-10-03 04:06:54 +02:00
methods.add_method("poll", |_, this, ()| a_sync! { this => this.poll().await? });
2024-10-10 12:46:56 +02:00
methods.add_method("callback", |_, this, (cb,): (LuaFunction,)| {
Ok(this.callback(move |controller: CodempWorkspace| {
2024-10-03 04:06:54 +02:00
super::ext::callback().invoke(cb.clone(), controller)
2024-10-10 12:46:56 +02:00
}))
});
2024-10-10 12:46:56 +02:00
methods.add_method("clear_callbacl", |_, this, ()| Ok(this.clear_callback()));
2024-09-17 23:00:30 +02:00
}
fn add_fields<F: LuaUserDataFields<Self>>(fields: &mut F) {
fields.add_field_method_get("name", |_, this| Ok(this.id()));
fields.add_field_method_get("cursor", |_, this| Ok(this.cursor()));
fields.add_field_method_get("active_buffers", |_, this| Ok(this.buffer_list()));
// fields.add_field_method_get("users", |_, this| Ok(this.0.users())); // TODO
}
}
from_lua_serde! { CodempEvent }
impl LuaUserData for CodempEvent {
fn add_methods<M: LuaUserDataMethods<Self>>(methods: &mut M) {
2024-10-01 00:42:57 +02:00
methods.add_meta_method(LuaMetaMethod::ToString, |_, this, ()| {
Ok(format!("{:?}", this))
});
2024-09-17 23:00:30 +02:00
}
fn add_fields<F: LuaUserDataFields<Self>>(fields: &mut F) {
fields.add_field_method_get("type", |_, this| match this {
CodempEvent::FileTreeUpdated(_) => Ok("filetree"),
CodempEvent::UserJoin(_) => Ok("join"),
CodempEvent::UserLeave(_) => Ok("leave"),
});
fields.add_field_method_get("value", |_, this| match this {
CodempEvent::FileTreeUpdated(x)
2024-10-01 00:42:57 +02:00
| CodempEvent::UserJoin(x)
| CodempEvent::UserLeave(x) => Ok(x.clone()),
2024-09-17 23:00:30 +02:00
});
}
}