|
| 1 | +use crate::{LateContext, LateLintPass, LintContext}; |
| 2 | + |
| 3 | +use hir::{Expr, Pat}; |
| 4 | +use rustc_errors::Applicability; |
| 5 | +use rustc_hir as hir; |
| 6 | +use rustc_infer::traits::TraitEngine; |
| 7 | +use rustc_infer::{infer::TyCtxtInferExt, traits::ObligationCause}; |
| 8 | +use rustc_middle::ty::{self, List}; |
| 9 | +use rustc_span::{sym, Span}; |
| 10 | +use rustc_trait_selection::traits::TraitEngineExt; |
| 11 | + |
| 12 | +declare_lint! { |
| 13 | + /// The `for_loop_over_fallibles` lint checks for `for` loops over `Option` or `Result` values. |
| 14 | + /// |
| 15 | + /// ### Example |
| 16 | + /// |
| 17 | + /// ```rust |
| 18 | + /// let opt = Some(1); |
| 19 | + /// for x in opt { /* ... */} |
| 20 | + /// ``` |
| 21 | + /// |
| 22 | + /// {{produces}} |
| 23 | + /// |
| 24 | + /// ### Explanation |
| 25 | + /// |
| 26 | + /// Both `Option` and `Result` implement `IntoIterator` trait, which allows using them in a `for` loop. |
| 27 | + /// `for` loop over `Option` or `Result` will iterate either 0 (if the value is `None`/`Err(_)`) |
| 28 | + /// or 1 time (if the value is `Some(_)`/`Ok(_)`). This is not very useful and is more clearly expressed |
| 29 | + /// via `if let`. |
| 30 | + /// |
| 31 | + /// `for` loop can also be accidentally written with the intention to call a function multiple times, |
| 32 | + /// while the function returns `Some(_)`, in these cases `while let` loop should be used instead. |
| 33 | + /// |
| 34 | + /// The "intended" use of `IntoIterator` implementations for `Option` and `Result` is passing them to |
| 35 | + /// generic code that expects something implementing `IntoIterator`. For example using `.chain(option)` |
| 36 | + /// to optionally add a value to an iterator. |
| 37 | + pub FOR_LOOP_OVER_FALLIBLES, |
| 38 | + Warn, |
| 39 | + "for-looping over an `Option` or a `Result`, which is more clearly expressed as an `if let`" |
| 40 | +} |
| 41 | + |
| 42 | +declare_lint_pass!(ForLoopOverFallibles => [FOR_LOOP_OVER_FALLIBLES]); |
| 43 | + |
| 44 | +impl<'tcx> LateLintPass<'tcx> for ForLoopOverFallibles { |
| 45 | + fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) { |
| 46 | + let Some((pat, arg)) = extract_for_loop(expr) else { return }; |
| 47 | + |
| 48 | + let ty = cx.typeck_results().expr_ty(arg); |
| 49 | + |
| 50 | + let &ty::Adt(adt, substs) = ty.kind() else { return }; |
| 51 | + |
| 52 | + let (article, ty, var) = match adt.did() { |
| 53 | + did if cx.tcx.is_diagnostic_item(sym::Option, did) => ("an", "Option", "Some"), |
| 54 | + did if cx.tcx.is_diagnostic_item(sym::Result, did) => ("a", "Result", "Ok"), |
| 55 | + _ => return, |
| 56 | + }; |
| 57 | + |
| 58 | + let msg = format!( |
| 59 | + "for loop over {article} `{ty}`. This is more readably written as an `if let` statement", |
| 60 | + ); |
| 61 | + |
| 62 | + cx.struct_span_lint(FOR_LOOP_OVER_FALLIBLES, arg.span, |diag| { |
| 63 | + let mut warn = diag.build(msg); |
| 64 | + |
| 65 | + if let Some(recv) = extract_iterator_next_call(cx, arg) |
| 66 | + && let Ok(recv_snip) = cx.sess().source_map().span_to_snippet(recv.span) |
| 67 | + { |
| 68 | + warn.span_suggestion( |
| 69 | + recv.span.between(arg.span.shrink_to_hi()), |
| 70 | + format!("to iterate over `{recv_snip}` remove the call to `next`"), |
| 71 | + ".by_ref()", |
| 72 | + Applicability::MaybeIncorrect |
| 73 | + ); |
| 74 | + } else { |
| 75 | + warn.multipart_suggestion_verbose( |
| 76 | + format!("to check pattern in a loop use `while let`"), |
| 77 | + vec![ |
| 78 | + // NB can't use `until` here because `expr.span` and `pat.span` have different syntax contexts |
| 79 | + (expr.span.with_hi(pat.span.lo()), format!("while let {var}(")), |
| 80 | + (pat.span.between(arg.span), format!(") = ")), |
| 81 | + ], |
| 82 | + Applicability::MaybeIncorrect |
| 83 | + ); |
| 84 | + } |
| 85 | + |
| 86 | + if suggest_question_mark(cx, adt, substs, expr.span) { |
| 87 | + warn.span_suggestion( |
| 88 | + arg.span.shrink_to_hi(), |
| 89 | + "consider unwrapping the `Result` with `?` to iterate over its contents", |
| 90 | + "?", |
| 91 | + Applicability::MaybeIncorrect, |
| 92 | + ); |
| 93 | + } |
| 94 | + |
| 95 | + warn.multipart_suggestion_verbose( |
| 96 | + "consider using `if let` to clear intent", |
| 97 | + vec![ |
| 98 | + // NB can't use `until` here because `expr.span` and `pat.span` have different syntax contexts |
| 99 | + (expr.span.with_hi(pat.span.lo()), format!("if let {var}(")), |
| 100 | + (pat.span.between(arg.span), format!(") = ")), |
| 101 | + ], |
| 102 | + Applicability::MaybeIncorrect, |
| 103 | + ); |
| 104 | + |
| 105 | + warn.emit() |
| 106 | + }) |
| 107 | + } |
| 108 | +} |
| 109 | + |
| 110 | +fn extract_for_loop<'tcx>(expr: &Expr<'tcx>) -> Option<(&'tcx Pat<'tcx>, &'tcx Expr<'tcx>)> { |
| 111 | + if let hir::ExprKind::DropTemps(e) = expr.kind |
| 112 | + && let hir::ExprKind::Match(iterexpr, [arm], hir::MatchSource::ForLoopDesugar) = e.kind |
| 113 | + && let hir::ExprKind::Call(_, [arg]) = iterexpr.kind |
| 114 | + && let hir::ExprKind::Loop(block, ..) = arm.body.kind |
| 115 | + && let [stmt] = block.stmts |
| 116 | + && let hir::StmtKind::Expr(e) = stmt.kind |
| 117 | + && let hir::ExprKind::Match(_, [_, some_arm], _) = e.kind |
| 118 | + && let hir::PatKind::Struct(_, [field], _) = some_arm.pat.kind |
| 119 | + { |
| 120 | + Some((field.pat, arg)) |
| 121 | + } else { |
| 122 | + None |
| 123 | + } |
| 124 | +} |
| 125 | + |
| 126 | +fn extract_iterator_next_call<'tcx>( |
| 127 | + cx: &LateContext<'_>, |
| 128 | + expr: &Expr<'tcx>, |
| 129 | +) -> Option<&'tcx Expr<'tcx>> { |
| 130 | + // This won't work for `Iterator::next(iter)`, is this an issue? |
| 131 | + if let hir::ExprKind::MethodCall(_, [recv], _) = expr.kind |
| 132 | + && cx.typeck_results().type_dependent_def_id(expr.hir_id) == cx.tcx.lang_items().next_fn() |
| 133 | + { |
| 134 | + Some(recv) |
| 135 | + } else { |
| 136 | + return None |
| 137 | + } |
| 138 | +} |
| 139 | + |
| 140 | +fn suggest_question_mark<'tcx>( |
| 141 | + cx: &LateContext<'tcx>, |
| 142 | + adt: ty::AdtDef<'tcx>, |
| 143 | + substs: &List<ty::GenericArg<'tcx>>, |
| 144 | + span: Span, |
| 145 | +) -> bool { |
| 146 | + let Some(body_id) = cx.enclosing_body else { return false }; |
| 147 | + let Some(into_iterator_did) = cx.tcx.get_diagnostic_item(sym::IntoIterator) else { return false }; |
| 148 | + |
| 149 | + if !cx.tcx.is_diagnostic_item(sym::Result, adt.did()) { |
| 150 | + return false; |
| 151 | + } |
| 152 | + |
| 153 | + // Check that the function/closure/constant we are in has a `Result` type. |
| 154 | + // Otherwise suggesting using `?` may not be a good idea. |
| 155 | + { |
| 156 | + let ty = cx.typeck_results().expr_ty(&cx.tcx.hir().body(body_id).value); |
| 157 | + let ty::Adt(ret_adt, ..) = ty.kind() else { return false }; |
| 158 | + if !cx.tcx.is_diagnostic_item(sym::Result, ret_adt.did()) { |
| 159 | + return false; |
| 160 | + } |
| 161 | + } |
| 162 | + |
| 163 | + let ty = substs.type_at(0); |
| 164 | + let is_iterator = cx.tcx.infer_ctxt().enter(|infcx| { |
| 165 | + let mut fulfill_cx = <dyn TraitEngine<'_>>::new(infcx.tcx); |
| 166 | + |
| 167 | + let cause = ObligationCause::new( |
| 168 | + span, |
| 169 | + body_id.hir_id, |
| 170 | + rustc_infer::traits::ObligationCauseCode::MiscObligation, |
| 171 | + ); |
| 172 | + fulfill_cx.register_bound( |
| 173 | + &infcx, |
| 174 | + ty::ParamEnv::empty(), |
| 175 | + // Erase any region vids from the type, which may not be resolved |
| 176 | + infcx.tcx.erase_regions(ty), |
| 177 | + into_iterator_did, |
| 178 | + cause, |
| 179 | + ); |
| 180 | + |
| 181 | + // Select all, including ambiguous predicates |
| 182 | + let errors = fulfill_cx.select_all_or_error(&infcx); |
| 183 | + |
| 184 | + errors.is_empty() |
| 185 | + }); |
| 186 | + |
| 187 | + is_iterator |
| 188 | +} |
0 commit comments