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
pub use aoko::no_std::algebraic::sum::TimeUnit;
use clap::Parser;

/// Batch processing word-count, support English & Chinese.

#[derive(Parser)]
#[clap(version = "0.1.1", author = "hzqd <hzqelf@yeah.net>")]
pub struct Args {
    /// Specify the dictionary name, no dictionary by default
    #[clap(short, long, default_value = "")]
    pub dictionary: String,

    /// Specify the input file name
    #[clap(short, long)]
    pub input: String,

    /// Specify the output file name
    #[clap(short, long)]
    pub output: String,

    /// Specify the time unit, support nanos, micros, millis, secs
    #[clap(short, long, default_value = "millis")]
    pub time: TimeUnit,

    /// Set language, support English(en) and Chinese(cn)
    #[clap(subcommand)]
    pub subcmd: Lang,
}

#[derive(Parser)]
pub enum Lang {
    /// A subcommand for specify English
    EN,
    /// A subcommand for specify Chinese
    CN,
}

pub fn get_args() -> Args {
    Args::parse()
}