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
use std::collections::HashMap;
use std::time::Instant;

extern crate pest;
#[macro_use]
extern crate pest_derive;

extern crate strum;
#[macro_use]
extern crate strum_macros;

#[macro_use]
pub mod macros;

pub mod error;
pub use error::{ArmaLintError, IOPathError};

pub mod io;

//pub mod sqf;
pub mod config;

pub enum HelpType {
    Help,
    Note,
}

// Application
pub mod commands;
pub use commands::Command;

lazy_static::lazy_static! {
    pub static ref VERSION: &'static str = {
        let mut version = env!("CARGO_PKG_VERSION").to_string();
        if let Some(v) = option_env!("GIT_HASH") {
            version.push_str("-");
            version.push_str(v);
        }
        if cfg!(debug_assertions) {
            version.push_str("-debug");
        }
        Box::leak(Box::new(version))
    };
}

pub fn execute(input: &[String]) -> Result<(), ArmaLintError> {
    let mut app = clap::App::new("ArmaLint").version(*crate::VERSION).arg(
        clap::Arg::with_name("debug")
            .global(true)
            .help("Turn debugging information on")
            .long("debug"),
    );

    let mut commands: Vec<Box<dyn Command>> = Vec::new();
    let mut hash_commands: HashMap<String, &Box<dyn Command>> = HashMap::new();

    // Add commands here
    commands.push(Box::new(crate::commands::Lint {}));

    for command in commands.iter() {
        let sub = command.register();
        hash_commands.insert(sub.get_name().to_owned(), command);
        app = app.subcommand(sub);
    }

    let matches = app.get_matches_from(input);

    let start = if matches.is_present("time") {
        Some(Instant::now())
    } else {
        None
    };

    match matches.subcommand_name() {
        Some(v) => match hash_commands.get(v) {
            Some(c) => {
                let sub_matches = matches.subcommand_matches(v).unwrap();
                c.run(sub_matches)?;
            }
            None => println!("No Command"),
        },
        None => println!("No Command"),
    }

    if matches.is_present("time") {
        let elapsed = start.unwrap().elapsed();
        println!("Execution took {} ms", elapsed.as_millis());
    }

    Ok(())
}