Implement possibility to copy output of commands to paste buffers.

This commit is contained in:
Oleksandr Kozachuk
2022-12-17 14:54:16 +01:00
parent 6286ce4238
commit 9347bc3972
5 changed files with 48 additions and 5 deletions
+23 -5
View File
@@ -1,8 +1,11 @@
use std::env;
use std::io;
use std::io::{Read, Write};
use std::process::{Command, Stdio};
use shlex::split;
use std::ffi::OsString;
pub fn call_cmd_with_input(cmd: &str, args: Vec<&str>, input: &str) -> io::Result<String> {
pub fn call_cmd_with_input(cmd: &str, args: &Vec<String>, input: &str) -> io::Result<String> {
let mut cmd = Command::new(cmd).args(args).stdin(Stdio::piped()).stdout(Stdio::piped()).spawn()?;
let mut stdin = cmd.stdin.take().unwrap();
let stdout = cmd.stdout.as_mut().unwrap();
@@ -20,15 +23,30 @@ pub fn call_cmd_with_input(cmd: &str, args: Vec<&str>, input: &str) -> io::Resul
}
}
pub fn get_copy_command_from_env() -> (String, Vec<String>) {
let cmd_os_str = env::var_os("LESSKEY_PB").unwrap_or_else(|| match env::consts::OS {
_ if env::var("TMUX").is_ok() => OsString::from("tmux load-buffer -"),
"macos" => OsString::from("pbcopy"),
"linux" => OsString::from("xclip"),
_ => OsString::from("cat"),
});
let args = split(&cmd_os_str.to_string_lossy()).unwrap_or_else(|| vec!["cat".to_string()]);
(args[0].clone(), args[1..].to_vec())
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn cmd_exec_test() {
assert_eq!(call_cmd_with_input("true", vec![], "").unwrap(), "".to_string());
assert_eq!(call_cmd_with_input("cat", vec![], "ok").unwrap(), "ok".to_string());
assert_ne!(call_cmd_with_input("cat", vec![], "notok").unwrap(), "ok".to_string());
assert_eq!(call_cmd_with_input("echo", vec!["-n", "test is ok"], "").unwrap(), "test is ok".to_string());
assert_eq!(call_cmd_with_input("true", &vec![], "").unwrap(), "".to_string());
assert_eq!(call_cmd_with_input("cat", &vec![], "ok").unwrap(), "ok".to_string());
assert_eq!(call_cmd_with_input("cat", &vec![], r###"line 1
line 2
line 3
line 4"###).unwrap(), "line 1\nline 2\nline 3\nline 4".to_string());
assert_ne!(call_cmd_with_input("cat", &vec![], "notok").unwrap(), "ok".to_string());
assert_eq!(call_cmd_with_input("echo", &vec!["-n".to_string(), "test is ok".to_string()], "").unwrap(), "test is ok".to_string());
}
}