]> git.proxmox.com Git - rustc.git/blob - src/tools/tidy/src/style.rs
New upstream version 1.50.0+dfsg1
[rustc.git] / src / tools / tidy / src / style.rs
1 //! Tidy check to enforce various stylistic guidelines on the Rust codebase.
2 //!
3 //! Example checks are:
4 //!
5 //! * No lines over 100 characters (in non-Rust files).
6 //! * No files with over 3000 lines (in non-Rust files).
7 //! * No tabs.
8 //! * No trailing whitespace.
9 //! * No CR characters.
10 //! * No `TODO` or `XXX` directives.
11 //! * No unexplained ` ```ignore ` or ` ```rust,ignore ` doc tests.
12 //!
13 //! Note that some of these rules are excluded from Rust files because we enforce rustfmt. It is
14 //! preferable to be formatted rather than tidy-clean.
15 //!
16 //! A number of these checks can be opted-out of with various directives of the form:
17 //! `// ignore-tidy-CHECK-NAME`.
18
19 use std::path::Path;
20
21 const ERROR_CODE_COLS: usize = 80;
22 const COLS: usize = 100;
23
24 const LINES: usize = 3000;
25
26 const UNEXPLAINED_IGNORE_DOCTEST_INFO: &str = r#"unexplained "```ignore" doctest; try one:
27
28 * make the test actually pass, by adding necessary imports and declarations, or
29 * use "```text", if the code is not Rust code, or
30 * use "```compile_fail,Ennnn", if the code is expected to fail at compile time, or
31 * use "```should_panic", if the code is expected to fail at run time, or
32 * use "```no_run", if the code should type-check but not necessary linkable/runnable, or
33 * explain it like "```ignore (cannot-test-this-because-xxxx)", if the annotation cannot be avoided.
34
35 "#;
36
37 const LLVM_UNREACHABLE_INFO: &str = r"\
38 C++ code used llvm_unreachable, which triggers undefined behavior
39 when executed when assertions are disabled.
40 Use llvm::report_fatal_error for increased robustness.";
41
42 /// Parser states for `line_is_url`.
43 #[derive(Clone, Copy, PartialEq)]
44 #[allow(non_camel_case_types)]
45 enum LIUState {
46 EXP_COMMENT_START,
47 EXP_LINK_LABEL_OR_URL,
48 EXP_URL,
49 EXP_END,
50 }
51
52 /// Returns `true` if `line` appears to be a line comment containing an URL,
53 /// possibly with a Markdown link label in front, and nothing else.
54 /// The Markdown link label, if present, may not contain whitespace.
55 /// Lines of this form are allowed to be overlength, because Markdown
56 /// offers no way to split a line in the middle of a URL, and the lengths
57 /// of URLs to external references are beyond our control.
58 fn line_is_url(columns: usize, line: &str) -> bool {
59 // more basic check for error_codes.rs, to avoid complexity in implementing two state machines
60 if columns == ERROR_CODE_COLS {
61 return line.starts_with('[') && line.contains("]:") && line.contains("http");
62 }
63
64 use self::LIUState::*;
65 let mut state: LIUState = EXP_COMMENT_START;
66 let is_url = |w: &str| w.starts_with("http://") || w.starts_with("https://");
67
68 for tok in line.split_whitespace() {
69 match (state, tok) {
70 (EXP_COMMENT_START, "//") | (EXP_COMMENT_START, "///") | (EXP_COMMENT_START, "//!") => {
71 state = EXP_LINK_LABEL_OR_URL
72 }
73
74 (EXP_LINK_LABEL_OR_URL, w)
75 if w.len() >= 4 && w.starts_with('[') && w.ends_with("]:") =>
76 {
77 state = EXP_URL
78 }
79
80 (EXP_LINK_LABEL_OR_URL, w) if is_url(w) => state = EXP_END,
81
82 (EXP_URL, w) if is_url(w) || w.starts_with("../") => state = EXP_END,
83
84 (_, w) if w.len() > columns && is_url(w) => state = EXP_END,
85
86 (_, _) => {}
87 }
88 }
89
90 state == EXP_END
91 }
92
93 /// Returns `true` if `line` is allowed to be longer than the normal limit.
94 /// Currently there is only one exception, for long URLs, but more
95 /// may be added in the future.
96 fn long_line_is_ok(max_columns: usize, line: &str) -> bool {
97 if line_is_url(max_columns, line) {
98 return true;
99 }
100
101 false
102 }
103
104 enum Directive {
105 /// By default, tidy always warns against style issues.
106 Deny,
107
108 /// `Ignore(false)` means that an `ignore-tidy-*` directive
109 /// has been provided, but is unnecessary. `Ignore(true)`
110 /// means that it is necessary (i.e. a warning would be
111 /// produced if `ignore-tidy-*` was not present).
112 Ignore(bool),
113 }
114
115 fn contains_ignore_directive(can_contain: bool, contents: &str, check: &str) -> Directive {
116 if !can_contain {
117 return Directive::Deny;
118 }
119 // Update `can_contain` when changing this
120 if contents.contains(&format!("// ignore-tidy-{}", check))
121 || contents.contains(&format!("# ignore-tidy-{}", check))
122 || contents.contains(&format!("/* ignore-tidy-{} */", check))
123 {
124 Directive::Ignore(false)
125 } else {
126 Directive::Deny
127 }
128 }
129
130 macro_rules! suppressible_tidy_err {
131 ($err:ident, $skip:ident, $msg:expr) => {
132 if let Directive::Deny = $skip {
133 $err($msg);
134 } else {
135 $skip = Directive::Ignore(true);
136 }
137 };
138 }
139
140 pub fn is_in(full_path: &Path, parent_folder_to_find: &str, folder_to_find: &str) -> bool {
141 if let Some(parent) = full_path.parent() {
142 if parent.file_name().map_or_else(
143 || false,
144 |f| {
145 f.to_string_lossy() == folder_to_find
146 && parent
147 .parent()
148 .and_then(|f| f.file_name())
149 .map_or_else(|| false, |f| f == parent_folder_to_find)
150 },
151 ) {
152 true
153 } else {
154 is_in(parent, parent_folder_to_find, folder_to_find)
155 }
156 } else {
157 false
158 }
159 }
160
161 pub fn check(path: &Path, bad: &mut bool) {
162 super::walk(path, &mut super::filter_dirs, &mut |entry, contents| {
163 let file = entry.path();
164 let filename = file.file_name().unwrap().to_string_lossy();
165 let extensions = [".rs", ".py", ".js", ".sh", ".c", ".cpp", ".h", ".md", ".css"];
166 if extensions.iter().all(|e| !filename.ends_with(e)) || filename.starts_with(".#") {
167 return;
168 }
169
170 let is_style_file = filename.ends_with(".css");
171 let under_rustfmt = filename.ends_with(".rs") &&
172 // This list should ideally be sourced from rustfmt.toml but we don't want to add a toml
173 // parser to tidy.
174 !file.ancestors().any(|a| {
175 a.ends_with("src/test") ||
176 a.ends_with("src/doc/book")
177 });
178
179 if filename.ends_with(".md")
180 && file.parent().unwrap().file_name().unwrap().to_string_lossy() != "error_codes"
181 {
182 // We don't want to check all ".md" files (almost of of them aren't compliant
183 // currently), just the long error code explanation ones.
184 return;
185 }
186 if is_style_file && !is_in(file, "src", "librustdoc") {
187 // We only check CSS files in rustdoc.
188 return;
189 }
190
191 if contents.is_empty() {
192 tidy_error!(bad, "{}: empty file", file.display());
193 }
194
195 let max_columns = if filename == "error_codes.rs" || filename.ends_with(".md") {
196 ERROR_CODE_COLS
197 } else {
198 COLS
199 };
200
201 let can_contain = contents.contains("// ignore-tidy-")
202 || contents.contains("# ignore-tidy-")
203 || contents.contains("/* ignore-tidy-");
204 // Enable testing ICE's that require specific (untidy)
205 // file formats easily eg. `issue-1234-ignore-tidy.rs`
206 if filename.contains("ignore-tidy") {
207 return;
208 }
209 let mut skip_cr = contains_ignore_directive(can_contain, &contents, "cr");
210 let mut skip_undocumented_unsafe =
211 contains_ignore_directive(can_contain, &contents, "undocumented-unsafe");
212 let mut skip_tab = contains_ignore_directive(can_contain, &contents, "tab");
213 let mut skip_line_length = contains_ignore_directive(can_contain, &contents, "linelength");
214 let mut skip_file_length = contains_ignore_directive(can_contain, &contents, "filelength");
215 let mut skip_end_whitespace =
216 contains_ignore_directive(can_contain, &contents, "end-whitespace");
217 let mut skip_trailing_newlines =
218 contains_ignore_directive(can_contain, &contents, "trailing-newlines");
219 let mut skip_copyright = contains_ignore_directive(can_contain, &contents, "copyright");
220 let mut leading_new_lines = false;
221 let mut trailing_new_lines = 0;
222 let mut lines = 0;
223 let mut last_safety_comment = false;
224 for (i, line) in contents.split('\n').enumerate() {
225 let mut err = |msg: &str| {
226 tidy_error!(bad, "{}:{}: {}", file.display(), i + 1, msg);
227 };
228 if !under_rustfmt
229 && line.chars().count() > max_columns
230 && !long_line_is_ok(max_columns, line)
231 {
232 suppressible_tidy_err!(
233 err,
234 skip_line_length,
235 &format!("line longer than {} chars", max_columns)
236 );
237 }
238 if !is_style_file && line.contains('\t') {
239 suppressible_tidy_err!(err, skip_tab, "tab character");
240 }
241 if line.ends_with(' ') || line.ends_with('\t') {
242 suppressible_tidy_err!(err, skip_end_whitespace, "trailing whitespace");
243 }
244 if is_style_file && line.starts_with(' ') {
245 err("CSS files use tabs for indent");
246 }
247 if line.contains('\r') {
248 suppressible_tidy_err!(err, skip_cr, "CR character");
249 }
250 if filename != "style.rs" {
251 if line.contains("TODO") {
252 err("TODO is deprecated; use FIXME")
253 }
254 if line.contains("//") && line.contains(" XXX") {
255 err("XXX is deprecated; use FIXME")
256 }
257 }
258 let is_test = || file.components().any(|c| c.as_os_str() == "tests");
259 // for now we just check libcore
260 if line.contains("unsafe {") && !line.trim().starts_with("//") && !last_safety_comment {
261 if file.components().any(|c| c.as_os_str() == "core") && !is_test() {
262 suppressible_tidy_err!(err, skip_undocumented_unsafe, "undocumented unsafe");
263 }
264 }
265 if line.contains("// SAFETY:") || line.contains("// Safety:") {
266 last_safety_comment = true;
267 } else if line.trim().starts_with("//") || line.trim().is_empty() {
268 // keep previous value
269 } else {
270 last_safety_comment = false;
271 }
272 if (line.starts_with("// Copyright")
273 || line.starts_with("# Copyright")
274 || line.starts_with("Copyright"))
275 && (line.contains("Rust Developers") || line.contains("Rust Project Developers"))
276 {
277 suppressible_tidy_err!(
278 err,
279 skip_copyright,
280 "copyright notices attributed to the Rust Project Developers are deprecated"
281 );
282 }
283 if line.ends_with("```ignore") || line.ends_with("```rust,ignore") {
284 err(UNEXPLAINED_IGNORE_DOCTEST_INFO);
285 }
286 if filename.ends_with(".cpp") && line.contains("llvm_unreachable") {
287 err(LLVM_UNREACHABLE_INFO);
288 }
289 if line.is_empty() {
290 if i == 0 {
291 leading_new_lines = true;
292 }
293 trailing_new_lines += 1;
294 } else {
295 trailing_new_lines = 0;
296 }
297 lines = i;
298 }
299 if leading_new_lines {
300 tidy_error!(bad, "{}: leading newline", file.display());
301 }
302 let mut err = |msg: &str| {
303 tidy_error!(bad, "{}: {}", file.display(), msg);
304 };
305 match trailing_new_lines {
306 0 => suppressible_tidy_err!(err, skip_trailing_newlines, "missing trailing newline"),
307 1 => {}
308 n => suppressible_tidy_err!(
309 err,
310 skip_trailing_newlines,
311 &format!("too many trailing newlines ({})", n)
312 ),
313 };
314 if lines > LINES {
315 let mut err = |_| {
316 tidy_error!(
317 bad,
318 "{}: too many lines ({}) (add `// \
319 ignore-tidy-filelength` to the file to suppress this error)",
320 file.display(),
321 lines
322 );
323 };
324 suppressible_tidy_err!(err, skip_file_length, "");
325 }
326
327 if let Directive::Ignore(false) = skip_cr {
328 tidy_error!(bad, "{}: ignoring CR characters unnecessarily", file.display());
329 }
330 if let Directive::Ignore(false) = skip_tab {
331 tidy_error!(bad, "{}: ignoring tab characters unnecessarily", file.display());
332 }
333 if let Directive::Ignore(false) = skip_line_length {
334 tidy_error!(bad, "{}: ignoring line length unnecessarily", file.display());
335 }
336 if let Directive::Ignore(false) = skip_file_length {
337 tidy_error!(bad, "{}: ignoring file length unnecessarily", file.display());
338 }
339 if let Directive::Ignore(false) = skip_end_whitespace {
340 tidy_error!(bad, "{}: ignoring trailing whitespace unnecessarily", file.display());
341 }
342 if let Directive::Ignore(false) = skip_trailing_newlines {
343 tidy_error!(bad, "{}: ignoring trailing newlines unnecessarily", file.display());
344 }
345 if let Directive::Ignore(false) = skip_copyright {
346 tidy_error!(bad, "{}: ignoring copyright unnecessarily", file.display());
347 }
348 })
349 }