1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/// Show client messages or server information
///
/// # Manual
///
/// tmux ^2.2:
/// ```text
/// show-messages [-JT] [-t target-client]
/// (alias: showmsgs)
/// ```
///
/// tmux ^1.9:
/// ```text
/// show-messages [-IJT] [-t target-client]
/// (alias: showmsgs)
/// ```
///
/// tmux ^1.2:
/// ```text
/// show-messages [-t target-client]
/// (alias: showmsgs)
/// ```
#[macro_export]
macro_rules! show_messages {
    (@cmd ($cmd:expr) -I, $($tail:tt)*) => {{
        $crate::show_messages!(@cmd ({
            $cmd.server()
        }) $($tail)*)
    }};
    (@cmd ($cmd:expr) -J, $($tail:tt)*) => {{
        $crate::show_messages!(@cmd ({
            $cmd.jobs()
        }) $($tail)*)
    }};
    (@cmd ($cmd:expr) -T, $($tail:tt)*) => {{
        $crate::show_messages!(@cmd ({
            $cmd.terminals()
        }) $($tail)*)
    }};
    (@cmd ($cmd:expr) -t $target_client:expr, $($tail:tt)*) => {{
        $crate::show_messages!(@cmd ({
            $cmd.target_client($target_client)
        }) $($tail)*)
    }};
    //(@cmd ($cmd:expr) -$unknown:tt, $($tail:tt)*) => {{
        //::std::compile_error!("unknown flag, option or parameter: {}", $unknown);
    //}};
    (@cmd ($cmd:expr)) => {{
        $cmd
    }};
    () => {{
        $crate::ShowMessages::new()
    }};
    (($cmd:expr), $($tail:tt)*) => {{
        $crate::show_messages!(@cmd ($cmd) $($tail)*,)
    }};
    ($($tail:tt)*) => {{
        $crate::show_messages!(@cmd ({ $crate::ShowMessages::new() }) $($tail)*,)
    }};
}

#[test]
fn show_messages_macro() {
    use std::borrow::Cow;

    // Show client messages or server information
    //
    // # Manual
    //
    // tmux ^2.2:
    // ```text
    // show-messages [-JT] [-t target-client]
    // (alias: showmsgs)
    // ```
    //
    // tmux ^1.9:
    // ```text
    // show-messages [-IJT] [-t target-client]
    // (alias: showmsgs)
    // ```
    //
    // tmux ^1.2:
    // ```text
    // show-messages [-t target-client]
    // (alias: showmsgs)
    // ```
    let show_messages = show_messages!();
    #[cfg(all(feature = "tmux_1_9", not(feature = "tmux_2_2")))]
    let show_messages = show_messages!((show_messages), -I);
    #[cfg(feature = "tmux_1_9")]
    let show_messages = show_messages!((show_messages), -J);
    #[cfg(feature = "tmux_1_9")]
    let show_messages = show_messages!((show_messages), -T);
    #[cfg(feature = "tmux_1_2")]
    let show_messages = show_messages!((show_messages), -t "1");

    #[cfg(not(feature = "cmd_alias"))]
    let cmd = "show-messages";
    #[cfg(feature = "cmd_alias")]
    let cmd = "showmsgs";

    let mut s = Vec::new();
    s.push(cmd);
    #[cfg(all(feature = "tmux_1_9", not(feature = "tmux_2_2")))]
    s.push("-I");
    #[cfg(feature = "tmux_1_9")]
    s.push("-J");
    #[cfg(feature = "tmux_1_9")]
    s.push("-T");
    #[cfg(feature = "tmux_1_2")]
    s.extend_from_slice(&["-t", "1"]);
    let s: Vec<Cow<str>> = s.into_iter().map(|a| a.into()).collect();

    let show_messages = show_messages.build().to_vec();

    assert_eq!(show_messages, s);
}