nushell/src/commands/clip.rs

82 lines
2.3 KiB
Rust
Raw Normal View History

2019-08-23 05:29:08 +02:00
#[cfg(feature = "clipboard")]
pub mod clipboard {
use crate::commands::WholeStreamCommand;
use crate::context::CommandRegistry;
use crate::errors::ShellError;
use crate::prelude::*;
use futures::stream::StreamExt;
use futures_async_stream::async_stream_block;
2019-06-07 18:30:50 +02:00
2019-08-23 05:29:08 +02:00
use clipboard::{ClipboardContext, ClipboardProvider};
2019-08-02 21:15:07 +02:00
2019-08-23 05:29:08 +02:00
pub struct Clip;
2019-08-02 21:15:07 +02:00
2019-08-23 05:29:08 +02:00
#[derive(Deserialize)]
pub struct ClipArgs {}
2019-08-02 21:15:07 +02:00
2019-08-23 05:29:08 +02:00
impl WholeStreamCommand for Clip {
fn name(&self) -> &str {
"clip"
}
fn run(
&self,
args: CommandArgs,
registry: &CommandRegistry,
) -> Result<OutputStream, ShellError> {
args.process(registry, clip)?.run()
}
2019-08-02 21:15:07 +02:00
2019-08-23 05:29:08 +02:00
fn signature(&self) -> Signature {
Signature::build("clip")
}
}
2019-08-02 21:15:07 +02:00
2019-08-23 05:29:08 +02:00
pub fn clip(
ClipArgs {}: ClipArgs,
RunnableContext { input, name, .. }: RunnableContext,
) -> Result<OutputStream, ShellError> {
let stream = async_stream_block! {
let values: Vec<Tagged<Value>> = input.values.collect().await;
2019-08-02 21:15:07 +02:00
2019-08-23 05:29:08 +02:00
inner_clip(values, name).await;
};
2019-08-02 21:15:07 +02:00
2019-08-23 05:29:08 +02:00
let stream: BoxStream<'static, ReturnValue> = stream.boxed();
2019-08-02 21:15:07 +02:00
2019-08-23 05:29:08 +02:00
Ok(OutputStream::from(stream))
}
2019-08-23 05:29:08 +02:00
async fn inner_clip(input: Vec<Tagged<Value>>, name: Span) -> OutputStream {
let mut clip_context: ClipboardContext = ClipboardProvider::new().unwrap();
let mut new_copy_data = String::new();
2019-08-23 05:29:08 +02:00
if input.len() > 0 {
let mut first = true;
for i in input.iter() {
if !first {
new_copy_data.push_str("\n");
} else {
first = false;
}
2019-08-02 21:15:07 +02:00
2019-08-23 05:29:08 +02:00
let string: String = match i.as_string() {
Ok(string) => string,
Err(_) => {
return OutputStream::one(Err(ShellError::labeled_error(
"Given non-string data",
"expected strings from pipeline",
name,
)))
}
};
2019-08-23 05:29:08 +02:00
new_copy_data.push_str(&string);
}
2019-06-07 18:30:50 +02:00
}
2019-08-23 05:29:08 +02:00
clip_context.set_contents(new_copy_data).unwrap();
2019-06-07 18:30:50 +02:00
2019-08-23 05:29:08 +02:00
OutputStream::empty()
}
2019-06-07 18:30:50 +02:00
}