]> git.lizzy.rs Git - rust.git/blob - src/config/options.rs
Replace `use_colored_tty` with iatty crate
[rust.git] / src / config / options.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use config::config_type::ConfigType;
12 use config::lists::*;
13 use config::{Config, FileName};
14
15 use isatty::stdout_isatty;
16
17 use std::collections::HashSet;
18 use std::path::{Path, PathBuf};
19
20 /// Macro for deriving implementations of Serialize/Deserialize for enums
21 #[macro_export]
22 macro_rules! impl_enum_serialize_and_deserialize {
23     ( $e:ident, $( $x:ident ),* ) => {
24         impl ::serde::ser::Serialize for $e {
25             fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
26                 where S: ::serde::ser::Serializer
27             {
28                 use serde::ser::Error;
29
30                 // We don't know whether the user of the macro has given us all options.
31                 #[allow(unreachable_patterns)]
32                 match *self {
33                     $(
34                         $e::$x => serializer.serialize_str(stringify!($x)),
35                     )*
36                     _ => {
37                         Err(S::Error::custom(format!("Cannot serialize {:?}", self)))
38                     }
39                 }
40             }
41         }
42
43         impl<'de> ::serde::de::Deserialize<'de> for $e {
44             fn deserialize<D>(d: D) -> Result<Self, D::Error>
45                     where D: ::serde::Deserializer<'de> {
46                 use serde::de::{Error, Visitor};
47                 use std::marker::PhantomData;
48                 use std::fmt;
49                 struct StringOnly<T>(PhantomData<T>);
50                 impl<'de, T> Visitor<'de> for StringOnly<T>
51                         where T: ::serde::Deserializer<'de> {
52                     type Value = String;
53                     fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
54                         formatter.write_str("string")
55                     }
56                     fn visit_str<E>(self, value: &str) -> Result<String, E> {
57                         Ok(String::from(value))
58                     }
59                 }
60                 let s = d.deserialize_string(StringOnly::<D>(PhantomData))?;
61                 $(
62                     if stringify!($x).eq_ignore_ascii_case(&s) {
63                       return Ok($e::$x);
64                     }
65                 )*
66                 static ALLOWED: &'static[&str] = &[$(stringify!($x),)*];
67                 Err(D::Error::unknown_variant(&s, ALLOWED))
68             }
69         }
70
71         impl ::std::str::FromStr for $e {
72             type Err = &'static str;
73
74             fn from_str(s: &str) -> Result<Self, Self::Err> {
75                 $(
76                     if stringify!($x).eq_ignore_ascii_case(s) {
77                         return Ok($e::$x);
78                     }
79                 )*
80                 Err("Bad variant")
81             }
82         }
83
84         impl ConfigType for $e {
85             fn doc_hint() -> String {
86                 let mut variants = Vec::new();
87                 $(
88                     variants.push(stringify!($x));
89                 )*
90                 format!("[{}]", variants.join("|"))
91             }
92         }
93     };
94 }
95
96 macro_rules! configuration_option_enum{
97     ($e:ident: $( $x:ident ),+ $(,)*) => {
98         #[derive(Copy, Clone, Eq, PartialEq, Debug)]
99         pub enum $e {
100             $( $x ),+
101         }
102
103         impl_enum_serialize_and_deserialize!($e, $( $x ),+);
104     }
105 }
106
107 configuration_option_enum! { NewlineStyle:
108     Windows, // \r\n
109     Unix, // \n
110     Native, // \r\n in Windows, \n on other platforms
111 }
112
113 configuration_option_enum! { BraceStyle:
114     AlwaysNextLine,
115     PreferSameLine,
116     // Prefer same line except where there is a where clause, in which case force
117     // the brace to the next line.
118     SameLineWhere,
119 }
120
121 configuration_option_enum! { ControlBraceStyle:
122     // K&R style, Rust community default
123     AlwaysSameLine,
124     // Stroustrup style
125     ClosingNextLine,
126     // Allman style
127     AlwaysNextLine,
128 }
129
130 configuration_option_enum! { IndentStyle:
131     // First line on the same line as the opening brace, all lines aligned with
132     // the first line.
133     Visual,
134     // First line is on a new line and all lines align with block indent.
135     Block,
136 }
137
138 configuration_option_enum! { Density:
139     // Fit as much on one line as possible.
140     Compressed,
141     // Use more lines.
142     Tall,
143     // Place every item on a separate line.
144     Vertical,
145 }
146
147 configuration_option_enum! { TypeDensity:
148     // No spaces around "=" and "+"
149     Compressed,
150     // Spaces around " = " and " + "
151     Wide,
152 }
153
154 impl Density {
155     pub fn to_list_tactic(self) -> ListTactic {
156         match self {
157             Density::Compressed => ListTactic::Mixed,
158             Density::Tall => ListTactic::HorizontalVertical,
159             Density::Vertical => ListTactic::Vertical,
160         }
161     }
162 }
163
164 configuration_option_enum! { ReportTactic:
165     Always,
166     Unnumbered,
167     Never,
168 }
169
170 configuration_option_enum! { EmitMode:
171     // Emits to files.
172     Files,
173     // Writes the output to stdout.
174     Stdout,
175     // Displays how much of the input file was processed
176     Coverage,
177     // Unfancy stdout
178     Checkstyle,
179     // Output the changed lines (for internal value only)
180     ModifiedLines,
181     // Checks if a diff can be generated. If so, rustfmt outputs a diff and quits with exit code 1.
182     // This option is designed to be run in CI where a non-zero exit signifies non-standard code
183     // formatting.
184     Diff,
185 }
186
187 configuration_option_enum! { Color:
188     // Always use color, whether it is a piped or terminal output
189     Always,
190     // Never use color
191     Never,
192     // Automatically use color, if supported by terminal
193     Auto,
194 }
195
196 impl Color {
197     pub fn use_colored_tty(&self) -> bool {
198         match self {
199             Color::Always => true,
200             Color::Never => false,
201             Color::Auto => stdout_isatty(),
202         }
203     }
204 }
205
206 configuration_option_enum! { Verbosity:
207     // Emit more.
208     Verbose,
209     Normal,
210     // Emit as little as possible.
211     Quiet,
212 }
213
214 #[derive(Deserialize, Serialize, Clone, Debug)]
215 pub struct WidthHeuristics {
216     // Maximum width of the args of a function call before falling back
217     // to vertical formatting.
218     pub fn_call_width: usize,
219     // Maximum width in the body of a struct lit before falling back to
220     // vertical formatting.
221     pub struct_lit_width: usize,
222     // Maximum width in the body of a struct variant before falling back
223     // to vertical formatting.
224     pub struct_variant_width: usize,
225     // Maximum width of an array literal before falling back to vertical
226     // formatting.
227     pub array_width: usize,
228     // Maximum length of a chain to fit on a single line.
229     pub chain_width: usize,
230     // Maximum line length for single line if-else expressions. A value
231     // of zero means always break if-else expressions.
232     pub single_line_if_else_max_width: usize,
233 }
234
235 impl WidthHeuristics {
236     // Using this WidthHeuristics means we ignore heuristics.
237     pub fn null() -> WidthHeuristics {
238         WidthHeuristics {
239             fn_call_width: usize::max_value(),
240             struct_lit_width: 0,
241             struct_variant_width: 0,
242             array_width: usize::max_value(),
243             chain_width: usize::max_value(),
244             single_line_if_else_max_width: 0,
245         }
246     }
247
248     // scale the default WidthHeuristics according to max_width
249     pub fn scaled(max_width: usize) -> WidthHeuristics {
250         const DEFAULT_MAX_WIDTH: usize = 100;
251         let max_width_ratio = if max_width > DEFAULT_MAX_WIDTH {
252             let ratio = max_width as f32 / DEFAULT_MAX_WIDTH as f32;
253             // round to the closest 0.1
254             (ratio * 10.0).round() / 10.0
255         } else {
256             1.0
257         };
258         WidthHeuristics {
259             fn_call_width: (60.0 * max_width_ratio).round() as usize,
260             struct_lit_width: (18.0 * max_width_ratio).round() as usize,
261             struct_variant_width: (35.0 * max_width_ratio).round() as usize,
262             array_width: (60.0 * max_width_ratio).round() as usize,
263             chain_width: (60.0 * max_width_ratio).round() as usize,
264             single_line_if_else_max_width: (50.0 * max_width_ratio).round() as usize,
265         }
266     }
267 }
268
269 impl ::std::str::FromStr for WidthHeuristics {
270     type Err = &'static str;
271
272     fn from_str(_: &str) -> Result<Self, Self::Err> {
273         Err("WidthHeuristics is not parsable")
274     }
275 }
276
277 impl Default for EmitMode {
278     fn default() -> EmitMode {
279         EmitMode::Files
280     }
281 }
282
283 /// A set of directories, files and modules that rustfmt should ignore.
284 #[derive(Default, Deserialize, Serialize, Clone, Debug)]
285 pub struct IgnoreList(HashSet<PathBuf>);
286
287 impl IgnoreList {
288     pub fn add_prefix(&mut self, dir: &Path) {
289         self.0 = self
290             .0
291             .iter()
292             .map(|s| {
293                 if s.has_root() {
294                     s.clone()
295                 } else {
296                     let mut path = PathBuf::from(dir);
297                     path.push(s);
298                     path
299                 }
300             })
301             .collect();
302     }
303
304     fn skip_file_inner(&self, file: &Path) -> bool {
305         self.0.iter().any(|path| file.starts_with(path))
306     }
307
308     pub fn skip_file(&self, file: &FileName) -> bool {
309         if let FileName::Real(ref path) = file {
310             self.skip_file_inner(path)
311         } else {
312             false
313         }
314     }
315 }
316
317 impl ::std::str::FromStr for IgnoreList {
318     type Err = &'static str;
319
320     fn from_str(_: &str) -> Result<Self, Self::Err> {
321         Err("IgnoreList is not parsable")
322     }
323 }
324
325 pub trait CliOptions {
326     fn apply_to(self, config: &mut Config);
327     fn config_path(&self) -> Option<&Path>;
328 }