]> git.lizzy.rs Git - rust.git/blob - src/config/mod.rs
Allow `io::Error` to live longer before being wrapped in a `failure::Error`
[rust.git] / src / config / mod.rs
1 // Copyright 2015 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 regex::Regex;
12 use std::cell::Cell;
13 use std::default::Default;
14 use std::fs::File;
15 use std::io::{Error, ErrorKind, Read};
16 use std::path::{Path, PathBuf};
17 use std::{env, fs};
18
19 use config::config_type::ConfigType;
20 use config::file_lines::FileLines;
21 pub use config::lists::*;
22 pub use config::options::*;
23
24 #[macro_use]
25 pub mod config_type;
26 #[macro_use]
27 pub mod options;
28
29 pub mod file_lines;
30 pub mod license;
31 pub mod lists;
32 pub mod summary;
33
34 /// This macro defines configuration options used in rustfmt. Each option
35 /// is defined as follows:
36 ///
37 /// `name: value type, default value, is stable, description;`
38 create_config! {
39     // Fundamental stuff
40     max_width: usize, 100, true, "Maximum width of each line";
41     hard_tabs: bool, false, true, "Use tab characters for indentation, spaces for alignment";
42     tab_spaces: usize, 4, true, "Number of spaces per tab";
43     newline_style: NewlineStyle, NewlineStyle::Unix, true, "Unix or Windows line endings";
44     use_small_heuristics: bool, true, false, "Whether to use different formatting for items and \
45         expressions if they satisfy a heuristic notion of 'small'.";
46     indent_style: IndentStyle, IndentStyle::Block, false, "How do we indent expressions or items.";
47
48     // Comments and strings
49     wrap_comments: bool, false, true, "Break comments to fit on the line";
50     comment_width: usize, 80, false,
51         "Maximum length of comments. No effect unless wrap_comments = true";
52     normalize_comments: bool, false, true, "Convert /* */ comments to // comments where possible";
53     license_template_path: String, String::default(), false, "Beginning of file must match license template";
54     format_strings: bool, false, false, "Format string literals where necessary";
55
56     // Single line expressions and items
57     empty_item_single_line: bool, true, false,
58         "Put empty-body functions and impls on a single line";
59     struct_lit_single_line: bool, true, false,
60         "Put small struct literals on a single line";
61     fn_single_line: bool, false, false, "Put single-expression functions on a single line";
62     where_single_line: bool, false, false, "Force where clauses to be on a single line";
63
64     // Imports
65     imports_indent: IndentStyle, IndentStyle::Visual, false, "Indent of imports";
66     imports_layout: ListTactic, ListTactic::Mixed, false, "Item layout inside a import block";
67     merge_imports: bool, false, false, "Merge imports";
68
69     // Ordering
70     reorder_imports: bool, true, false, "Reorder import and extern crate statements alphabetically";
71     reorder_modules: bool, true, false, "Reorder module statements alphabetically in group";
72     reorder_impl_items: bool, false, false, "Reorder impl items";
73
74     // Spaces around punctuation
75     type_punctuation_density: TypeDensity, TypeDensity::Wide, false,
76         "Determines if '+' or '=' are wrapped in spaces in the punctuation of types";
77     space_before_colon: bool, false, false, "Leave a space before the colon";
78     space_after_colon: bool, true, false, "Leave a space after the colon";
79     spaces_around_ranges: bool, false, false, "Put spaces around the  .. and ... range operators";
80     spaces_within_parens_and_brackets: bool, false, false,
81         "Put spaces within non-empty parentheses or brackets";
82     binop_separator: SeparatorPlace, SeparatorPlace::Front, false,
83         "Where to put a binary operator when a binary expression goes multiline.";
84
85     // Misc.
86     remove_blank_lines_at_start_or_end_of_block: bool, true, false,
87         "Remove blank lines at start or end of a block";
88     combine_control_expr: bool, true, false, "Combine control expressions with function calls.";
89     struct_field_align_threshold: usize, 0, false, "Align struct fields if their diffs fits within \
90                                              threshold.";
91     match_arm_blocks: bool, true, false, "Wrap the body of arms in blocks when it does not fit on \
92         the same line with the pattern of arms";
93     force_multiline_blocks: bool, false, false,
94         "Force multiline closure bodies and match arms to be wrapped in a block";
95     fn_args_density: Density, Density::Tall, false, "Argument density in functions";
96     brace_style: BraceStyle, BraceStyle::SameLineWhere, false, "Brace style for items";
97     control_brace_style: ControlBraceStyle, ControlBraceStyle::AlwaysSameLine, false,
98         "Brace style for control flow constructs";
99     trailing_semicolon: bool, true, false,
100         "Add trailing semicolon after break, continue and return";
101     trailing_comma: SeparatorTactic, SeparatorTactic::Vertical, false,
102         "How to handle trailing commas for lists";
103     match_block_trailing_comma: bool, false, false,
104         "Put a trailing comma after a block based match arm (non-block arms are not affected)";
105     blank_lines_upper_bound: usize, 1, false,
106         "Maximum number of blank lines which can be put between items.";
107     blank_lines_lower_bound: usize, 0, false,
108         "Minimum number of blank lines which must be put between items.";
109
110     // Options that can change the source code beyond whitespace/blocks (somewhat linty things)
111     merge_derives: bool, true, true, "Merge multiple `#[derive(...)]` into a single one";
112     use_try_shorthand: bool, false, false, "Replace uses of the try! macro by the ? shorthand";
113     condense_wildcard_suffixes: bool, false, false, "Replace strings of _ wildcards by a single .. \
114                                               in tuple patterns";
115     force_explicit_abi: bool, true, true, "Always print the abi for extern items";
116     use_field_init_shorthand: bool, false, false, "Use field initialization shorthand if possible";
117
118     // Control options (changes the operation of rustfmt, rather than the formatting)
119     write_mode: WriteMode, WriteMode::Overwrite, false,
120         "What Write Mode to use when none is supplied: \
121          Replace, Overwrite, Display, Plain, Diff, Coverage, Check";
122     color: Color, Color::Auto, false,
123         "What Color option to use when none is supplied: Always, Never, Auto";
124     required_version: String, env!("CARGO_PKG_VERSION").to_owned(), false,
125         "Require a specific version of rustfmt.";
126     unstable_features: bool, false, true,
127             "Enables unstable features. Only available on nightly channel";
128     disable_all_formatting: bool, false, false, "Don't reformat anything";
129     skip_children: bool, false, false, "Don't reformat out of line modules";
130     hide_parse_errors: bool, false, false, "Hide errors from the parser";
131     error_on_line_overflow: bool, false, false, "Error if unable to get all lines within max_width";
132     error_on_unformatted: bool, false, false,
133         "Error if unable to get comments or string literals within max_width, \
134          or they are left with trailing whitespaces";
135     report_todo: ReportTactic, ReportTactic::Never, false,
136         "Report all, none or unnumbered occurrences of TODO in source file comments";
137     report_fixme: ReportTactic, ReportTactic::Never, false,
138         "Report all, none or unnumbered occurrences of FIXME in source file comments";
139     ignore: IgnoreList, IgnoreList::default(), false,
140         "Skip formatting the specified files and directories.";
141
142     // Not user-facing
143     verbose: bool, false, false, "Use verbose output";
144     verbose_diff: bool, false, false, "Emit verbose diffs";
145     file_lines: FileLines, FileLines::all(), false,
146         "Lines to format; this is not supported in rustfmt.toml, and can only be specified \
147          via the --file-lines option";
148     width_heuristics: WidthHeuristics, WidthHeuristics::scaled(100), false,
149         "'small' heuristic values";
150 }
151
152 pub fn load_config(
153     file_path: Option<&Path>,
154     options: Option<&CliOptions>,
155 ) -> Result<(Config, Option<PathBuf>), Error> {
156     let over_ride = match options {
157         Some(opts) => config_path(opts)?,
158         None => None,
159     };
160
161     let result = if let Some(over_ride) = over_ride {
162         Config::from_toml_path(over_ride.as_ref()).map(|p| (p, Some(over_ride.to_owned())))
163     } else if let Some(file_path) = file_path {
164         Config::from_resolved_toml_path(file_path)
165     } else {
166         Ok((Config::default(), None))
167     };
168
169     result.map(|(mut c, p)| {
170         if let Some(options) = options {
171             options.clone().apply_to(&mut c);
172         }
173         (c, p)
174     })
175 }
176
177 // Check for the presence of known config file names (`rustfmt.toml, `.rustfmt.toml`) in `dir`
178 //
179 // Return the path if a config file exists, empty if no file exists, and Error for IO errors
180 fn get_toml_path(dir: &Path) -> Result<Option<PathBuf>, Error> {
181     const CONFIG_FILE_NAMES: [&str; 2] = [".rustfmt.toml", "rustfmt.toml"];
182     for config_file_name in &CONFIG_FILE_NAMES {
183         let config_file = dir.join(config_file_name);
184         match fs::metadata(&config_file) {
185             // Only return if it's a file to handle the unlikely situation of a directory named
186             // `rustfmt.toml`.
187             Ok(ref md) if md.is_file() => return Ok(Some(config_file)),
188             // Return the error if it's something other than `NotFound`; otherwise we didn't
189             // find the project file yet, and continue searching.
190             Err(e) => {
191                 if e.kind() != ErrorKind::NotFound {
192                     return Err(e);
193                 }
194             }
195             _ => {}
196         }
197     }
198     Ok(None)
199 }
200
201 fn config_path(options: &CliOptions) -> Result<Option<PathBuf>, Error> {
202     let config_path_not_found = |path: &str| -> Result<Option<PathBuf>, Error> {
203         Err(Error::new(
204             ErrorKind::NotFound,
205             format!(
206                 "Error: unable to find a config file for the given path: `{}`",
207                 path
208             ),
209         ))
210     };
211
212     // Read the config_path and convert to parent dir if a file is provided.
213     // If a config file cannot be found from the given path, return error.
214     match options.config_path {
215         Some(ref path) if !path.exists() => config_path_not_found(path.to_str().unwrap()),
216         Some(ref path) if path.is_dir() => {
217             let config_file_path = get_toml_path(path)?;
218             if config_file_path.is_some() {
219                 Ok(config_file_path)
220             } else {
221                 config_path_not_found(path.to_str().unwrap())
222             }
223         }
224         ref path => Ok(path.to_owned()),
225     }
226 }
227
228 #[cfg(test)]
229 mod test {
230     use super::Config;
231     use std::str;
232
233     #[allow(dead_code)]
234     mod mock {
235         use super::super::*;
236
237         create_config! {
238             // Options that are used by the generated functions
239             max_width: usize, 100, true, "Maximum width of each line";
240             use_small_heuristics: bool, true, false, "Whether to use different formatting for items and \
241                 expressions if they satisfy a heuristic notion of 'small'.";
242             license_template_path: String, String::default(), false, "Beginning of file must match license template";
243             required_version: String, env!("CARGO_PKG_VERSION").to_owned(), false, "Require a specific version of rustfmt.";
244             ignore: IgnoreList, IgnoreList::default(), false, "Skip formatting the specified files and directories.";
245             verbose: bool, false, false, "Use verbose output";
246             file_lines: FileLines, FileLines::all(), false,
247                 "Lines to format; this is not supported in rustfmt.toml, and can only be specified \
248                     via the --file-lines option";
249             width_heuristics: WidthHeuristics, WidthHeuristics::scaled(100), false, "'small' heuristic values";
250
251             // Options that are used by the tests
252             stable_option: bool, false, true, "A stable option";
253             unstable_option: bool, false, false, "An unstable option";
254         }
255     }
256
257     #[test]
258     fn test_config_set() {
259         let mut config = Config::default();
260         config.set().verbose(false);
261         assert_eq!(config.verbose(), false);
262         config.set().verbose(true);
263         assert_eq!(config.verbose(), true);
264     }
265
266     #[test]
267     fn test_config_used_to_toml() {
268         let config = Config::default();
269
270         let merge_derives = config.merge_derives();
271         let skip_children = config.skip_children();
272
273         let used_options = config.used_options();
274         let toml = used_options.to_toml().unwrap();
275         assert_eq!(
276             toml,
277             format!(
278                 "merge_derives = {}\nskip_children = {}\n",
279                 merge_derives, skip_children,
280             )
281         );
282     }
283
284     #[test]
285     fn test_was_set() {
286         use std::path::Path;
287         let config = Config::from_toml("hard_tabs = true", Path::new("")).unwrap();
288
289         assert_eq!(config.was_set().hard_tabs(), true);
290         assert_eq!(config.was_set().verbose(), false);
291     }
292
293     #[test]
294     fn test_print_docs_exclude_unstable() {
295         use self::mock::Config;
296
297         let mut output = Vec::new();
298         Config::print_docs(&mut output, false);
299
300         let s = str::from_utf8(&output).unwrap();
301
302         assert_eq!(s.contains("stable_option"), true);
303         assert_eq!(s.contains("unstable_option"), false);
304         assert_eq!(s.contains("(unstable)"), false);
305     }
306
307     #[test]
308     fn test_print_docs_include_unstable() {
309         use self::mock::Config;
310
311         let mut output = Vec::new();
312         Config::print_docs(&mut output, true);
313
314         let s = str::from_utf8(&output).unwrap();
315         assert_eq!(s.contains("stable_option"), true);
316         assert_eq!(s.contains("unstable_option"), true);
317         assert_eq!(s.contains("(unstable)"), true);
318     }
319
320     // FIXME(#2183) these tests cannot be run in parallel because they use env vars
321     // #[test]
322     // fn test_as_not_nightly_channel() {
323     //     let mut config = Config::default();
324     //     assert_eq!(config.was_set().unstable_features(), false);
325     //     config.set().unstable_features(true);
326     //     assert_eq!(config.was_set().unstable_features(), false);
327     // }
328
329     // #[test]
330     // fn test_as_nightly_channel() {
331     //     let v = ::std::env::var("CFG_RELEASE_CHANNEL").unwrap_or(String::from(""));
332     //     ::std::env::set_var("CFG_RELEASE_CHANNEL", "nightly");
333     //     let mut config = Config::default();
334     //     config.set().unstable_features(true);
335     //     assert_eq!(config.was_set().unstable_features(), false);
336     //     config.set().unstable_features(true);
337     //     assert_eq!(config.unstable_features(), true);
338     //     ::std::env::set_var("CFG_RELEASE_CHANNEL", v);
339     // }
340
341     // #[test]
342     // fn test_unstable_from_toml() {
343     //     let mut config = Config::from_toml("unstable_features = true").unwrap();
344     //     assert_eq!(config.was_set().unstable_features(), false);
345     //     let v = ::std::env::var("CFG_RELEASE_CHANNEL").unwrap_or(String::from(""));
346     //     ::std::env::set_var("CFG_RELEASE_CHANNEL", "nightly");
347     //     config = Config::from_toml("unstable_features = true").unwrap();
348     //     assert_eq!(config.was_set().unstable_features(), true);
349     //     assert_eq!(config.unstable_features(), true);
350     //     ::std::env::set_var("CFG_RELEASE_CHANNEL", v);
351     // }
352 }