]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/needless_continue.rs
Allow UUID style formatting for `inconsistent_digit_grouping` lint
[rust.git] / clippy_lints / src / needless_continue.rs
1 //! Checks for continue statements in loops that are redundant.
2 //!
3 //! For example, the lint would catch
4 //!
5 //! ```rust
6 //! let mut a = 1;
7 //! let x = true;
8 //!
9 //! while a < 5 {
10 //!     a = 6;
11 //!     if x {
12 //!         // ...
13 //!     } else {
14 //!         continue;
15 //!     }
16 //!     println!("Hello, world");
17 //! }
18 //! ```
19 //!
20 //! And suggest something like this:
21 //!
22 //! ```rust
23 //! let mut a = 1;
24 //! let x = true;
25 //!
26 //! while a < 5 {
27 //!     a = 6;
28 //!     if x {
29 //!         // ...
30 //!         println!("Hello, world");
31 //!     }
32 //! }
33 //! ```
34 //!
35 //! This lint is **warn** by default.
36 use rustc_ast::ast;
37 use rustc_lint::{EarlyContext, EarlyLintPass};
38 use rustc_session::{declare_lint_pass, declare_tool_lint};
39 use rustc_span::source_map::{original_sp, DUMMY_SP};
40 use rustc_span::Span;
41
42 use crate::utils::{indent_of, snippet, snippet_block, span_lint_and_help};
43
44 declare_clippy_lint! {
45     /// **What it does:** The lint checks for `if`-statements appearing in loops
46     /// that contain a `continue` statement in either their main blocks or their
47     /// `else`-blocks, when omitting the `else`-block possibly with some
48     /// rearrangement of code can make the code easier to understand.
49     ///
50     /// **Why is this bad?** Having explicit `else` blocks for `if` statements
51     /// containing `continue` in their THEN branch adds unnecessary branching and
52     /// nesting to the code. Having an else block containing just `continue` can
53     /// also be better written by grouping the statements following the whole `if`
54     /// statement within the THEN block and omitting the else block completely.
55     ///
56     /// **Known problems:** None
57     ///
58     /// **Example:**
59     /// ```rust
60     /// # fn condition() -> bool { false }
61     /// # fn update_condition() {}
62     /// # let x = false;
63     /// while condition() {
64     ///     update_condition();
65     ///     if x {
66     ///         // ...
67     ///     } else {
68     ///         continue;
69     ///     }
70     ///     println!("Hello, world");
71     /// }
72     /// ```
73     ///
74     /// Could be rewritten as
75     ///
76     /// ```rust
77     /// # fn condition() -> bool { false }
78     /// # fn update_condition() {}
79     /// # let x = false;
80     /// while condition() {
81     ///     update_condition();
82     ///     if x {
83     ///         // ...
84     ///         println!("Hello, world");
85     ///     }
86     /// }
87     /// ```
88     ///
89     /// As another example, the following code
90     ///
91     /// ```rust
92     /// # fn waiting() -> bool { false }
93     /// loop {
94     ///     if waiting() {
95     ///         continue;
96     ///     } else {
97     ///         // Do something useful
98     ///     }
99     ///     # break;
100     /// }
101     /// ```
102     /// Could be rewritten as
103     ///
104     /// ```rust
105     /// # fn waiting() -> bool { false }
106     /// loop {
107     ///     if waiting() {
108     ///         continue;
109     ///     }
110     ///     // Do something useful
111     ///     # break;
112     /// }
113     /// ```
114     pub NEEDLESS_CONTINUE,
115     pedantic,
116     "`continue` statements that can be replaced by a rearrangement of code"
117 }
118
119 declare_lint_pass!(NeedlessContinue => [NEEDLESS_CONTINUE]);
120
121 impl EarlyLintPass for NeedlessContinue {
122     fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &ast::Expr) {
123         if !expr.span.from_expansion() {
124             check_and_warn(cx, expr);
125         }
126     }
127 }
128
129 /* This lint has to mainly deal with two cases of needless continue
130  * statements. */
131 // Case 1 [Continue inside else block]:
132 //
133 //     loop {
134 //         // region A
135 //         if cond {
136 //             // region B
137 //         } else {
138 //             continue;
139 //         }
140 //         // region C
141 //     }
142 //
143 // This code can better be written as follows:
144 //
145 //     loop {
146 //         // region A
147 //         if cond {
148 //             // region B
149 //             // region C
150 //         }
151 //     }
152 //
153 // Case 2 [Continue inside then block]:
154 //
155 //     loop {
156 //       // region A
157 //       if cond {
158 //           continue;
159 //           // potentially more code here.
160 //       } else {
161 //           // region B
162 //       }
163 //       // region C
164 //     }
165 //
166 //
167 // This snippet can be refactored to:
168 //
169 //     loop {
170 //       // region A
171 //       if !cond {
172 //           // region B
173 //           // region C
174 //       }
175 //     }
176 //
177
178 /// Given an expression, returns true if either of the following is true
179 ///
180 /// - The expression is a `continue` node.
181 /// - The expression node is a block with the first statement being a
182 /// `continue`.
183 fn needless_continue_in_else(else_expr: &ast::Expr, label: Option<&ast::Label>) -> bool {
184     match else_expr.kind {
185         ast::ExprKind::Block(ref else_block, _) => is_first_block_stmt_continue(else_block, label),
186         ast::ExprKind::Continue(l) => compare_labels(label, l.as_ref()),
187         _ => false,
188     }
189 }
190
191 fn is_first_block_stmt_continue(block: &ast::Block, label: Option<&ast::Label>) -> bool {
192     block.stmts.get(0).map_or(false, |stmt| match stmt.kind {
193         ast::StmtKind::Semi(ref e) | ast::StmtKind::Expr(ref e) => {
194             if let ast::ExprKind::Continue(ref l) = e.kind {
195                 compare_labels(label, l.as_ref())
196             } else {
197                 false
198             }
199         },
200         _ => false,
201     })
202 }
203
204 /// If the `continue` has a label, check it matches the label of the loop.
205 fn compare_labels(loop_label: Option<&ast::Label>, continue_label: Option<&ast::Label>) -> bool {
206     match (loop_label, continue_label) {
207         // `loop { continue; }` or `'a loop { continue; }`
208         (_, None) => true,
209         // `loop { continue 'a; }`
210         (None, _) => false,
211         // `'a loop { continue 'a; }` or `'a loop { continue 'b; }`
212         (Some(x), Some(y)) => x.ident == y.ident,
213     }
214 }
215
216 /// If `expr` is a loop expression (while/while let/for/loop), calls `func` with
217 /// the AST object representing the loop block of `expr`.
218 fn with_loop_block<F>(expr: &ast::Expr, mut func: F)
219 where
220     F: FnMut(&ast::Block, Option<&ast::Label>),
221 {
222     if let ast::ExprKind::While(_, loop_block, label)
223     | ast::ExprKind::ForLoop(_, _, loop_block, label)
224     | ast::ExprKind::Loop(loop_block, label) = &expr.kind
225     {
226         func(loop_block, label.as_ref());
227     }
228 }
229
230 /// If `stmt` is an if expression node with an `else` branch, calls func with
231 /// the
232 /// following:
233 ///
234 /// - The `if` expression itself,
235 /// - The `if` condition expression,
236 /// - The `then` block, and
237 /// - The `else` expression.
238 fn with_if_expr<F>(stmt: &ast::Stmt, mut func: F)
239 where
240     F: FnMut(&ast::Expr, &ast::Expr, &ast::Block, &ast::Expr),
241 {
242     match stmt.kind {
243         ast::StmtKind::Semi(ref e) | ast::StmtKind::Expr(ref e) => {
244             if let ast::ExprKind::If(ref cond, ref if_block, Some(ref else_expr)) = e.kind {
245                 func(e, cond, if_block, else_expr);
246             }
247         },
248         _ => {},
249     }
250 }
251
252 /// A type to distinguish between the two distinct cases this lint handles.
253 #[derive(Copy, Clone, Debug)]
254 enum LintType {
255     ContinueInsideElseBlock,
256     ContinueInsideThenBlock,
257 }
258
259 /// Data we pass around for construction of help messages.
260 struct LintData<'a> {
261     /// The `if` expression encountered in the above loop.
262     if_expr: &'a ast::Expr,
263     /// The condition expression for the above `if`.
264     if_cond: &'a ast::Expr,
265     /// The `then` block of the `if` statement.
266     if_block: &'a ast::Block,
267     /// The `else` block of the `if` statement.
268     /// Note that we only work with `if` exprs that have an `else` branch.
269     else_expr: &'a ast::Expr,
270     /// The 0-based index of the `if` statement in the containing loop block.
271     stmt_idx: usize,
272     /// The statements of the loop block.
273     block_stmts: &'a [ast::Stmt],
274 }
275
276 const MSG_REDUNDANT_ELSE_BLOCK: &str = "this `else` block is redundant";
277
278 const MSG_ELSE_BLOCK_NOT_NEEDED: &str = "there is no need for an explicit `else` block for this `if` \
279                                          expression";
280
281 const DROP_ELSE_BLOCK_AND_MERGE_MSG: &str = "consider dropping the `else` clause and merging the code that \
282                                              follows (in the loop) with the `if` block";
283
284 const DROP_ELSE_BLOCK_MSG: &str = "consider dropping the `else` clause";
285
286 fn emit_warning<'a>(cx: &EarlyContext<'_>, data: &'a LintData<'_>, header: &str, typ: LintType) {
287     // snip    is the whole *help* message that appears after the warning.
288     // message is the warning message.
289     // expr    is the expression which the lint warning message refers to.
290     let (snip, message, expr) = match typ {
291         LintType::ContinueInsideElseBlock => (
292             suggestion_snippet_for_continue_inside_else(cx, data),
293             MSG_REDUNDANT_ELSE_BLOCK,
294             data.else_expr,
295         ),
296         LintType::ContinueInsideThenBlock => (
297             suggestion_snippet_for_continue_inside_if(cx, data),
298             MSG_ELSE_BLOCK_NOT_NEEDED,
299             data.if_expr,
300         ),
301     };
302     span_lint_and_help(
303         cx,
304         NEEDLESS_CONTINUE,
305         expr.span,
306         message,
307         &format!("{}\n{}", header, snip),
308     );
309 }
310
311 fn suggestion_snippet_for_continue_inside_if<'a>(cx: &EarlyContext<'_>, data: &'a LintData<'_>) -> String {
312     let cond_code = snippet(cx, data.if_cond.span, "..");
313
314     let continue_code = snippet_block(cx, data.if_block.span, "..", Some(data.if_expr.span));
315
316     let else_code = snippet_block(cx, data.else_expr.span, "..", Some(data.if_expr.span));
317
318     let indent_if = indent_of(cx, data.if_expr.span).unwrap_or(0);
319     format!(
320         "{indent}if {} {}\n{indent}{}",
321         cond_code,
322         continue_code,
323         else_code,
324         indent = " ".repeat(indent_if),
325     )
326 }
327
328 fn suggestion_snippet_for_continue_inside_else<'a>(cx: &EarlyContext<'_>, data: &'a LintData<'_>) -> String {
329     let cond_code = snippet(cx, data.if_cond.span, "..");
330
331     // Region B
332     let block_code = erode_from_back(&snippet_block(cx, data.if_block.span, "..", Some(data.if_expr.span)));
333
334     // Region C
335     // These is the code in the loop block that follows the if/else construction
336     // we are complaining about. We want to pull all of this code into the
337     // `then` block of the `if` statement.
338     let indent = span_of_first_expr_in_block(data.if_block)
339         .and_then(|span| indent_of(cx, span))
340         .unwrap_or(0);
341     let to_annex = data.block_stmts[data.stmt_idx + 1..]
342         .iter()
343         .map(|stmt| original_sp(stmt.span, DUMMY_SP))
344         .map(|span| {
345             let snip = snippet_block(cx, span, "..", None).into_owned();
346             snip.lines()
347                 .map(|line| format!("{}{}", " ".repeat(indent), line))
348                 .collect::<Vec<_>>()
349                 .join("\n")
350         })
351         .collect::<Vec<_>>()
352         .join("\n");
353
354     let indent_if = indent_of(cx, data.if_expr.span).unwrap_or(0);
355     format!(
356         "{indent_if}if {} {}\n{indent}// merged code follows:\n{}\n{indent_if}}}",
357         cond_code,
358         block_code,
359         to_annex,
360         indent = " ".repeat(indent),
361         indent_if = " ".repeat(indent_if),
362     )
363 }
364
365 fn check_and_warn<'a>(cx: &EarlyContext<'_>, expr: &'a ast::Expr) {
366     with_loop_block(expr, |loop_block, label| {
367         for (i, stmt) in loop_block.stmts.iter().enumerate() {
368             with_if_expr(stmt, |if_expr, cond, then_block, else_expr| {
369                 let data = &LintData {
370                     stmt_idx: i,
371                     if_expr,
372                     if_cond: cond,
373                     if_block: then_block,
374                     else_expr,
375                     block_stmts: &loop_block.stmts,
376                 };
377                 if needless_continue_in_else(else_expr, label) {
378                     emit_warning(
379                         cx,
380                         data,
381                         DROP_ELSE_BLOCK_AND_MERGE_MSG,
382                         LintType::ContinueInsideElseBlock,
383                     );
384                 } else if is_first_block_stmt_continue(then_block, label) {
385                     emit_warning(cx, data, DROP_ELSE_BLOCK_MSG, LintType::ContinueInsideThenBlock);
386                 }
387             });
388         }
389     });
390 }
391
392 /// Eats at `s` from the end till a closing brace `}` is encountered, and then continues eating
393 /// till a non-whitespace character is found.  e.g., the string. If no closing `}` is present, the
394 /// string will be preserved.
395 ///
396 /// ```rust
397 /// {
398 ///     let x = 5;
399 /// }
400 /// ```
401 ///
402 /// is transformed to
403 ///
404 /// ```ignore
405 ///     {
406 ///         let x = 5;
407 /// ```
408 #[must_use]
409 fn erode_from_back(s: &str) -> String {
410     let mut ret = s.to_string();
411     while ret.pop().map_or(false, |c| c != '}') {}
412     while let Some(c) = ret.pop() {
413         if !c.is_whitespace() {
414             ret.push(c);
415             break;
416         }
417     }
418     if ret.is_empty() {
419         s.to_string()
420     } else {
421         ret
422     }
423 }
424
425 fn span_of_first_expr_in_block(block: &ast::Block) -> Option<Span> {
426     block.stmts.iter().next().map(|stmt| stmt.span)
427 }
428
429 #[cfg(test)]
430 mod test {
431     use super::erode_from_back;
432
433     #[test]
434     #[rustfmt::skip]
435     fn test_erode_from_back() {
436         let input = "\
437 {
438     let x = 5;
439     let y = format!(\"{}\", 42);
440 }";
441
442         let expected = "\
443 {
444     let x = 5;
445     let y = format!(\"{}\", 42);";
446
447         let got = erode_from_back(input);
448         assert_eq!(expected, got);
449     }
450
451     #[test]
452     #[rustfmt::skip]
453     fn test_erode_from_back_no_brace() {
454         let input = "\
455 let x = 5;
456 let y = something();
457 ";
458         let expected = input;
459         let got = erode_from_back(input);
460         assert_eq!(expected, got);
461     }
462 }