also count derefs through custom Deref impls

This commit is contained in:
y21 2023-09-16 15:13:44 +02:00
parent 860e800fa0
commit 2ec6f3b1ed
4 changed files with 36 additions and 7 deletions

View File

@ -2,12 +2,13 @@ use super::FILTER_MAP_BOOL_THEN;
use clippy_utils::diagnostics::span_lint_and_sugg;
use clippy_utils::paths::BOOL_THEN;
use clippy_utils::source::snippet_opt;
use clippy_utils::ty::{is_copy, peel_mid_ty_refs_is_mutable};
use clippy_utils::ty::is_copy;
use clippy_utils::{is_from_proc_macro, is_trait_method, match_def_path, peel_blocks};
use rustc_errors::Applicability;
use rustc_hir::{Expr, ExprKind};
use rustc_lint::{LateContext, LintContext};
use rustc_middle::lint::in_external_macro;
use rustc_middle::ty::adjustment::Adjust;
use rustc_middle::ty::Binder;
use rustc_span::{sym, Span};
@ -36,11 +37,11 @@ pub(super) fn check<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'tcx>, arg: &
&& let Some(def_id) = cx.typeck_results().type_dependent_def_id(value.hir_id)
&& match_def_path(cx, def_id, &BOOL_THEN)
&& !is_from_proc_macro(cx, expr)
// Peel all refs (e.g. `&&&&mut &&&bool` -> `bool`) and get its count so we can suggest the exact
// amount of derefs to get to the bool in the filter.
// `peel_mid_ty_refs` alone doesn't handle mutable reference, so we use `_is_mutable`
// instead which counts them too and just ignore the resulting mutability
&& let (_, needed_derefs, _) = peel_mid_ty_refs_is_mutable(cx.typeck_results().expr_ty(recv))
// Count the number of derefs needed to get to the bool because we need those in the suggestion
&& let needed_derefs = cx.typeck_results().expr_adjustments(recv)
.iter()
.filter(|adj| matches!(adj.kind, Adjust::Deref(_)))
.count()
&& let Some(param_snippet) = snippet_opt(cx, param.span)
&& let Some(filter) = snippet_opt(cx, recv.span)
&& let Some(map) = snippet_opt(cx, then_body.span)

View File

@ -67,4 +67,15 @@ fn issue11503() {
// Should also suggest derefs when going through a mutable reference
let bools: &[&mut bool] = &[&mut true];
let _: Vec<usize> = bools.iter().enumerate().filter(|&(i, b)| **b).map(|(i, b)| i).collect();
// Should also suggest derefs when going through a custom deref
struct DerefToBool;
impl std::ops::Deref for DerefToBool {
type Target = bool;
fn deref(&self) -> &Self::Target {
&true
}
}
let bools: &[&&DerefToBool] = &[&&DerefToBool];
let _: Vec<usize> = bools.iter().enumerate().filter(|&(i, b)| ****b).map(|(i, b)| i).collect();
}

View File

@ -67,4 +67,15 @@ fn issue11503() {
// Should also suggest derefs when going through a mutable reference
let bools: &[&mut bool] = &[&mut true];
let _: Vec<usize> = bools.iter().enumerate().filter_map(|(i, b)| b.then(|| i)).collect();
// Should also suggest derefs when going through a custom deref
struct DerefToBool;
impl std::ops::Deref for DerefToBool {
type Target = bool;
fn deref(&self) -> &Self::Target {
&true
}
}
let bools: &[&&DerefToBool] = &[&&DerefToBool];
let _: Vec<usize> = bools.iter().enumerate().filter_map(|(i, b)| b.then(|| i)).collect();
}

View File

@ -55,5 +55,11 @@ error: usage of `bool::then` in `filter_map`
LL | let _: Vec<usize> = bools.iter().enumerate().filter_map(|(i, b)| b.then(|| i)).collect();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `filter` then `map` instead: `filter(|&(i, b)| **b).map(|(i, b)| i)`
error: aborting due to 9 previous errors
error: usage of `bool::then` in `filter_map`
--> $DIR/filter_map_bool_then.rs:80:50
|
LL | let _: Vec<usize> = bools.iter().enumerate().filter_map(|(i, b)| b.then(|| i)).collect();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `filter` then `map` instead: `filter(|&(i, b)| ****b).map(|(i, b)| i)`
error: aborting due to 10 previous errors