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