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
//! Application (sub)command(s), i.e. app entry points

#[doc(hidden)]
pub use abscissa_derive::Command;

use crate::{runnable::Runnable, terminal};
use clap::{FromArgMatches, Parser};
use std::{env, ffi::OsString, fmt::Debug};
use termcolor::ColorChoice;

/// Subcommand of an application: derives or otherwise implements the `Options`
/// trait, but also has a `run()` method which can be used to invoke the given
/// (sub)command.
pub trait Command: Debug + FromArgMatches + Runnable {
    /// Name of this program as a string
    fn name() -> &'static str;

    /// Description of this program
    fn description() -> &'static str;

    /// Authors of this program
    fn authors() -> &'static str;

    /// Parse command-line arguments from an iterator
    fn parse_args<T, I>(into_args: I) -> Self
    where
        Self: Parser,
        I: IntoIterator<Item = T>,
        T: Into<OsString> + Clone,
    {
        let args: Vec<OsString> = into_args.into_iter().map(|s| s.into()).collect();

        Self::try_parse_from(args.as_slice()).unwrap_or_else(|err| {
            terminal::init(ColorChoice::Auto);
            err.exit()
        })
    }

    /// Parse command-line arguments from the environment
    fn parse_env_args() -> Self
    where
        Self: Parser,
    {
        Self::parse_args(env::args())
    }
}

#[cfg(test)]
mod tests {
    use crate::{Command, Runnable};
    use clap::Parser;

    #[derive(Command, Debug, Parser)]
    pub struct DummyCommand {}

    impl Runnable for DummyCommand {
        fn run(&self) {
            panic!("unimplemented");
        }
    }

    #[test]
    fn derived_command_test() {
        assert_eq!(DummyCommand::name(), "abscissa_core");
    }
}