forked from ChrisRega/json-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.rs
59 lines (50 loc) · 1.53 KB
/
main.rs
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
use clap::Parser;
use clap::Subcommand;
use json_diff::enums::Error;
use json_diff::{ds::mismatch::Mismatch, process::compare_jsons};
#[derive(Subcommand, Clone)]
/// Input selection
enum Mode {
/// File input
#[clap(short_flag = 'f')]
File { file_1: String, file_2: String },
/// Read from CLI
#[clap(short_flag = 'd')]
Direct { json_1: String, json_2: String },
}
#[derive(Parser)]
struct Args {
#[command(subcommand)]
cmd: Mode,
#[clap(short, long)]
/// deep-sort arrays before comparing
sort_arrays: bool,
#[clap(short, long, default_value_t = 20)]
/// truncate keys with more chars then this parameter
truncation_length: usize,
}
fn main() -> Result<(), Error> {
let args = Args::parse();
let (json_1, json_2) = match args.cmd {
Mode::Direct { json_2, json_1 } => (json_1, json_2),
Mode::File { file_2, file_1 } => {
let d1 = vg_errortools::fat_io_wrap_std(file_1, &std::fs::read_to_string)?;
let d2 = vg_errortools::fat_io_wrap_std(file_2, &std::fs::read_to_string)?;
(d1, d2)
}
};
let mismatch = compare_jsons(&json_1, &json_2, args.sort_arrays)?;
let comparison_result = check_diffs(mismatch)?;
if !comparison_result {
std::process::exit(1);
}
Ok(())
}
pub fn check_diffs(result: Mismatch) -> Result<bool, Error> {
let mismatches = result.all_diffs();
let is_good = mismatches.is_empty();
for (d_type, key) in mismatches {
println!("{d_type}: {key}");
}
Ok(is_good)
}