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
use clap::{Parser, Subcommand};

#[derive(Parser)]
#[clap(author, version, about, long_about = None)]
pub struct Cli {
    /// WHen we are called from cargo, the first argument is the subcommand. We just parse this for compatibility.
    #[clap(value_parser)]
    bin: Option<String>,
    #[clap(subcommand)]
    command: Command,
}

impl Cli {
    pub fn called_from_cargo(&self) -> bool {
        match &self.bin {
            Some(bin) => bin == "gitv",
            _ => false,
        }
    }

    pub fn command(&self) -> &Command {
        &self.command
    }
}

#[derive(Subcommand)]
pub enum Command {
    /// Verify that the version computed from git is consistent with the Cargo version.
    Verify,
    /// Compute the current version based on git and Cargo metadata.
    Version,
}