]> git.lizzy.rs Git - rust.git/blob - src/tools/tidy/src/alphabetical.rs
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / src / tools / tidy / src / alphabetical.rs
1 //! Checks that a list of items is in alphabetical order
2 //!
3 //! To use, use the following annotation in the code:
4 //! ```rust
5 //! // tidy-alphabetical-start
6 //! fn aaa() {}
7 //! fn eee() {}
8 //! fn z() {}
9 //! // tidy-alphabetical-end
10 //! ```
11 //!
12 //! The following lines are ignored:
13 //! - Lines that are indented with more or less spaces than the first line
14 //! - Lines starting with `//`, `#[`, `)`, `]`, `}` if the comment has the same indentation as
15 //!   the first line
16 //!
17 //! If a line ends with an opening bracket, the line is ignored and the next line will have
18 //! its extra indentation ignored.
19
20 use std::{fmt::Display, path::Path};
21
22 use crate::walk::{filter_dirs, walk};
23
24 fn indentation(line: &str) -> usize {
25     line.find(|c| c != ' ').unwrap_or(0)
26 }
27
28 fn is_close_bracket(c: char) -> bool {
29     matches!(c, ')' | ']' | '}')
30 }
31
32 // Don't let tidy check this here :D
33 const START_COMMENT: &str = concat!("// tidy-alphabetical", "-start");
34 const END_COMMENT: &str = "// tidy-alphabetical-end";
35
36 fn check_section<'a>(
37     file: impl Display,
38     lines: impl Iterator<Item = (usize, &'a str)>,
39     bad: &mut bool,
40 ) {
41     let content_lines = lines.take_while(|(_, line)| !line.contains(END_COMMENT));
42
43     let mut prev_line = String::new();
44     let mut first_indent = None;
45     let mut in_split_line = None;
46
47     for (line_idx, line) in content_lines {
48         if line.contains(START_COMMENT) {
49             tidy_error!(
50                 bad,
51                 "{file}:{} found `{START_COMMENT}` expecting `{END_COMMENT}`",
52                 line_idx
53             )
54         }
55
56         let indent = first_indent.unwrap_or_else(|| {
57             let indent = indentation(line);
58             first_indent = Some(indent);
59             indent
60         });
61
62         let line = if let Some(prev_split_line) = in_split_line {
63             in_split_line = None;
64             format!("{prev_split_line}{}", line.trim_start())
65         } else {
66             line.to_string()
67         };
68
69         if indentation(&line) != indent {
70             continue;
71         }
72
73         let trimmed_line = line.trim_start_matches(' ');
74
75         if trimmed_line.starts_with("//")
76             || trimmed_line.starts_with("#[")
77             || trimmed_line.starts_with(is_close_bracket)
78         {
79             continue;
80         }
81
82         if line.trim_end().ends_with('(') {
83             in_split_line = Some(line);
84             continue;
85         }
86
87         let prev_line_trimmed_lowercase = prev_line.trim_start_matches(' ').to_lowercase();
88
89         if trimmed_line.to_lowercase() < prev_line_trimmed_lowercase {
90             tidy_error!(bad, "{file}:{}: line not in alphabetical order", line_idx + 1,);
91         }
92
93         prev_line = line;
94     }
95 }
96
97 pub fn check(path: &Path, bad: &mut bool) {
98     walk(path, &mut filter_dirs, &mut |entry, contents| {
99         let file = &entry.path().display();
100
101         let mut lines = contents.lines().enumerate().peekable();
102         while let Some((_, line)) = lines.next() {
103             if line.contains(START_COMMENT) {
104                 check_section(file, &mut lines, bad);
105                 if lines.peek().is_none() {
106                     tidy_error!(bad, "{file}: reached end of file expecting `{END_COMMENT}`")
107                 }
108             }
109         }
110     });
111 }