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
mod acquire;
mod common;
mod list;
mod release;
mod renew;

use clap::{value_parser, ArgMatches, Command};

pub use self::{
    acquire::SeaplaneLocksAcquire, common::SeaplaneLocksCommonArgMatches, list::SeaplaneLocksList,
    release::SeaplaneLocksRelease, renew::SeaplaneLocksRenew,
};
use crate::{cli::CliCommand, printer::OutputFormat};

#[derive(Copy, Clone, Debug)]
pub struct SeaplaneLocks;

impl SeaplaneLocks {
    pub fn command() -> Command<'static> {
        Command::new("locks")
            .about("Operate on the Locks API")
            .subcommand_required(true)
            .arg_required_else_help(true)
            .arg(
                arg!(--format =["FORMAT"=>"table"] global)
                    .help("Change the output format")
                    .value_parser(value_parser!(OutputFormat)),
            )
            .subcommand(SeaplaneLocksList::command())
            .subcommand(SeaplaneLocksAcquire::command())
            .subcommand(SeaplaneLocksRelease::command())
            .subcommand(SeaplaneLocksRenew::command())
    }
}

impl CliCommand for SeaplaneLocks {
    fn next_subcmd<'a>(
        &self,
        matches: &'a ArgMatches,
    ) -> Option<(Box<dyn CliCommand>, &'a ArgMatches)> {
        match &matches.subcommand() {
            Some(("list", m)) => Some((Box::new(SeaplaneLocksList), m)),
            Some(("acquire", m)) => Some((Box::new(SeaplaneLocksAcquire), m)),
            Some(("release", m)) => Some((Box::new(SeaplaneLocksRelease), m)),
            Some(("renew", m)) => Some((Box::new(SeaplaneLocksRenew), m)),
            _ => None,
        }
    }
}