-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain.rs
145 lines (133 loc) · 3.8 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
use std::{
fmt, fs,
io::{self, Write},
process as proc,
str::FromStr,
};
use colored::*;
use structopt::StructOpt;
use json_diff::{
constants::Message,
ds::{key_node::KeyNode, mismatch::Mismatch},
process::compare_jsons,
};
const HELP: &str = r#"
Example:
json_diff f source1.json source2.json
json_diff d '{...}' '{...}'
Option:
f : read input from json files
d : read input from command line"#;
#[derive(Debug)]
struct AppError {
message: Message,
}
impl fmt::Display for AppError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.message)
}
}
enum InputReadMode {
D,
F,
}
impl FromStr for InputReadMode {
type Err = AppError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"d" => Ok(InputReadMode::D),
"f" => Ok(InputReadMode::F),
_ => Err(Self::Err {
message: Message::BadOption,
}),
}
}
}
#[derive(StructOpt)]
#[structopt(about = HELP)]
struct Cli {
read_mode: InputReadMode,
source1: String,
source2: String,
}
fn main() {
let args = Cli::from_args();
let (data1, data2) = match args.read_mode {
InputReadMode::D => (args.source1, args.source2),
InputReadMode::F => {
if let Ok(d1) = fs::read_to_string(args.source1) {
if let Ok(d2) = fs::read_to_string(args.source2) {
(d1, d2)
} else {
error_exit(Message::SOURCE2);
}
} else {
error_exit(Message::SOURCE1);
}
}
};
let mismatch = match compare_jsons(&data1, &data2) {
Ok(mismatch) => mismatch,
Err(err) => {
eprintln!("{}", err);
proc::exit(1)
}
};
match display_output(mismatch) {
Ok(_) => (),
Err(err) => eprintln!("{}", err),
};
}
fn error_exit(message: Message) -> ! {
eprintln!("{}", message);
proc::exit(1);
}
pub fn display_output(result: Mismatch) -> Result<(), std::io::Error> {
let no_mismatch = Mismatch {
left_only_keys: KeyNode::Nil,
right_only_keys: KeyNode::Nil,
keys_in_both: KeyNode::Nil,
};
let stdout = io::stdout();
let mut handle = io::BufWriter::new(stdout.lock());
Ok(if no_mismatch == result {
writeln!(handle, "\n{}", Message::NoMismatch)?;
} else {
match result.keys_in_both {
KeyNode::Node(_) => {
let mut keys = Vec::new();
result.keys_in_both.absolute_keys(&mut keys, None);
writeln!(handle, "\n{}:", Message::Mismatch)?;
for key in keys {
writeln!(handle, "{}", key)?;
}
}
KeyNode::Value(_, _) => writeln!(handle, "{}", Message::RootMismatch)?,
KeyNode::Nil => (),
}
match result.left_only_keys {
KeyNode::Node(_) => {
let mut keys = Vec::new();
result.left_only_keys.absolute_keys(&mut keys, None);
writeln!(handle, "\n{}:", Message::LeftExtra)?;
for key in keys {
writeln!(handle, "{}", key.red().bold())?;
}
}
KeyNode::Value(_, _) => (),
KeyNode::Nil => (),
}
match result.right_only_keys {
KeyNode::Node(_) => {
let mut keys = Vec::new();
result.right_only_keys.absolute_keys(&mut keys, None);
writeln!(handle, "\n{}:", Message::RightExtra)?;
for key in keys {
writeln!(handle, "{}", key.green().bold())?;
}
}
KeyNode::Value(_, _) => (),
KeyNode::Nil => (),
}
})
}