aboutsummaryrefslogtreecommitdiff
path: root/bin/src/main.rs
blob: 161dcab847d9beb956864760e722c24d9e0d621f (plain)
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
mod config;
mod err;
mod lint;
mod traits;

use std::io;

use crate::{err::StatixErr, traits::WriteDiagnostic};

use clap::Clap;
use config::{LintConfig, Opts, SubCommand};

fn _main() -> Result<(), StatixErr> {
    let opts = Opts::parse();
    match opts.subcmd {
        Some(SubCommand::Fix(_)) => {
            eprintln!("`fix` not yet supported");
        }
        None => {
            let lint_config = LintConfig::from_opts(opts)?;
            let vfs = lint_config.vfs()?;
            let (reports, errors): (Vec<_>, Vec<_>) =
                vfs.iter().map(lint::lint).partition(Result::is_ok);
            let lint_results = reports.into_iter().map(Result::unwrap);
            let errors = errors.into_iter().map(Result::unwrap_err);

            let mut stderr = io::stderr();
            lint_results.for_each(|r| {
                stderr.write(&r, &vfs).unwrap();
            });
            errors.for_each(|e| {
                eprintln!("{}", e);
            });
        }
    }
    Ok(())
}

fn main() {
    match _main() {
        Err(e) => eprintln!("{}", e),
        _ => (),
    }
}