]> git.lizzy.rs Git - rust.git/blob - src/rustfmt_diff.rs
Remove BlockIndentStyle::Inherit
[rust.git] / src / rustfmt_diff.rs
1 use std::collections::VecDeque;
2 use diff;
3 use term;
4 use std::io;
5
6 #[derive(Debug, PartialEq)]
7 pub enum DiffLine {
8     Context(String),
9     Expected(String),
10     Resulting(String),
11 }
12
13 #[derive(Debug, PartialEq)]
14 pub struct Mismatch {
15     pub line_number: u32,
16     pub lines: Vec<DiffLine>,
17 }
18
19 impl Mismatch {
20     fn new(line_number: u32) -> Mismatch {
21         Mismatch {
22             line_number: line_number,
23             lines: Vec::new(),
24         }
25     }
26 }
27
28 // Produces a diff between the expected output and actual output of rustfmt.
29 pub fn make_diff(expected: &str, actual: &str, context_size: usize) -> Vec<Mismatch> {
30     let mut line_number = 1;
31     let mut context_queue: VecDeque<&str> = VecDeque::with_capacity(context_size);
32     let mut lines_since_mismatch = context_size + 1;
33     let mut results = Vec::new();
34     let mut mismatch = Mismatch::new(0);
35
36     for result in diff::lines(expected, actual) {
37         match result {
38             diff::Result::Left(str) => {
39                 if lines_since_mismatch >= context_size {
40                     results.push(mismatch);
41                     mismatch = Mismatch::new(line_number - context_queue.len() as u32);
42                 }
43
44                 while let Some(line) = context_queue.pop_front() {
45                     mismatch.lines.push(DiffLine::Context(line.to_owned()));
46                 }
47
48                 mismatch.lines.push(DiffLine::Resulting(str.to_owned()));
49                 lines_since_mismatch = 0;
50             }
51             diff::Result::Right(str) => {
52                 if lines_since_mismatch >= context_size {
53                     results.push(mismatch);
54                     mismatch = Mismatch::new(line_number - context_queue.len() as u32);
55                 }
56
57                 while let Some(line) = context_queue.pop_front() {
58                     mismatch.lines.push(DiffLine::Context(line.to_owned()));
59                 }
60
61                 mismatch.lines.push(DiffLine::Expected(str.to_owned()));
62                 line_number += 1;
63                 lines_since_mismatch = 0;
64             }
65             diff::Result::Both(str, _) => {
66                 if context_queue.len() >= context_size {
67                     let _ = context_queue.pop_front();
68                 }
69
70                 if lines_since_mismatch < context_size {
71                     mismatch.lines.push(DiffLine::Context(str.to_owned()));
72                 } else {
73                     context_queue.push_back(str);
74                 }
75
76                 line_number += 1;
77                 lines_since_mismatch += 1;
78             }
79         }
80     }
81
82     results.push(mismatch);
83     results.remove(0);
84
85     results
86 }
87
88 pub fn print_diff<F>(diff: Vec<Mismatch>, get_section_title: F)
89     where F: Fn(u32) -> String
90 {
91     match term::stdout() {
92         Some(ref t) if isatty() && t.supports_color() => {
93             print_diff_fancy(diff, get_section_title, term::stdout().unwrap())
94         }
95         _ => print_diff_basic(diff, get_section_title),
96     }
97
98     // isatty shamelessly adapted from cargo.
99     #[cfg(unix)]
100     fn isatty() -> bool {
101         extern crate libc;
102
103         unsafe { libc::isatty(libc::STDOUT_FILENO) != 0 }
104     }
105     #[cfg(windows)]
106     fn isatty() -> bool {
107         extern crate kernel32;
108         extern crate winapi;
109
110         unsafe {
111             let handle = kernel32::GetStdHandle(winapi::winbase::STD_OUTPUT_HANDLE);
112             let mut out = 0;
113             kernel32::GetConsoleMode(handle, &mut out) != 0
114         }
115     }
116 }
117
118 fn print_diff_fancy<F>(diff: Vec<Mismatch>,
119                        get_section_title: F,
120                        mut t: Box<term::Terminal<Output = io::Stdout>>)
121     where F: Fn(u32) -> String
122 {
123     for mismatch in diff {
124         let title = get_section_title(mismatch.line_number);
125         writeln!(t, "{}", title).unwrap();
126
127         for line in mismatch.lines {
128             match line {
129                 DiffLine::Context(ref str) => {
130                     t.reset().unwrap();
131                     writeln!(t, " {}⏎", str).unwrap();
132                 }
133                 DiffLine::Expected(ref str) => {
134                     t.fg(term::color::GREEN).unwrap();
135                     writeln!(t, "+{}⏎", str).unwrap();
136                 }
137                 DiffLine::Resulting(ref str) => {
138                     t.fg(term::color::RED).unwrap();
139                     writeln!(t, "-{}⏎", str).unwrap();
140                 }
141             }
142         }
143         t.reset().unwrap();
144     }
145 }
146
147 pub fn print_diff_basic<F>(diff: Vec<Mismatch>, get_section_title: F)
148     where F: Fn(u32) -> String
149 {
150     for mismatch in diff {
151         let title = get_section_title(mismatch.line_number);
152         println!("{}", title);
153
154         for line in mismatch.lines {
155             match line {
156                 DiffLine::Context(ref str) => {
157                     println!(" {}⏎", str);
158                 }
159                 DiffLine::Expected(ref str) => {
160                     println!("+{}⏎", str);
161                 }
162                 DiffLine::Resulting(ref str) => {
163                     println!("-{}⏎", str);
164                 }
165             }
166         }
167     }
168 }