Skip to content

Commit

Permalink
feat: split ya send into ya pub and ya pub-static to make it mo…
Browse files Browse the repository at this point in the history
…re ergonomic (#933)
  • Loading branch information
sxyazi committed Apr 21, 2024
1 parent 55da9e3 commit 68da899
Show file tree
Hide file tree
Showing 10 changed files with 129 additions and 56 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions yazi-boot/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ pub struct Args {
pub chooser_file: Option<PathBuf>,

/// Clear the cache directory
#[arg(long, action)]
#[arg(long)]
pub clear_cache: bool,

/// Report the specified local events to stdout
#[arg(long, action)]
#[arg(long)]
pub local_events: Option<String>,
/// Report the specified remote events to stdout
#[arg(long, action)]
#[arg(long)]
pub remote_events: Option<String>,

/// Print debug information
#[arg(long, action)]
#[arg(long)]
pub debug: bool,

/// Print version
Expand Down
11 changes: 7 additions & 4 deletions yazi-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,18 @@ repository = "https://github.com/sxyazi/yazi"
yazi-dds = { path = "../yazi-dds", version = "0.2.4" }

# External dependencies
anyhow = "1.0.82"
clap = { version = "4.5.4", features = [ "derive" ] }
tokio = { version = "1.37.0", features = [ "full" ] }
anyhow = "1.0.82"
clap = { version = "4.5.4", features = [ "derive" ] }
serde_json = "1.0.116"
tokio = { version = "1.37.0", features = [ "full" ] }

[build-dependencies]
anyhow = "1.0.82"
clap = { version = "4.5.4", features = [ "derive" ] }
clap_complete = "4.5.2"
clap_complete_nushell = "4.5.1"
clap_complete_fig = "4.5.0"
clap_complete_nushell = "4.5.1"
serde_json = "1.0.116"

[[bin]]
name = "ya"
Expand Down
68 changes: 63 additions & 5 deletions yazi-cli/src/args.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
use std::borrow::Cow;

use anyhow::{bail, Result};
use clap::{command, Parser, Subcommand};

#[derive(Parser)]
#[command(name = "ya",version, about, long_about = None)]
#[command(name = "ya", version, about, long_about = None)]
#[command(propagate_version = true)]
pub(super) struct Args {
#[command(subcommand)]
Expand All @@ -10,11 +13,66 @@ pub(super) struct Args {

#[derive(Subcommand)]
pub(super) enum Command {
/// Send a message to remote instances.
Send(CommandSend),
/// Publish a message to remote instance(s).
Pub(CommandPub),
/// Publish a static message to all remote instances.
PubStatic(CommandPubStatic),
}

#[derive(clap::Args)]
pub(super) struct CommandPub {
/// The receiver ID.
#[arg(index = 1)]
pub(super) receiver: u64,
/// The kind of message.
#[arg(index = 2)]
pub(super) kind: String,
/// Send the message with a string body.
#[arg(long)]
pub(super) str: Option<String>,
/// Send the message with a JSON body.
#[arg(long)]
pub(super) json: Option<String>,
}

impl CommandPub {
#[allow(dead_code)]
pub(super) fn body(&self) -> Result<Cow<str>> {
if let Some(json) = &self.json {
Ok(json.into())
} else if let Some(str) = &self.str {
Ok(serde_json::to_string(str)?.into())
} else {
bail!("No body provided");
}
}
}

#[derive(clap::Args)]
pub(super) struct CommandSend {
pub(super) message: String,
pub(super) struct CommandPubStatic {
/// The severity of the message.
#[arg(index = 1)]
pub(super) severity: u16,
/// The kind of message.
#[arg(index = 2)]
pub(super) kind: String,
/// Send the message with a string body.
#[arg(long)]
pub(super) str: Option<String>,
/// Send the message with a JSON body.
#[arg(long)]
pub(super) json: Option<String>,
}

impl CommandPubStatic {
#[allow(dead_code)]
pub(super) fn body(&self) -> Result<Cow<str>> {
if let Some(json) = &self.json {
Ok(json.into())
} else if let Some(str) = &self.str {
Ok(serde_json::to_string(str)?.into())
} else {
bail!("No body provided");
}
}
}
11 changes: 9 additions & 2 deletions yazi-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,16 @@ async fn main() -> anyhow::Result<()> {
let args = Args::parse();

match &args.command {
Command::Send(cmd) => {
Command::Pub(cmd) => {
yazi_dds::init();
if let Err(e) = yazi_dds::Client::shot(&cmd.message).await {
if let Err(e) = yazi_dds::Client::shot(&cmd.kind, cmd.receiver, None, &cmd.body()?).await {
eprintln!("Cannot send message: {e}");
std::process::exit(1);
}
}
Command::PubStatic(cmd) => {
yazi_dds::init();
if let Err(e) = yazi_dds::Client::shot(&cmd.kind, 0, Some(cmd.severity), &cmd.body()?).await {
eprintln!("Cannot send message: {e}");
std::process::exit(1);
}
Expand Down
2 changes: 1 addition & 1 deletion yazi-config/preset/theme.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ tab_width = 1
# Count
count_copied = { fg = "white", bg = "green" }
count_cut = { fg = "white", bg = "red" }
count_selected = { fg = "white", bg = "blue" }
count_selected = { fg = "white", bg = "yellow" }

# Border
border_symbol = ""
Expand Down
35 changes: 25 additions & 10 deletions yazi-dds/src/body/body.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use anyhow::Result;
use anyhow::{bail, Result};
use mlua::{ExternalResult, IntoLua, Lua, Value};
use serde::Serialize;

Expand Down Expand Up @@ -40,15 +40,9 @@ impl Body<'static> {
})
}

pub fn from_lua(kind: &str, value: Value) -> Result<Self> {
Ok(match kind {
"hi" | "hey" | "bye" | "cd" | "hover" | "rename" | "bulk" | "yank" | "move" | "trash"
| "delete" => Err("Cannot construct system event").into_lua_err()?,
_ if !kind.bytes().all(|b| b.is_ascii_alphanumeric() || b == b'-') => {
Err("Kind must be alphanumeric with dashes").into_lua_err()?
}
_ => BodyCustom::from_lua(kind, value)?,
})
pub fn from_lua(kind: &str, value: Value) -> mlua::Result<Self> {
Self::validate(kind).into_lua_err()?;
BodyCustom::from_lua(kind, value)
}

pub fn tab(kind: &str, body: &str) -> usize {
Expand All @@ -65,6 +59,27 @@ impl Body<'static> {
_ => 0,
}
}

pub fn validate(kind: &str) -> Result<()> {
if matches!(
kind,
"hi"
| "hey" | "bye"
| "cd" | "hover"
| "rename"
| "bulk" | "yank"
| "move" | "trash"
| "delete"
) {
bail!("Cannot construct system event");
}

if !kind.bytes().all(|b| b.is_ascii_alphanumeric() || b == b'-') {
bail!("Kind must be alphanumeric with dashes");
}

Ok(())
}
}

impl<'a> Body<'a> {
Expand Down
15 changes: 6 additions & 9 deletions yazi-dds/src/client.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::{collections::{HashMap, HashSet}, mem, str::FromStr};

use anyhow::{bail, Result};
use anyhow::Result;
use parking_lot::RwLock;
use serde::{Deserialize, Serialize};
use tokio::{io::AsyncWriteExt, select, sync::mpsc, task::JoinHandle, time};
Expand Down Expand Up @@ -62,16 +62,13 @@ impl Client {
});
}

pub async fn shot(s: &str) -> Result<()> {
let (kind, receiver, sender, body) = Payload::split(s)?;
if receiver != 0 && sender <= u16::MAX as u64 {
bail!("Sender must be greater than 65535 if receiver is non-zero");
}
pub async fn shot(kind: &str, receiver: u64, severity: Option<u16>, body: &str) -> Result<()> {
Body::validate(kind)?;

let sender = severity.map(Into::into).unwrap_or(*ID);
let payload = format!(
"{}\n{kind},{receiver},{sender},{}\n{}\n",
"{}\n{kind},{receiver},{sender},{body}\n{}\n",
Payload::new(BodyHi::borrowed(Default::default())),
serde_json::to_string(body)?,
Payload::new(BodyBye::borrowed())
);

Expand All @@ -81,7 +78,7 @@ impl Client {
drop(writer);

while let Ok(Some(s)) = lines.next_line().await {
if matches!(Payload::split(&s), Ok((kind, ..)) if kind == "bye") {
if matches!(s.split(',').next(), Some(kind) if kind == "bye") {
break;
}
}
Expand Down
25 changes: 10 additions & 15 deletions yazi-dds/src/payload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,16 @@ impl<'a> Payload<'a> {
}

impl Payload<'static> {
pub fn split(s: &str) -> Result<(&str, u64, u64, &str)> {
pub(super) fn emit(self) {
self.try_flush();
emit!(Call(Cmd::new("accept_payload").with_any("payload", self), Layer::App));
}
}

impl FromStr for Payload<'static> {
type Err = anyhow::Error;

fn from_str(s: &str) -> Result<Self, Self::Err> {
let mut parts = s.splitn(4, ',');

let kind = parts.next().ok_or_else(|| anyhow!("empty kind"))?;
Expand All @@ -62,20 +71,6 @@ impl Payload<'static> {

let body = parts.next().ok_or_else(|| anyhow!("empty body"))?;

Ok((kind, receiver, sender, body))
}

pub(super) fn emit(self) {
self.try_flush();
emit!(Call(Cmd::new("accept_payload").with_any("payload", self), Layer::App));
}
}

impl FromStr for Payload<'static> {
type Err = anyhow::Error;

fn from_str(s: &str) -> Result<Self, Self::Err> {
let (kind, receiver, sender, body) = Self::split(s)?;
Ok(Self { receiver, sender, body: Body::from_str(kind, body)? })
}
}
Expand Down
9 changes: 3 additions & 6 deletions yazi-plugin/src/pubsub/pubsub.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,23 @@ impl Pubsub {
ps.raw_set(
"pub",
lua.create_function(|_, (kind, value): (mlua::String, Value)| {
yazi_dds::Pubsub::pub_(Body::from_lua(kind.to_str()?, value).into_lua_err()?);
yazi_dds::Pubsub::pub_(Body::from_lua(kind.to_str()?, value)?);
Ok(())
})?,
)?;

ps.raw_set(
"pub_to",
lua.create_function(|_, (receiver, kind, value): (u64, mlua::String, Value)| {
yazi_dds::Pubsub::pub_to(receiver, Body::from_lua(kind.to_str()?, value).into_lua_err()?);
yazi_dds::Pubsub::pub_to(receiver, Body::from_lua(kind.to_str()?, value)?);
Ok(())
})?,
)?;

ps.raw_set(
"pub_static",
lua.create_function(|_, (severity, kind, value): (u16, mlua::String, Value)| {
yazi_dds::Pubsub::pub_static(
severity,
Body::from_lua(kind.to_str()?, value).into_lua_err()?,
);
yazi_dds::Pubsub::pub_static(severity, Body::from_lua(kind.to_str()?, value)?);
Ok(())
})?,
)?;
Expand Down

0 comments on commit 68da899

Please sign in to comment.