use crate::commands::constants::*;
use crate::TmuxCommand;
use std::borrow::Cow;
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug, Default)]
pub struct LoadBuffer<'a> {
#[cfg(feature = "tmux_3_2")]
pub send_to_clipboard: bool,
#[cfg(feature = "tmux_2_0")]
pub buffer_name: Option<Cow<'a, str>>,
#[cfg(feature = "tmux_3_2")]
pub target_client: Option<Cow<'a, str>>,
#[cfg(all(feature = "tmux_0_8", not(feature = "tmux_2_0")))]
pub buffer_index: Option<Cow<'a, str>>,
#[cfg(all(feature = "tmux_0_8", not(feature = "tmux_1_5")))]
pub target_session: Option<Cow<'a, str>>,
#[cfg(feature = "tmux_0_8")]
pub path: Option<Cow<'a, str>>,
}
impl<'a> LoadBuffer<'a> {
pub fn new() -> Self {
Default::default()
}
#[cfg(feature = "tmux_3_2")]
pub fn send_to_clipboard(mut self) -> Self {
self.send_to_clipboard = true;
self
}
#[cfg(feature = "tmux_2_0")]
pub fn buffer_name<S: Into<Cow<'a, str>>>(mut self, buffer_name: S) -> Self {
self.buffer_name = Some(buffer_name.into());
self
}
#[cfg(feature = "tmux_3_2")]
pub fn target_client<S: Into<Cow<'a, str>>>(mut self, target_client: S) -> Self {
self.target_client = Some(target_client.into());
self
}
#[cfg(all(feature = "tmux_0_8", not(feature = "tmux_2_0")))]
pub fn buffer_index<S: Into<Cow<'a, str>>>(mut self, buffer_index: S) -> Self {
self.buffer_index = Some(buffer_index.into());
self
}
#[cfg(all(feature = "tmux_0_8", not(feature = "tmux_1_5")))]
pub fn target_session<S: Into<Cow<'a, str>>>(mut self, target_session: S) -> Self {
self.target_session = Some(target_session.into());
self
}
#[cfg(feature = "tmux_0_8")]
pub fn path<S: Into<Cow<'a, str>>>(mut self, path: S) -> Self {
self.path = Some(path.into());
self
}
pub fn build(self) -> TmuxCommand<'a> {
let mut cmd = TmuxCommand::new();
cmd.name(LOAD_BUFFER);
#[cfg(feature = "tmux_3_2")]
if self.send_to_clipboard {
cmd.push_flag(W_LOWERCASE_KEY);
}
#[cfg(feature = "tmux_2_0")]
if let Some(buffer_name) = self.buffer_name {
cmd.push_option(B_LOWERCASE_KEY, buffer_name);
}
#[cfg(feature = "tmux_3_2")]
if let Some(target_client) = self.target_client {
cmd.push_option(T_LOWERCASE_KEY, target_client);
}
#[cfg(all(feature = "tmux_0_8", not(feature = "tmux_2_0")))]
if let Some(buffer_index) = self.buffer_index {
cmd.push_option(B_LOWERCASE_KEY, buffer_index);
}
#[cfg(all(feature = "tmux_0_8", not(feature = "tmux_1_5")))]
if let Some(target_session) = self.target_session {
cmd.push_option(T_LOWERCASE_KEY, target_session);
}
#[cfg(feature = "tmux_0_8")]
if let Some(path) = self.path {
cmd.push_param(path);
}
cmd
}
}