espanso/src/clipboard/linux.rs
2020-05-10 18:01:04 +02:00

99 lines
2.9 KiB
Rust

/*
* This file is part of espanso.
*
* Copyright (C) 2019 Federico Terzi
*
* espanso is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* espanso is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with espanso. If not, see <https://www.gnu.org/licenses/>.
*/
use log::error;
use std::io::Write;
use std::path::Path;
use std::process::{Command, Stdio};
pub struct LinuxClipboardManager {}
impl super::ClipboardManager for LinuxClipboardManager {
fn get_clipboard(&self) -> Option<String> {
let res = Command::new("xclip").args(&["-o", "-sel", "clip"]).output();
if let Ok(output) = res {
if output.status.success() {
let s = String::from_utf8_lossy(&output.stdout);
return Some((*s).to_owned());
}
}
None
}
fn set_clipboard(&self, payload: &str) {
let res = Command::new("xclip")
.args(&["-sel", "clip"])
.stdin(Stdio::piped())
.spawn();
if let Ok(mut child) = res {
let stdin = child.stdin.as_mut();
if let Some(output) = stdin {
let res = output.write_all(payload.as_bytes());
if let Err(e) = res {
error!("Could not set clipboard: {}", e);
}
let res = child.wait();
if let Err(e) = res {
error!("Could not set clipboard: {}", e);
}
}
}
}
fn set_clipboard_image(&self, image_path: &Path) {
let extension = image_path.extension();
let mime = match extension {
Some(ext) => {
let ext = ext.to_string_lossy().to_lowercase();
match ext.as_ref() {
"png" => "image/png",
"jpg" | "jpeg" => "image/jpeg",
"gif" => "image/gif",
"svg" => "image/svg",
_ => "image/png",
}
}
None => "image/png",
};
let image_path = image_path.to_string_lossy().into_owned();
let res = Command::new("xclip")
.args(&["-selection", "clipboard", "-t", mime, "-i", &image_path])
.spawn();
if let Err(e) = res {
error!("Could not set image clipboard: {}", e);
}
}
}
impl LinuxClipboardManager {
pub fn new() -> LinuxClipboardManager {
LinuxClipboardManager {}
}
}