mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-26 22:15:19 +03:00
feat(plugin): added the get_plugin_ids()
query function
This commit is contained in:
parent
ea1a7dfc7d
commit
2814c30272
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -2217,7 +2217,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zellij-tile"
|
name = "zellij-tile"
|
||||||
version = "1.0.0"
|
version = "1.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
|
@ -36,7 +36,7 @@ lazy_static = "1.4.0"
|
|||||||
wasmer = "1.0.0"
|
wasmer = "1.0.0"
|
||||||
wasmer-wasi = "1.0.0"
|
wasmer-wasi = "1.0.0"
|
||||||
interprocess = "1.0.1"
|
interprocess = "1.0.1"
|
||||||
zellij-tile = { path = "zellij-tile/", version = "1.0.0" }
|
zellij-tile = { path = "zellij-tile/", version = "1.1.0" }
|
||||||
|
|
||||||
[dependencies.async-std]
|
[dependencies.async-std]
|
||||||
version = "1.3.0"
|
version = "1.3.0"
|
||||||
|
@ -40,8 +40,7 @@ use pty_bus::{PtyBus, PtyInstruction};
|
|||||||
use screen::{Screen, ScreenInstruction};
|
use screen::{Screen, ScreenInstruction};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use utils::consts::ZELLIJ_IPC_PIPE;
|
use utils::consts::ZELLIJ_IPC_PIPE;
|
||||||
use wasm_vm::PluginEnv;
|
use wasm_vm::{wasi_stdout, wasi_write_json, zellij_exports, PluginEnv, PluginInstruction};
|
||||||
use wasm_vm::{wasi_stdout, wasi_write_string, zellij_imports, PluginInstruction};
|
|
||||||
use wasmer::{ChainableNamedResolver, Instance, Module, Store, Value};
|
use wasmer::{ChainableNamedResolver, Instance, Module, Store, Value};
|
||||||
use wasmer_wasi::{Pipe, WasiState};
|
use wasmer_wasi::{Pipe, WasiState};
|
||||||
use zellij_tile::data::{EventType, ModeInfo};
|
use zellij_tile::data::{EventType, ModeInfo};
|
||||||
@ -506,7 +505,7 @@ pub fn start(mut os_input: Box<dyn OsApi>, opts: CliArgs) {
|
|||||||
subscriptions: Arc::new(Mutex::new(HashSet::new())),
|
subscriptions: Arc::new(Mutex::new(HashSet::new())),
|
||||||
};
|
};
|
||||||
|
|
||||||
let zellij = zellij_imports(&store, &plugin_env);
|
let zellij = zellij_exports(&store, &plugin_env);
|
||||||
let instance = Instance::new(&module, &zellij.chain_back(wasi)).unwrap();
|
let instance = Instance::new(&module, &zellij.chain_back(wasi)).unwrap();
|
||||||
|
|
||||||
let start = instance.exports.get_function("_start").unwrap();
|
let start = instance.exports.get_function("_start").unwrap();
|
||||||
@ -525,10 +524,7 @@ pub fn start(mut os_input: Box<dyn OsApi>, opts: CliArgs) {
|
|||||||
let event_type = EventType::from_str(&event.to_string()).unwrap();
|
let event_type = EventType::from_str(&event.to_string()).unwrap();
|
||||||
if (pid.is_none() || pid == Some(i)) && subs.contains(&event_type) {
|
if (pid.is_none() || pid == Some(i)) && subs.contains(&event_type) {
|
||||||
let update = instance.exports.get_function("update").unwrap();
|
let update = instance.exports.get_function("update").unwrap();
|
||||||
wasi_write_string(
|
wasi_write_json(&plugin_env.wasi_env, &event);
|
||||||
&plugin_env.wasi_env,
|
|
||||||
&serde_json::to_string(&event).unwrap(),
|
|
||||||
);
|
|
||||||
update.call(&[]).unwrap();
|
update.call(&[]).unwrap();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
|
use serde::Serialize;
|
||||||
use std::{
|
use std::{
|
||||||
collections::HashSet,
|
collections::HashSet,
|
||||||
path::PathBuf,
|
path::PathBuf,
|
||||||
|
process,
|
||||||
sync::{mpsc::Sender, Arc, Mutex},
|
sync::{mpsc::Sender, Arc, Mutex},
|
||||||
};
|
};
|
||||||
use wasmer::{imports, Function, ImportObject, Store, WasmerEnv};
|
use wasmer::{imports, Function, ImportObject, Store, WasmerEnv};
|
||||||
use wasmer_wasi::WasiEnv;
|
use wasmer_wasi::WasiEnv;
|
||||||
use zellij_tile::data::{Event, EventType};
|
use zellij_tile::data::{Event, EventType, PluginIds};
|
||||||
|
|
||||||
use super::{
|
use super::{
|
||||||
pty_bus::PtyInstruction, screen::ScreenInstruction, AppInstruction, PaneId, SenderWithContext,
|
pty_bus::PtyInstruction, screen::ScreenInstruction, AppInstruction, PaneId, SenderWithContext,
|
||||||
@ -32,17 +34,26 @@ pub struct PluginEnv {
|
|||||||
|
|
||||||
// Plugin API ---------------------------------------------------------------------------------------------------------
|
// Plugin API ---------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
pub fn zellij_imports(store: &Store, plugin_env: &PluginEnv) -> ImportObject {
|
pub fn zellij_exports(store: &Store, plugin_env: &PluginEnv) -> ImportObject {
|
||||||
imports! {
|
macro_rules! zellij_export {
|
||||||
"zellij" => {
|
($($host_function:ident),+ $(,)?) => {
|
||||||
"host_subscribe" => Function::new_native_with_env(store, plugin_env.clone(), host_subscribe),
|
imports! {
|
||||||
"host_unsubscribe" => Function::new_native_with_env(store, plugin_env.clone(), host_unsubscribe),
|
"zellij" => {
|
||||||
"host_open_file" => Function::new_native_with_env(store, plugin_env.clone(), host_open_file),
|
$("$host_function" => Function::new_native_with_env(store, plugin_env.clone(), $host_function),)+
|
||||||
"host_set_invisible_borders" => Function::new_native_with_env(store, plugin_env.clone(), host_set_invisible_borders),
|
}
|
||||||
"host_set_max_height" => Function::new_native_with_env(store, plugin_env.clone(), host_set_max_height),
|
}
|
||||||
"host_set_selectable" => Function::new_native_with_env(store, plugin_env.clone(), host_set_selectable),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
zellij_export! {
|
||||||
|
host_subscribe,
|
||||||
|
host_unsubscribe,
|
||||||
|
host_set_invisible_borders,
|
||||||
|
host_set_max_height,
|
||||||
|
host_set_selectable,
|
||||||
|
host_get_plugin_ids,
|
||||||
|
host_open_file,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn host_subscribe(plugin_env: &PluginEnv) {
|
fn host_subscribe(plugin_env: &PluginEnv) {
|
||||||
@ -57,14 +68,6 @@ fn host_unsubscribe(plugin_env: &PluginEnv) {
|
|||||||
subscriptions.retain(|k| !old.contains(k));
|
subscriptions.retain(|k| !old.contains(k));
|
||||||
}
|
}
|
||||||
|
|
||||||
fn host_open_file(plugin_env: &PluginEnv) {
|
|
||||||
let path = PathBuf::from(wasi_stdout(&plugin_env.wasi_env).lines().next().unwrap());
|
|
||||||
plugin_env
|
|
||||||
.send_pty_instructions
|
|
||||||
.send(PtyInstruction::SpawnTerminal(Some(path)))
|
|
||||||
.unwrap();
|
|
||||||
}
|
|
||||||
|
|
||||||
fn host_set_selectable(plugin_env: &PluginEnv, selectable: i32) {
|
fn host_set_selectable(plugin_env: &PluginEnv, selectable: i32) {
|
||||||
let selectable = selectable != 0;
|
let selectable = selectable != 0;
|
||||||
plugin_env
|
plugin_env
|
||||||
@ -98,6 +101,22 @@ fn host_set_invisible_borders(plugin_env: &PluginEnv, invisible_borders: i32) {
|
|||||||
.unwrap()
|
.unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn host_get_plugin_ids(plugin_env: &PluginEnv) {
|
||||||
|
let ids = PluginIds {
|
||||||
|
plugin_id: plugin_env.plugin_id,
|
||||||
|
zellij_pid: process::id(),
|
||||||
|
};
|
||||||
|
wasi_write_json(&plugin_env.wasi_env, &ids);
|
||||||
|
}
|
||||||
|
|
||||||
|
fn host_open_file(plugin_env: &PluginEnv) {
|
||||||
|
let path = PathBuf::from(wasi_stdout(&plugin_env.wasi_env).lines().next().unwrap());
|
||||||
|
plugin_env
|
||||||
|
.send_pty_instructions
|
||||||
|
.send(PtyInstruction::SpawnTerminal(Some(path)))
|
||||||
|
.unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
// Helper Functions ---------------------------------------------------------------------------------------------------
|
// Helper Functions ---------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
// FIXME: Unwrap city
|
// FIXME: Unwrap city
|
||||||
@ -114,3 +133,7 @@ pub fn wasi_write_string(wasi_env: &WasiEnv, buf: &str) {
|
|||||||
let wasi_file = state.fs.stdin_mut().unwrap().as_mut().unwrap();
|
let wasi_file = state.fs.stdin_mut().unwrap().as_mut().unwrap();
|
||||||
writeln!(wasi_file, "{}\r", buf).unwrap();
|
writeln!(wasi_file, "{}\r", buf).unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn wasi_write_json(wasi_env: &WasiEnv, object: &impl Serialize) {
|
||||||
|
wasi_write_string(wasi_env, &serde_json::to_string(&object).unwrap());
|
||||||
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "zellij-tile"
|
name = "zellij-tile"
|
||||||
version = "1.0.0"
|
version = "1.1.0"
|
||||||
authors = ["Brooks J Rady <b.j.rady@gmail.com>"]
|
authors = ["Brooks J Rady <b.j.rady@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "A small client-side library for writing Zellij plugins"
|
description = "A small client-side library for writing Zellij plugins"
|
||||||
|
@ -23,7 +23,9 @@ pub enum Key {
|
|||||||
Esc,
|
Esc,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, EnumDiscriminants, ToString, Serialize, Deserialize)]
|
#[derive(
|
||||||
|
Debug, Clone, PartialEq, Eq, Hash, EnumDiscriminants, ToString, Serialize, Deserialize,
|
||||||
|
)]
|
||||||
#[strum_discriminants(derive(EnumString, Hash, Serialize, Deserialize))]
|
#[strum_discriminants(derive(EnumString, Hash, Serialize, Deserialize))]
|
||||||
#[strum_discriminants(name(EventType))]
|
#[strum_discriminants(name(EventType))]
|
||||||
pub enum Event {
|
pub enum Event {
|
||||||
@ -68,17 +70,23 @@ impl Default for InputMode {
|
|||||||
/// Represents the contents of the help message that is printed in the status bar,
|
/// Represents the contents of the help message that is printed in the status bar,
|
||||||
/// which indicates the current [`InputMode`] and what the keybinds for that mode
|
/// which indicates the current [`InputMode`] and what the keybinds for that mode
|
||||||
/// are. Related to the default `status-bar` plugin.
|
/// are. Related to the default `status-bar` plugin.
|
||||||
#[derive(Default, Debug, Clone, Serialize, Deserialize)]
|
#[derive(Default, Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
||||||
pub struct ModeInfo {
|
pub struct ModeInfo {
|
||||||
pub mode: InputMode,
|
pub mode: InputMode,
|
||||||
// FIXME: This should probably return Keys and Actions, then sort out strings plugin-side
|
// FIXME: This should probably return Keys and Actions, then sort out strings plugin-side
|
||||||
pub keybinds: Vec<(String, String)>, // <shortcut> => <shortcut description>
|
pub keybinds: Vec<(String, String)>, // <shortcut> => <shortcut description>
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Default, Clone, Deserialize, Serialize)]
|
#[derive(Debug, Default, Clone, PartialEq, Eq, Hash, Deserialize, Serialize)]
|
||||||
pub struct TabInfo {
|
pub struct TabInfo {
|
||||||
/* subset of fields to publish to plugins */
|
/* subset of fields to publish to plugins */
|
||||||
pub position: usize,
|
pub position: usize,
|
||||||
pub name: String,
|
pub name: String,
|
||||||
pub active: bool,
|
pub active: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash, Deserialize, Serialize)]
|
||||||
|
pub struct PluginIds {
|
||||||
|
pub plugin_id: u32,
|
||||||
|
pub zellij_pid: u32,
|
||||||
|
}
|
||||||
|
@ -21,12 +21,18 @@ pub fn set_max_height(max_height: i32) {
|
|||||||
unsafe { host_set_max_height(max_height) };
|
unsafe { host_set_max_height(max_height) };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn set_selectable(selectable: bool) {
|
||||||
|
unsafe { host_set_selectable(if selectable { 1 } else { 0 }) };
|
||||||
|
}
|
||||||
|
|
||||||
pub fn set_invisible_borders(invisible_borders: bool) {
|
pub fn set_invisible_borders(invisible_borders: bool) {
|
||||||
unsafe { host_set_invisible_borders(if invisible_borders { 1 } else { 0 }) };
|
unsafe { host_set_invisible_borders(if invisible_borders { 1 } else { 0 }) };
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn set_selectable(selectable: bool) {
|
// Query Functions
|
||||||
unsafe { host_set_selectable(if selectable { 1 } else { 0 }) };
|
pub fn get_plugin_ids() -> PluginIds {
|
||||||
|
unsafe { host_get_plugin_ids() };
|
||||||
|
object_from_stdin()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Host Functions
|
// Host Functions
|
||||||
@ -49,8 +55,9 @@ pub fn object_from_stdin<T: DeserializeOwned>() -> T {
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
fn host_subscribe();
|
fn host_subscribe();
|
||||||
fn host_unsubscribe();
|
fn host_unsubscribe();
|
||||||
fn host_open_file();
|
|
||||||
fn host_set_max_height(max_height: i32);
|
fn host_set_max_height(max_height: i32);
|
||||||
fn host_set_selectable(selectable: i32);
|
fn host_set_selectable(selectable: i32);
|
||||||
fn host_set_invisible_borders(invisible_borders: i32);
|
fn host_set_invisible_borders(invisible_borders: i32);
|
||||||
|
fn host_get_plugin_ids();
|
||||||
|
fn host_open_file();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user