mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 14:51:03 +00:00
127 lines
2.7 KiB
Rust
127 lines
2.7 KiB
Rust
use parking_lot::Mutex;
|
|
use yazi_shared::RoCell;
|
|
|
|
pub static CLIPBOARD: RoCell<Clipboard> = RoCell::new();
|
|
|
|
#[derive(Default)]
|
|
pub struct Clipboard {
|
|
content: Mutex<Vec<u8>>,
|
|
}
|
|
|
|
impl Clipboard {
|
|
#[cfg(unix)]
|
|
pub async fn get(&self) -> Vec<u8> {
|
|
use tokio::process::Command;
|
|
use yazi_shared::in_ssh_connection;
|
|
|
|
if in_ssh_connection() {
|
|
return self.content.lock().clone();
|
|
}
|
|
|
|
let all = [
|
|
("pbpaste", &[][..]),
|
|
("termux-clipboard-get", &[]),
|
|
("wl-paste", &["-n"]),
|
|
("xclip", &["-o", "-selection", "clipboard"]),
|
|
("xsel", &["-ob"]),
|
|
];
|
|
|
|
for (bin, args) in all {
|
|
let Ok(output) = Command::new(bin).args(args).kill_on_drop(true).output().await else {
|
|
continue;
|
|
};
|
|
if output.status.success() {
|
|
return output.stdout;
|
|
}
|
|
}
|
|
self.content.lock().clone()
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
pub async fn get(&self) -> Vec<u8> {
|
|
use clipboard_win::get_clipboard_string;
|
|
|
|
let result = tokio::task::spawn_blocking(get_clipboard_string);
|
|
if let Ok(Ok(s)) = result.await {
|
|
return s.into_bytes();
|
|
}
|
|
|
|
self.content.lock().clone()
|
|
}
|
|
|
|
#[cfg(unix)]
|
|
pub async fn set(&self, s: impl AsRef<[u8]>) {
|
|
use std::process::Stdio;
|
|
|
|
use crossterm::execute;
|
|
use tokio::{io::AsyncWriteExt, process::Command};
|
|
use yazi_tty::TTY;
|
|
|
|
s.as_ref().clone_into(&mut self.content.lock());
|
|
execute!(TTY.writer(), osc52::SetClipboard::new(s.as_ref())).ok();
|
|
|
|
let all = [
|
|
("pbcopy", &[][..]),
|
|
("termux-clipboard-set", &[]),
|
|
("wl-copy", &[]),
|
|
("xclip", &["-selection", "clipboard"]),
|
|
("xsel", &["-ib"]),
|
|
];
|
|
|
|
for (bin, args) in all {
|
|
let cmd = Command::new(bin)
|
|
.args(args)
|
|
.stdin(Stdio::piped())
|
|
.stdout(Stdio::null())
|
|
.stderr(Stdio::null())
|
|
.kill_on_drop(true)
|
|
.spawn();
|
|
|
|
let Ok(mut child) = cmd else { continue };
|
|
|
|
let mut stdin = child.stdin.take().unwrap();
|
|
if stdin.write_all(s.as_ref()).await.is_err() {
|
|
continue;
|
|
}
|
|
drop(stdin);
|
|
|
|
if child.wait().await.map(|s| s.success()).unwrap_or_default() {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
pub async fn set(&self, s: impl AsRef<[u8]>) {
|
|
use clipboard_win::set_clipboard_string;
|
|
|
|
let b = s.as_ref().to_owned();
|
|
*self.content.lock() = b.clone();
|
|
|
|
tokio::task::spawn_blocking(move || set_clipboard_string(&String::from_utf8_lossy(&b)))
|
|
.await
|
|
.ok();
|
|
}
|
|
}
|
|
|
|
#[cfg(unix)]
|
|
mod osc52 {
|
|
use base64::{Engine, engine::general_purpose};
|
|
|
|
#[derive(Debug)]
|
|
pub struct SetClipboard {
|
|
content: String,
|
|
}
|
|
|
|
impl SetClipboard {
|
|
pub fn new(content: &[u8]) -> Self {
|
|
Self { content: general_purpose::STANDARD.encode(content) }
|
|
}
|
|
}
|
|
|
|
impl crossterm::Command for SetClipboard {
|
|
fn write_ansi(&self, f: &mut impl std::fmt::Write) -> std::fmt::Result {
|
|
write!(f, "\x1b]52;c;{}\x1b\\", self.content)
|
|
}
|
|
}
|
|
}
|